No need to beep after displaying Commit Not Visible message
[TortoiseGit.git] / src / TortoiseProc / GitDiff.cpp
bloba98ac439224da232201cbd507bea071d9c00b5f7
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2008 - TortoiseSVN
4 // Copyright (C) 2008-2014 - TortoiseGit
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.
19 #include "stdafx.h"
20 #include "GitDiff.h"
21 #include "AppUtils.h"
22 #include "Git.h"
23 #include "gittype.h"
24 #include "resource.h"
25 #include "MessageBox.h"
26 #include "FileDiffDlg.h"
27 #include "SubmoduleDiffDlg.h"
29 CGitDiff::CGitDiff(void)
33 CGitDiff::~CGitDiff(void)
36 int CGitDiff::SubmoduleDiffNull(const CTGitPath * pPath, const git_revnum_t &rev1)
38 CString oldhash = GIT_REV_ZERO;
39 CString oldsub ;
40 CString newsub;
41 CString newhash;
43 CString cmd;
44 if (rev1 != GIT_REV_ZERO)
45 cmd.Format(_T("git.exe ls-tree \"%s\" -- \"%s\""), rev1, pPath->GetGitPathString());
46 else
47 cmd.Format(_T("git.exe ls-files -s -- \"%s\""), pPath->GetGitPathString());
49 CString output, err;
50 if (g_Git.Run(cmd, &output, &err, CP_UTF8))
52 CMessageBox::Show(NULL, output + L"\n" + err, _T("TortoiseGit"), MB_OK|MB_ICONERROR);
53 return -1;
56 int start=0;
57 start=output.Find(_T(' '),start);
58 if(start>0)
60 if (rev1 != GIT_REV_ZERO) // in ls-files the hash is in the second column; in ls-tree it's in the third one
61 start = output.Find(_T(' '), start + 1);
62 if(start>0)
63 newhash=output.Mid(start+1, 40);
65 CGit subgit;
66 subgit.m_CurrentDir = g_Git.CombinePath(pPath);
67 int encode=CAppUtils::GetLogOutputEncode(&subgit);
69 cmd.Format(_T("git.exe log -n1 --pretty=format:\"%%s\" %s --"), newhash);
70 bool toOK = !subgit.Run(cmd,&newsub,encode);
72 bool dirty = false;
73 if (rev1 == GIT_REV_ZERO)
75 CString dirtyList;
76 subgit.Run(_T("git.exe status --porcelain"), &dirtyList, encode);
77 dirty = !dirtyList.IsEmpty();
80 CSubmoduleDiffDlg submoduleDiffDlg;
81 submoduleDiffDlg.SetDiff(pPath->GetWinPath(), false, oldhash, oldsub, true, newhash, newsub, toOK, dirty, CSubmoduleDiffDlg::NewSubmodule);
82 submoduleDiffDlg.DoModal();
83 if (submoduleDiffDlg.IsRefresh())
84 return 1;
86 return 0;
89 if (rev1 != GIT_REV_ZERO)
90 CMessageBox::Show(NULL, _T("ls-tree output format error"), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
91 else
92 CMessageBox::Show(NULL, _T("ls-files output format error"), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
93 return -1;
96 int CGitDiff::DiffNull(const CTGitPath *pPath, git_revnum_t rev1, bool bIsAdd, int jumpToLine)
98 CString temppath;
99 GetTempPath(temppath);
100 if (rev1 != GIT_REV_ZERO)
102 CGitHash rev1Hash;
103 if (g_Git.GetHash(rev1Hash, rev1)) // make sure we have a HASH here, otherwise filenames might be invalid
105 MessageBox(NULL, g_Git.GetGitLastErr(_T("Could not get hash of \"") + rev1 + _T("\".")), _T("TortoiseGit"), MB_ICONERROR);
106 return -1;
108 rev1 = rev1Hash.ToString();
110 CString file1;
111 CString nullfile;
112 CString cmd;
114 if(pPath->IsDirectory())
116 int result;
117 // refresh if result = 1
118 CTGitPath path = *pPath;
119 while ((result = SubmoduleDiffNull(&path, rev1)) == 1)
121 path.SetFromGit(pPath->GetGitPathString());
123 return result;
126 if(rev1 != GIT_REV_ZERO )
128 TCHAR szTempName[MAX_PATH] = {0};
129 GetTempFileName(temppath, pPath->GetBaseFilename(), 0, szTempName);
130 CString temp(szTempName);
131 DeleteFile(szTempName);
132 CreateDirectory(szTempName, NULL);
133 file1.Format(_T("%s\\%s-%s%s"),
134 temp,
135 pPath->GetBaseFilename(),
136 rev1.Left(g_Git.GetShortHASHLength()),
137 pPath->GetFileExtension());
139 if (g_Git.GetOneFile(rev1, *pPath, file1))
141 CString out;
142 out.Format(IDS_STATUSLIST_CHECKOUTFILEFAILED, pPath->GetGitPathString(), rev1, file1);
143 CMessageBox::Show(nullptr, g_Git.GetGitLastErr(out, CGit::GIT_CMD_GETONEFILE), _T("TortoiseGit"), MB_OK);
144 return -1;
147 else
149 file1 = g_Git.CombinePath(pPath);
152 // preserve FileExtension, needed especially for diffing deleted images (detection on new filename extension)
153 CString tempfile=::GetTempFile() + pPath->GetFileExtension();
154 CStdioFile file(tempfile,CFile::modeReadWrite|CFile::modeCreate );
155 //file.WriteString();
156 file.Close();
157 ::SetFileAttributes(tempfile, FILE_ATTRIBUTE_READONLY);
159 CAppUtils::DiffFlags flags;
161 if(bIsAdd)
162 CAppUtils::StartExtDiff(tempfile,file1,
163 pPath->GetGitPathString(),
164 pPath->GetGitPathString() + _T(":") + rev1.Left(g_Git.GetShortHASHLength()),
165 g_Git.CombinePath(pPath), g_Git.CombinePath(pPath),
166 git_revnum_t(GIT_REV_ZERO), rev1
167 , flags, jumpToLine);
168 else
169 CAppUtils::StartExtDiff(file1,tempfile,
170 pPath->GetGitPathString() + _T(":") + rev1.Left(g_Git.GetShortHASHLength()),
171 pPath->GetGitPathString(),
172 g_Git.CombinePath(pPath), g_Git.CombinePath(pPath),
173 rev1, git_revnum_t(GIT_REV_ZERO)
174 , flags, jumpToLine);
176 return 0;
179 int CGitDiff::SubmoduleDiff(const CTGitPath * pPath, const CTGitPath * /*pPath2*/, const git_revnum_t &rev1, const git_revnum_t &rev2, bool /*blame*/, bool /*unified*/)
181 CString oldhash;
182 CString newhash;
183 bool dirty = false;
184 CString cmd;
185 bool isWorkingCopy = false;
186 if( rev2 == GIT_REV_ZERO || rev1 == GIT_REV_ZERO )
188 oldhash = GIT_REV_ZERO;
189 newhash = GIT_REV_ZERO;
191 CString rev;
192 if( rev2 != GIT_REV_ZERO )
193 rev = rev2;
194 if( rev1 != GIT_REV_ZERO )
195 rev = rev1;
197 isWorkingCopy = true;
199 cmd.Format(_T("git.exe diff %s -- \"%s\""),
200 rev,pPath->GetGitPathString());
202 CString output, err;
203 if (g_Git.Run(cmd, &output, &err, CP_UTF8))
205 CMessageBox::Show(NULL, output + L"\n" + err, _T("TortoiseGit"), MB_OK|MB_ICONERROR);
206 return -1;
209 if (output.IsEmpty())
211 output.Empty();
212 err.Empty();
213 // also compare against index
214 cmd.Format(_T("git.exe diff -- \"%s\""), pPath->GetGitPathString());
215 if (g_Git.Run(cmd, &output, &err, CP_UTF8))
217 CMessageBox::Show(NULL, output + _T("\n") + err, _T("TortoiseGit"), MB_OK | MB_ICONERROR);
218 return -1;
221 if (output.IsEmpty())
223 CMessageBox::Show(NULL, CString(MAKEINTRESOURCE(IDS_ERR_EMPTYDIFF)), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
224 return -1;
226 else if (CMessageBox::Show(NULL, CString(MAKEINTRESOURCE(IDS_SUBMODULE_EMPTYDIFF)), _T("TortoiseGit"), 1, IDI_QUESTION, CString(MAKEINTRESOURCE(IDS_MSGBOX_YES)), CString(MAKEINTRESOURCE(IDS_MSGBOX_NO))) == 1)
228 CString sCmd;
229 sCmd.Format(_T("/command:subupdate /bkpath:\"%s\""), g_Git.m_CurrentDir);
230 CAppUtils::RunTortoiseGitProc(sCmd);
232 return -1;
235 int start =0;
236 int oldstart = output.Find(_T("-Subproject commit"),start);
237 if(oldstart<0)
239 CMessageBox::Show(NULL,_T("Subproject Diff Format error") ,_T("TortoiseGit"),MB_OK|MB_ICONERROR);
240 return -1;
242 oldhash = output.Mid(oldstart+ CString(_T("-Subproject commit")).GetLength()+1,40);
243 start = 0;
244 int newstart = output.Find(_T("+Subproject commit"),start);
245 if (newstart < 0)
247 CMessageBox::Show(NULL,_T("Subproject Diff Format error") ,_T("TortoiseGit"),MB_OK|MB_ICONERROR);
248 return -1;
250 newhash = output.Mid(newstart+ CString(_T("+Subproject commit")).GetLength()+1,40);
251 dirty = output.Mid(newstart + CString(_T("+Subproject commit")).GetLength() + 41) == _T("-dirty\n");
253 else
255 cmd.Format(_T("git.exe diff-tree -r -z %s %s -- \"%s\""),
256 rev2,rev1,pPath->GetGitPathString());
258 BYTE_VECTOR bytes, errBytes;
259 if(g_Git.Run(cmd, &bytes, &errBytes))
261 CString err;
262 g_Git.StringAppend(&err, &errBytes[0], CP_UTF8);
263 CMessageBox::Show(NULL,err,_T("TortoiseGit"),MB_OK|MB_ICONERROR);
264 return -1;
267 if (bytes.size() < 15 + 41 + 40)
269 CMessageBox::Show(NULL, _T("git diff-tree gives invalid output"), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
270 return -1;
272 g_Git.StringAppend(&oldhash, &bytes[15], CP_UTF8, 40);
273 g_Git.StringAppend(&newhash, &bytes[15+41], CP_UTF8, 40);
277 CString oldsub;
278 CString newsub;
279 bool oldOK = false, newOK = false;
281 CGit subgit;
282 subgit.m_CurrentDir = g_Git.CombinePath(pPath);
283 CSubmoduleDiffDlg::ChangeType changeType = CSubmoduleDiffDlg::Unknown;
285 if(pPath->HasAdminDir())
287 int encode=CAppUtils::GetLogOutputEncode(&subgit);
288 int oldTime = 0, newTime = 0;
290 if(oldhash != GIT_REV_ZERO)
292 CString cmdout, cmderr;
293 cmd.Format(_T("git.exe log -n1 --pretty=format:\"%%ct %%s\" %s --"), oldhash);
294 oldOK = !subgit.Run(cmd, &cmdout, &cmderr, encode);
295 if (oldOK)
297 int pos = cmdout.Find(_T(" "));
298 oldTime = _ttoi(cmdout.Left(pos));
299 oldsub = cmdout.Mid(pos + 1);
301 else
302 oldsub = cmderr;
304 if (newhash != GIT_REV_ZERO)
306 CString cmdout, cmderr;
307 cmd.Format(_T("git.exe log -n1 --pretty=format:\"%%ct %%s\" %s --"), newhash);
308 newOK = !subgit.Run(cmd, &cmdout, &cmderr, encode);
309 if (newOK)
311 int pos = cmdout.Find(_T(" "));
312 newTime = _ttoi(cmdout.Left(pos));
313 newsub = cmdout.Mid(pos + 1);
315 else
316 newsub = cmderr;
319 if (oldhash == GIT_REV_ZERO)
321 oldOK = true;
322 changeType = CSubmoduleDiffDlg::NewSubmodule;
324 else if (newhash == GIT_REV_ZERO)
326 newOK = true;
327 changeType = CSubmoduleDiffDlg::DeleteSubmodule;
329 else if (oldhash != newhash)
331 bool ffNewer = false, ffOlder = false;
332 ffNewer = subgit.IsFastForward(oldhash, newhash);
333 if (!ffNewer)
335 ffOlder = subgit.IsFastForward(newhash, oldhash);
336 if (!ffOlder)
338 if (newTime > oldTime)
339 changeType = CSubmoduleDiffDlg::NewerTime;
340 else if (newTime < oldTime)
341 changeType = CSubmoduleDiffDlg::OlderTime;
342 else
343 changeType = CSubmoduleDiffDlg::SameTime;
345 else
346 changeType = CSubmoduleDiffDlg::Rewind;
348 else
349 changeType = CSubmoduleDiffDlg::FastForward;
353 if (!oldOK || !newOK)
354 changeType = CSubmoduleDiffDlg::Unknown;
356 CSubmoduleDiffDlg submoduleDiffDlg;
357 submoduleDiffDlg.SetDiff(pPath->GetWinPath(), isWorkingCopy, oldhash, oldsub, oldOK, newhash, newsub, newOK, dirty, changeType);
358 submoduleDiffDlg.DoModal();
359 if (submoduleDiffDlg.IsRefresh())
360 return 1;
362 return 0;
365 int CGitDiff::Diff(const CTGitPath * pPath, const CTGitPath * pPath2, git_revnum_t rev1, git_revnum_t rev2, bool /*blame*/, bool /*unified*/, int jumpToLine)
367 CString temppath;
368 GetTempPath(temppath);
370 // make sure we have HASHes here, otherwise filenames might be invalid
371 if (rev1 != GIT_REV_ZERO)
373 CGitHash rev1Hash;
374 if (g_Git.GetHash(rev1Hash, rev1))
376 MessageBox(NULL, g_Git.GetGitLastErr(_T("Could not get hash of \"") + rev1 + _T("\".")), _T("TortoiseGit"), MB_ICONERROR);
377 return -1;
379 rev1 = rev1Hash.ToString();
381 if (rev2 != GIT_REV_ZERO)
383 CGitHash rev2Hash;
384 if (g_Git.GetHash(rev2Hash, rev2))
386 MessageBox(NULL, g_Git.GetGitLastErr(_T("Could not get hash of \"") + rev2 + _T("\".")), _T("TortoiseGit"), MB_ICONERROR);
387 return -1;
389 rev2 = rev2Hash.ToString();
392 CString file1;
393 CString title1;
394 CString cmd;
396 if(pPath->IsDirectory() || pPath2->IsDirectory())
398 int result;
399 // refresh if result = 1
400 CTGitPath path = *pPath;
401 CTGitPath path2 = *pPath2;
402 while ((result = SubmoduleDiff(&path, &path2, rev1, rev2)) == 1)
404 path.SetFromGit(pPath->GetGitPathString());
405 path2.SetFromGit(pPath2->GetGitPathString());
407 return result;
410 if(rev1 != GIT_REV_ZERO )
412 TCHAR szTempName[MAX_PATH] = {0};
413 GetTempFileName(temppath, pPath->GetBaseFilename(), 0, szTempName);
414 CString temp(szTempName);
415 DeleteFile(szTempName);
416 CreateDirectory(szTempName, NULL);
417 // use original file extension, an external diff tool might need it
418 file1.Format(_T("%s\\%s-%s-right%s"),
419 temp,
420 pPath->GetBaseFilename(),
421 rev1.Left(g_Git.GetShortHASHLength()),
422 pPath->GetFileExtension());
423 title1 = pPath->GetFileOrDirectoryName() + _T(":") + rev1.Left(g_Git.GetShortHASHLength());
424 if (g_Git.GetOneFile(rev1, *pPath, file1))
426 CString out;
427 out.Format(IDS_STATUSLIST_CHECKOUTFILEFAILED, pPath->GetGitPathString(), rev1, file1);
428 CMessageBox::Show(nullptr, g_Git.GetGitLastErr(out, CGit::GIT_CMD_GETONEFILE), _T("TortoiseGit"), MB_OK);
429 return -1;
431 ::SetFileAttributes(file1, FILE_ATTRIBUTE_READONLY);
433 else
435 file1 = g_Git.CombinePath(pPath);
436 title1.Format( IDS_DIFF_WCNAME, pPath->GetFileOrDirectoryName() );
437 if (!PathFileExists(file1))
439 CString sMsg;
440 sMsg.Format(IDS_PROC_DIFFERROR_FILENOTINWORKINGTREE, file1);
441 if (MessageBox(NULL, sMsg, _T("TortoiseGit"), MB_ICONEXCLAMATION | MB_YESNO) != IDYES)
442 return 1;
443 if (!CCommonAppUtils::FileOpenSave(file1, NULL, IDS_SELECTFILE, IDS_COMMONFILEFILTER, true))
444 return 1;
445 title1.Format(IDS_DIFF_WCNAME, CTGitPath(file1).GetUIFileOrDirectoryName());
449 CString file2;
450 CString title2;
451 if(rev2 != GIT_REV_ZERO)
453 TCHAR szTempName[MAX_PATH] = {0};
454 GetTempFileName(temppath, pPath2->GetBaseFilename(), 0, szTempName);
455 CString temp(szTempName);
456 DeleteFile(szTempName);
457 CreateDirectory(szTempName, NULL);
458 CTGitPath fileName = *pPath2;
459 if (pPath2->m_Action & CTGitPath::LOGACTIONS_REPLACED)
460 fileName = CTGitPath(pPath2->GetGitOldPathString());
462 // use original file extension, an external diff tool might need it
463 file2.Format(_T("%s\\%s-%s-left%s"),
464 temp,
465 fileName.GetBaseFilename(),
466 rev2.Left(g_Git.GetShortHASHLength()),
467 fileName.GetFileExtension());
468 title2 = fileName.GetFileOrDirectoryName() + _T(":") + rev2.Left(g_Git.GetShortHASHLength());
469 if (g_Git.GetOneFile(rev2, fileName, file2))
471 CString out;
472 out.Format(IDS_STATUSLIST_CHECKOUTFILEFAILED, pPath->GetGitPathString(), rev2, file2);
473 CMessageBox::Show(nullptr, g_Git.GetGitLastErr(out, CGit::GIT_CMD_GETONEFILE), _T("TortoiseGit"), MB_OK);
474 return -1;
476 ::SetFileAttributes(file2, FILE_ATTRIBUTE_READONLY);
478 else
480 file2 = g_Git.CombinePath(pPath2);
481 title2.Format( IDS_DIFF_WCNAME, pPath2->GetFileOrDirectoryName() );
484 if (pPath->m_Action == pPath->LOGACTIONS_ADDED)
486 CGitDiff::DiffNull(pPath, rev1, true, jumpToLine);
488 else if (pPath->m_Action == pPath->LOGACTIONS_DELETED)
490 CGitDiff::DiffNull(pPath, rev2, false, jumpToLine);
492 else
494 CAppUtils::DiffFlags flags;
495 CAppUtils::StartExtDiff(file2,file1,
496 title2,
497 title1,
498 g_Git.CombinePath(pPath2),
499 g_Git.CombinePath(pPath),
500 rev2,
501 rev1,
502 flags, jumpToLine);
504 return 0;
507 int CGitDiff::DiffCommit(const CTGitPath &path, const GitRev *r1, const GitRev *r2)
509 return DiffCommit(path, path, r1, r2);
512 int CGitDiff::DiffCommit(const CTGitPath &path1, const CTGitPath &path2, const GitRev *r1, const GitRev *r2)
514 if (path1.GetWinPathString().IsEmpty())
516 CFileDiffDlg dlg;
517 dlg.SetDiff(NULL, *r1, *r2);
518 dlg.DoModal();
520 else if (path1.IsDirectory())
522 CFileDiffDlg dlg;
523 dlg.SetDiff(&path1, *r1, *r2);
524 dlg.DoModal();
526 else
528 Diff(&path1, &path2, r1->m_CommitHash.ToString(), r2->m_CommitHash.ToString());
530 return 0;
533 int CGitDiff::DiffCommit(const CTGitPath &path, const CString &r1, const CString &r2)
535 return DiffCommit(path, path, r1, r2);
539 int CGitDiff::DiffCommit(const CTGitPath &path1, const CTGitPath &path2, const CString &r1, const CString &r2)
541 if (path1.GetWinPathString().IsEmpty())
543 CFileDiffDlg dlg;
544 dlg.SetDiff(NULL, r1, r2);
545 dlg.DoModal();
547 else if (path1.IsDirectory())
549 CFileDiffDlg dlg;
550 dlg.SetDiff(&path1, r1, r2);
551 dlg.DoModal();
553 else
555 Diff(&path1, &path2, r1, r2);
557 return 0;