KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
dialog_git_switch.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
24
25#include "dialog_git_switch.h"
26
28#include <trace_helpers.h>
29
30#include <wx/button.h>
31#include <wx/checkbox.h>
32#include <wx/listctrl.h>
33#include <wx/log.h>
34#include <wx/event.h>
35#include <wx/sizer.h>
36#include <wx/timer.h>
37#include <wx/stattext.h>
38#include <wx/textctrl.h>
39
40#include <git2.h>
41
42
43DIALOG_GIT_SWITCH::DIALOG_GIT_SWITCH( wxWindow* aParent, git_repository* aRepository ) :
44 DIALOG_SHIM( aParent, wxID_ANY, _( "Git Branch Switch" ), wxDefaultPosition, wxDefaultSize,
45 wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ),
46 m_timer( this ), m_repository( aRepository )
47{
48 wxBoxSizer* sizer = new wxBoxSizer( wxVERTICAL );
49
50 // Add explanation text
51 wxStaticText* explanationText =
52 new wxStaticText( this, wxID_ANY, _( "Select or enter a branch name:" ) );
53 sizer->Add( explanationText, 0, wxALL, 10 );
54
55 // Add branch list with three columns
56 m_branchList = new wxListView( this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
57 wxLC_REPORT | wxLC_SINGLE_SEL );
58 m_branchList->InsertColumn( 0, _( "Branch" ) );
59 m_branchList->InsertColumn( 1, _( "Last Commit" ) );
60 m_branchList->InsertColumn( 2, _( "Last Updated" ) );
61 sizer->Add( m_branchList, 1, wxALL | wxEXPAND, 10 );
62
63 // Add branch name text box
64 m_branchNameText = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition,
65 wxDefaultSize, wxTE_PROCESS_ENTER );
66 sizer->Add( m_branchNameText, 0, wxALL | wxEXPAND, 10 );
67
68 // Add buttons
69 wxStdDialogButtonSizer* buttonSizer = new wxStdDialogButtonSizer();
70 m_switchButton = new wxButton( this, wxID_OK, _( "Switch" ) );
71 buttonSizer->AddButton( m_switchButton );
72 m_switchButton->Disable();
73 wxButton* cancelButton = new wxButton( this, wxID_CANCEL, _( "Cancel" ) );
74 buttonSizer->AddButton( cancelButton );
75 buttonSizer->Realize();
76 sizer->Add( buttonSizer, 0, wxALIGN_RIGHT | wxALL, 10 );
77
78 // Bind events
79 Bind( wxEVT_LIST_ITEM_SELECTED, &DIALOG_GIT_SWITCH::OnBranchListSelection, this, m_branchList->GetId() );
80 Bind( wxEVT_LIST_ITEM_ACTIVATED, &DIALOG_GIT_SWITCH::OnBranchListDClick, this, m_branchList->GetId() );
81 Bind( wxEVT_BUTTON, &DIALOG_GIT_SWITCH::OnSwitchButton, this, m_switchButton->GetId() );
82 Bind( wxEVT_BUTTON, &DIALOG_GIT_SWITCH::OnCancelButton, this, cancelButton->GetId() );
83 Bind( wxEVT_TEXT, &DIALOG_GIT_SWITCH::OnTextChanged, this, m_branchNameText->GetId() );
84 Bind( wxEVT_TIMER, &DIALOG_GIT_SWITCH::OnTimer, this, m_timer.GetId() );
85
86 // Populate branch list
88
89 // Set sizer for the dialog
90 SetSizerAndFit( sizer );
91
93
94 m_existingBranch = false;
95}
96
98{
99 StopTimer();
100 Unbind( wxEVT_TIMER, &DIALOG_GIT_SWITCH::OnTimer, this, m_timer.GetId() );
101}
102
104{
105 m_branchList->DeleteAllItems();
106
107 // Get the branches
108 GetBranches();
109
110 // Populate the list
111 for( auto& [ name, data ] : m_branches )
112 {
113 wxDateTime lastUpdated( data.lastUpdated );
114 wxString lastUpdatedString = lastUpdated.Format();
115
116 long itemIndex = m_branchList->InsertItem( m_branchList->GetItemCount(), name );
117 m_branchList->SetItem( itemIndex, 1, data.commitString );
118 m_branchList->SetItem( itemIndex, 2, lastUpdatedString );
119 }
120
121 m_branchList->SetColumnWidth( 0, wxLIST_AUTOSIZE );
122 m_branchList->SetColumnWidth( 1, wxLIST_AUTOSIZE );
123 m_branchList->SetColumnWidth( 2, wxLIST_AUTOSIZE );
124
125}
126
127
128void DIALOG_GIT_SWITCH::OnBranchListDClick( wxListEvent& aEvent )
129{
130 int selection = aEvent.GetIndex();
131
132 if( selection != wxNOT_FOUND )
133 {
134 wxString branchName = m_branchList->GetItemText( selection );
135 m_branchNameText->SetValue( branchName );
136
137 if( branchName != m_currentBranch )
138 EndModal( wxID_OK );
139 }
140}
141
142
144{
145 int selection = aEvent.GetIndex();
146
147 if( selection != wxNOT_FOUND )
148 {
149 wxString branchName = m_branchList->GetItemText( selection );
150 m_branchNameText->SetValue( branchName );
151 m_switchButton->SetLabel( _( "Switch" ) );
152 m_switchButton->Enable( branchName != m_currentBranch );
153 }
154 else
155 {
156 // Deselect all elements in the list
157 for( int ii = 0; ii < m_branchList->GetItemCount(); ++ii )
158 m_branchList->SetItemState( ii, 0, 0 );
159 }
160}
161
162void DIALOG_GIT_SWITCH::OnSwitchButton(wxCommandEvent& aEvent)
163{
164 wxString branchName = m_branchNameText->GetValue();
165
166 // Check if the branch name exists
167 bool branchExists = m_branches.count(branchName);
168
169 if (branchExists)
170 {
171 EndModal(wxID_OK); // Return Switch code
172 }
173 else
174 {
175 EndModal(wxID_ADD); // Return Add code
176 }
177}
178
179
180void DIALOG_GIT_SWITCH::OnCancelButton(wxCommandEvent& aEvent)
181{
182 EndModal(wxID_CANCEL); // Return Cancel code
183}
184
185
187{
188 return m_branchNameText->GetValue();
189}
190
191
193{
194 m_timer.Start( 500, true );
195}
196
197
199{
200 m_timer.Stop();
201}
202
203
204void DIALOG_GIT_SWITCH::OnTimer( wxTimerEvent& aEvt )
205{
206 wxString branchName = m_branchNameText->GetValue();
207
208 if( branchName == m_lastEnteredText )
209 return;
210
211 m_lastEnteredText = branchName;
212
213 // Check if the branch name exists
214 bool branchExists = m_branches.count( branchName );
215
216 if( branchExists )
217 {
218 m_switchButton->SetLabel( _( "Switch" ) );
219 m_switchButton->Enable( branchName != m_currentBranch );
220 }
221 else
222 {
223 m_switchButton->SetLabel( _( "Add" ) );
224 m_switchButton->Enable();
225 }
226}
227
228
229void DIALOG_GIT_SWITCH::OnTextChanged( wxCommandEvent& aEvt )
230{
231 StartTimer();
232}
233
234
236{
237 // Clear the branch list
238 m_branches.clear();
239
240 git_branch_iterator* branchIterator = nullptr;
241 git_branch_t branchType;
242
243 // Get Current Branch
244 git_reference* currentBranchReference = nullptr;
245 git_repository_head( &currentBranchReference, m_repository );
246
247 if( !currentBranchReference )
248 {
249 wxLogTrace( traceGit, "Failed to get current branch" );
250 return;
251 }
252
253 KIGIT::GitReferencePtr currentBranch( currentBranchReference );
254 m_currentBranch = git_reference_shorthand( currentBranchReference );
255
256 // Initialize branch iterator
257 git_branch_iterator_new( &branchIterator, m_repository, GIT_BRANCH_ALL );
258 KIGIT::GitBranchIteratorPtr branchIteratorPtr( branchIterator );
259
260 // Iterate over local branches
261 git_reference* branchReference = nullptr;
262 while( git_branch_next( &branchReference, &branchType, branchIterator ) == 0 )
263 {
264 KIGIT::GitReferencePtr branchReferencePtr( branchReference );
265
266 // Get the branch OID
267 const git_oid* branchOid = git_reference_target( branchReference );
268
269 // Skip this branch if it doesn't have an OID
270 if( !branchOid )
271 continue;
272
273 git_commit* commit = nullptr;
274
275 if( git_commit_lookup( &commit, m_repository, branchOid ) )
276 {
277 // Skip this branch if it doesn't have a commit
278 continue;
279 }
280
281 KIGIT::GitCommitPtr commitPtr( commit );
282
283 // Retrieve commit details
284 BranchData branchData;
285 branchData.commitString = git_commit_message( commit );
286 branchData.lastUpdated = static_cast<time_t>( git_commit_time( commit ) );
287 branchData.isRemote = branchType == GIT_BRANCH_REMOTE;
288
289 m_branches[git_reference_shorthand( branchReference )] = branchData;
290 }
291}
const char * name
Definition: DXF_plotter.cpp:59
DIALOG_GIT_SWITCH(wxWindow *aParent, git_repository *aRepository)
wxListView * m_branchList
git_repository * m_repository
wxString GetBranchName() const
void OnTextChanged(wxCommandEvent &event)
wxButton * m_switchButton
std::map< wxString, BranchData > m_branches
void OnCancelButton(wxCommandEvent &event)
wxTextCtrl * m_branchNameText
void OnBranchListSelection(wxListEvent &event)
void OnBranchListDClick(wxListEvent &event)
void OnTimer(wxTimerEvent &event)
void OnSwitchButton(wxCommandEvent &event)
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...
Definition: dialog_shim.h:52
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
#define _(s)
const wxChar *const traceGit
Flag to enable Git debugging output.
std::unique_ptr< git_commit, decltype([](git_commit *aCommit) { git_commit_free(aCommit) GitCommitPtr
A unique pointer for git_commit objects with automatic cleanup.
std::unique_ptr< git_branch_iterator, decltype([](git_branch_iterator *aIter) { git_branch_iterator_free(aIter) GitBranchIteratorPtr
A unique pointer for git_branch_iterator objects with automatic cleanup.
std::unique_ptr< git_reference, decltype([](git_reference *aRef) { git_reference_free(aRef) GitReferencePtr
A unique pointer for git_reference objects with automatic cleanup.
wxString commitString
time_t lastUpdated
wxLogTrace helper definitions.