Optimize URL detection
[TortoiseGit.git] / src / TortoiseProc / AppUtils.cpp
blob4302c2f1fe8a68e20e7388ed2ffcdde50d5941fb
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2015 - TortoiseGit
4 // Copyright (C) 2003-2011, 2013-2014 - TortoiseSVN
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 2
9 // of the License, or (at your option) any later version.
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.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "stdafx.h"
21 #include "TortoiseProc.h"
22 #include "PathUtils.h"
23 #include "AppUtils.h"
24 #include "StringUtils.h"
25 #include "MessageBox.h"
26 #include "registry.h"
27 #include "TGitPath.h"
28 #include "Git.h"
29 #include "UnicodeUtils.h"
30 #include "ExportDlg.h"
31 #include "ProgressDlg.h"
32 #include "GitAdminDir.h"
33 #include "ProgressDlg.h"
34 #include "BrowseFolder.h"
35 #include "DirFileEnum.h"
36 #include "MessageBox.h"
37 #include "GitStatus.h"
38 #include "CreateBranchTagDlg.h"
39 #include "GitSwitchDlg.h"
40 #include "ResetDlg.h"
41 #include "DeleteConflictDlg.h"
42 #include "ChangedDlg.h"
43 #include "SendMailDlg.h"
44 #include "GitProgressDlg.h"
45 #include "PushDlg.h"
46 #include "CommitDlg.h"
47 #include "MergeDlg.h"
48 #include "MergeAbortDlg.h"
49 #include "Hooks.h"
50 #include "..\Settings\Settings.h"
51 #include "InputDlg.h"
52 #include "SVNDCommitDlg.h"
53 #include "requestpulldlg.h"
54 #include "PullFetchDlg.h"
55 #include "FileDiffDlg.h"
56 #include "RebaseDlg.h"
57 #include "PropKey.h"
58 #include "StashSave.h"
59 #include "IgnoreDlg.h"
60 #include "FormatMessageWrapper.h"
61 #include "SmartHandle.h"
62 #include "BisectStartDlg.h"
63 #include "SysProgressDlg.h"
64 #include "UserPassword.h"
65 #include "Patch.h"
66 #include "Globals.h"
67 #include "ProgressCommands/ResetProgressCommand.h"
68 #include "ProgressCommands/FetchProgressCommand.h"
69 #include "ProgressCommands/SendMailProgressCommand.h"
70 #include "CertificateValidationHelper.h"
71 #include "CheckCertificateDlg.h"
72 #include "SubmoduleResolveConflictDlg.h"
73 #include "GitDiff.h"
74 #include "../TGitCache/CacheInterface.h"
76 static struct last_accepted_cert {
77 BYTE* data;
78 size_t len;
80 last_accepted_cert()
81 : data(nullptr)
82 , len(0)
85 ~last_accepted_cert()
87 free(data);
89 boolean cmp(git_cert_x509* cert)
91 return len > 0 && len == cert->len && memcmp(data, cert->data, len) == 0;
93 void set(git_cert_x509* cert)
95 free(data);
96 len = cert->len;
97 if (len == 0)
99 data = nullptr;
100 return;
102 data = new BYTE[len];
103 memcpy(data, cert->data, len);
105 } last_accepted_cert;
107 static bool DoFetch(const CString& url, const bool fetchAllRemotes, const bool loadPuttyAgent, const int prune, const bool bDepth, const int nDepth, const int fetchTags, const CString& remoteBranch, boolean runRebase);
109 CAppUtils::CAppUtils(void)
113 CAppUtils::~CAppUtils(void)
117 bool CAppUtils::StashSave(const CString& msg, bool showPull, bool pullShowPush, bool showMerge, const CString& mergeRev)
119 CStashSaveDlg dlg;
120 dlg.m_sMessage = msg;
121 if (dlg.DoModal() == IDOK)
123 CString cmd;
124 cmd = _T("git.exe stash save");
126 if (CAppUtils::GetMsysgitVersion() >= 0x01070700)
128 if (dlg.m_bIncludeUntracked)
129 cmd += _T(" --include-untracked");
130 else if (dlg.m_bAll)
131 cmd += _T(" --all");
134 if (!dlg.m_sMessage.IsEmpty())
136 CString message = dlg.m_sMessage;
137 message.Replace(_T("\""), _T("\"\""));
138 cmd += _T(" -- \"") + message + _T("\"");
141 CProgressDlg progress;
142 progress.m_GitCmd = cmd;
143 progress.m_PostCmdCallback = [&](DWORD status, PostCmdList& postCmdList)
145 if (status)
146 return;
148 if (showPull)
149 postCmdList.push_back(PostCmd(IDI_PULL, IDS_MENUPULL, [&]{ CAppUtils::Pull(pullShowPush, true); }));
150 if (showMerge)
151 postCmdList.push_back(PostCmd(IDI_MERGE, IDS_MENUMERGE, [&]{ CAppUtils::Merge(&mergeRev, true); }));
153 return (progress.DoModal() == IDOK);
155 return false;
158 bool CAppUtils::StashApply(CString ref, bool showChanges /* true */)
160 CString cmd,out;
161 cmd = _T("git.exe stash apply ");
162 if (ref.Find(_T("refs/")) == 0)
163 ref = ref.Mid(5);
164 if (ref.Find(_T("stash{")) == 0)
165 ref = _T("stash@") + ref.Mid(5);
166 cmd += ref;
168 CSysProgressDlg sysProgressDlg;
169 sysProgressDlg.SetTitle(CString(MAKEINTRESOURCE(IDS_APPNAME)));
170 sysProgressDlg.SetLine(1, CString(MAKEINTRESOURCE(IDS_PROC_STASHRUNNING)));
171 sysProgressDlg.SetLine(2, CString(MAKEINTRESOURCE(IDS_PROGRESSWAIT)));
172 sysProgressDlg.SetShowProgressBar(false);
173 sysProgressDlg.SetCancelMsg(IDS_PROGRS_INFOFAILED);
174 sysProgressDlg.ShowModeless((HWND)NULL, true);
176 int ret = g_Git.Run(cmd, &out, CP_UTF8);
178 sysProgressDlg.Stop();
180 bool hasConflicts = (out.Find(_T("CONFLICT")) >= 0);
181 if (ret && !(ret == 1 && hasConflicts))
183 CMessageBox::Show(NULL, CString(MAKEINTRESOURCE(IDS_PROC_STASHAPPLYFAILED)) + _T("\n") + out, _T("TortoiseGit"), MB_OK | MB_ICONERROR);
185 else
187 CString message;
188 message.LoadString(IDS_PROC_STASHAPPLYSUCCESS);
189 if (hasConflicts)
190 message.LoadString(IDS_PROC_STASHAPPLYFAILEDCONFLICTS);
191 if (showChanges)
193 if(CMessageBox::Show(NULL,message + _T("\n") + CString(MAKEINTRESOURCE(IDS_SEECHANGES))
194 ,_T("TortoiseGit"),MB_YESNO|MB_ICONINFORMATION) == IDYES)
196 CChangedDlg dlg;
197 dlg.m_pathList.AddPath(CTGitPath());
198 dlg.DoModal();
200 return true;
202 else
204 CMessageBox::Show(NULL, message ,_T("TortoiseGit"), MB_OK | MB_ICONINFORMATION);
205 return true;
208 return false;
211 bool CAppUtils::StashPop(bool showChanges /* true */)
213 CString cmd,out;
214 cmd=_T("git.exe stash pop ");
216 CSysProgressDlg sysProgressDlg;
217 sysProgressDlg.SetTitle(CString(MAKEINTRESOURCE(IDS_APPNAME)));
218 sysProgressDlg.SetLine(1, CString(MAKEINTRESOURCE(IDS_PROC_STASHRUNNING)));
219 sysProgressDlg.SetLine(2, CString(MAKEINTRESOURCE(IDS_PROGRESSWAIT)));
220 sysProgressDlg.SetShowProgressBar(false);
221 sysProgressDlg.SetCancelMsg(IDS_PROGRS_INFOFAILED);
222 sysProgressDlg.ShowModeless((HWND)NULL, true);
224 int ret = g_Git.Run(cmd, &out, CP_UTF8);
226 sysProgressDlg.Stop();
228 bool hasConflicts = (out.Find(_T("CONFLICT")) >= 0);
229 if (ret && !(ret == 1 && hasConflicts))
231 CMessageBox::Show(NULL,CString(MAKEINTRESOURCE(IDS_PROC_STASHPOPFAILED)) + _T("\n") + out, _T("TortoiseGit"), MB_OK | MB_ICONERROR);
233 else
235 CString message;
236 message.LoadString(IDS_PROC_STASHPOPSUCCESS);
237 if (hasConflicts)
238 message.LoadString(IDS_PROC_STASHPOPFAILEDCONFLICTS);
239 if (showChanges)
241 if(CMessageBox::Show(NULL,CString(message + _T("\n") + CString(MAKEINTRESOURCE(IDS_SEECHANGES)))
242 ,_T("TortoiseGit"),MB_YESNO|MB_ICONINFORMATION) == IDYES)
244 CChangedDlg dlg;
245 dlg.m_pathList.AddPath(CTGitPath());
246 dlg.DoModal();
248 return true;
250 else
252 CMessageBox::Show(NULL, message ,_T("TortoiseGit"), MB_OK | MB_ICONINFORMATION);
253 return true;
256 return false;
259 BOOL CAppUtils::StartExtMerge(
260 const CTGitPath& basefile, const CTGitPath& theirfile, const CTGitPath& yourfile, const CTGitPath& mergedfile,
261 const CString& basename, const CString& theirname, const CString& yourname, const CString& mergedname, bool bReadOnly,
262 HWND resolveMsgHwnd, bool bDeleteBaseTheirsMineOnClose)
265 CRegString regCom = CRegString(_T("Software\\TortoiseGit\\Merge"));
266 CString ext = mergedfile.GetFileExtension();
267 CString com = regCom;
268 bool bInternal = false;
270 if (!ext.IsEmpty())
272 // is there an extension specific merge tool?
273 CRegString mergetool(_T("Software\\TortoiseGit\\MergeTools\\") + ext.MakeLower());
274 if (!CString(mergetool).IsEmpty())
276 com = mergetool;
279 // is there a filename specific merge tool?
280 CRegString mergetool(_T("Software\\TortoiseGit\\MergeTools\\.") + mergedfile.GetFilename().MakeLower());
281 if (!CString(mergetool).IsEmpty())
283 com = mergetool;
286 if (com.IsEmpty()||(com.Left(1).Compare(_T("#"))==0))
288 // Maybe we should use TortoiseIDiff?
289 if ((ext == _T(".jpg")) || (ext == _T(".jpeg")) ||
290 (ext == _T(".bmp")) || (ext == _T(".gif")) ||
291 (ext == _T(".png")) || (ext == _T(".ico")) ||
292 (ext == _T(".tif")) || (ext == _T(".tiff")) ||
293 (ext == _T(".dib")) || (ext == _T(".emf")) ||
294 (ext == _T(".cur")))
296 com = CPathUtils::GetAppDirectory() + _T("TortoiseGitIDiff.exe");
297 com = _T("\"") + com + _T("\"");
298 com = com + _T(" /base:%base /theirs:%theirs /mine:%mine /result:%merged");
299 com = com + _T(" /basetitle:%bname /theirstitle:%tname /minetitle:%yname");
301 else
303 // use TortoiseGitMerge
304 bInternal = true;
305 com = CPathUtils::GetAppDirectory() + _T("TortoiseGitMerge.exe");
306 com = _T("\"") + com + _T("\"");
307 com = com + _T(" /base:%base /theirs:%theirs /mine:%mine /merged:%merged");
308 com = com + _T(" /basename:%bname /theirsname:%tname /minename:%yname /mergedname:%mname");
309 com += _T(" /saverequired");
310 if (resolveMsgHwnd)
312 CString s;
313 s.Format(L" /resolvemsghwnd:%I64d", (__int64)resolveMsgHwnd);
314 com += s;
316 if (bDeleteBaseTheirsMineOnClose)
317 com += _T(" /deletebasetheirsmineonclose");
319 if (!g_sGroupingUUID.IsEmpty())
321 com += L" /groupuuid:\"";
322 com += g_sGroupingUUID;
323 com += L"\"";
326 // check if the params are set. If not, just add the files to the command line
327 if ((com.Find(_T("%merged"))<0)&&(com.Find(_T("%base"))<0)&&(com.Find(_T("%theirs"))<0)&&(com.Find(_T("%mine"))<0))
329 com += _T(" \"")+basefile.GetWinPathString()+_T("\"");
330 com += _T(" \"")+theirfile.GetWinPathString()+_T("\"");
331 com += _T(" \"")+yourfile.GetWinPathString()+_T("\"");
332 com += _T(" \"")+mergedfile.GetWinPathString()+_T("\"");
334 if (basefile.IsEmpty())
336 com.Replace(_T("/base:%base"), _T(""));
337 com.Replace(_T("%base"), _T(""));
339 else
340 com.Replace(_T("%base"), _T("\"") + basefile.GetWinPathString() + _T("\""));
341 if (theirfile.IsEmpty())
343 com.Replace(_T("/theirs:%theirs"), _T(""));
344 com.Replace(_T("%theirs"), _T(""));
346 else
347 com.Replace(_T("%theirs"), _T("\"") + theirfile.GetWinPathString() + _T("\""));
348 if (yourfile.IsEmpty())
350 com.Replace(_T("/mine:%mine"), _T(""));
351 com.Replace(_T("%mine"), _T(""));
353 else
354 com.Replace(_T("%mine"), _T("\"") + yourfile.GetWinPathString() + _T("\""));
355 if (mergedfile.IsEmpty())
357 com.Replace(_T("/merged:%merged"), _T(""));
358 com.Replace(_T("%merged"), _T(""));
360 else
361 com.Replace(_T("%merged"), _T("\"") + mergedfile.GetWinPathString() + _T("\""));
362 if (basename.IsEmpty())
364 if (basefile.IsEmpty())
366 com.Replace(_T("/basename:%bname"), _T(""));
367 com.Replace(_T("%bname"), _T(""));
369 else
371 com.Replace(_T("%bname"), _T("\"") + basefile.GetUIFileOrDirectoryName() + _T("\""));
374 else
375 com.Replace(_T("%bname"), _T("\"") + basename + _T("\""));
376 if (theirname.IsEmpty())
378 if (theirfile.IsEmpty())
380 com.Replace(_T("/theirsname:%tname"), _T(""));
381 com.Replace(_T("%tname"), _T(""));
383 else
385 com.Replace(_T("%tname"), _T("\"") + theirfile.GetUIFileOrDirectoryName() + _T("\""));
388 else
389 com.Replace(_T("%tname"), _T("\"") + theirname + _T("\""));
390 if (yourname.IsEmpty())
392 if (yourfile.IsEmpty())
394 com.Replace(_T("/minename:%yname"), _T(""));
395 com.Replace(_T("%yname"), _T(""));
397 else
399 com.Replace(_T("%yname"), _T("\"") + yourfile.GetUIFileOrDirectoryName() + _T("\""));
402 else
403 com.Replace(_T("%yname"), _T("\"") + yourname + _T("\""));
404 if (mergedname.IsEmpty())
406 if (mergedfile.IsEmpty())
408 com.Replace(_T("/mergedname:%mname"), _T(""));
409 com.Replace(_T("%mname"), _T(""));
411 else
413 com.Replace(_T("%mname"), _T("\"") + mergedfile.GetUIFileOrDirectoryName() + _T("\""));
416 else
417 com.Replace(_T("%mname"), _T("\"") + mergedname + _T("\""));
419 if ((bReadOnly)&&(bInternal))
420 com += _T(" /readonly");
422 if(!LaunchApplication(com, IDS_ERR_EXTMERGESTART, false))
424 return FALSE;
427 return TRUE;
430 BOOL CAppUtils::StartExtPatch(const CTGitPath& patchfile, const CTGitPath& dir, const CString& sOriginalDescription, const CString& sPatchedDescription, BOOL bReversed, BOOL bWait)
432 CString viewer;
433 // use TortoiseGitMerge
434 viewer = CPathUtils::GetAppDirectory();
435 viewer += _T("TortoiseGitMerge.exe");
437 viewer = _T("\"") + viewer + _T("\"");
438 viewer = viewer + _T(" /diff:\"") + patchfile.GetWinPathString() + _T("\"");
439 viewer = viewer + _T(" /patchpath:\"") + dir.GetWinPathString() + _T("\"");
440 if (bReversed)
441 viewer += _T(" /reversedpatch");
442 if (!sOriginalDescription.IsEmpty())
443 viewer = viewer + _T(" /patchoriginal:\"") + sOriginalDescription + _T("\"");
444 if (!sPatchedDescription.IsEmpty())
445 viewer = viewer + _T(" /patchpatched:\"") + sPatchedDescription + _T("\"");
446 if (!g_sGroupingUUID.IsEmpty())
448 viewer += L" /groupuuid:\"";
449 viewer += g_sGroupingUUID;
450 viewer += L"\"";
452 if(!LaunchApplication(viewer, IDS_ERR_DIFFVIEWSTART, !!bWait))
454 return FALSE;
456 return TRUE;
459 CString CAppUtils::PickDiffTool(const CTGitPath& file1, const CTGitPath& file2)
461 CString difftool = CRegString(_T("Software\\TortoiseGit\\DiffTools\\.") + file2.GetFilename().MakeLower());
462 if (!difftool.IsEmpty())
463 return difftool;
464 difftool = CRegString(_T("Software\\TortoiseGit\\DiffTools\\.") + file1.GetFilename().MakeLower());
465 if (!difftool.IsEmpty())
466 return difftool;
468 // Is there an extension specific diff tool?
469 CString ext = file2.GetFileExtension().MakeLower();
470 if (!ext.IsEmpty())
472 difftool = CRegString(_T("Software\\TortoiseGit\\DiffTools\\") + ext);
473 if (!difftool.IsEmpty())
474 return difftool;
475 // Maybe we should use TortoiseIDiff?
476 if ((ext == _T(".jpg")) || (ext == _T(".jpeg")) ||
477 (ext == _T(".bmp")) || (ext == _T(".gif")) ||
478 (ext == _T(".png")) || (ext == _T(".ico")) ||
479 (ext == _T(".tif")) || (ext == _T(".tiff")) ||
480 (ext == _T(".dib")) || (ext == _T(".emf")) ||
481 (ext == _T(".cur")))
483 return
484 _T("\"") + CPathUtils::GetAppDirectory() + _T("TortoiseGitIDiff.exe") + _T("\"") +
485 _T(" /left:%base /right:%mine /lefttitle:%bname /righttitle:%yname") +
486 L" /groupuuid:\"" + g_sGroupingUUID + L"\"";
490 // Finally, pick a generic external diff tool
491 difftool = CRegString(_T("Software\\TortoiseGit\\Diff"));
492 return difftool;
495 bool CAppUtils::StartExtDiff(
496 const CString& file1, const CString& file2,
497 const CString& sName1, const CString& sName2,
498 const CString& originalFile1, const CString& originalFile2,
499 const git_revnum_t& hash1, const git_revnum_t& hash2,
500 const DiffFlags& flags, int jumpToLine)
502 CString viewer;
504 CRegDWORD blamediff(_T("Software\\TortoiseGit\\DiffBlamesWithTortoiseMerge"), FALSE);
505 if (!flags.bBlame || !(DWORD)blamediff)
507 viewer = PickDiffTool(file1, file2);
508 // If registry entry for a diff program is commented out, use TortoiseGitMerge.
509 bool bCommentedOut = viewer.Left(1) == _T("#");
510 if (flags.bAlternativeTool)
512 // Invert external vs. internal diff tool selection.
513 if (bCommentedOut)
514 viewer.Delete(0); // uncomment
515 else
516 viewer = "";
518 else if (bCommentedOut)
519 viewer = "";
522 bool bInternal = viewer.IsEmpty();
523 if (bInternal)
525 viewer =
526 _T("\"") + CPathUtils::GetAppDirectory() + _T("TortoiseGitMerge.exe") + _T("\"") +
527 _T(" /base:%base /mine:%mine /basename:%bname /minename:%yname") +
528 _T(" /basereflectedname:%bpath /minereflectedname:%ypath");
529 if (!g_sGroupingUUID.IsEmpty())
531 viewer += L" /groupuuid:\"";
532 viewer += g_sGroupingUUID;
533 viewer += L"\"";
535 if (flags.bBlame)
536 viewer += _T(" /blame");
538 // check if the params are set. If not, just add the files to the command line
539 if ((viewer.Find(_T("%base"))<0)&&(viewer.Find(_T("%mine"))<0))
541 viewer += _T(" \"")+file1+_T("\"");
542 viewer += _T(" \"")+file2+_T("\"");
544 if (viewer.Find(_T("%base")) >= 0)
546 viewer.Replace(_T("%base"), _T("\"")+file1+_T("\""));
548 if (viewer.Find(_T("%mine")) >= 0)
550 viewer.Replace(_T("%mine"), _T("\"")+file2+_T("\""));
553 if (sName1.IsEmpty())
554 viewer.Replace(_T("%bname"), _T("\"") + file1 + _T("\""));
555 else
556 viewer.Replace(_T("%bname"), _T("\"") + sName1 + _T("\""));
558 if (sName2.IsEmpty())
559 viewer.Replace(_T("%yname"), _T("\"") + file2 + _T("\""));
560 else
561 viewer.Replace(_T("%yname"), _T("\"") + sName2 + _T("\""));
563 viewer.Replace(_T("%bpath"), _T("\"") + originalFile1 + _T("\""));
564 viewer.Replace(_T("%ypath"), _T("\"") + originalFile2 + _T("\""));
566 viewer.Replace(_T("%brev"), _T("\"") + hash1 + _T("\""));
567 viewer.Replace(_T("%yrev"), _T("\"") + hash2 + _T("\""));
569 if (flags.bReadOnly && bInternal)
570 viewer += _T(" /readonly");
572 if (jumpToLine > 0)
574 CString temp;
575 temp.Format(_T(" /line:%d"), jumpToLine);
576 viewer += temp;
579 return LaunchApplication(viewer, IDS_ERR_EXTDIFFSTART, flags.bWait);
582 BOOL CAppUtils::StartUnifiedDiffViewer(const CString& patchfile, const CString& title, BOOL bWait)
584 CString viewer;
585 CRegString v = CRegString(_T("Software\\TortoiseGit\\DiffViewer"));
586 viewer = v;
587 if (viewer.IsEmpty() || (viewer.Left(1).Compare(_T("#"))==0))
589 // use TortoiseGitUDiff
590 viewer = CPathUtils::GetAppDirectory();
591 viewer += _T("TortoiseGitUDiff.exe");
592 // enquote the path to TortoiseGitUDiff
593 viewer = _T("\"") + viewer + _T("\"");
594 // add the params
595 viewer = viewer + _T(" /patchfile:%1 /title:\"%title\"");
596 if (!g_sGroupingUUID.IsEmpty())
598 viewer += L" /groupuuid:\"";
599 viewer += g_sGroupingUUID;
600 viewer += L"\"";
603 if (viewer.Find(_T("%1"))>=0)
605 if (viewer.Find(_T("\"%1\"")) >= 0)
606 viewer.Replace(_T("%1"), patchfile);
607 else
608 viewer.Replace(_T("%1"), _T("\"") + patchfile + _T("\""));
610 else
611 viewer += _T(" \"") + patchfile + _T("\"");
612 if (viewer.Find(_T("%title")) >= 0)
614 viewer.Replace(_T("%title"), title);
617 if(!LaunchApplication(viewer, IDS_ERR_DIFFVIEWSTART, !!bWait))
619 return FALSE;
621 return TRUE;
624 BOOL CAppUtils::StartTextViewer(CString file)
626 CString viewer;
627 CRegString txt = CRegString(_T(".txt\\"), _T(""), FALSE, HKEY_CLASSES_ROOT);
628 viewer = txt;
629 viewer = viewer + _T("\\Shell\\Open\\Command\\");
630 CRegString txtexe = CRegString(viewer, _T(""), FALSE, HKEY_CLASSES_ROOT);
631 viewer = txtexe;
633 DWORD len = ExpandEnvironmentStrings(viewer, NULL, 0);
634 std::unique_ptr<TCHAR[]> buf(new TCHAR[len + 1]);
635 ExpandEnvironmentStrings(viewer, buf.get(), len);
636 viewer = buf.get();
637 len = ExpandEnvironmentStrings(file, NULL, 0);
638 std::unique_ptr<TCHAR[]> buf2(new TCHAR[len + 1]);
639 ExpandEnvironmentStrings(file, buf2.get(), len);
640 file = buf2.get();
641 file = _T("\"")+file+_T("\"");
642 if (viewer.IsEmpty())
644 return CAppUtils::ShowOpenWithDialog(file) ? TRUE : FALSE;
646 if (viewer.Find(_T("\"%1\"")) >= 0)
648 viewer.Replace(_T("\"%1\""), file);
650 else if (viewer.Find(_T("%1")) >= 0)
652 viewer.Replace(_T("%1"), file);
654 else
656 viewer += _T(" ");
657 viewer += file;
660 if(!LaunchApplication(viewer, IDS_ERR_TEXTVIEWSTART, false))
662 return FALSE;
664 return TRUE;
667 BOOL CAppUtils::CheckForEmptyDiff(const CTGitPath& sDiffPath)
669 DWORD length = 0;
670 CAutoFile hFile = ::CreateFile(sDiffPath.GetWinPath(), GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, NULL, NULL);
671 if (!hFile)
672 return TRUE;
673 length = ::GetFileSize(hFile, NULL);
674 if (length < 4)
675 return TRUE;
676 return FALSE;
680 void CAppUtils::CreateFontForLogs(CFont& fontToCreate)
682 LOGFONT logFont;
683 HDC hScreenDC = ::GetDC(NULL);
684 logFont.lfHeight = -MulDiv((DWORD)CRegDWORD(_T("Software\\TortoiseGit\\LogFontSize"), 8), GetDeviceCaps(hScreenDC, LOGPIXELSY), 72);
685 ::ReleaseDC(NULL, hScreenDC);
686 logFont.lfWidth = 0;
687 logFont.lfEscapement = 0;
688 logFont.lfOrientation = 0;
689 logFont.lfWeight = FW_NORMAL;
690 logFont.lfItalic = 0;
691 logFont.lfUnderline = 0;
692 logFont.lfStrikeOut = 0;
693 logFont.lfCharSet = DEFAULT_CHARSET;
694 logFont.lfOutPrecision = OUT_DEFAULT_PRECIS;
695 logFont.lfClipPrecision = CLIP_DEFAULT_PRECIS;
696 logFont.lfQuality = DRAFT_QUALITY;
697 logFont.lfPitchAndFamily = FF_DONTCARE | FIXED_PITCH;
698 _tcscpy_s(logFont.lfFaceName, 32, (LPCTSTR)(CString)CRegString(_T("Software\\TortoiseGit\\LogFontName"), _T("Courier New")));
699 VERIFY(fontToCreate.CreateFontIndirect(&logFont));
702 bool CAppUtils::LaunchPAgent(const CString* keyfile, const CString* pRemote)
704 CString key,remote;
705 CString cmd,out;
706 if( pRemote == NULL)
708 remote=_T("origin");
710 else
712 remote=*pRemote;
714 if(keyfile == NULL)
716 cmd.Format(_T("remote.%s.puttykeyfile"),remote);
717 key = g_Git.GetConfigValue(cmd);
719 else
720 key=*keyfile;
722 if(key.IsEmpty())
723 return false;
725 CString proc=CPathUtils::GetAppDirectory();
726 proc += _T("pageant.exe \"");
727 proc += key;
728 proc += _T("\"");
730 CString tempfile = GetTempFile();
731 ::DeleteFile(tempfile);
733 proc += _T(" -c \"");
734 proc += CPathUtils::GetAppDirectory();
735 proc += _T("tgittouch.exe\"");
736 proc += _T(" \"");
737 proc += tempfile;
738 proc += _T("\"");
740 CString appDir = CPathUtils::GetAppDirectory();
741 bool b = LaunchApplication(proc, IDS_ERR_PAGEANT, true, &appDir);
742 if(!b)
743 return b;
745 int i=0;
746 while(!::PathFileExists(tempfile))
748 Sleep(100);
749 ++i;
750 if(i>10*60*5)
751 break; //timeout 5 minutes
754 if( i== 10*60*5)
756 CMessageBox::Show(NULL, IDS_ERR_PAEGENTTIMEOUT, IDS_APPNAME, MB_OK | MB_ICONERROR);
758 ::DeleteFile(tempfile);
759 return true;
761 bool CAppUtils::LaunchAlternativeEditor(const CString& filename, bool uac)
763 CString editTool = CRegString(_T("Software\\TortoiseGit\\AlternativeEditor"));
764 if (editTool.IsEmpty() || (editTool.Left(1).Compare(_T("#"))==0)) {
765 editTool = CPathUtils::GetAppDirectory() + _T("notepad2.exe");
768 CString sCmd;
769 sCmd.Format(_T("\"%s\" \"%s\""), editTool, filename);
771 LaunchApplication(sCmd, NULL, false, NULL, uac);
772 return true;
774 bool CAppUtils::LaunchRemoteSetting()
776 CTGitPath path(g_Git.m_CurrentDir);
777 CSettings dlg(IDS_PROC_SETTINGS_TITLE, &path);
778 dlg.SetTreeViewMode(TRUE, TRUE, TRUE);
779 dlg.SetTreeWidth(220);
780 dlg.m_DefaultPage = _T("gitremote");
782 dlg.DoModal();
783 dlg.HandleRestart();
784 return true;
787 * Launch the external blame viewer
789 bool CAppUtils::LaunchTortoiseBlame(const CString& sBlameFile, const CString& Rev, const CString& sParams)
791 CString viewer = _T("\"") + CPathUtils::GetAppDirectory();
792 viewer += _T("TortoiseGitBlame.exe");
793 viewer += _T("\" \"") + sBlameFile + _T("\"");
794 //viewer += _T(" \"") + sLogFile + _T("\"");
795 //viewer += _T(" \"") + sOriginalFile + _T("\"");
796 if(!Rev.IsEmpty() && Rev != GIT_REV_ZERO)
797 viewer += CString(_T(" /rev:"))+Rev;
798 if (!g_sGroupingUUID.IsEmpty())
800 viewer += L" /groupuuid:\"";
801 viewer += g_sGroupingUUID;
802 viewer += L"\"";
804 viewer += _T(" ")+sParams;
806 return LaunchApplication(viewer, IDS_ERR_TGITBLAME, false);
809 bool CAppUtils::FormatTextInRichEditControl(CWnd * pWnd)
811 CString sText;
812 if (pWnd == NULL)
813 return false;
814 bool bStyled = false;
815 pWnd->GetWindowText(sText);
816 // the rich edit control doesn't count the CR char!
817 // to be exact: CRLF is treated as one char.
818 sText.Remove(_T('\r'));
820 // style each line separately
821 int offset = 0;
822 int nNewlinePos;
825 nNewlinePos = sText.Find('\n', offset);
826 CString sLine = nNewlinePos >= 0 ? sText.Mid(offset, nNewlinePos - offset) : sText.Mid(offset);
828 int start = 0;
829 int end = 0;
830 while (FindStyleChars(sLine, '*', start, end))
832 CHARRANGE range = {(LONG)start+offset, (LONG)end+offset};
833 pWnd->SendMessage(EM_EXSETSEL, NULL, (LPARAM)&range);
834 SetCharFormat(pWnd, CFM_BOLD, CFE_BOLD);
835 bStyled = true;
836 start = end;
838 start = 0;
839 end = 0;
840 while (FindStyleChars(sLine, '^', start, end))
842 CHARRANGE range = {(LONG)start+offset, (LONG)end+offset};
843 pWnd->SendMessage(EM_EXSETSEL, NULL, (LPARAM)&range);
844 SetCharFormat(pWnd, CFM_ITALIC, CFE_ITALIC);
845 bStyled = true;
846 start = end;
848 start = 0;
849 end = 0;
850 while (FindStyleChars(sLine, '_', start, end))
852 CHARRANGE range = {(LONG)start+offset, (LONG)end+offset};
853 pWnd->SendMessage(EM_EXSETSEL, NULL, (LPARAM)&range);
854 SetCharFormat(pWnd, CFM_UNDERLINE, CFE_UNDERLINE);
855 bStyled = true;
856 start = end;
858 offset = nNewlinePos+1;
859 } while(nNewlinePos>=0);
860 return bStyled;
863 bool CAppUtils::FindStyleChars(const CString& sText, TCHAR stylechar, int& start, int& end)
865 int i=start;
866 int last = sText.GetLength() - 1;
867 bool bFoundMarker = false;
868 TCHAR c = i == 0 ? _T('\0') : sText[i - 1];
869 TCHAR nextChar = i >= last ? _T('\0') : sText[i + 1];
871 // find a starting marker
872 while (i < last)
874 TCHAR prevChar = c;
875 c = nextChar;
876 nextChar = sText[i + 1];
878 // IsCharAlphaNumeric can be somewhat expensive.
879 // Long lines of "*****" or "----" will be pre-empted efficiently
880 // by the (c != nextChar) condition.
882 if ((c == stylechar) && (c != nextChar))
884 if (IsCharAlphaNumeric(nextChar) && !IsCharAlphaNumeric(prevChar))
886 start = ++i;
887 bFoundMarker = true;
888 break;
891 ++i;
893 if (!bFoundMarker)
894 return false;
896 // find ending marker
897 // c == sText[i - 1]
899 bFoundMarker = false;
900 while (i <= last)
902 TCHAR prevChar = c;
903 c = sText[i];
904 if (c == stylechar)
906 if ((i == last) || (!IsCharAlphaNumeric(sText[i + 1]) && IsCharAlphaNumeric(prevChar)))
908 end = i;
909 ++i;
910 bFoundMarker = true;
911 break;
914 ++i;
916 return bFoundMarker;
919 // from CSciEdit
920 namespace {
921 bool IsValidURLChar(wchar_t ch)
923 return iswalnum(ch) ||
924 ch == L'_' || ch == L'/' || ch == L';' || ch == L'?' || ch == L'&' || ch == L'=' ||
925 ch == L'%' || ch == L':' || ch == L'.' || ch == L'#' || ch == L'-' || ch == L'+' ||
926 ch == L'|' || ch == L'>' || ch == L'<';
929 bool IsUrl(const CString& sText)
931 if (!PathIsURLW(sText))
932 return false;
933 for (const CString& prefix : { L"http://", L"https://", L"git://", L"ftp://", L"file://", L"mailto:" })
935 if (sText.Find(prefix) == 0 && sText.GetLength() != prefix.GetLength())
936 return true;
938 return false;
942 BOOL CAppUtils::StyleURLs(const CString& msg, CWnd* pWnd)
944 std::vector<CHARRANGE> positions = FindURLMatches(msg);
945 CAppUtils::SetCharFormat(pWnd, CFM_LINK, CFE_LINK, positions);
947 return positions.empty() ? FALSE : TRUE;
951 * implements URL searching with the same logic as CSciEdit::StyleURLs
953 std::vector<CHARRANGE> CAppUtils::FindURLMatches(const CString& msg)
955 std::vector<CHARRANGE> result;
957 int len = msg.GetLength();
958 int starturl = -1;
960 for (int i = 0; i <= msg.GetLength(); ++i)
962 if ((i < len) && IsValidURLChar(msg[i]))
964 if (starturl < 0)
965 starturl = i;
967 else
969 if (starturl >= 0)
971 bool strip = true;
972 if (msg[starturl] == '<' && i < len) // try to detect and do not strip URLs put within <>
974 while (starturl <= i && msg[starturl] == '<') // strip leading '<'
975 ++starturl;
976 strip = false;
977 i = starturl;
978 while (i < len && msg[i] != '\r' && msg[i] != '\n' && msg[i] != '>') // find first '>' or new line after resetting i to start position
979 ++i;
981 if (!IsUrl(msg.Mid(starturl, i - starturl)))
983 starturl = -1;
984 continue;
987 int skipTrailing = 0;
988 while (strip && i - skipTrailing - 1 > starturl && (msg[i - skipTrailing - 1] == '.' || msg[i - skipTrailing - 1] == '-' || msg[i - skipTrailing - 1] == '?' || msg[i - skipTrailing - 1] == ';' || msg[i - skipTrailing - 1] == ':' || msg[i - skipTrailing - 1] == '>' || msg[i - skipTrailing - 1] == '<'))
989 ++skipTrailing;
991 CHARRANGE range = { starturl, i - skipTrailing };
992 result.push_back(range);
994 starturl = -1;
998 return result;
1001 bool CAppUtils::StartShowUnifiedDiff(HWND hWnd, const CTGitPath& url1, const git_revnum_t& rev1,
1002 const CTGitPath& /*url2*/, const git_revnum_t& rev2,
1003 //const GitRev& peg /* = GitRev */, const GitRev& headpeg /* = GitRev */,
1004 bool /*bAlternateDiff*/ /* = false */, bool /*bIgnoreAncestry*/ /* = false */,
1005 bool /* blame = false */,
1006 bool bMerge,
1007 bool bCombine)
1009 int diffContext = 0;
1010 if (GetMsysgitVersion() > 0x01080100)
1011 diffContext = g_Git.GetConfigValueInt32(_T("diff.context"), -1);
1012 CString tempfile=GetTempFile();
1013 if (g_Git.GetUnifiedDiff(url1, rev1, rev2, tempfile, bMerge, bCombine, diffContext))
1015 CMessageBox::Show(hWnd, g_Git.GetGitLastErr(_T("Could not get unified diff."), CGit::GIT_CMD_DIFF), _T("TortoiseGit"), MB_OK);
1016 return false;
1018 CAppUtils::StartUnifiedDiffViewer(tempfile, rev1 + _T(":") + rev2);
1020 #if 0
1021 CString sCmd;
1022 sCmd.Format(_T("%s /command:showcompare /unified"),
1023 (LPCTSTR)(CPathUtils::GetAppDirectory()+_T("TortoiseGitProc.exe")));
1024 sCmd += _T(" /url1:\"") + url1.GetGitPathString() + _T("\"");
1025 if (rev1.IsValid())
1026 sCmd += _T(" /revision1:") + rev1.ToString();
1027 sCmd += _T(" /url2:\"") + url2.GetGitPathString() + _T("\"");
1028 if (rev2.IsValid())
1029 sCmd += _T(" /revision2:") + rev2.ToString();
1030 if (peg.IsValid())
1031 sCmd += _T(" /pegrevision:") + peg.ToString();
1032 if (headpeg.IsValid())
1033 sCmd += _T(" /headpegrevision:") + headpeg.ToString();
1035 if (bAlternateDiff)
1036 sCmd += _T(" /alternatediff");
1038 if (bIgnoreAncestry)
1039 sCmd += _T(" /ignoreancestry");
1041 if (hWnd)
1043 sCmd += _T(" /hwnd:");
1044 TCHAR buf[30];
1045 _stprintf_s(buf, 30, _T("%p"), (void*)hWnd);
1046 sCmd += buf;
1049 return CAppUtils::LaunchApplication(sCmd, NULL, false);
1050 #endif
1051 return TRUE;
1054 bool CAppUtils::SetupDiffScripts(bool force, const CString& type)
1056 CString scriptsdir = CPathUtils::GetAppParentDirectory();
1057 scriptsdir += _T("Diff-Scripts");
1058 CSimpleFileFind files(scriptsdir);
1059 while (files.FindNextFileNoDirectories())
1061 CString file = files.GetFilePath();
1062 CString filename = files.GetFileName();
1063 CString ext = file.Mid(file.ReverseFind('-') + 1);
1064 ext = _T(".") + ext.Left(ext.ReverseFind('.'));
1065 std::set<CString> extensions;
1066 extensions.insert(ext);
1067 CString kind;
1068 if (file.Right(3).CompareNoCase(_T("vbs"))==0)
1070 kind = _T(" //E:vbscript");
1072 if (file.Right(2).CompareNoCase(_T("js"))==0)
1074 kind = _T(" //E:javascript");
1076 // open the file, read the first line and find possible extensions
1077 // this script can handle
1080 CStdioFile f(file, CFile::modeRead | CFile::shareDenyNone);
1081 CString extline;
1082 if (f.ReadString(extline))
1084 if ((extline.GetLength() > 15 ) &&
1085 ((extline.Left(15).Compare(_T("// extensions: ")) == 0) ||
1086 (extline.Left(14).Compare(_T("' extensions: ")) == 0)))
1088 if (extline[0] == '/')
1089 extline = extline.Mid(15);
1090 else
1091 extline = extline.Mid(14);
1092 CString sToken;
1093 int curPos = 0;
1094 sToken = extline.Tokenize(_T(";"), curPos);
1095 while (!sToken.IsEmpty())
1097 if (!sToken.IsEmpty())
1099 if (sToken[0] != '.')
1100 sToken = _T(".") + sToken;
1101 extensions.insert(sToken);
1103 sToken = extline.Tokenize(_T(";"), curPos);
1107 f.Close();
1109 catch (CFileException* e)
1111 e->Delete();
1114 for (std::set<CString>::const_iterator it = extensions.begin(); it != extensions.end(); ++it)
1116 if (type.IsEmpty() || (type.Compare(_T("Diff")) == 0))
1118 if (filename.Left(5).CompareNoCase(_T("diff-")) == 0)
1120 CRegString diffreg = CRegString(_T("Software\\TortoiseGit\\DiffTools\\") + *it);
1121 CString diffregstring = diffreg;
1122 if (force || (diffregstring.IsEmpty()) || (diffregstring.Find(filename) >= 0))
1123 diffreg = _T("wscript.exe \"") + file + _T("\" %base %mine") + kind;
1126 if (type.IsEmpty() || (type.Compare(_T("Merge"))==0))
1128 if (filename.Left(6).CompareNoCase(_T("merge-"))==0)
1130 CRegString diffreg = CRegString(_T("Software\\TortoiseGit\\MergeTools\\") + *it);
1131 CString diffregstring = diffreg;
1132 if (force || (diffregstring.IsEmpty()) || (diffregstring.Find(filename) >= 0))
1133 diffreg = _T("wscript.exe \"") + file + _T("\" %merged %theirs %mine %base") + kind;
1139 return true;
1142 bool CAppUtils::Export(const CString* BashHash, const CTGitPath* orgPath)
1144 // ask from where the export has to be done
1145 CExportDlg dlg;
1146 if(BashHash)
1147 dlg.m_initialRefName=*BashHash;
1148 if (orgPath)
1150 if (PathIsRelative(orgPath->GetWinPath()))
1151 dlg.m_orgPath = g_Git.CombinePath(orgPath);
1152 else
1153 dlg.m_orgPath = *orgPath;
1156 if (dlg.DoModal() == IDOK)
1158 CString cmd;
1159 cmd.Format(_T("git.exe archive --output=\"%s\" --format=zip --verbose %s --"),
1160 dlg.m_strFile, g_Git.FixBranchName(dlg.m_VersionName));
1162 CProgressDlg pro;
1163 pro.m_GitCmd=cmd;
1164 pro.m_PostCmdCallback = [&](DWORD status, PostCmdList& postCmdList)
1166 if (status)
1167 return;
1168 postCmdList.push_back(PostCmd(IDI_EXPLORER, IDS_STATUSLIST_CONTEXT_EXPLORE, [&]{ CAppUtils::ExploreTo(hWndExplorer, dlg.m_strFile); }));
1171 CGit git;
1172 if (!dlg.m_bWholeProject && !dlg.m_orgPath.IsEmpty() && PathIsDirectory(dlg.m_orgPath.GetWinPathString()))
1174 git.m_CurrentDir = dlg.m_orgPath.GetWinPathString();
1175 pro.m_Git = &git;
1177 return (pro.DoModal() == IDOK);
1179 return false;
1182 bool CAppUtils::CreateBranchTag(bool IsTag, const CString* CommitHash, bool switch_new_brach)
1184 CCreateBranchTagDlg dlg;
1185 dlg.m_bIsTag=IsTag;
1186 dlg.m_bSwitch=switch_new_brach;
1188 if(CommitHash)
1189 dlg.m_initialRefName = *CommitHash;
1191 if(dlg.DoModal()==IDOK)
1193 CString cmd;
1194 CString force;
1195 CString track;
1196 if(dlg.m_bTrack == TRUE)
1197 track=_T(" --track ");
1198 else if(dlg.m_bTrack == FALSE)
1199 track=_T(" --no-track");
1201 if(dlg.m_bForce)
1202 force=_T(" -f ");
1204 if(IsTag)
1206 CString sign;
1207 if(dlg.m_bSign)
1208 sign=_T("-s");
1210 cmd.Format(_T("git.exe tag %s %s %s %s"),
1211 force,
1212 sign,
1213 dlg.m_BranchTagName,
1214 g_Git.FixBranchName(dlg.m_VersionName)
1217 if(!dlg.m_Message.Trim().IsEmpty())
1219 CString tempfile = ::GetTempFile();
1220 if (CAppUtils::SaveCommitUnicodeFile(tempfile, dlg.m_Message))
1222 CMessageBox::Show(nullptr, _T("Could not save tag message"), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
1223 return FALSE;
1225 cmd += _T(" -F ")+tempfile;
1228 else
1230 cmd.Format(_T("git.exe branch %s %s %s %s"),
1231 track,
1232 force,
1233 dlg.m_BranchTagName,
1234 g_Git.FixBranchName(dlg.m_VersionName)
1237 CString out;
1238 if(g_Git.Run(cmd,&out,CP_UTF8))
1240 CMessageBox::Show(NULL,out,_T("TortoiseGit"),MB_OK);
1241 return FALSE;
1243 if( !IsTag && dlg.m_bSwitch )
1245 // it is a new branch and the user has requested to switch to it
1246 PerformSwitch(dlg.m_BranchTagName);
1249 return TRUE;
1251 return FALSE;
1254 bool CAppUtils::Switch(const CString& initialRefName)
1256 CGitSwitchDlg dlg;
1257 if(!initialRefName.IsEmpty())
1258 dlg.m_initialRefName = initialRefName;
1260 if (dlg.DoModal() == IDOK)
1262 CString branch;
1263 if (dlg.m_bBranch)
1264 branch = dlg.m_NewBranch;
1266 // if refs/heads/ is not stripped, checkout will detach HEAD
1267 // checkout prefers branches on name clashes (with tags)
1268 if (dlg.m_VersionName.Left(11) ==_T("refs/heads/") && dlg.m_bBranchOverride != TRUE)
1269 dlg.m_VersionName = dlg.m_VersionName.Mid(11);
1271 return PerformSwitch(dlg.m_VersionName, dlg.m_bForce == TRUE , branch, dlg.m_bBranchOverride == TRUE, dlg.m_bTrack, dlg.m_bMerge == TRUE);
1273 return FALSE;
1276 bool CAppUtils::PerformSwitch(const CString& ref, bool bForce /* false */, const CString& sNewBranch /* CString() */, bool bBranchOverride /* false */, BOOL bTrack /* 2 */, bool bMerge /* false */)
1278 CString cmd;
1279 CString track;
1280 CString force;
1281 CString branch;
1282 CString merge;
1284 if(!sNewBranch.IsEmpty()){
1285 if (bBranchOverride)
1287 branch.Format(_T("-B %s"), sNewBranch);
1289 else
1291 branch.Format(_T("-b %s"), sNewBranch);
1293 if (bTrack == TRUE)
1294 track = _T("--track");
1295 else if (bTrack == FALSE)
1296 track = _T("--no-track");
1298 if (bForce)
1299 force = _T("-f");
1300 if (bMerge)
1301 merge = _T("--merge");
1303 cmd.Format(_T("git.exe checkout %s %s %s %s %s --"),
1304 force,
1305 track,
1306 merge,
1307 branch,
1308 g_Git.FixBranchName(ref));
1310 CProgressDlg progress;
1311 progress.m_GitCmd = cmd;
1313 CString currentBranch;
1314 bool hasBranch = CGit::GetCurrentBranchFromFile(g_Git.m_CurrentDir, currentBranch) == 0;
1315 progress.m_PostCmdCallback = [&](DWORD status, PostCmdList& postCmdList)
1317 if (!status)
1319 CTGitPath gitPath = g_Git.m_CurrentDir;
1320 if (gitPath.HasSubmodules())
1322 postCmdList.push_back(PostCmd(IDI_UPDATE, IDS_PROC_SUBMODULESUPDATE, [&]
1324 CString sCmd;
1325 sCmd.Format(_T("/command:subupdate /bkpath:\"%s\""), g_Git.m_CurrentDir);
1326 RunTortoiseGitProc(sCmd);
1327 }));
1329 if (hasBranch)
1330 postCmdList.push_back(PostCmd(IDI_MERGE, IDS_MENUMERGE, [&]{ Merge(&currentBranch); }));
1333 CString newBranch;
1334 if (!CGit::GetCurrentBranchFromFile(g_Git.m_CurrentDir, newBranch))
1335 postCmdList.push_back(PostCmd(IDI_PULL, IDS_MENUPULL, [&]{ Pull(); }));
1337 postCmdList.push_back(PostCmd(IDI_COMMIT, IDS_MENUCOMMIT, []{
1338 CTGitPathList pathlist;
1339 CTGitPathList selectedlist;
1340 bool bSelectFilesForCommit = !!DWORD(CRegStdDWORD(_T("Software\\TortoiseGit\\SelectFilesForCommit"), TRUE));
1341 CString str;
1342 Commit(CString(), false, str, pathlist, selectedlist, bSelectFilesForCommit);
1343 }));
1345 else
1347 postCmdList.push_back(PostCmd(IDI_REFRESH, IDS_MSGBOX_RETRY, [&]{ PerformSwitch(ref, bForce, sNewBranch, bBranchOverride, bTrack, bMerge); }));
1348 if (!bMerge)
1349 postCmdList.push_back(PostCmd(IDI_SWITCH, IDS_SWITCH_WITH_MERGE, [&]{ PerformSwitch(ref, bForce, sNewBranch, bBranchOverride, bTrack, true); }));
1353 INT_PTR ret = progress.DoModal();
1355 return ret == IDOK;
1358 class CIgnoreFile : public CStdioFile
1360 public:
1361 STRING_VECTOR m_Items;
1362 CString m_eol;
1364 virtual BOOL ReadString(CString& rString)
1366 if (GetPosition() == 0)
1368 unsigned char utf8bom[] = { 0xEF, 0xBB, 0xBF };
1369 char buf[3] = { 0, 0, 0 };
1370 Read(buf, 3);
1371 if (memcpy(buf, utf8bom, sizeof(utf8bom)))
1373 SeekToBegin();
1377 CStringA strA;
1378 char lastChar = '\0';
1379 for (char c = '\0'; Read(&c, 1) == 1; lastChar = c)
1381 if (c == '\r')
1382 continue;
1383 if (c == '\n')
1385 m_eol = lastChar == '\r' ? _T("\r\n") : _T("\n");
1386 break;
1388 strA.AppendChar(c);
1390 if (strA.IsEmpty())
1391 return FALSE;
1393 rString = CUnicodeUtils::GetUnicode(strA);
1394 return TRUE;
1397 void ResetState()
1399 m_Items.clear();
1400 m_eol = _T("");
1404 bool CAppUtils::OpenIgnoreFile(CIgnoreFile &file, const CString& filename)
1406 file.ResetState();
1407 if (!file.Open(filename, CFile::modeCreate | CFile::modeReadWrite | CFile::modeNoTruncate | CFile::typeBinary))
1409 CMessageBox::Show(NULL, filename + _T(" Open Failure"), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
1410 return false;
1413 if (file.GetLength() > 0)
1415 CString fileText;
1416 while (file.ReadString(fileText))
1417 file.m_Items.push_back(fileText);
1418 file.Seek(file.GetLength() - 1, 0);
1419 char lastchar[1] = { 0 };
1420 file.Read(lastchar, 1);
1421 file.SeekToEnd();
1422 if (lastchar[0] != '\n')
1424 CStringA eol = CStringA(file.m_eol.IsEmpty() ? _T("\n") : file.m_eol);
1425 file.Write(eol, eol.GetLength());
1428 else
1429 file.SeekToEnd();
1431 return true;
1434 bool CAppUtils::IgnoreFile(const CTGitPathList& path,bool IsMask)
1436 CIgnoreDlg ignoreDlg;
1437 if (ignoreDlg.DoModal() == IDOK)
1439 CString ignorefile;
1440 ignorefile = g_Git.m_CurrentDir + _T("\\");
1442 switch (ignoreDlg.m_IgnoreFile)
1444 case 0:
1445 ignorefile += _T(".gitignore");
1446 break;
1447 case 2:
1448 g_GitAdminDir.GetAdminDirPath(g_Git.m_CurrentDir, ignorefile);
1449 ignorefile += _T("info/exclude");
1450 break;
1453 CIgnoreFile file;
1456 if (ignoreDlg.m_IgnoreFile != 1 && !OpenIgnoreFile(file, ignorefile))
1457 return false;
1459 for (int i = 0; i < path.GetCount(); ++i)
1461 if (ignoreDlg.m_IgnoreFile == 1)
1463 ignorefile = g_Git.CombinePath(path[i].GetContainingDirectory()) + _T("\\.gitignore");
1464 if (!OpenIgnoreFile(file, ignorefile))
1465 return false;
1468 CString ignorePattern;
1469 if (ignoreDlg.m_IgnoreType == 0)
1471 if (ignoreDlg.m_IgnoreFile != 1 && !path[i].GetContainingDirectory().GetGitPathString().IsEmpty())
1472 ignorePattern += _T("/") + path[i].GetContainingDirectory().GetGitPathString();
1474 ignorePattern += _T("/");
1476 if (IsMask)
1478 ignorePattern += _T("*") + path[i].GetFileExtension();
1480 else
1482 ignorePattern += path[i].GetFileOrDirectoryName();
1485 // escape [ and ] so that files get ignored correctly
1486 ignorePattern.Replace(_T("["), _T("\\["));
1487 ignorePattern.Replace(_T("]"), _T("\\]"));
1489 bool found = false;
1490 for (size_t j = 0; j < file.m_Items.size(); ++j)
1492 if (file.m_Items[j] == ignorePattern)
1494 found = true;
1495 break;
1498 if (!found)
1500 file.m_Items.push_back(ignorePattern);
1501 ignorePattern += file.m_eol.IsEmpty() ? _T("\n") : file.m_eol;
1502 CStringA ignorePatternA = CUnicodeUtils::GetUTF8(ignorePattern);
1503 file.Write(ignorePatternA, ignorePatternA.GetLength());
1506 if (ignoreDlg.m_IgnoreFile == 1)
1507 file.Close();
1510 if (ignoreDlg.m_IgnoreFile != 1)
1511 file.Close();
1513 catch(...)
1515 file.Abort();
1516 return false;
1519 return true;
1521 return false;
1524 static bool Reset(const CString& resetTo, int resetType)
1526 CString cmd;
1527 CString type;
1528 switch (resetType)
1530 case 0:
1531 type = _T("--soft");
1532 break;
1533 case 1:
1534 type = _T("--mixed");
1535 break;
1536 case 2:
1537 type = _T("--hard");
1538 break;
1539 default:
1540 resetType = 1;
1541 type = _T("--mixed");
1542 break;
1544 cmd.Format(_T("git.exe reset %s %s --"), type, resetTo);
1546 CProgressDlg progress;
1547 progress.m_GitCmd = cmd;
1549 progress.m_PostCmdCallback = [&](DWORD status, PostCmdList& postCmdList)
1551 if (status)
1553 postCmdList.push_back(PostCmd(IDI_REFRESH, IDS_MSGBOX_RETRY, [&]{ Reset(resetTo, resetType); }));
1554 return;
1557 CTGitPath gitPath = g_Git.m_CurrentDir;
1558 if (gitPath.HasSubmodules() && resetType == 2)
1560 postCmdList.push_back(PostCmd(IDI_UPDATE, IDS_PROC_SUBMODULESUPDATE, [&]
1562 CString sCmd;
1563 sCmd.Format(_T("/command:subupdate /bkpath:\"%s\""), g_Git.m_CurrentDir);
1564 CAppUtils::RunTortoiseGitProc(sCmd);
1565 }));
1569 INT_PTR ret;
1570 if (g_Git.UsingLibGit2(CGit::GIT_CMD_RESET))
1572 CGitProgressDlg gitdlg;
1573 ResetProgressCommand resetProgressCommand;
1574 gitdlg.SetCommand(&resetProgressCommand);
1575 resetProgressCommand.m_PostCmdCallback = progress.m_PostCmdCallback;
1576 resetProgressCommand.SetRevision(resetTo);
1577 resetProgressCommand.SetResetType(resetType);
1578 ret = gitdlg.DoModal();
1580 else
1581 ret = progress.DoModal();
1583 return ret == IDOK;
1586 bool CAppUtils::GitReset(const CString* CommitHash, int type)
1588 CResetDlg dlg;
1589 dlg.m_ResetType=type;
1590 dlg.m_ResetToVersion=*CommitHash;
1591 dlg.m_initialRefName = *CommitHash;
1592 if (dlg.DoModal() == IDOK)
1593 return Reset(dlg.m_ResetToVersion, dlg.m_ResetType);
1595 return false;
1598 void CAppUtils::DescribeConflictFile(bool mode, bool base,CString &descript)
1600 if(mode == FALSE)
1602 descript = CString(MAKEINTRESOURCE(IDS_SVNACTION_DELETE));
1603 return;
1605 if(base)
1607 descript = CString(MAKEINTRESOURCE(IDS_SVNACTION_MODIFIED));
1608 return;
1610 descript = CString(MAKEINTRESOURCE(IDS_PROC_CREATED));
1611 return;
1614 void CAppUtils::RemoveTempMergeFile(const CTGitPath& path)
1616 ::DeleteFile(CAppUtils::GetMergeTempFile(_T("LOCAL"), path));
1617 ::DeleteFile(CAppUtils::GetMergeTempFile(_T("REMOTE"), path));
1618 ::DeleteFile(CAppUtils::GetMergeTempFile(_T("BASE"), path));
1620 CString CAppUtils::GetMergeTempFile(const CString& type, const CTGitPath &merge)
1622 CString file;
1623 file = g_Git.CombinePath(merge.GetWinPathString() + _T(".") + type + merge.GetFileExtension());
1625 return file;
1628 bool ParseHashesFromLsFile(const BYTE_VECTOR& out, CString& hash1, CString& hash2, CString& hash3)
1630 int pos = 0;
1631 CString one;
1632 CString part;
1634 while (pos >= 0 && pos < (int)out.size())
1636 one.Empty();
1638 g_Git.StringAppend(&one, &out[pos], CP_UTF8);
1639 int tabstart = 0;
1640 one.Tokenize(_T("\t"), tabstart);
1642 tabstart = 0;
1643 part = one.Tokenize(_T(" "), tabstart); //Tag
1644 part = one.Tokenize(_T(" "), tabstart); //Mode
1645 part = one.Tokenize(_T(" "), tabstart); //Hash
1646 CString hash = part;
1647 part = one.Tokenize(_T("\t"), tabstart); //Stage
1648 int stage = _ttol(part);
1649 if (stage == 1)
1650 hash1 = hash;
1651 else if (stage == 2)
1652 hash2 = hash;
1653 else if (stage == 3)
1655 hash3 = hash;
1656 return true;
1659 pos = out.findNextString(pos);
1662 return false;
1665 bool CAppUtils::ConflictEdit(const CTGitPath& path, bool /*bAlternativeTool = false*/, bool revertTheirMy /*= false*/, HWND resolveMsgHwnd /*= nullptr*/)
1667 bool bRet = false;
1669 CTGitPath merge=path;
1670 CTGitPath directory = merge.GetDirectory();
1672 // we have the conflicted file (%merged)
1673 // now look for the other required files
1674 //GitStatus stat;
1675 //stat.GetStatus(merge);
1676 //if (stat.status == NULL)
1677 // return false;
1679 BYTE_VECTOR vector;
1681 CString cmd;
1682 cmd.Format(_T("git.exe ls-files -u -t -z -- \"%s\""),merge.GetGitPathString());
1684 if (g_Git.Run(cmd, &vector))
1686 return FALSE;
1689 if (merge.IsDirectory())
1691 CString baseHash, realBaseHash(GIT_REV_ZERO), localHash(GIT_REV_ZERO), remoteHash(GIT_REV_ZERO);
1692 if (merge.HasAdminDir()) {
1693 CGit subgit;
1694 subgit.m_CurrentDir = g_Git.CombinePath(merge);
1695 CGitHash hash;
1696 subgit.GetHash(hash, _T("HEAD"));
1697 baseHash = hash;
1699 if (ParseHashesFromLsFile(vector, realBaseHash, localHash, remoteHash)) // in base no submodule, but in remote submodule
1700 baseHash = realBaseHash;
1702 CGitDiff::ChangeType changeTypeMine = CGitDiff::Unknown;
1703 CGitDiff::ChangeType changeTypeTheirs = CGitDiff::Unknown;
1705 bool baseOK = false, mineOK = false, theirsOK = false;
1706 CString baseSubject, mineSubject, theirsSubject;
1707 if (merge.HasAdminDir())
1709 CGit subgit;
1710 subgit.m_CurrentDir = g_Git.CombinePath(merge);
1711 CGitDiff::GetSubmoduleChangeType(subgit, baseHash, localHash, baseOK, mineOK, changeTypeMine, baseSubject, mineSubject);
1712 CGitDiff::GetSubmoduleChangeType(subgit, baseHash, remoteHash, baseOK, theirsOK, changeTypeTheirs, baseSubject, theirsSubject);
1714 else if (baseHash == GIT_REV_ZERO && localHash == GIT_REV_ZERO && remoteHash != GIT_REV_ZERO) // merge conflict with no submodule, but submodule in merged revision (not initialized)
1716 changeTypeMine = CGitDiff::Identical;
1717 changeTypeTheirs = CGitDiff::NewSubmodule;
1718 baseSubject = _T("no submodule");
1719 mineSubject = baseSubject;
1720 theirsSubject = _T("not initialized");
1722 else if (baseHash.IsEmpty() && localHash != GIT_REV_ZERO && remoteHash == GIT_REV_ZERO) // merge conflict with no submodule initialized, but submodule exists in base and folder with no submodule is merged
1724 baseHash = localHash;
1725 baseSubject = _T("not initialized");
1726 mineSubject = baseSubject;
1727 theirsSubject = _T("not initialized");
1728 changeTypeMine = CGitDiff::Identical;
1729 changeTypeTheirs = CGitDiff::DeleteSubmodule;
1731 else if (baseHash != GIT_REV_ZERO && localHash != GIT_REV_ZERO && remoteHash != GIT_REV_ZERO) // base has submodule, mine has submodule and theirs also, but not initialized
1733 baseSubject = _T("not initialized");
1734 mineSubject = baseSubject;
1735 theirsSubject = baseSubject;
1736 if (baseHash == localHash)
1737 changeTypeMine = CGitDiff::Identical;
1739 else
1740 return FALSE;
1742 CSubmoduleResolveConflictDlg resolveSubmoduleConflictDialog;
1743 resolveSubmoduleConflictDialog.SetDiff(merge.GetGitPathString(), revertTheirMy, baseHash, baseSubject, baseOK, localHash, mineSubject, mineOK, changeTypeMine, remoteHash, theirsSubject, theirsOK, changeTypeTheirs);
1744 resolveSubmoduleConflictDialog.DoModal();
1745 if (resolveSubmoduleConflictDialog.m_bResolved && resolveMsgHwnd)
1747 static UINT WM_REVERTMSG = RegisterWindowMessage(_T("GITSLNM_NEEDSREFRESH"));
1748 ::PostMessage(resolveMsgHwnd, WM_REVERTMSG, NULL, NULL);
1751 return TRUE;
1754 CTGitPathList list;
1755 if (list.ParserFromLsFile(vector))
1757 CMessageBox::Show(NULL, _T("Parse ls-files failed!"), _T("TortoiseGit"), MB_OK);
1758 return FALSE;
1761 if (list.IsEmpty())
1762 return FALSE;
1764 CTGitPath theirs;
1765 CTGitPath mine;
1766 CTGitPath base;
1768 if (revertTheirMy)
1770 mine.SetFromGit(GetMergeTempFile(_T("REMOTE"), merge));
1771 theirs.SetFromGit(GetMergeTempFile(_T("LOCAL"), merge));
1773 else
1775 mine.SetFromGit(GetMergeTempFile(_T("LOCAL"), merge));
1776 theirs.SetFromGit(GetMergeTempFile(_T("REMOTE"), merge));
1778 base.SetFromGit(GetMergeTempFile(_T("BASE"),merge));
1780 CString format;
1782 //format=_T("git.exe cat-file blob \":%d:%s\"");
1783 format = _T("git.exe checkout-index --temp --stage=%d -- \"%s\"");
1784 CFile tempfile;
1785 //create a empty file, incase stage is not three
1786 tempfile.Open(mine.GetWinPathString(),CFile::modeCreate|CFile::modeReadWrite);
1787 tempfile.Close();
1788 tempfile.Open(theirs.GetWinPathString(),CFile::modeCreate|CFile::modeReadWrite);
1789 tempfile.Close();
1790 tempfile.Open(base.GetWinPathString(),CFile::modeCreate|CFile::modeReadWrite);
1791 tempfile.Close();
1793 bool b_base=false, b_local=false, b_remote=false;
1795 for (int i = 0; i< list.GetCount(); ++i)
1797 CString cmd;
1798 CString outfile;
1799 cmd.Empty();
1800 outfile.Empty();
1802 if( list[i].m_Stage == 1)
1804 cmd.Format(format, list[i].m_Stage, list[i].GetGitPathString());
1805 b_base = true;
1806 outfile = base.GetWinPathString();
1809 if( list[i].m_Stage == 2 )
1811 cmd.Format(format, list[i].m_Stage, list[i].GetGitPathString());
1812 b_local = true;
1813 outfile = mine.GetWinPathString();
1816 if( list[i].m_Stage == 3 )
1818 cmd.Format(format, list[i].m_Stage, list[i].GetGitPathString());
1819 b_remote = true;
1820 outfile = theirs.GetWinPathString();
1822 CString output, err;
1823 if(!outfile.IsEmpty())
1824 if (!g_Git.Run(cmd, &output, &err, CP_UTF8))
1826 CString file;
1827 int start =0 ;
1828 file = output.Tokenize(_T("\t"), start);
1829 ::MoveFileEx(file,outfile,MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED);
1831 else
1833 CMessageBox::Show(NULL, output + L"\n" + err, _T("TortoiseGit"), MB_OK|MB_ICONERROR);
1837 if(b_local && b_remote )
1839 merge.SetFromWin(g_Git.CombinePath(merge));
1840 if( revertTheirMy )
1841 bRet = !!CAppUtils::StartExtMerge(base, mine, theirs, merge, _T("BASE"), _T("REMOTE"), _T("LOCAL"), CString(), false, resolveMsgHwnd, true);
1842 else
1843 bRet = !!CAppUtils::StartExtMerge(base, theirs, mine, merge, _T("BASE"), _T("REMOTE"), _T("LOCAL"), CString(), false, resolveMsgHwnd, true);
1846 else
1848 ::DeleteFile(mine.GetWinPathString());
1849 ::DeleteFile(theirs.GetWinPathString());
1850 ::DeleteFile(base.GetWinPathString());
1852 CDeleteConflictDlg dlg;
1853 DescribeConflictFile(b_local, b_base,dlg.m_LocalStatus);
1854 DescribeConflictFile(b_remote,b_base,dlg.m_RemoteStatus);
1855 CGitHash localHash, remoteHash;
1856 if (!g_Git.GetHash(localHash, _T("HEAD")))
1857 dlg.m_LocalHash = localHash.ToString();
1858 if (!g_Git.GetHash(remoteHash, _T("MERGE_HEAD")))
1859 dlg.m_RemoteHash = remoteHash.ToString();
1860 else if (!g_Git.GetHash(remoteHash, _T("rebase-apply/original-commit")))
1861 dlg.m_RemoteHash = remoteHash.ToString();
1862 else if (!g_Git.GetHash(remoteHash, _T("CHERRY_PICK_HEAD")))
1863 dlg.m_RemoteHash = remoteHash.ToString();
1864 else if (!g_Git.GetHash(remoteHash, _T("REVERT_HEAD")))
1865 dlg.m_RemoteHash = remoteHash.ToString();
1866 dlg.m_bShowModifiedButton=b_base;
1867 dlg.m_File=merge.GetGitPathString();
1868 if(dlg.DoModal() == IDOK)
1870 CString cmd,out;
1871 if(dlg.m_bIsDelete)
1873 cmd.Format(_T("git.exe rm -- \"%s\""),merge.GetGitPathString());
1875 else
1876 cmd.Format(_T("git.exe add -- \"%s\""),merge.GetGitPathString());
1878 if (g_Git.Run(cmd, &out, CP_UTF8))
1880 CMessageBox::Show(NULL,out,_T("TortoiseGit"),MB_OK);
1881 return FALSE;
1883 return TRUE;
1885 else
1886 return FALSE;
1889 #if 0
1890 CAppUtils::StartExtMerge(CAppUtils::MergeFlags().AlternativeTool(bAlternativeTool),
1891 base, theirs, mine, merge);
1892 #endif
1893 #if 0
1894 if (stat.status->text_status == svn_wc_status_conflicted)
1896 // we have a text conflict, use our merge tool to resolve the conflict
1898 CTSVNPath theirs(directory);
1899 CTSVNPath mine(directory);
1900 CTSVNPath base(directory);
1901 bool bConflictData = false;
1903 if ((stat.status->entry)&&(stat.status->entry->conflict_new))
1905 theirs.AppendPathString(CUnicodeUtils::GetUnicode(stat.status->entry->conflict_new));
1906 bConflictData = true;
1908 if ((stat.status->entry)&&(stat.status->entry->conflict_old))
1910 base.AppendPathString(CUnicodeUtils::GetUnicode(stat.status->entry->conflict_old));
1911 bConflictData = true;
1913 if ((stat.status->entry)&&(stat.status->entry->conflict_wrk))
1915 mine.AppendPathString(CUnicodeUtils::GetUnicode(stat.status->entry->conflict_wrk));
1916 bConflictData = true;
1918 else
1920 mine = merge;
1922 if (bConflictData)
1923 bRet = !!CAppUtils::StartExtMerge(CAppUtils::MergeFlags().AlternativeTool(bAlternativeTool),
1924 base, theirs, mine, merge);
1927 if (stat.status->prop_status == svn_wc_status_conflicted)
1929 // we have a property conflict
1930 CTSVNPath prej(directory);
1931 if ((stat.status->entry)&&(stat.status->entry->prejfile))
1933 prej.AppendPathString(CUnicodeUtils::GetUnicode(stat.status->entry->prejfile));
1934 // there's a problem: the prej file contains a _description_ of the conflict, and
1935 // that description string might be translated. That means we have no way of parsing
1936 // the file to find out the conflicting values.
1937 // The only thing we can do: show a dialog with the conflict description, then
1938 // let the user either accept the existing property or open the property edit dialog
1939 // to manually change the properties and values. And a button to mark the conflict as
1940 // resolved.
1941 CEditPropConflictDlg dlg;
1942 dlg.SetPrejFile(prej);
1943 dlg.SetConflictedItem(merge);
1944 bRet = (dlg.DoModal() != IDCANCEL);
1948 if (stat.status->tree_conflict)
1950 // we have a tree conflict
1951 SVNInfo info;
1952 const SVNInfoData * pInfoData = info.GetFirstFileInfo(merge, SVNRev(), SVNRev());
1953 if (pInfoData)
1955 if (pInfoData->treeconflict_kind == svn_wc_conflict_kind_text)
1957 CTSVNPath theirs(directory);
1958 CTSVNPath mine(directory);
1959 CTSVNPath base(directory);
1960 bool bConflictData = false;
1962 if (pInfoData->treeconflict_theirfile)
1964 theirs.AppendPathString(pInfoData->treeconflict_theirfile);
1965 bConflictData = true;
1967 if (pInfoData->treeconflict_basefile)
1969 base.AppendPathString(pInfoData->treeconflict_basefile);
1970 bConflictData = true;
1972 if (pInfoData->treeconflict_myfile)
1974 mine.AppendPathString(pInfoData->treeconflict_myfile);
1975 bConflictData = true;
1977 else
1979 mine = merge;
1981 if (bConflictData)
1982 bRet = !!CAppUtils::StartExtMerge(CAppUtils::MergeFlags().AlternativeTool(bAlternativeTool),
1983 base, theirs, mine, merge);
1985 else if (pInfoData->treeconflict_kind == svn_wc_conflict_kind_tree)
1987 CString sConflictAction;
1988 CString sConflictReason;
1989 CString sResolveTheirs;
1990 CString sResolveMine;
1991 CTSVNPath treeConflictPath = CTSVNPath(pInfoData->treeconflict_path);
1992 CString sItemName = treeConflictPath.GetUIFileOrDirectoryName();
1994 if (pInfoData->treeconflict_nodekind == svn_node_file)
1996 switch (pInfoData->treeconflict_operation)
1998 case svn_wc_operation_update:
1999 switch (pInfoData->treeconflict_action)
2001 case svn_wc_conflict_action_edit:
2002 sConflictAction.Format(IDS_TREECONFLICT_FILEUPDATEEDIT, (LPCTSTR)sItemName);
2003 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYFILE);
2004 break;
2005 case svn_wc_conflict_action_add:
2006 sConflictAction.Format(IDS_TREECONFLICT_FILEUPDATEADD, (LPCTSTR)sItemName);
2007 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYFILE);
2008 break;
2009 case svn_wc_conflict_action_delete:
2010 sConflictAction.Format(IDS_TREECONFLICT_FILEUPDATEDELETE, (LPCTSTR)sItemName);
2011 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_REMOVEFILE);
2012 break;
2014 break;
2015 case svn_wc_operation_switch:
2016 switch (pInfoData->treeconflict_action)
2018 case svn_wc_conflict_action_edit:
2019 sConflictAction.Format(IDS_TREECONFLICT_FILESWITCHEDIT, (LPCTSTR)sItemName);
2020 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYFILE);
2021 break;
2022 case svn_wc_conflict_action_add:
2023 sConflictAction.Format(IDS_TREECONFLICT_FILESWITCHADD, (LPCTSTR)sItemName);
2024 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYFILE);
2025 break;
2026 case svn_wc_conflict_action_delete:
2027 sConflictAction.Format(IDS_TREECONFLICT_FILESWITCHDELETE, (LPCTSTR)sItemName);
2028 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_REMOVEFILE);
2029 break;
2031 break;
2032 case svn_wc_operation_merge:
2033 switch (pInfoData->treeconflict_action)
2035 case svn_wc_conflict_action_edit:
2036 sConflictAction.Format(IDS_TREECONFLICT_FILEMERGEEDIT, (LPCTSTR)sItemName);
2037 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYFILE);
2038 break;
2039 case svn_wc_conflict_action_add:
2040 sResolveTheirs.Format(IDS_TREECONFLICT_FILEMERGEADD, (LPCTSTR)sItemName);
2041 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYFILE);
2042 break;
2043 case svn_wc_conflict_action_delete:
2044 sConflictAction.Format(IDS_TREECONFLICT_FILEMERGEDELETE, (LPCTSTR)sItemName);
2045 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_REMOVEFILE);
2046 break;
2048 break;
2051 else if (pInfoData->treeconflict_nodekind == svn_node_dir)
2053 switch (pInfoData->treeconflict_operation)
2055 case svn_wc_operation_update:
2056 switch (pInfoData->treeconflict_action)
2058 case svn_wc_conflict_action_edit:
2059 sConflictAction.Format(IDS_TREECONFLICT_DIRUPDATEEDIT, (LPCTSTR)sItemName);
2060 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYDIR);
2061 break;
2062 case svn_wc_conflict_action_add:
2063 sConflictAction.Format(IDS_TREECONFLICT_DIRUPDATEADD, (LPCTSTR)sItemName);
2064 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYDIR);
2065 break;
2066 case svn_wc_conflict_action_delete:
2067 sConflictAction.Format(IDS_TREECONFLICT_DIRUPDATEDELETE, (LPCTSTR)sItemName);
2068 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_REMOVEDIR);
2069 break;
2071 break;
2072 case svn_wc_operation_switch:
2073 switch (pInfoData->treeconflict_action)
2075 case svn_wc_conflict_action_edit:
2076 sConflictAction.Format(IDS_TREECONFLICT_DIRSWITCHEDIT, (LPCTSTR)sItemName);
2077 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYDIR);
2078 break;
2079 case svn_wc_conflict_action_add:
2080 sConflictAction.Format(IDS_TREECONFLICT_DIRSWITCHADD, (LPCTSTR)sItemName);
2081 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYDIR);
2082 break;
2083 case svn_wc_conflict_action_delete:
2084 sConflictAction.Format(IDS_TREECONFLICT_DIRSWITCHDELETE, (LPCTSTR)sItemName);
2085 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_REMOVEDIR);
2086 break;
2088 break;
2089 case svn_wc_operation_merge:
2090 switch (pInfoData->treeconflict_action)
2092 case svn_wc_conflict_action_edit:
2093 sConflictAction.Format(IDS_TREECONFLICT_DIRMERGEEDIT, (LPCTSTR)sItemName);
2094 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYDIR);
2095 break;
2096 case svn_wc_conflict_action_add:
2097 sConflictAction.Format(IDS_TREECONFLICT_DIRMERGEADD, (LPCTSTR)sItemName);
2098 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_KEEPREPOSITORYDIR);
2099 break;
2100 case svn_wc_conflict_action_delete:
2101 sConflictAction.Format(IDS_TREECONFLICT_DIRMERGEDELETE, (LPCTSTR)sItemName);
2102 sResolveTheirs.LoadString(IDS_TREECONFLICT_RESOLVE_REMOVEDIR);
2103 break;
2105 break;
2109 UINT uReasonID = 0;
2110 switch (pInfoData->treeconflict_reason)
2112 case svn_wc_conflict_reason_edited:
2113 uReasonID = IDS_TREECONFLICT_REASON_EDITED;
2114 sResolveMine.LoadString(pInfoData->treeconflict_nodekind == svn_node_dir ? IDS_TREECONFLICT_RESOLVE_KEEPLOCALDIR : IDS_TREECONFLICT_RESOLVE_KEEPLOCALFILE);
2115 break;
2116 case svn_wc_conflict_reason_obstructed:
2117 uReasonID = IDS_TREECONFLICT_REASON_OBSTRUCTED;
2118 sResolveMine.LoadString(pInfoData->treeconflict_nodekind == svn_node_dir ? IDS_TREECONFLICT_RESOLVE_KEEPLOCALDIR : IDS_TREECONFLICT_RESOLVE_KEEPLOCALFILE);
2119 break;
2120 case svn_wc_conflict_reason_deleted:
2121 uReasonID = IDS_TREECONFLICT_REASON_DELETED;
2122 sResolveMine.LoadString(pInfoData->treeconflict_nodekind == svn_node_dir ? IDS_TREECONFLICT_RESOLVE_REMOVEDIR : IDS_TREECONFLICT_RESOLVE_REMOVEFILE);
2123 break;
2124 case svn_wc_conflict_reason_added:
2125 uReasonID = IDS_TREECONFLICT_REASON_ADDED;
2126 sResolveMine.LoadString(pInfoData->treeconflict_nodekind == svn_node_dir ? IDS_TREECONFLICT_RESOLVE_KEEPLOCALDIR : IDS_TREECONFLICT_RESOLVE_KEEPLOCALFILE);
2127 break;
2128 case svn_wc_conflict_reason_missing:
2129 uReasonID = IDS_TREECONFLICT_REASON_MISSING;
2130 sResolveMine.LoadString(pInfoData->treeconflict_nodekind == svn_node_dir ? IDS_TREECONFLICT_RESOLVE_REMOVEDIR : IDS_TREECONFLICT_RESOLVE_REMOVEFILE);
2131 break;
2132 case svn_wc_conflict_reason_unversioned:
2133 uReasonID = IDS_TREECONFLICT_REASON_UNVERSIONED;
2134 sResolveMine.LoadString(pInfoData->treeconflict_nodekind == svn_node_dir ? IDS_TREECONFLICT_RESOLVE_KEEPLOCALDIR : IDS_TREECONFLICT_RESOLVE_KEEPLOCALFILE);
2135 break;
2137 sConflictReason.Format(uReasonID, (LPCTSTR)sConflictAction);
2139 CTreeConflictEditorDlg dlg;
2140 dlg.SetConflictInfoText(sConflictReason);
2141 dlg.SetResolveTexts(sResolveTheirs, sResolveMine);
2142 dlg.SetPath(treeConflictPath);
2143 INT_PTR dlgRet = dlg.DoModal();
2144 bRet = (dlgRet != IDCANCEL);
2148 #endif
2149 return bRet;
2152 bool CAppUtils::IsSSHPutty()
2154 CString sshclient=g_Git.m_Environment.GetEnv(_T("GIT_SSH"));
2155 sshclient=sshclient.MakeLower();
2156 if(sshclient.Find(_T("plink.exe"),0)>=0)
2158 return true;
2160 return false;
2163 CString CAppUtils::GetClipboardLink(const CString &skipGitPrefix, int paramsCount)
2165 if (!OpenClipboard(NULL))
2166 return CString();
2168 CString sClipboardText;
2169 HGLOBAL hglb = GetClipboardData(CF_TEXT);
2170 if (hglb)
2172 LPCSTR lpstr = (LPCSTR)GlobalLock(hglb);
2173 sClipboardText = CString(lpstr);
2174 GlobalUnlock(hglb);
2176 hglb = GetClipboardData(CF_UNICODETEXT);
2177 if (hglb)
2179 LPCTSTR lpstr = (LPCTSTR)GlobalLock(hglb);
2180 sClipboardText = lpstr;
2181 GlobalUnlock(hglb);
2183 CloseClipboard();
2185 if(!sClipboardText.IsEmpty())
2187 if(sClipboardText[0] == _T('\"') && sClipboardText[sClipboardText.GetLength()-1] == _T('\"'))
2188 sClipboardText=sClipboardText.Mid(1,sClipboardText.GetLength()-2);
2190 if(sClipboardText.Find( _T("http://")) == 0)
2191 return sClipboardText;
2193 if(sClipboardText.Find( _T("https://")) == 0)
2194 return sClipboardText;
2196 if(sClipboardText.Find( _T("git://")) == 0)
2197 return sClipboardText;
2199 if(sClipboardText.Find( _T("ssh://")) == 0)
2200 return sClipboardText;
2202 if (sClipboardText.Find(_T("git@")) == 0)
2203 return sClipboardText;
2205 if(sClipboardText.GetLength()>=2)
2206 if( sClipboardText[1] == _T(':') )
2207 if( (sClipboardText[0] >= 'A' && sClipboardText[0] <= 'Z')
2208 || (sClipboardText[0] >= 'a' && sClipboardText[0] <= 'z') )
2209 return sClipboardText;
2211 // trim prefixes like "git clone "
2212 if (!skipGitPrefix.IsEmpty() && sClipboardText.Find(skipGitPrefix) == 0)
2214 sClipboardText = sClipboardText.Mid(skipGitPrefix.GetLength()).Trim();
2215 int spacePos = -1;
2216 while (paramsCount >= 0)
2218 --paramsCount;
2219 spacePos = sClipboardText.Find(_T(' '), spacePos + 1);
2220 if (spacePos == -1)
2221 break;
2223 if (spacePos > 0 && paramsCount < 0)
2224 sClipboardText = sClipboardText.Left(spacePos);
2225 return sClipboardText;
2229 return CString(_T(""));
2232 CString CAppUtils::ChooseRepository(const CString* path)
2234 CBrowseFolder browseFolder;
2235 CRegString regLastResopitory = CRegString(_T("Software\\TortoiseGit\\TortoiseProc\\LastRepo"),_T(""));
2237 browseFolder.m_style = BIF_EDITBOX | BIF_NEWDIALOGSTYLE | BIF_RETURNFSANCESTORS | BIF_RETURNONLYFSDIRS;
2238 CString strCloneDirectory;
2239 if(path)
2240 strCloneDirectory=*path;
2241 else
2243 strCloneDirectory = regLastResopitory;
2246 CString title;
2247 title.LoadString(IDS_CHOOSE_REPOSITORY);
2249 browseFolder.SetInfo(title);
2251 if (browseFolder.Show(NULL, strCloneDirectory) == CBrowseFolder::OK)
2253 regLastResopitory = strCloneDirectory;
2254 return strCloneDirectory;
2256 else
2258 return CString();
2262 bool CAppUtils::SendPatchMail(CTGitPathList& list, bool bIsMainWnd)
2264 CSendMailDlg dlg;
2266 dlg.m_PathList = list;
2268 if(dlg.DoModal()==IDOK)
2270 if (dlg.m_PathList.IsEmpty())
2271 return FALSE;
2273 CGitProgressDlg progDlg;
2274 if (bIsMainWnd)
2275 theApp.m_pMainWnd = &progDlg;
2276 SendMailProgressCommand sendMailProgressCommand;
2277 progDlg.SetCommand(&sendMailProgressCommand);
2279 sendMailProgressCommand.SetPathList(dlg.m_PathList);
2280 progDlg.SetItemCount(dlg.m_PathList.GetCount());
2282 CSendMailPatch sendMailPatch(dlg.m_To, dlg.m_CC, dlg.m_Subject, !!dlg.m_bAttachment, !!dlg.m_bCombine);
2283 sendMailProgressCommand.SetSendMailOption(&sendMailPatch);
2285 progDlg.DoModal();
2287 return true;
2289 return false;
2292 bool CAppUtils::SendPatchMail(const CString& cmd, const CString& formatpatchoutput, bool bIsMainWnd)
2294 CTGitPathList list;
2295 CString log=formatpatchoutput;
2296 int start=log.Find(cmd);
2297 if(start >=0)
2298 CString one=log.Tokenize(_T("\n"),start);
2299 else
2300 start = 0;
2302 while(start>=0)
2304 CString one=log.Tokenize(_T("\n"),start);
2305 one=one.Trim();
2306 if(one.IsEmpty() || one.Find(_T("Success")) == 0)
2307 continue;
2308 one.Replace(_T('/'),_T('\\'));
2309 CTGitPath path;
2310 path.SetFromWin(one);
2311 list.AddPath(path);
2313 if (!list.IsEmpty())
2315 return SendPatchMail(list, bIsMainWnd);
2317 else
2319 CMessageBox::Show(NULL, IDS_ERR_NOPATCHES, IDS_APPNAME, MB_ICONINFORMATION);
2320 return true;
2325 int CAppUtils::GetLogOutputEncode(CGit *pGit)
2327 CString output;
2328 output = pGit->GetConfigValue(_T("i18n.logOutputEncoding"));
2329 if(output.IsEmpty())
2330 return CUnicodeUtils::GetCPCode(pGit->GetConfigValue(_T("i18n.commitencoding")));
2331 else
2333 return CUnicodeUtils::GetCPCode(output);
2336 int CAppUtils::SaveCommitUnicodeFile(const CString& filename, CString &message)
2340 CFile file(filename, CFile::modeReadWrite | CFile::modeCreate);
2341 int cp = CUnicodeUtils::GetCPCode(g_Git.GetConfigValue(_T("i18n.commitencoding")));
2343 bool stripComments = (CRegDWORD(_T("Software\\TortoiseGit\\StripCommentedLines"), FALSE) == TRUE);
2345 if (CRegDWORD(_T("Software\\TortoiseGit\\SanitizeCommitMsg"), TRUE) == TRUE)
2346 message.TrimRight(L" \r\n");
2348 int len = message.GetLength();
2349 int start = 0;
2350 while (start >= 0 && start < len)
2352 int oldStart = start;
2353 start = message.Find(L"\n", oldStart);
2354 CString line = message.Mid(oldStart);
2355 if (start != -1)
2357 line = line.Left(start - oldStart);
2358 ++start; // move forward so we don't find the same char again
2360 if (stripComments && (line.GetLength() >= 1 && line.GetAt(0) == '#') || (start < 0 && line.IsEmpty()))
2361 continue;
2362 line.TrimRight(L" \r");
2363 CStringA lineA = CUnicodeUtils::GetMulti(line + L"\n", cp);
2364 file.Write(lineA.GetBuffer(), lineA.GetLength());
2366 file.Close();
2367 return 0;
2369 catch (CFileException *e)
2371 e->Delete();
2372 return -1;
2376 bool CAppUtils::Pull(bool showPush, bool showStashPop)
2378 CPullFetchDlg dlg;
2379 dlg.m_IsPull = TRUE;
2380 if (dlg.DoModal() == IDOK)
2382 // "git.exe pull --rebase" is not supported, never and ever. So, adapting it to Fetch & Rebase.
2383 if (dlg.m_bRebase)
2384 return DoFetch(dlg.m_RemoteURL,
2385 FALSE, // Fetch all remotes
2386 dlg.m_bAutoLoad == BST_CHECKED,
2387 dlg.m_bPrune,
2388 dlg.m_bDepth == BST_CHECKED,
2389 dlg.m_nDepth,
2390 dlg.m_bFetchTags,
2391 dlg.m_RemoteBranchName,
2392 TRUE); // Rebase after fetching
2394 CString url = dlg.m_RemoteURL;
2396 if (dlg.m_bAutoLoad)
2398 CAppUtils::LaunchPAgent(NULL, &dlg.m_RemoteURL);
2401 CString cmd;
2402 CGitHash hashOld;
2403 if (g_Git.GetHash(hashOld, _T("HEAD")))
2405 MessageBox(NULL, g_Git.GetGitLastErr(_T("Could not get HEAD hash.")), _T("TortoiseGit"), MB_ICONERROR);
2406 return false;
2409 CString cmdRebase;
2410 CString noff;
2411 CString ffonly;
2412 CString squash;
2413 CString nocommit;
2414 CString depth;
2415 CString notags;
2416 CString prune;
2418 if (!dlg.m_bFetchTags)
2419 notags = _T("--no-tags ");
2421 if (dlg.m_bFetchTags == TRUE)
2422 notags = _T("--tags ");
2424 if (dlg.m_bNoFF)
2425 noff=_T("--no-ff ");
2427 if (dlg.m_bFFonly)
2428 ffonly = _T("--ff-only ");
2430 if (dlg.m_bSquash)
2431 squash = _T("--squash ");
2433 if (dlg.m_bNoCommit)
2434 nocommit = _T("--no-commit ");
2436 if (dlg.m_bDepth)
2437 depth.Format(_T("--depth %d "), dlg.m_nDepth);
2439 int ver = CAppUtils::GetMsysgitVersion();
2441 if (dlg.m_bPrune == TRUE)
2442 prune = _T("--prune ");
2443 else if (dlg.m_bPrune == FALSE && ver >= 0x01080500)
2444 prune = _T("--no-prune ");
2446 if(ver >= 0x01070203) //above 1.7.0.2
2447 cmdRebase += _T("--progress ");
2449 cmd.Format(_T("git.exe pull -v --no-rebase %s%s%s%s%s%s%s%s\"%s\" %s"), cmdRebase, noff, ffonly, squash, nocommit, depth, notags, prune, url, dlg.m_RemoteBranchName);
2450 CProgressDlg progress;
2451 progress.m_GitCmd = cmd;
2453 CGitHash hashNew; // declare outside lambda, because it is captured by reference
2454 progress.m_PostCmdCallback = [&](DWORD status, PostCmdList& postCmdList)
2456 if (status)
2458 postCmdList.push_back(PostCmd(IDI_PULL, IDS_MENUPULL, [&]{ Pull(); }));
2459 postCmdList.push_back(PostCmd(IDI_COMMIT, IDS_MENUSTASHSAVE, [&]{ StashSave(_T(""), true); }));
2460 return;
2463 if (showStashPop)
2464 postCmdList.push_back(PostCmd(IDI_RELOCATE, IDS_MENUSTASHPOP, []{ StashPop(); }));
2466 if (g_Git.GetHash(hashNew, _T("HEAD")))
2467 MessageBox(nullptr, g_Git.GetGitLastErr(_T("Could not get HEAD hash after pulling.")), _T("TortoiseGit"), MB_ICONERROR);
2468 else
2470 postCmdList.push_back(PostCmd(IDI_DIFF, IDS_PROC_PULL_DIFFS, [&]
2472 CFileDiffDlg dlg;
2473 dlg.SetDiff(NULL, hashNew.ToString(), hashOld.ToString());
2474 dlg.DoModal();
2475 }));
2476 postCmdList.push_back(PostCmd(IDI_LOG, IDS_PROC_PULL_LOG, [&]
2478 CLogDlg dlg;
2479 dlg.SetParams(CTGitPath(_T("")), CTGitPath(_T("")), _T(""), hashOld.ToString() + _T("..") + hashNew.ToString(), 0);
2480 dlg.DoModal();
2481 }));
2484 if (showPush)
2485 postCmdList.push_back(PostCmd(IDI_PUSH, IDS_MENUPUSH, []{ Push(_T("")); }));
2487 CTGitPath gitPath = g_Git.m_CurrentDir;
2488 if (gitPath.HasSubmodules())
2490 postCmdList.push_back(PostCmd(IDI_UPDATE, IDS_PROC_SUBMODULESUPDATE, []
2492 CString sCmd;
2493 sCmd.Format(_T("/command:subupdate /bkpath:\"%s\""), g_Git.m_CurrentDir);
2494 CAppUtils::RunTortoiseGitProc(sCmd);
2495 }));
2499 INT_PTR ret = progress.DoModal();
2501 if (ret == IDOK && progress.m_GitStatus == 1 && progress.m_LogText.Find(_T("CONFLICT")) >= 0 && CMessageBox::Show(NULL, IDS_SEECHANGES, IDS_APPNAME, MB_YESNO | MB_ICONINFORMATION) == IDYES)
2503 CChangedDlg dlg;
2504 dlg.m_pathList.AddPath(CTGitPath());
2505 dlg.DoModal();
2507 return true;
2510 return ret == IDOK;
2513 return false;
2516 bool CAppUtils::RebaseAfterFetch(const CString& upstream)
2518 while (true)
2520 CRebaseDlg dlg;
2521 if (!upstream.IsEmpty())
2522 dlg.m_Upstream = upstream;
2523 dlg.m_PostButtonTexts.Add(CString(MAKEINTRESOURCE(IDS_MENULOG)));
2524 dlg.m_PostButtonTexts.Add(CString(MAKEINTRESOURCE(IDS_MENUDESSENDMAIL)));
2525 dlg.m_PostButtonTexts.Add(CString(MAKEINTRESOURCE(IDS_MENUREBASE)));
2526 INT_PTR response = dlg.DoModal();
2527 if (response == IDOK)
2529 return true;
2531 else if (response == IDC_REBASE_POST_BUTTON)
2533 CString cmd = _T("/command:log");
2534 cmd += _T(" /path:\"") + g_Git.m_CurrentDir + _T("\"");
2535 CAppUtils::RunTortoiseGitProc(cmd);
2536 return true;
2538 else if (response == IDC_REBASE_POST_BUTTON + 1)
2540 CString cmd, out, err;
2541 cmd.Format(_T("git.exe format-patch -o \"%s\" %s..%s"),
2542 g_Git.m_CurrentDir,
2543 g_Git.FixBranchName(dlg.m_Upstream),
2544 g_Git.FixBranchName(dlg.m_Branch));
2545 if (g_Git.Run(cmd, &out, &err, CP_UTF8))
2547 CMessageBox::Show(NULL, out + L"\n" + err, _T("TortoiseGit"), MB_OK | MB_ICONERROR);
2548 return false;
2550 CAppUtils::SendPatchMail(cmd, out);
2551 return true;
2553 else if (response == IDC_REBASE_POST_BUTTON + 2)
2554 continue;
2555 else if (response == IDCANCEL)
2556 return false;
2557 return false;
2561 static bool DoFetch(const CString& url, const bool fetchAllRemotes, const bool loadPuttyAgent, const int prune, const bool bDepth, const int nDepth, const int fetchTags, const CString& remoteBranch, boolean runRebase)
2563 if (loadPuttyAgent)
2565 if (fetchAllRemotes)
2567 STRING_VECTOR list;
2568 g_Git.GetRemoteList(list);
2570 STRING_VECTOR::const_iterator it = list.begin();
2571 while (it != list.end())
2573 CString remote(*it);
2574 CAppUtils::LaunchPAgent(NULL, &remote);
2575 ++it;
2578 else
2579 CAppUtils::LaunchPAgent(NULL, &url);
2582 CString cmd, arg;
2583 int ver = CAppUtils::GetMsysgitVersion();
2584 if (ver >= 0x01070203) //above 1.7.0.2
2585 arg += _T(" --progress");
2587 if (bDepth)
2588 arg.AppendFormat(_T(" --depth %d"), nDepth);
2590 if (prune == TRUE)
2591 arg += _T(" --prune");
2592 else if (prune == FALSE && ver >= 0x01080500)
2593 arg += _T(" --no-prune");
2595 if (fetchTags == 1)
2596 arg += _T(" --tags");
2597 else if (fetchTags == 0)
2598 arg += _T(" --no-tags");
2600 if (fetchAllRemotes)
2601 cmd.Format(_T("git.exe fetch --all -v%s"), arg);
2602 else
2603 cmd.Format(_T("git.exe fetch -v%s \"%s\" %s"), arg, url, remoteBranch);
2605 CProgressDlg progress;
2606 progress.m_PostCmdCallback = [&](DWORD status, PostCmdList& postCmdList)
2608 if (status)
2610 postCmdList.push_back(PostCmd(IDI_REFRESH, IDS_MSGBOX_RETRY, [&]{ DoFetch(url, fetchAllRemotes, loadPuttyAgent, prune, bDepth, nDepth, fetchTags, remoteBranch, runRebase); }));
2611 return;
2614 postCmdList.push_back(PostCmd(IDI_LOG, IDS_MENULOG, []
2616 CString cmd = _T("/command:log");
2617 cmd += _T(" /path:\"") + g_Git.m_CurrentDir + _T("\"");
2618 CAppUtils::RunTortoiseGitProc(cmd);
2619 }));
2621 postCmdList.push_back(PostCmd(IDI_REVERT, IDS_PROC_RESET, []
2623 CString pullRemote, pullBranch;
2624 g_Git.GetRemoteTrackedBranchForHEAD(pullRemote, pullBranch);
2625 CString defaultUpstream;
2626 if (!pullRemote.IsEmpty() && !pullBranch.IsEmpty())
2627 defaultUpstream.Format(_T("remotes/%s/%s"), pullRemote, pullBranch);
2628 CAppUtils::GitReset(&defaultUpstream, 2);
2629 }));
2631 postCmdList.push_back(PostCmd(IDI_PULL, IDS_MENUFETCH, []{ CAppUtils::Fetch(); }));
2633 if (!runRebase && !g_GitAdminDir.IsBareRepo(g_Git.m_CurrentDir))
2634 postCmdList.push_back(PostCmd(IDI_REBASE, IDS_MENUREBASE, [&]{ runRebase = false; CAppUtils::RebaseAfterFetch(); }));
2637 progress.m_GitCmd = cmd;
2638 INT_PTR userResponse;
2640 if (g_Git.UsingLibGit2(CGit::GIT_CMD_FETCH))
2642 CGitProgressDlg gitdlg;
2643 FetchProgressCommand fetchProgressCommand;
2644 if (!fetchAllRemotes)
2645 fetchProgressCommand.SetUrl(url);
2646 gitdlg.SetCommand(&fetchProgressCommand);
2647 fetchProgressCommand.m_PostCmdCallback = progress.m_PostCmdCallback;
2648 fetchProgressCommand.SetAutoTag(fetchTags == 1 ? GIT_REMOTE_DOWNLOAD_TAGS_ALL : fetchTags == 2 ? GIT_REMOTE_DOWNLOAD_TAGS_AUTO : GIT_REMOTE_DOWNLOAD_TAGS_NONE);
2649 if (!fetchAllRemotes)
2650 fetchProgressCommand.SetRefSpec(remoteBranch);
2651 userResponse = gitdlg.DoModal();
2652 return userResponse == IDOK;
2655 userResponse = progress.DoModal();
2656 if (!progress.m_GitStatus)
2658 if (runRebase)
2659 return CAppUtils::RebaseAfterFetch();
2662 return userResponse == IDOK;
2665 bool CAppUtils::Fetch(const CString& remoteName, bool allRemotes)
2667 CPullFetchDlg dlg;
2668 dlg.m_PreSelectRemote = remoteName;
2669 dlg.m_IsPull=FALSE;
2670 dlg.m_bAllRemotes = allRemotes;
2672 if(dlg.DoModal()==IDOK)
2673 return DoFetch(dlg.m_RemoteURL, dlg.m_bAllRemotes == BST_CHECKED, dlg.m_bAutoLoad == BST_CHECKED, dlg.m_bPrune, dlg.m_bDepth == BST_CHECKED, dlg.m_nDepth, dlg.m_bFetchTags, dlg.m_RemoteBranchName, dlg.m_bRebase == BST_CHECKED);
2675 return false;
2678 bool CAppUtils::Push(const CString& selectLocalBranch)
2680 CPushDlg dlg;
2681 dlg.m_BranchSourceName = selectLocalBranch;
2683 if (dlg.DoModal() == IDOK)
2685 CString error;
2686 DWORD exitcode = 0xFFFFFFFF;
2687 if (CHooks::Instance().PrePush(g_Git.m_CurrentDir, exitcode, error))
2689 if (exitcode)
2691 CString temp;
2692 temp.Format(IDS_ERR_HOOKFAILED, (LPCTSTR)error);
2693 CMessageBox::Show(nullptr, temp, _T("TortoiseGit"), MB_OK | MB_ICONERROR);
2694 return false;
2698 CString arg;
2700 if(dlg.m_bPack)
2701 arg += _T("--thin ");
2702 if(dlg.m_bTags && !dlg.m_bPushAllBranches)
2703 arg += _T("--tags ");
2704 if(dlg.m_bForce)
2705 arg += _T("--force ");
2706 if (dlg.m_bForceWithLease)
2707 arg += _T("--force-with-lease ");
2708 if (dlg.m_bSetUpstream)
2709 arg += _T("--set-upstream ");
2710 if (dlg.m_RecurseSubmodules == 1)
2711 arg += _T("--recurse-submodules=check ");
2712 if (dlg.m_RecurseSubmodules == 2)
2713 arg += _T("--recurse-submodules=on-demand ");
2715 int ver = CAppUtils::GetMsysgitVersion();
2717 if(ver >= 0x01070203) //above 1.7.0.2
2718 arg += _T("--progress ");
2720 CProgressDlg progress;
2722 STRING_VECTOR remotesList;
2723 if (dlg.m_bPushAllRemotes)
2724 g_Git.GetRemoteList(remotesList);
2725 else
2726 remotesList.push_back(dlg.m_URL);
2728 for (unsigned int i = 0; i < remotesList.size(); ++i)
2730 if (dlg.m_bAutoLoad)
2731 CAppUtils::LaunchPAgent(NULL, &remotesList[i]);
2733 CString cmd;
2734 if (dlg.m_bPushAllBranches)
2736 cmd.Format(_T("git.exe push --all %s \"%s\""),
2737 arg,
2738 remotesList[i]);
2740 if (dlg.m_bTags)
2742 progress.m_GitCmdList.push_back(cmd);
2743 cmd.Format(_T("git.exe push --tags %s \"%s\""), arg, remotesList[i]);
2746 else
2748 cmd.Format(_T("git.exe push %s \"%s\" %s"),
2749 arg,
2750 remotesList[i],
2751 dlg.m_BranchSourceName);
2752 if (!dlg.m_BranchRemoteName.IsEmpty())
2754 cmd += _T(":") + dlg.m_BranchRemoteName;
2757 progress.m_GitCmdList.push_back(cmd);
2760 CString superprojectRoot;
2761 g_GitAdminDir.HasAdminDir(g_Git.m_CurrentDir, false, &superprojectRoot);
2762 progress.m_PostCmdCallback = [&](DWORD status, PostCmdList& postCmdList)
2764 // need to execute hooks as those might be needed by post action commands
2765 DWORD exitcode = 0xFFFFFFFF;
2766 CString error;
2767 if (CHooks::Instance().PostPush(g_Git.m_CurrentDir, exitcode, error))
2769 if (exitcode)
2771 CString temp;
2772 temp.Format(IDS_ERR_HOOKFAILED, (LPCTSTR)error);
2773 MessageBox(nullptr, temp, _T("TortoiseGit"), MB_OK | MB_ICONERROR);
2777 if (status)
2779 bool rejected = progress.GetLogText().Find(_T("! [rejected]")) > 0;
2780 if (rejected)
2782 postCmdList.push_back(PostCmd(IDI_PULL, IDS_MENUPULL, []{ Pull(true); }));
2783 postCmdList.push_back(PostCmd(IDI_PULL, IDS_MENUFETCH, [&]{ Fetch(dlg.m_bPushAllRemotes ? _T("") : dlg.m_URL, !!dlg.m_bPushAllRemotes); }));
2785 postCmdList.push_back(PostCmd(IDI_PUSH, IDS_MENUPUSH, [&]{ Push(selectLocalBranch); }));
2786 return;
2789 postCmdList.push_back(PostCmd(IDS_PROC_REQUESTPULL, [&]{ RequestPull(dlg.m_BranchRemoteName); }));
2790 postCmdList.push_back(PostCmd(IDI_PUSH, IDS_MENUPUSH, [&]{ Push(selectLocalBranch); }));
2791 postCmdList.push_back(PostCmd(IDI_SWITCH, IDS_MENUSWITCH, [&]{ Switch(); }));
2792 if (!superprojectRoot.IsEmpty())
2794 postCmdList.push_back(PostCmd(IDI_COMMIT, IDS_PROC_COMMIT_SUPERPROJECT, [&]
2796 CString sCmd;
2797 sCmd.Format(_T("/command:commit /path:\"%s\""), superprojectRoot);
2798 RunTortoiseGitProc(sCmd);
2799 }));
2803 INT_PTR ret = progress.DoModal();
2804 return ret == IDOK;
2806 return FALSE;
2809 bool CAppUtils::RequestPull(const CString& endrevision, const CString& repositoryUrl, bool bIsMainWnd)
2811 CRequestPullDlg dlg;
2812 dlg.m_RepositoryURL = repositoryUrl;
2813 dlg.m_EndRevision = endrevision;
2814 if (dlg.DoModal()==IDOK)
2816 CString cmd;
2817 cmd.Format(_T("git.exe request-pull %s \"%s\" %s"), dlg.m_StartRevision, dlg.m_RepositoryURL, dlg.m_EndRevision);
2819 CSysProgressDlg sysProgressDlg;
2820 sysProgressDlg.SetTitle(CString(MAKEINTRESOURCE(IDS_APPNAME)));
2821 sysProgressDlg.SetLine(1, CString(MAKEINTRESOURCE(IDS_PROC_CREATINGPULLREUQEST)));
2822 sysProgressDlg.SetLine(2, CString(MAKEINTRESOURCE(IDS_PROGRESSWAIT)));
2823 sysProgressDlg.SetShowProgressBar(false);
2824 sysProgressDlg.ShowModeless((HWND)NULL, true);
2826 CString tempFileName = GetTempFile();
2827 CString err;
2828 DeleteFile(tempFileName);
2829 CreateDirectory(tempFileName, NULL);
2830 tempFileName += _T("\\pullrequest.txt");
2831 if (g_Git.RunLogFile(cmd, tempFileName, &err))
2833 CString msg;
2834 msg.LoadString(IDS_ERR_PULLREUQESTFAILED);
2835 CMessageBox::Show(NULL, msg + _T("\n") + err, _T("TortoiseGit"), MB_OK);
2836 return false;
2839 if (sysProgressDlg.HasUserCancelled())
2841 CMessageBox::Show(NULL, IDS_SVN_USERCANCELLED, IDS_APPNAME, MB_OK);
2842 ::DeleteFile(tempFileName);
2843 return false;
2846 sysProgressDlg.Stop();
2848 if (dlg.m_bSendMail)
2850 CSendMailDlg dlg;
2851 dlg.m_PathList = CTGitPathList(CTGitPath(tempFileName));
2852 dlg.m_bCustomSubject = true;
2854 if (dlg.DoModal() == IDOK)
2856 if (dlg.m_PathList.IsEmpty())
2857 return FALSE;
2859 CGitProgressDlg progDlg;
2860 if (bIsMainWnd)
2861 theApp.m_pMainWnd = &progDlg;
2862 SendMailProgressCommand sendMailProgressCommand;
2863 progDlg.SetCommand(&sendMailProgressCommand);
2865 sendMailProgressCommand.SetPathList(dlg.m_PathList);
2866 progDlg.SetItemCount(dlg.m_PathList.GetCount());
2868 CSendMailCombineable sendMailCombineable(dlg.m_To, dlg.m_CC, dlg.m_Subject, !!dlg.m_bAttachment, !!dlg.m_bCombine);
2869 sendMailProgressCommand.SetSendMailOption(&sendMailCombineable);
2871 progDlg.DoModal();
2873 return true;
2875 return false;
2878 CAppUtils::LaunchAlternativeEditor(tempFileName);
2880 return true;
2883 bool CAppUtils::CreateMultipleDirectory(const CString& szPath)
2885 CString strDir(szPath);
2886 if (strDir.GetAt(strDir.GetLength()-1)!=_T('\\'))
2888 strDir.AppendChar(_T('\\'));
2890 std::vector<CString> vPath;
2891 CString strTemp;
2892 bool bSuccess = false;
2894 for (int i=0;i<strDir.GetLength();++i)
2896 if (strDir.GetAt(i) != _T('\\'))
2898 strTemp.AppendChar(strDir.GetAt(i));
2900 else
2902 vPath.push_back(strTemp);
2903 strTemp.AppendChar(_T('\\'));
2907 for (auto vIter = vPath.begin(); vIter != vPath.end(); ++vIter)
2909 bSuccess = CreateDirectory(*vIter, NULL) ? true : false;
2912 return bSuccess;
2915 void CAppUtils::RemoveTrailSlash(CString &path)
2917 if(path.IsEmpty())
2918 return ;
2920 // For URL, do not trim the slash just after the host name component.
2921 int index = path.Find(_T("://"));
2922 if (index >= 0)
2924 index += 4;
2925 index = path.Find(_T('/'), index);
2926 if (index == path.GetLength() - 1)
2927 return;
2930 while(path[path.GetLength()-1] == _T('\\') || path[path.GetLength()-1] == _T('/' ) )
2932 path=path.Left(path.GetLength()-1);
2933 if(path.IsEmpty())
2934 return;
2938 bool CAppUtils::CheckUserData()
2940 while(g_Git.GetUserName().IsEmpty() || g_Git.GetUserEmail().IsEmpty())
2942 if(CMessageBox::Show(NULL, IDS_PROC_NOUSERDATA, IDS_APPNAME, MB_YESNO| MB_ICONERROR) == IDYES)
2944 CTGitPath path(g_Git.m_CurrentDir);
2945 CSettings dlg(IDS_PROC_SETTINGS_TITLE,&path);
2946 dlg.SetTreeViewMode(TRUE, TRUE, TRUE);
2947 dlg.SetTreeWidth(220);
2948 dlg.m_DefaultPage = _T("gitconfig");
2950 dlg.DoModal();
2951 dlg.HandleRestart();
2954 else
2955 return false;
2958 return true;
2961 BOOL CAppUtils::Commit(const CString& bugid, BOOL bWholeProject, CString &sLogMsg,
2962 CTGitPathList &pathList,
2963 CTGitPathList &selectedList,
2964 bool bSelectFilesForCommit)
2966 bool bFailed = true;
2968 if (!CheckUserData())
2969 return false;
2971 while (bFailed)
2973 bFailed = false;
2974 CCommitDlg dlg;
2975 dlg.m_sBugID = bugid;
2977 dlg.m_bWholeProject = bWholeProject;
2979 dlg.m_sLogMessage = sLogMsg;
2980 dlg.m_pathList = pathList;
2981 dlg.m_checkedPathList = selectedList;
2982 dlg.m_bSelectFilesForCommit = bSelectFilesForCommit;
2983 if (dlg.DoModal() == IDOK)
2985 if (dlg.m_pathList.IsEmpty())
2986 return false;
2987 // if the user hasn't changed the list of selected items
2988 // we don't use that list. Because if we would use the list
2989 // of pre-checked items, the dialog would show different
2990 // checked items on the next startup: it would only try
2991 // to check the parent folder (which might not even show)
2992 // instead, we simply use an empty list and let the
2993 // default checking do its job.
2994 if (!dlg.m_pathList.IsEqual(pathList))
2995 selectedList = dlg.m_pathList;
2996 pathList = dlg.m_updatedPathList;
2997 sLogMsg = dlg.m_sLogMessage;
2998 bSelectFilesForCommit = true;
3000 switch (dlg.m_PostCmd)
3002 case GIT_POSTCOMMIT_CMD_DCOMMIT:
3003 CAppUtils::SVNDCommit();
3004 break;
3005 case GIT_POSTCOMMIT_CMD_PUSH:
3006 CAppUtils::Push();
3007 break;
3008 case GIT_POSTCOMMIT_CMD_CREATETAG:
3009 CAppUtils::CreateBranchTag(TRUE);
3010 break;
3011 case GIT_POSTCOMMIT_CMD_PULL:
3012 CAppUtils::Pull(true);
3013 break;
3014 default:
3015 break;
3018 // CGitProgressDlg progDlg;
3019 // progDlg.SetChangeList(dlg.m_sChangeList, !!dlg.m_bKeepChangeList);
3020 // if (parser.HasVal(_T("closeonend")))
3021 // progDlg.SetAutoClose(parser.GetLongVal(_T("closeonend")));
3022 // progDlg.SetCommand(CGitProgressDlg::GitProgress_Commit);
3023 // progDlg.SetOptions(dlg.m_bKeepLocks ? ProgOptKeeplocks : ProgOptNone);
3024 // progDlg.SetPathList(dlg.m_pathList);
3025 // progDlg.SetCommitMessage(dlg.m_sLogMessage);
3026 // progDlg.SetDepth(dlg.m_bRecursive ? Git_depth_infinity : svn_depth_empty);
3027 // progDlg.SetSelectedList(dlg.m_selectedPathList);
3028 // progDlg.SetItemCount(dlg.m_itemsCount);
3029 // progDlg.SetBugTraqProvider(dlg.m_BugTraqProvider);
3030 // progDlg.DoModal();
3031 // CRegDWORD err = CRegDWORD(_T("Software\\TortoiseGit\\ErrorOccurred"), FALSE);
3032 // err = (DWORD)progDlg.DidErrorsOccur();
3033 // bFailed = progDlg.DidErrorsOccur();
3034 // bRet = progDlg.DidErrorsOccur();
3035 // CRegDWORD bFailRepeat = CRegDWORD(_T("Software\\TortoiseGit\\CommitReopen"), FALSE);
3036 // if (DWORD(bFailRepeat)==0)
3037 // bFailed = false; // do not repeat if the user chose not to in the settings.
3040 return true;
3044 BOOL CAppUtils::SVNDCommit()
3046 CSVNDCommitDlg dcommitdlg;
3047 CString gitSetting = g_Git.GetConfigValue(_T("svn.rmdir"));
3048 if (gitSetting == _T("")) {
3049 if (dcommitdlg.DoModal() != IDOK)
3051 return false;
3053 else
3055 if (dcommitdlg.m_remember)
3057 if (dcommitdlg.m_rmdir)
3059 gitSetting = _T("true");
3061 else
3063 gitSetting = _T("false");
3065 if(g_Git.SetConfigValue(_T("svn.rmdir"),gitSetting))
3067 CString msg;
3068 msg.Format(IDS_PROC_SAVECONFIGFAILED, _T("svn.rmdir"), gitSetting);
3069 CMessageBox::Show(NULL, msg, _T("TortoiseGit"), MB_OK | MB_ICONERROR);
3075 BOOL IsStash = false;
3076 if(!g_Git.CheckCleanWorkTree())
3078 if (CMessageBox::Show(NULL, IDS_ERROR_NOCLEAN_STASH, IDS_APPNAME, 1, IDI_QUESTION, IDS_STASHBUTTON, IDS_ABORTBUTTON) == 1)
3080 CSysProgressDlg sysProgressDlg;
3081 sysProgressDlg.SetTitle(CString(MAKEINTRESOURCE(IDS_APPNAME)));
3082 sysProgressDlg.SetLine(1, CString(MAKEINTRESOURCE(IDS_PROC_STASHRUNNING)));
3083 sysProgressDlg.SetLine(2, CString(MAKEINTRESOURCE(IDS_PROGRESSWAIT)));
3084 sysProgressDlg.SetShowProgressBar(false);
3085 sysProgressDlg.SetCancelMsg(IDS_PROGRS_INFOFAILED);
3086 sysProgressDlg.ShowModeless((HWND)NULL, true);
3088 CString cmd,out;
3089 cmd=_T("git.exe stash");
3090 if (g_Git.Run(cmd, &out, CP_UTF8))
3092 sysProgressDlg.Stop();
3093 CMessageBox::Show(NULL,out,_T("TortoiseGit"),MB_OK);
3094 return false;
3096 sysProgressDlg.Stop();
3098 IsStash =true;
3100 else
3102 return false;
3106 CProgressDlg progress;
3107 if (dcommitdlg.m_rmdir)
3109 progress.m_GitCmd=_T("git.exe svn dcommit --rmdir");
3111 else
3113 progress.m_GitCmd=_T("git.exe svn dcommit");
3115 if(progress.DoModal()==IDOK && progress.m_GitStatus == 0)
3117 ::DeleteFile(g_Git.m_CurrentDir + _T("\\sys$command"));
3118 if( IsStash)
3120 if(CMessageBox::Show(NULL,IDS_DCOMMIT_STASH_POP,IDS_APPNAME,MB_YESNO|MB_ICONINFORMATION)==IDYES)
3122 CSysProgressDlg sysProgressDlg;
3123 sysProgressDlg.SetTitle(CString(MAKEINTRESOURCE(IDS_APPNAME)));
3124 sysProgressDlg.SetLine(1, CString(MAKEINTRESOURCE(IDS_PROC_STASHRUNNING)));
3125 sysProgressDlg.SetLine(2, CString(MAKEINTRESOURCE(IDS_PROGRESSWAIT)));
3126 sysProgressDlg.SetShowProgressBar(false);
3127 sysProgressDlg.SetCancelMsg(IDS_PROGRS_INFOFAILED);
3128 sysProgressDlg.ShowModeless((HWND)NULL, true);
3130 CString cmd,out;
3131 cmd=_T("git.exe stash pop");
3132 if (g_Git.Run(cmd, &out, CP_UTF8))
3134 sysProgressDlg.Stop();
3135 CMessageBox::Show(NULL,out,_T("TortoiseGit"),MB_OK);
3136 return false;
3138 sysProgressDlg.Stop();
3140 else
3142 return false;
3145 return TRUE;
3147 return FALSE;
3150 BOOL CAppUtils::Merge(const CString* commit, bool showStashPop)
3152 if (!CheckUserData())
3153 return FALSE;
3155 CMergeDlg dlg;
3156 if(commit)
3157 dlg.m_initialRefName = *commit;
3159 if(dlg.DoModal()==IDOK)
3161 CString cmd;
3162 CString args;
3164 if(dlg.m_bNoFF)
3165 args += _T(" --no-ff");
3167 if(dlg.m_bSquash)
3168 args += _T(" --squash");
3170 if(dlg.m_bNoCommit)
3171 args += _T(" --no-commit");
3173 if (dlg.m_bLog)
3175 CString fmt;
3176 fmt.Format(_T(" --log=%d"), dlg.m_nLog);
3177 args += fmt;
3180 if (!dlg.m_MergeStrategy.IsEmpty())
3182 args += _T(" --strategy=") + dlg.m_MergeStrategy;
3183 if (!dlg.m_StrategyOption.IsEmpty())
3185 args += _T(" --strategy-option=") + dlg.m_StrategyOption;
3186 if (!dlg.m_StrategyParam.IsEmpty())
3187 args += _T("=") + dlg.m_StrategyParam;
3191 if(!dlg.m_strLogMesage.IsEmpty())
3193 CString logmsg = dlg.m_strLogMesage;
3194 logmsg.Replace(_T("\""), _T("\\\""));
3195 args += _T(" -m \"") + logmsg + _T("\"");
3197 cmd.Format(_T("git.exe merge %s %s"), args, g_Git.FixBranchName(dlg.m_VersionName));
3199 CProgressDlg Prodlg;
3200 Prodlg.m_GitCmd = cmd;
3202 Prodlg.m_PostCmdCallback = [&](DWORD status, PostCmdList& postCmdList)
3204 if (status)
3206 CTGitPathList list;
3207 if (!g_Git.ListConflictFile(list) && !list.IsEmpty())
3209 // there are conflict files
3211 postCmdList.push_back(PostCmd(IDI_RESOLVE, IDS_PROGRS_CMD_RESOLVE, []
3213 CString sCmd;
3214 sCmd.Format(_T("/command:commit /path:\"%s\""), g_Git.m_CurrentDir);
3215 CAppUtils::RunTortoiseGitProc(sCmd);
3216 }));
3219 postCmdList.push_back(PostCmd(IDI_COMMIT, IDS_MENUSTASHSAVE, [&]{ CAppUtils::StashSave(_T(""), false, false, true, g_Git.FixBranchName(dlg.m_VersionName)); }));
3220 return;
3223 if (showStashPop)
3224 postCmdList.push_back(PostCmd(IDI_RELOCATE, IDS_MENUSTASHPOP, []{ StashPop(); }));
3226 if (dlg.m_bNoCommit)
3228 postCmdList.push_back(PostCmd(IDI_COMMIT, IDS_MENUCOMMIT, []
3230 CString sCmd;
3231 sCmd.Format(_T("/command:commit /path:\"%s\""), g_Git.m_CurrentDir);
3232 CAppUtils::RunTortoiseGitProc(sCmd);
3233 }));
3234 return;
3237 if (dlg.m_bIsBranch && dlg.m_VersionName.Find(L"remotes/") == -1) // do not ask to remove remote branches
3239 postCmdList.push_back(PostCmd(IDI_DELETE, IDS_PROC_REMOVEBRANCH, [&]
3241 CString msg;
3242 msg.Format(IDS_PROC_DELETEBRANCHTAG, dlg.m_VersionName);
3243 if (CMessageBox::Show(nullptr, msg, _T("TortoiseGit"), 2, IDI_QUESTION, CString(MAKEINTRESOURCE(IDS_DELETEBUTTON)), CString(MAKEINTRESOURCE(IDS_ABORTBUTTON))) == 1)
3245 CString cmd, out;
3246 cmd.Format(_T("git.exe branch -D -- %s"), dlg.m_VersionName);
3247 if (g_Git.Run(cmd, &out, CP_UTF8))
3248 MessageBox(nullptr, out, _T("TortoiseGit"), MB_OK);
3250 }));
3252 if (dlg.m_bIsBranch)
3253 postCmdList.push_back(PostCmd(IDI_PUSH, IDS_MENUPUSH, []{ Push(); }));
3255 BOOL hasGitSVN = CTGitPath(g_Git.m_CurrentDir).GetAdminDirMask() & ITEMIS_GITSVN;
3256 if (hasGitSVN)
3257 postCmdList.push_back(PostCmd(IDI_COMMIT, IDS_MENUSVNDCOMMIT, []{ SVNDCommit(); }));
3260 Prodlg.DoModal();
3261 return !Prodlg.m_GitStatus;
3263 return false;
3266 BOOL CAppUtils::MergeAbort()
3268 CMergeAbortDlg dlg;
3269 if (dlg.DoModal() == IDOK)
3270 return Reset(_T("HEAD"), dlg.m_ResetType + 1);
3272 return FALSE;
3275 void CAppUtils::EditNote(GitRev *rev)
3277 if (!CheckUserData())
3278 return;
3280 CInputDlg dlg;
3281 dlg.m_sHintText = CString(MAKEINTRESOURCE(IDS_PROGS_TITLE_EDITNOTES));
3282 dlg.m_sInputText = rev->m_Notes;
3283 dlg.m_sTitle = CString(MAKEINTRESOURCE(IDS_PROGS_TITLE_EDITNOTES));
3284 //dlg.m_pProjectProperties = &m_ProjectProperties;
3285 dlg.m_bUseLogWidth = true;
3286 if(dlg.DoModal() == IDOK)
3288 CString cmd,output;
3289 cmd=_T("notes add -f -F \"");
3291 CString tempfile=::GetTempFile();
3292 if (CAppUtils::SaveCommitUnicodeFile(tempfile, dlg.m_sInputText))
3294 CMessageBox::Show(nullptr, IDS_PROC_FAILEDSAVINGNOTES, IDS_APPNAME, MB_OK | MB_ICONERROR);
3295 return;
3297 cmd += tempfile;
3298 cmd += _T("\" ");
3299 cmd += rev->m_CommitHash.ToString();
3303 if (git_run_cmd("notes", CUnicodeUtils::GetMulti(cmd, CP_UTF8).GetBuffer()))
3305 CMessageBox::Show(NULL, IDS_PROC_FAILEDSAVINGNOTES, IDS_APPNAME, MB_OK | MB_ICONERROR);
3308 else
3310 rev->m_Notes = dlg.m_sInputText;
3312 }catch(...)
3314 CMessageBox::Show(NULL, IDS_PROC_FAILEDSAVINGNOTES, IDS_APPNAME, MB_OK | MB_ICONERROR);
3316 ::DeleteFile(tempfile);
3321 int CAppUtils::GetMsysgitVersion()
3323 if (g_Git.ms_LastMsysGitVersion)
3324 return g_Git.ms_LastMsysGitVersion;
3326 CString cmd;
3327 CString versiondebug;
3328 CString version;
3330 CRegDWORD regTime = CRegDWORD(_T("Software\\TortoiseGit\\git_file_time"));
3331 CRegDWORD regVersion = CRegDWORD(_T("Software\\TortoiseGit\\git_cached_version"));
3333 CString gitpath = CGit::ms_LastMsysGitDir+_T("\\git.exe");
3335 __int64 time=0;
3336 if (!g_Git.GetFileModifyTime(gitpath, &time))
3338 if((DWORD)time == regTime)
3340 g_Git.ms_LastMsysGitVersion = regVersion;
3341 return regVersion;
3345 CString err;
3346 cmd = _T("git.exe --version");
3347 if (g_Git.Run(cmd, &version, &err, CP_UTF8))
3349 CMessageBox::Show(NULL, _T("git.exe not correctly set up (") + err + _T(")\nCheck TortoiseGit settings and consult help file for \"Git.exe Path\"."), _T("TortoiseGit"), MB_OK|MB_ICONERROR);
3350 return -1;
3353 int start=0;
3354 int ver = 0;
3356 versiondebug = version;
3360 CString str=version.Tokenize(_T("."), start);
3361 int space = str.ReverseFind(_T(' '));
3362 str = str.Mid(space+1,start);
3363 ver = _ttol(str);
3364 ver <<=24;
3366 version = version.Mid(start);
3367 start = 0;
3369 str = version.Tokenize(_T("."), start);
3371 ver |= (_ttol(str) & 0xFF) << 16;
3373 str = version.Tokenize(_T("."), start);
3374 ver |= (_ttol(str) & 0xFF) << 8;
3376 str = version.Tokenize(_T("."), start);
3377 ver |= (_ttol(str) & 0xFF);
3379 catch(...)
3381 if (!ver)
3383 CMessageBox::Show(NULL, _T("Could not parse git.exe version number: \"") + versiondebug + _T("\""), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
3384 return -1;
3388 regTime = time&0xFFFFFFFF;
3389 regVersion = ver;
3390 g_Git.ms_LastMsysGitVersion = ver;
3392 return ver;
3395 void CAppUtils::MarkWindowAsUnpinnable(HWND hWnd)
3397 typedef HRESULT (WINAPI *SHGPSFW) (HWND hwnd,REFIID riid,void** ppv);
3399 CAutoLibrary hShell = AtlLoadSystemLibraryUsingFullPath(_T("Shell32.dll"));
3401 if (hShell.IsValid()) {
3402 SHGPSFW pfnSHGPSFW = (SHGPSFW)::GetProcAddress(hShell, "SHGetPropertyStoreForWindow");
3403 if (pfnSHGPSFW) {
3404 IPropertyStore *pps;
3405 HRESULT hr = pfnSHGPSFW(hWnd, IID_PPV_ARGS(&pps));
3406 if (SUCCEEDED(hr)) {
3407 PROPVARIANT var;
3408 var.vt = VT_BOOL;
3409 var.boolVal = VARIANT_TRUE;
3410 pps->SetValue(PKEY_AppUserModel_PreventPinning, var);
3411 pps->Release();
3417 void CAppUtils::SetWindowTitle(HWND hWnd, const CString& urlorpath, const CString& dialogname)
3419 ASSERT(dialogname.GetLength() < 70);
3420 ASSERT(urlorpath.GetLength() < MAX_PATH);
3421 WCHAR pathbuf[MAX_PATH] = {0};
3423 PathCompactPathEx(pathbuf, urlorpath, 70 - dialogname.GetLength(), 0);
3425 wcscat_s(pathbuf, L" - ");
3426 wcscat_s(pathbuf, dialogname);
3427 wcscat_s(pathbuf, L" - ");
3428 wcscat_s(pathbuf, CString(MAKEINTRESOURCE(IDS_APPNAME)));
3429 SetWindowText(hWnd, pathbuf);
3432 bool CAppUtils::BisectStart(const CString& lastGood, const CString& firstBad, bool bIsMainWnd)
3434 if (!g_Git.CheckCleanWorkTree())
3436 if (CMessageBox::Show(NULL, IDS_ERROR_NOCLEAN_STASH, IDS_APPNAME, 1, IDI_QUESTION, IDS_STASHBUTTON, IDS_ABORTBUTTON) == 1)
3438 CSysProgressDlg sysProgressDlg;
3439 sysProgressDlg.SetTitle(CString(MAKEINTRESOURCE(IDS_APPNAME)));
3440 sysProgressDlg.SetLine(1, CString(MAKEINTRESOURCE(IDS_PROC_STASHRUNNING)));
3441 sysProgressDlg.SetLine(2, CString(MAKEINTRESOURCE(IDS_PROGRESSWAIT)));
3442 sysProgressDlg.SetShowProgressBar(false);
3443 sysProgressDlg.SetCancelMsg(IDS_PROGRS_INFOFAILED);
3444 sysProgressDlg.ShowModeless((HWND)NULL, true);
3446 CString cmd, out;
3447 cmd = _T("git.exe stash");
3448 if (g_Git.Run(cmd, &out, CP_UTF8))
3450 sysProgressDlg.Stop();
3451 CMessageBox::Show(NULL, out, _T("TortoiseGit"), MB_OK);
3452 return false;
3454 sysProgressDlg.Stop();
3456 else
3457 return false;
3460 CBisectStartDlg bisectStartDlg;
3462 if (!lastGood.IsEmpty())
3463 bisectStartDlg.m_sLastGood = lastGood;
3464 if (!firstBad.IsEmpty())
3465 bisectStartDlg.m_sFirstBad = firstBad;
3467 if (bisectStartDlg.DoModal() == IDOK)
3469 CProgressDlg progress;
3470 if (bIsMainWnd)
3471 theApp.m_pMainWnd = &progress;
3472 progress.m_GitCmdList.push_back(_T("git.exe bisect start"));
3473 progress.m_GitCmdList.push_back(_T("git.exe bisect good ") + bisectStartDlg.m_LastGoodRevision);
3474 progress.m_GitCmdList.push_back(_T("git.exe bisect bad ") + bisectStartDlg.m_FirstBadRevision);
3476 progress.m_PostCmdCallback = [&](DWORD status, PostCmdList& postCmdList)
3478 if (status)
3479 return;
3481 CTGitPath path(g_Git.m_CurrentDir);
3482 if (path.HasSubmodules())
3484 postCmdList.push_back(PostCmd(IDI_UPDATE, IDS_PROC_SUBMODULESUPDATE, []
3486 CString sCmd;
3487 sCmd.Format(_T("/command:subupdate /bkpath:\"%s\""), g_Git.m_CurrentDir);
3488 CAppUtils::RunTortoiseGitProc(sCmd);
3489 }));
3495 INT_PTR ret = progress.DoModal();
3496 return ret == IDOK;
3499 return false;
3502 int CAppUtils::Git2GetUserPassword(git_cred **out, const char *url, const char *username_from_url, unsigned int /*allowed_types*/, void * /*payload*/)
3504 CUserPassword dlg;
3505 dlg.m_URL = CUnicodeUtils::GetUnicode(url, CP_UTF8);
3506 if (username_from_url)
3507 dlg.m_UserName = CUnicodeUtils::GetUnicode(username_from_url, CP_UTF8);
3509 CStringA username, password;
3510 if (dlg.DoModal() == IDOK)
3512 username = CUnicodeUtils::GetMulti(dlg.m_UserName, CP_UTF8);
3513 password = CUnicodeUtils::GetMulti(dlg.m_Password, CP_UTF8);
3514 return git_cred_userpass_plaintext_new(out, username, password);
3516 giterr_set_str(GITERR_NONE, "User cancelled.");
3517 return GIT_EUSER;
3520 int CAppUtils::Git2CertificateCheck(git_cert* base_cert, int /*valid*/, const char* host, void* /*payload*/)
3522 if (base_cert->cert_type == GIT_CERT_X509)
3524 git_cert_x509* cert = (git_cert_x509*)base_cert;
3526 if (last_accepted_cert.cmp(cert))
3527 return 0;
3529 PCCERT_CONTEXT pServerCert = CertCreateCertificateContext(X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, (BYTE*)cert->data, (DWORD)cert->len);
3531 DWORD verificationError = VerifyServerCertificate(pServerCert, CUnicodeUtils::GetUnicode(host).GetBuffer(), 0);
3532 if (!verificationError)
3534 last_accepted_cert.set(cert);
3535 CertFreeCertificateContext(pServerCert);
3536 return 0;
3539 CString servernameInCert;
3540 CertGetNameString(pServerCert, CERT_NAME_SIMPLE_DISPLAY_TYPE, 0, nullptr, servernameInCert.GetBuffer(128), 128);
3541 servernameInCert.ReleaseBuffer();
3543 CString issuer;
3544 CertGetNameString(pServerCert, CERT_NAME_SIMPLE_DISPLAY_TYPE, CERT_NAME_ISSUER_FLAG, nullptr, issuer.GetBuffer(128), 128);
3545 issuer.ReleaseBuffer();
3547 CertFreeCertificateContext(pServerCert);
3549 CCheckCertificateDlg dlg;
3550 dlg.cert = cert;
3551 dlg.m_sCertificateCN = servernameInCert;
3552 dlg.m_sCertificateIssuer = issuer;
3553 dlg.m_sHostname = CUnicodeUtils::GetUnicode(host);
3554 dlg.m_sError = CFormatMessageWrapper(verificationError);
3555 if (dlg.DoModal() == IDOK)
3557 last_accepted_cert.set(cert);
3558 return 0;
3561 return GIT_ECERTIFICATE;
3564 void CAppUtils::ExploreTo(HWND hwnd, CString path)
3566 if (PathFileExists(path))
3568 ITEMIDLIST __unaligned * pidl = ILCreateFromPath(path);
3569 if (pidl)
3571 SHOpenFolderAndSelectItems(pidl, 0, 0, 0);
3572 ILFree(pidl);
3574 return;
3576 // if filepath does not exist any more, navigate to closest matching folder
3579 int pos = path.ReverseFind(_T('\\'));
3580 if (pos <= 3)
3581 break;
3582 path = path.Left(pos);
3583 } while (!PathFileExists(path));
3584 ShellExecute(hwnd, _T("explore"), path, nullptr, nullptr, SW_SHOW);
3587 int CAppUtils::ResolveConflict(CTGitPath& path, resolve_with resolveWith)
3589 bool b_local = false, b_remote = false;
3590 BYTE_VECTOR vector;
3592 CString cmd;
3593 cmd.Format(_T("git.exe ls-files -u -t -z -- \"%s\""), path.GetGitPathString());
3594 if (g_Git.Run(cmd, &vector))
3596 CMessageBox::Show(nullptr, _T("git ls-files failed!"), _T("TortoiseGit"), MB_OK);
3597 return -1;
3600 CTGitPathList list;
3601 if (list.ParserFromLsFile(vector))
3603 CMessageBox::Show(nullptr, _T("Parse ls-files failed!"), _T("TortoiseGit"), MB_OK);
3604 return -1;
3607 if (list.IsEmpty())
3608 return 0;
3609 for (int i = 0; i < list.GetCount(); ++i)
3611 if (list[i].m_Stage == 2)
3612 b_local = true;
3613 if (list[i].m_Stage == 3)
3614 b_remote = true;
3618 CBlockCacheForPath block(g_Git.m_CurrentDir);
3619 if (path.IsDirectory()) // is submodule conflict
3621 CString err = _T("We're sorry, but you hit a very rare conflict condition with a submodule which cannot be resolved by TortoiseGit. You have to use the command line git for this.");
3622 if (b_local && b_remote)
3624 if (!path.HasAdminDir()) // check if submodule is initialized
3626 err += _T("\n\nYou have to checkout the submodule manually into \"") + path.GetGitPathString() + _T("\" and then reset HEAD to the right commit (see resolve submodule conflict dialog for this).");
3627 MessageBox(nullptr, err, _T("TortoiseGit"), MB_ICONERROR);
3628 return -1;
3630 CGit subgit;
3631 subgit.m_CurrentDir = g_Git.CombinePath(path);
3632 CGitHash submoduleHead;
3633 if (subgit.GetHash(submoduleHead, _T("HEAD")))
3635 MessageBox(nullptr, err, _T("TortoiseGit"), MB_ICONERROR);
3636 return -1;
3638 CString baseHash, localHash, remoteHash;
3639 ParseHashesFromLsFile(vector, baseHash, localHash, remoteHash);
3640 if (resolveWith == RESOLVE_WITH_THEIRS && submoduleHead.ToString() != remoteHash)
3642 CString origPath = g_Git.m_CurrentDir;
3643 g_Git.m_CurrentDir = g_Git.CombinePath(path);
3644 if (!GitReset(&remoteHash))
3646 g_Git.m_CurrentDir = origPath;
3647 return -1;
3649 g_Git.m_CurrentDir = origPath;
3651 else if (resolveWith == RESOLVE_WITH_MINE && submoduleHead.ToString() != localHash)
3653 CString origPath = g_Git.m_CurrentDir;
3654 g_Git.m_CurrentDir = g_Git.CombinePath(path);
3655 if (!GitReset(&localHash))
3657 g_Git.m_CurrentDir = origPath;
3658 return -1;
3660 g_Git.m_CurrentDir = origPath;
3663 else
3665 MessageBox(nullptr, err, _T("TortoiseGit"), MB_ICONERROR);
3666 return -1;
3670 if (resolveWith == RESOLVE_WITH_THEIRS)
3672 CString gitcmd, output;
3673 if (b_local && b_remote)
3674 gitcmd.Format(_T("git.exe checkout-index -f --stage=3 -- \"%s\""), path.GetGitPathString());
3675 else if (b_remote)
3676 gitcmd.Format(_T("git.exe add -f -- \"%s\""), path.GetGitPathString());
3677 else if (b_local)
3678 gitcmd.Format(_T("git.exe rm -f -- \"%s\""), path.GetGitPathString());
3679 if (g_Git.Run(gitcmd, &output, CP_UTF8))
3681 CMessageBox::Show(nullptr, output, _T("TortoiseGit"), MB_ICONERROR);
3682 return -1;
3685 else if (resolveWith == RESOLVE_WITH_MINE)
3687 CString gitcmd, output;
3688 if (b_local && b_remote)
3689 gitcmd.Format(_T("git.exe checkout-index -f --stage=2 -- \"%s\""), path.GetGitPathString());
3690 else if (b_local)
3691 gitcmd.Format(_T("git.exe add -f -- \"%s\""), path.GetGitPathString());
3692 else if (b_remote)
3693 gitcmd.Format(_T("git.exe rm -f -- \"%s\""), path.GetGitPathString());
3694 if (g_Git.Run(gitcmd, &output, CP_UTF8))
3696 CMessageBox::Show(nullptr, output, _T("TortoiseGit"), MB_ICONERROR);
3697 return -1;
3701 if (b_local && b_remote && path.m_Action & CTGitPath::LOGACTIONS_UNMERGED)
3703 CString gitcmd, output;
3704 gitcmd.Format(_T("git.exe add -f -- \"%s\""), path.GetGitPathString());
3705 if (g_Git.Run(gitcmd, &output, CP_UTF8))
3706 CMessageBox::Show(nullptr, output, _T("TortoiseGit"), MB_ICONERROR);
3707 else
3709 path.m_Action |= CTGitPath::LOGACTIONS_MODIFIED;
3710 path.m_Action &= ~CTGitPath::LOGACTIONS_UNMERGED;
3714 RemoveTempMergeFile(path);
3715 return 0;
3718 bool CAppUtils::ShellOpen(const CString& file, HWND hwnd /*= nullptr */)
3720 if ((int)ShellExecute(hwnd, NULL, file, NULL, NULL, SW_SHOW) > HINSTANCE_ERROR)
3721 return true;
3723 return ShowOpenWithDialog(file, hwnd);
3726 bool CAppUtils::ShowOpenWithDialog(const CString& file, HWND hwnd /*= nullptr */)
3728 CAutoLibrary hShell = AtlLoadSystemLibraryUsingFullPath(_T("shell32.dll"));
3729 if (hShell)
3731 typedef HRESULT STDAPICALLTYPE SHOpenWithDialoFN(_In_opt_ HWND hwndParent, _In_ const OPENASINFO *poainfo);
3732 SHOpenWithDialoFN *pfnSHOpenWithDialog = (SHOpenWithDialoFN*)GetProcAddress(hShell, "SHOpenWithDialog");
3733 if (pfnSHOpenWithDialog)
3735 OPENASINFO oi = { 0 };
3736 oi.pcszFile = file;
3737 oi.oaifInFlags = OAIF_EXEC;
3738 return SUCCEEDED(pfnSHOpenWithDialog(hwnd, &oi));
3741 CString cmd = _T("RUNDLL32 Shell32,OpenAs_RunDLL ");
3742 cmd += file;
3743 return CAppUtils::LaunchApplication(cmd, NULL, false);