KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
git_add_to_index_handler.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.TXT for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 3
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/gpl-3.0.html
19 * or you may search the http://www.gnu.org website for the version 3 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
26
27#include <iterator>
28
29#include <wx/string.h>
30#include <wx/log.h>
31
33{
34 m_repository = aRepository;
35 m_filesToAdd.clear();
36}
37
38
40{
41}
42
43
44bool GIT_ADD_TO_INDEX_HANDLER::AddToIndex( const wxString& aFilePath )
45{
46 // Test if file is currently in the index
47
48 git_index* index = nullptr;
49 size_t at_pos = 0;
50
51 if( git_repository_index( &index, m_repository ) != 0 )
52 {
53 wxLogError( "Failed to get repository index" );
54 return false;
55 }
56
57 KIGIT::GitIndexPtr indexPtr( index );
58
59 if( git_index_find( &at_pos, index, aFilePath.ToUTF8().data() ) == GIT_OK )
60 {
61 wxLogError( "%s already in index", aFilePath );
62 return false;
63 }
64
65 // Add file to index if not already there
66 m_filesToAdd.push_back( aFilePath );
67
68 return true;
69}
70
71
73{
74 git_index* index = nullptr;
75
76 m_filesFailedToAdd.clear();
77
78 if( git_repository_index( &index, m_repository ) != 0 )
79 {
80 wxLogError( "Failed to get repository index" );
81 std::copy( m_filesToAdd.begin(), m_filesToAdd.end(), std::back_inserter( m_filesFailedToAdd ) );
82 return false;
83 }
84
85 KIGIT::GitIndexPtr indexPtr( index );
86
87 for( auto& file : m_filesToAdd )
88 {
89 if( git_index_add_bypath( index, file.ToUTF8().data() ) != 0 )
90 {
91 wxLogError( "Failed to add %s to index", file );
92 m_filesFailedToAdd.push_back( file );
93 continue;
94 }
95 }
96
97
98 if( git_index_write( index ) != 0 )
99 {
100 wxLogError( "Failed to write index" );
101 m_filesFailedToAdd.clear();
102 std::copy( m_filesToAdd.begin(), m_filesToAdd.end(),
103 std::back_inserter( m_filesFailedToAdd ) );
104 return false;
105 }
106
107 return true;
108}
GIT_ADD_TO_INDEX_HANDLER(git_repository *aRepository)
std::vector< wxString > m_filesToAdd
std::vector< wxString > m_filesFailedToAdd
bool AddToIndex(const wxString &aFilePath)
std::unique_ptr< git_index, decltype([](git_index *aIndex) { git_index_free(aIndex) GitIndexPtr
A unique pointer for git_index objects with automatic cleanup.