Make sure we also kill AsyncReadStdErrThread when we kill a thread
[TortoiseGit.git] / src / Git / Git.h
blob6a728173434a9050cb8596a0da63c379e56d2987
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2016 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #pragma once
21 #include "GitType.h"
22 #include "GitRev.h"
23 #include "GitStatus.h"
24 #include "GitAdminDir.h"
25 #include "gitdll.h"
26 #include <functional>
28 #define REG_MSYSGIT_PATH _T("Software\\TortoiseGit\\MSysGit")
29 #define REG_SYSTEM_GITCONFIGPATH _T("Software\\TortoiseGit\\SystemConfig")
30 #define REG_MSYSGIT_EXTRA_PATH _T("Software\\TortoiseGit\\MSysGitExtra")
32 #define DEFAULT_USE_LIBGIT2_MASK (1 << CGit::GIT_CMD_MERGE_BASE) | (1 << CGit::GIT_CMD_DELETETAGBRANCH) | (1 << CGit::GIT_CMD_GETONEFILE) | (1 << CGit::GIT_CMD_ADD) | (1 << CGit::GIT_CMD_CHECKCONFLICTS) | (1 << CGit::GIT_CMD_GET_COMMIT)
34 struct git_repository;
36 class CFilterData
38 public:
40 enum
42 SHOW_NO_LIMIT, // NOTE: no limitation does not mean "without all limitations", it's just without the following limitations. That say, the log still could be limited by auther, committer, etc.
43 SHOW_LAST_SEL_DATE,
44 SHOW_LAST_N_COMMITS,
45 SHOW_LAST_N_YEARS,
46 SHOW_LAST_N_MONTHS,
47 SHOW_LAST_N_WEEKS,
50 CFilterData()
52 m_From=m_To=-1;
53 m_IsRegex=1;
54 m_NumberOfLogsScale = SHOW_NO_LIMIT;
55 m_NumberOfLogs = 1;
58 DWORD m_NumberOfLogsScale;
59 DWORD m_NumberOfLogs;
60 __time64_t m_From;
61 __time64_t m_To;
62 CString m_Author;
63 CString m_Committer;
64 CString m_MessageFilter;
65 BOOL m_IsRegex;
68 class CGitCall
70 public:
71 CGitCall(){}
72 CGitCall(CString cmd):m_Cmd(cmd){}
73 virtual ~CGitCall() {}
75 CString GetCmd()const{return m_Cmd;}
76 void SetCmd(CString cmd){m_Cmd=cmd;}
78 //This function is called when command output data is available.
79 //When this function returns 'true' the git command should be aborted.
80 //This behavior is not implemented yet.
81 virtual bool OnOutputData(const BYTE* data, size_t size)=0;
82 virtual bool OnOutputErrData(const BYTE* data, size_t size)=0;
83 virtual void OnEnd(){}
85 private:
86 CString m_Cmd;
89 typedef std::function<void (const CStringA&)> GitReceiverFunc;
91 class CTGitPath;
92 class CEnvironment : protected std::vector<TCHAR>
94 public:
95 CEnvironment() : baseptr(nullptr) {}
96 CEnvironment(const CEnvironment& env) : std::vector<TCHAR>(env)
98 baseptr = &__super::at(0);
100 CEnvironment& operator =(const CEnvironment& env)
102 __super::operator=(env);
103 if (empty())
104 baseptr = nullptr;
105 else
106 baseptr = &__super::at(0);
107 return *this;
109 void CopyProcessEnvironment();
110 CString GetEnv(const TCHAR *name);
111 void SetEnv(const TCHAR* name, const TCHAR* value);
112 void AddToPath(CString value);
113 void clear();
114 bool empty();
115 operator LPTSTR();
116 operator LPWSTR*();
117 LPWSTR baseptr;
118 CEnvironment(CEnvironment&& env) = delete;
119 CEnvironment& operator =(CEnvironment&& env) = delete;
121 class CGit
123 private:
124 CString gitLastErr;
125 protected:
126 GIT_DIFF m_GitDiff;
127 GIT_DIFF m_GitSimpleListDiff;
128 #ifdef GTEST_INCLUDE_GTEST_GTEST_H_
129 public:
130 #endif
131 bool m_IsGitDllInited;
132 public:
133 CComCriticalSection m_critGitDllSec;
134 bool m_IsUseGitDLL;
135 bool m_IsUseLibGit2;
136 DWORD m_IsUseLibGit2_mask;
138 CEnvironment m_Environment;
140 static BOOL GitPathFileExists(const CString &path)
142 if(path[0] == _T('\\') && path[1] == _T('\\'))
143 //it is netshare \\server\sharefoldername
144 // \\server\.git will create smb error log.
146 int length = path.GetLength();
148 if(length<2)
149 return false;
151 int start = path.Find(_T('\\'),2);
152 if(start<0)
153 return false;
155 start = path.Find(_T('\\'),start+1);
156 if(start<0)
157 return false;
159 return PathFileExists(path);
162 else
163 return PathFileExists(path);
165 void CheckAndInitDll()
167 if(!m_IsGitDllInited)
169 git_init();
170 m_IsGitDllInited=true;
174 GIT_DIFF GetGitDiff()
176 if(m_GitDiff)
177 return m_GitDiff;
178 else
180 git_open_diff(&m_GitDiff,"-C -M -r");
181 return m_GitDiff;
185 GIT_DIFF GetGitSimpleListDiff()
187 if(m_GitSimpleListDiff)
188 return m_GitSimpleListDiff;
189 else
191 git_open_diff(&m_GitSimpleListDiff,"-r -r");
192 return m_GitSimpleListDiff;
196 BOOL CheckMsysGitDir(BOOL bFallback = TRUE);
197 BOOL FindAndSetGitExePath(BOOL bFallback);
198 BOOL m_bInitialized;
200 typedef enum
202 GIT_CMD_CLONE,
203 GIT_CMD_FETCH,
204 GIT_CMD_COMMIT_UPDATE_INDEX,
205 GIT_CMD_DIFF,
206 GIT_CMD_RESET,
207 GIT_CMD_REVERT,
208 GIT_CMD_MERGE_BASE,
209 GIT_CMD_DELETETAGBRANCH,
210 GIT_CMD_GETONEFILE,
211 GIT_CMD_ADD,
212 GIT_CMD_PUSH,
213 GIT_CMD_CHECK_CLEAN_WT,
214 GIT_CMD_CHECKCONFLICTS,
215 GIT_CMD_GET_COMMIT,
216 GIT_CMD_LOGLISTDIFF,
217 } LIBGIT2_CMD;
218 bool UsingLibGit2(LIBGIT2_CMD cmd) const;
220 * callback type should be git_cred_acquire_cb
222 static void SetGit2CredentialCallback(void* callback);
223 static void SetGit2CertificateCheckCertificate(void* callback);
225 CString GetHomeDirectory() const;
226 CString GetGitLocalConfig() const;
227 CString GetGitGlobalConfig() const;
228 CString GetGitGlobalXDGConfigPath() const;
229 CString GetGitGlobalXDGConfig() const;
230 CString GetGitSystemConfig() const;
231 CString GetGitProgramDataConfig() const;
232 CAutoRepository GetGitRepository() const;
233 static CStringA GetGitPathStringA(const CString &path);
234 static CString ms_LastMsysGitDir; // the last msysgitdir added to the path, blank if none
235 static CString ms_MsysGitRootDir;
236 static int ms_LastMsysGitVersion;
237 static bool ms_bCygwinGit;
238 static bool ms_bMsys2Git;
239 static int m_LogEncode;
240 static bool IsBranchNameValid(const CString& branchname);
241 bool IsBranchTagNameUnique(const CString& name);
243 * Checks if a branch or tag with the given name exists
244 *isBranch is true -> branch, tag otherwise
246 bool BranchTagExists(const CString& name, bool isBranch = true);
247 unsigned int Hash2int(const CGitHash &hash);
249 PROCESS_INFORMATION m_CurrentGitPi;
251 CGit(void);
252 ~CGit(void);
254 int Run(CString cmd, CString* output, int code);
255 int Run(CString cmd, CString* output, CString* outputErr, int code);
256 int Run(CString cmd, BYTE_VECTOR* byte_array, BYTE_VECTOR* byte_arrayErr = nullptr);
257 int Run(CGitCall* pcall);
258 int Run(CString cmd, const GitReceiverFunc& recv, CString* outputErr = nullptr);
260 private:
261 CComCriticalSection m_critSecThreadMap;
262 std::map<DWORD, HANDLE> m_AsyncReadStdErrThreadMap;
263 static DWORD WINAPI AsyncReadStdErrThread(LPVOID lpParam);
264 typedef struct AsyncReadStdErrThreadArguments
266 HANDLE fileHandle;
267 CGitCall* pcall;
268 } ASYNCREADSTDERRTHREADARGS, *PASYNCREADSTDERRTHREADARGS;
269 CString GetUnifiedDiffCmd(const CTGitPath& path, const git_revnum_t& rev1, const git_revnum_t& rev2, bool bMerge, bool bCombine, int diffContext, bool bNoPrefix = false);
271 public:
272 #ifdef _MFC_VER
273 void KillRelatedThreads(CWinThread* thread);
274 #endif
275 int RunAsync(CString cmd, PROCESS_INFORMATION* pi, HANDLE* hRead, HANDLE* hErrReadOut, CString* StdioFile = nullptr);
276 int RunLogFile(CString cmd, const CString &filename, CString *stdErr);
278 int GetDiffPath(CTGitPathList* PathList, CGitHash* hash1, CGitHash* hash2, char* arg = nullptr);
280 int GetGitEncode(TCHAR* configkey);
282 bool IsFastForward(const CString& from, const CString& to, CGitHash* commonAncestor = nullptr);
283 CString GetConfigValue(const CString& name, const CString& def = CString(), bool wantBool = false);
284 bool GetConfigValueBool(const CString& name, const bool def = false);
285 int GetConfigValueInt32(const CString& name, const int def = 0);
287 int SetConfigValue(const CString& key, const CString& value, CONFIG_TYPE type = CONFIG_LOCAL);
288 int UnsetConfigValue(const CString& key, CONFIG_TYPE type = CONFIG_LOCAL);
290 CString GetUserName(void);
291 CString GetUserEmail(void);
292 CString GetCurrentBranch(bool fallback = false);
293 void GetRemoteTrackedBranch(const CString& localBranch, CString& remote, CString& branch);
294 void GetRemoteTrackedBranchForHEAD(CString& remote, CString& branch);
295 void GetRemotePushBranch(const CString& localBranch, CString& pushRemote, CString& pushBranch);
296 // read current branch name from HEAD file, returns 0 on success, -1 on failure, 1 detached (branch name "HEAD" returned)
297 static int GetCurrentBranchFromFile(const CString &sProjectRoot, CString &sBranchOut, bool fallback = false);
299 Use this method only when the HEAD is exist.
301 BOOL CheckCleanWorkTree(bool stagedOk = false);
302 int Revert(const CString& commit, const CTGitPathList &list, CString& err);
303 int Revert(const CString& commit, const CTGitPath &path, CString& err);
304 int DeleteRef(const CString& reference);
306 Use this method only if m_IsUseLibGit2 is used for fallbacks.
307 If you directly use libgit2 methods, use GetLibGit2LastErr instead.
309 CString GetGitLastErr(const CString& msg);
310 CString GetGitLastErr(const CString& msg, LIBGIT2_CMD cmd);
311 static CString GetLibGit2LastErr();
312 static CString GetLibGit2LastErr(const CString& msg);
313 bool SetCurrentDir(CString path, bool submodule = false)
315 bool b = GitAdminDir::HasAdminDir(path, submodule ? false : !!PathIsDirectory(path), &m_CurrentDir);
316 if (!b && GitAdminDir::IsBareRepo(path))
318 m_CurrentDir = path;
319 b = true;
321 if(m_CurrentDir.GetLength() == 2 && m_CurrentDir[1] == _T(':')) //C: D:
322 m_CurrentDir += _T('\\');
323 return b;
325 CString m_CurrentDir;
327 enum
329 LOG_ORDER_CHRONOLOGIALREVERSED,
330 LOG_ORDER_TOPOORDER,
331 LOG_ORDER_DATEORDER,
334 typedef enum
336 BRANCH_LOCAL = 0x1,
337 BRANCH_REMOTE = 0x2,
338 BRANCH_FETCH_HEAD = 0x4,
339 BRANCH_LOCAL_F = BRANCH_LOCAL | BRANCH_FETCH_HEAD,
340 BRANCH_ALL = BRANCH_LOCAL | BRANCH_REMOTE,
341 BRANCH_ALL_F = BRANCH_ALL | BRANCH_FETCH_HEAD,
342 }BRANCH_TYPE;
344 typedef enum
346 LOG_INFO_STAT=0x1,
347 LOG_INFO_FILESTATE=0x2,
348 LOG_INFO_PATCH=0x4,
349 LOG_INFO_FULLHISTORY=0x8,
350 LOG_INFO_BOUNDARY=0x10,
351 LOG_INFO_ALL_BRANCH=0x20,
352 LOG_INFO_ONLY_HASH=0x40,
353 LOG_INFO_DETECT_RENAME=0x80,
354 LOG_INFO_DETECT_COPYRENAME=0x100,
355 LOG_INFO_FIRST_PARENT = 0x200,
356 LOG_INFO_NO_MERGE = 0x400,
357 LOG_INFO_FOLLOW = 0x800,
358 LOG_INFO_SHOW_MERGEDFILE=0x1000,
359 LOG_INFO_FULL_DIFF = 0x2000,
360 LOG_INFO_SIMPILFY_BY_DECORATION = 0x4000,
361 LOG_INFO_LOCAL_BRANCHES = 0x8000,
362 LOG_INFO_BASIC_REFS = 0x10000,
363 }LOG_INFO_MASK;
365 typedef enum
367 LOCAL_BRANCH,
368 REMOTE_BRANCH,
369 ANNOTATED_TAG,
370 TAG,
371 STASH,
372 BISECT_GOOD,
373 BISECT_BAD,
374 NOTES,
375 UNKNOWN,
377 }REF_TYPE;
379 int GetRemoteList(STRING_VECTOR &list);
380 int GetBranchList(STRING_VECTOR &list, int *Current,BRANCH_TYPE type=BRANCH_LOCAL);
381 int GetTagList(STRING_VECTOR &list);
382 int GetRemoteTags(const CString& remote, STRING_VECTOR& list);
383 int DeleteRemoteRefs(const CString& remote, const STRING_VECTOR& list);
384 int GetBranchDescriptions(MAP_STRING_STRING& map);
385 int GetMapHashToFriendName(MAP_HASH_NAME &map);
386 static int GetMapHashToFriendName(git_repository* repo, MAP_HASH_NAME &map);
388 CString DerefFetchHead();
390 // FixBranchName():
391 // When branchName == FETCH_HEAD, derefrence it.
392 // A selected branch name got from GetBranchList(), with flag BRANCH_FETCH_HEAD enabled,
393 // should go through this function before it is used.
394 CString FixBranchName_Mod(CString& branchName);
395 CString FixBranchName(const CString& branchName);
397 CString GetLogCmd(const CString& range, const CTGitPath* path, int InfoMask, CFilterData* filter, int logOrderBy);
399 int GetHash(CGitHash &hash, const CString& friendname);
400 static int GetHash(git_repository * repo, CGitHash &hash, const CString& friendname, bool skipFastCheck = false);
402 int BuildOutputFormat(CString &format,bool IsFull=TRUE);
403 static void StringAppend(CString *str, const BYTE *p, int code = CP_UTF8, int length = -1);
405 BOOL CanParseRev(CString ref);
407 Checks if HEAD points to an unborn branch
408 This method assumes, that we already know that we are in a working tree.
410 BOOL IsInitRepos();
411 /** Returns 0 if no conflict, if a conflict was found and -1 in case of a failure */
412 int HasWorkingTreeConflicts();
413 /** Returns 0 if no conflict, if a conflict was found and -1 in case of a failure */
414 int HasWorkingTreeConflicts(git_repository* repo);
415 int IsRebaseRunning();
416 void GetBisectTerms(CString* good, CString* bad);
417 int GetRefList(STRING_VECTOR &list);
419 int RefreshGitIndex();
420 int GetOneFile(const CString &Refname, const CTGitPath &path, const CString &outputfile);
422 //Example: master -> refs/heads/master
423 CString GetFullRefName(const CString& shortRefName);
424 //Removes 'refs/heads/' or just 'refs'. Example: refs/heads/master -> master
425 static CString StripRefName(CString refName);
427 int GetCommitDiffList(const CString &rev1, const CString &rev2, CTGitPathList &outpathlist, bool ignoreSpaceAtEol = false, bool ignoreSpaceChange = false, bool ignoreAllSpace = false, bool ignoreBlankLines = false);
428 int GetInitAddList(CTGitPathList &outpathlist);
429 int GetWorkingTreeChanges(CTGitPathList& result, bool amend = false, CTGitPathList* filterlist = nullptr);
431 static __int64 filetime_to_time_t(const FILETIME *ft)
433 long long winTime = ((long long)ft->dwHighDateTime << 32) + ft->dwLowDateTime;
434 winTime -= 116444736000000000LL; /* Windows to Unix Epoch conversion */
435 winTime /= 10000000; /* Nano to seconds resolution */
436 return (time_t)winTime;
439 static int GetFileModifyTime(LPCTSTR filename, __int64* time, bool* isDir = nullptr, __int64* size = nullptr)
441 WIN32_FILE_ATTRIBUTE_DATA fdata;
442 if (GetFileAttributesEx(filename, GetFileExInfoStandard, &fdata))
444 if(time)
445 *time = filetime_to_time_t(&fdata.ftLastWriteTime);
447 if (size)
448 *size = ((__int64)fdata.nFileSizeHigh << 32) + fdata.nFileSizeLow;
450 if(isDir)
451 *isDir = !!( fdata.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
453 return 0;
455 return -1;
458 int GetShortHASHLength() const;
460 static BOOL GetShortName(const CString& ref, CString& shortname, const CString& prefix)
462 //TRACE(_T("%s %s\r\n"),ref,prefix);
463 if (ref.Left(prefix.GetLength()) == prefix)
465 shortname = ref.Right(ref.GetLength() - prefix.GetLength());
466 if (shortname.Right(3) == _T("^{}"))
467 shortname=shortname.Left(shortname.GetLength() - 3);
468 return TRUE;
470 return FALSE;
473 static CString GetShortName(const CString& ref, REF_TYPE *type);
475 static bool LoadTextFile(const CString &filename, CString &msg);
477 int GetUnifiedDiff(const CTGitPath& path, const git_revnum_t& rev1, const git_revnum_t& rev2, CString patchfile, bool bMerge, bool bCombine, int diffContext, bool bNoPrefix = false);
478 int GetUnifiedDiff(const CTGitPath& path, const git_revnum_t& rev1, const git_revnum_t& rev2, CStringA * buffer, bool bMerge, bool bCombine, int diffContext);
480 int GitRevert(int parent, const CGitHash &hash);
482 int GetGitVersion(CString* versiondebug, CString* errStr);
484 CString CombinePath(const CString &path) const
486 if (path.IsEmpty())
487 return m_CurrentDir;
488 if (m_CurrentDir.IsEmpty())
489 return path;
490 return m_CurrentDir + (m_CurrentDir.Right(1) == _T("\\") ? _T("") : _T("\\")) + path;
493 CString CombinePath(const CTGitPath &path) const
495 return CombinePath(path.GetWinPath());
498 CString CombinePath(const CTGitPath *path) const
500 ATLASSERT(path);
501 return CombinePath(path->GetWinPath());
504 extern void GetTempPath(CString &path);
505 extern CString GetTempFile();
506 extern DWORD GetTortoiseGitTempPath(DWORD nBufferLength, LPTSTR lpBuffer);
508 extern CGit g_Git;