KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
git_push_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
24#include "git_push_handler.h"
27#include <trace_helpers.h>
28
29#include <iostream>
30
31#include <wx/log.h>
32
34{}
35
37{}
38
40{
41 std::unique_lock<std::mutex> lock( GetCommon()->m_gitActionMutex, std::try_to_lock );
42
43 if(!lock.owns_lock())
44 {
45 wxLogTrace(traceGit, "GIT_PUSH_HANDLER::PerformPush: Could not lock mutex");
46 return PushResult::Error;
47 }
48
49 PushResult result = PushResult::Success;
50
51 // Fetch updates from remote repository
52 git_remote* remote = nullptr;
53
54 if(git_remote_lookup(&remote, GetRepo(), "origin") != 0)
55 {
56 AddErrorString(_("Could not lookup remote"));
57 return PushResult::Error;
58 }
59
60 KIGIT::GitRemotePtr remotePtr(remote);
61
62 git_remote_callbacks remoteCallbacks;
63 git_remote_init_callbacks(&remoteCallbacks, GIT_REMOTE_CALLBACKS_VERSION);
64 remoteCallbacks.sideband_progress = progress_cb;
65 remoteCallbacks.transfer_progress = transfer_progress_cb;
66 remoteCallbacks.update_tips = update_cb;
67 remoteCallbacks.push_transfer_progress = push_transfer_progress_cb;
68 remoteCallbacks.credentials = credentials_cb;
69 remoteCallbacks.payload = this;
70
71 TestedTypes() = 0;
73
74 if( git_remote_connect( remote, GIT_DIRECTION_PUSH, &remoteCallbacks, nullptr, nullptr ) )
75 {
76 AddErrorString( wxString::Format( _( "Could not connect to remote: %s" ),
78 return PushResult::Error;
79 }
80
81 git_push_options pushOptions;
82 git_push_init_options( &pushOptions, GIT_PUSH_OPTIONS_VERSION );
83 pushOptions.callbacks = remoteCallbacks;
84
85 // Get the current HEAD reference
86 git_reference* head = nullptr;
87
88 if( git_repository_head( &head, GetRepo() ) != 0 )
89 {
90 git_remote_disconnect( remote );
91 AddErrorString( _( "Could not get repository head" ) );
92 return PushResult::Error;
93 }
94
95 KIGIT::GitReferencePtr headPtr( head );
96
97 // Create refspec for current branch
98 const char* refs[1];
99 refs[0] = git_reference_name( head );
100 const git_strarray refspecs = { (char**) refs, 1 };
101
102 if( git_remote_push( remote, &refspecs, &pushOptions ) )
103 {
104 AddErrorString( wxString::Format( _( "Could not push to remote: %s" ),
106 git_remote_disconnect( remote );
107 return PushResult::Error;
108 }
109
110 git_remote_disconnect( remote );
111
112 return result;
113}
114
115
116void GIT_PUSH_HANDLER::UpdateProgress( int aCurrent, int aTotal, const wxString& aMessage )
117{
118 ReportProgress( aCurrent, aTotal, aMessage );
119}
GIT_PUSH_HANDLER(KIGIT_COMMON *aCommon)
virtual void ReportProgress(int aCurrent, int aTotal, const wxString &aMessage)
PushResult PerformPush()
void UpdateProgress(int aCurrent, int aTotal, const wxString &aMessage) override
static wxString GetLastGitError()
void AddErrorString(const wxString aErrorString)
git_repository * GetRepo() const
Get a pointer to the git repository.
unsigned & TestedTypes()
Return the connection types that have been tested for authentication.
KIGIT_COMMON * GetCommon() const
Get the common object.
void ResetNextKey()
Reset the next public key to test.
#define _(s)
PushResult
const wxChar *const traceGit
Flag to enable Git debugging output.
int progress_cb(const char *str, int len, void *aPayload)
int update_cb(const char *aRefname, const git_oid *aFirst, const git_oid *aSecond, void *aPayload)
int transfer_progress_cb(const git_transfer_progress *aStats, void *aPayload)
int credentials_cb(git_cred **aOut, const char *aUrl, const char *aUsername, unsigned int aAllowedTypes, void *aPayload)
int push_transfer_progress_cb(unsigned int aCurrent, unsigned int aTotal, size_t aBytes, void *aPayload)
std::unique_ptr< git_reference, decltype([](git_reference *aRef) { git_reference_free(aRef) GitReferencePtr
A unique pointer for git_reference objects with automatic cleanup.
std::unique_ptr< git_remote, decltype([](git_remote *aRemote) { git_remote_free(aRemote) GitRemotePtr
A unique pointer for git_remote objects with automatic cleanup.
wxLogTrace helper definitions.