Fix C&P error
[TortoiseGit.git] / src / TortoiseProc / GitDiff.cpp
blob4e110ca5931c6ffef26aad292c957ae17d0e5838
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 g_Git.StringAppend(&oldhash, &bytes[15], CP_UTF8, 40);
268 g_Git.StringAppend(&newhash, &bytes[15+41], CP_UTF8, 40);
272 CString oldsub;
273 CString newsub;
274 bool oldOK = false, newOK = false;
276 CGit subgit;
277 subgit.m_CurrentDir = g_Git.CombinePath(pPath);
278 CSubmoduleDiffDlg::ChangeType changeType = CSubmoduleDiffDlg::Unknown;
280 if(pPath->HasAdminDir())
282 int encode=CAppUtils::GetLogOutputEncode(&subgit);
283 int oldTime = 0, newTime = 0;
285 if(oldhash != GIT_REV_ZERO)
287 CString cmdout, cmderr;
288 cmd.Format(_T("git.exe log -n1 --pretty=format:\"%%ct %%s\" %s --"), oldhash);
289 oldOK = !subgit.Run(cmd, &cmdout, &cmderr, encode);
290 if (oldOK)
292 int pos = cmdout.Find(_T(" "));
293 oldTime = _ttoi(cmdout.Left(pos));
294 oldsub = cmdout.Mid(pos + 1);
296 else
297 oldsub = cmderr;
299 if (newhash != GIT_REV_ZERO)
301 CString cmdout, cmderr;
302 cmd.Format(_T("git.exe log -n1 --pretty=format:\"%%ct %%s\" %s --"), newhash);
303 newOK = !subgit.Run(cmd, &cmdout, &cmderr, encode);
304 if (newOK)
306 int pos = cmdout.Find(_T(" "));
307 newTime = _ttoi(cmdout.Left(pos));
308 newsub = cmdout.Mid(pos + 1);
310 else
311 newsub = cmderr;
314 if (oldhash == GIT_REV_ZERO)
316 oldOK = true;
317 changeType = CSubmoduleDiffDlg::NewSubmodule;
319 else if (newhash == GIT_REV_ZERO)
321 newOK = true;
322 changeType = CSubmoduleDiffDlg::DeleteSubmodule;
324 else if (oldhash != newhash)
326 bool ffNewer = false, ffOlder = false;
327 ffNewer = subgit.IsFastForward(oldhash, newhash);
328 if (!ffNewer)
330 ffOlder = subgit.IsFastForward(newhash, oldhash);
331 if (!ffOlder)
333 if (newTime > oldTime)
334 changeType = CSubmoduleDiffDlg::NewerTime;
335 else if (newTime < oldTime)
336 changeType = CSubmoduleDiffDlg::OlderTime;
337 else
338 changeType = CSubmoduleDiffDlg::SameTime;
340 else
341 changeType = CSubmoduleDiffDlg::Rewind;
343 else
344 changeType = CSubmoduleDiffDlg::FastForward;
348 if (!oldOK || !newOK)
349 changeType = CSubmoduleDiffDlg::Unknown;
351 CSubmoduleDiffDlg submoduleDiffDlg;
352 submoduleDiffDlg.SetDiff(pPath->GetWinPath(), isWorkingCopy, oldhash, oldsub, oldOK, newhash, newsub, newOK, dirty, changeType);
353 submoduleDiffDlg.DoModal();
354 if (submoduleDiffDlg.IsRefresh())
355 return 1;
357 return 0;
360 int CGitDiff::Diff(const CTGitPath * pPath, const CTGitPath * pPath2, git_revnum_t rev1, git_revnum_t rev2, bool /*blame*/, bool /*unified*/, int jumpToLine)
362 CString temppath;
363 GetTempPath(temppath);
365 // make sure we have HASHes here, otherwise filenames might be invalid
366 if (rev1 != GIT_REV_ZERO)
368 CGitHash rev1Hash;
369 if (g_Git.GetHash(rev1Hash, rev1))
371 MessageBox(NULL, g_Git.GetGitLastErr(_T("Could not get hash of \"") + rev1 + _T("\".")), _T("TortoiseGit"), MB_ICONERROR);
372 return -1;
374 rev1 = rev1Hash.ToString();
376 if (rev2 != GIT_REV_ZERO)
378 CGitHash rev2Hash;
379 if (g_Git.GetHash(rev2Hash, rev2))
381 MessageBox(NULL, g_Git.GetGitLastErr(_T("Could not get hash of \"") + rev2 + _T("\".")), _T("TortoiseGit"), MB_ICONERROR);
382 return -1;
384 rev2 = rev2Hash.ToString();
387 CString file1;
388 CString title1;
389 CString cmd;
391 if(pPath->IsDirectory() || pPath2->IsDirectory())
393 int result;
394 // refresh if result = 1
395 CTGitPath path = *pPath;
396 CTGitPath path2 = *pPath2;
397 while ((result = SubmoduleDiff(&path, &path2, rev1, rev2)) == 1)
399 path.SetFromGit(pPath->GetGitPathString());
400 path2.SetFromGit(pPath2->GetGitPathString());
402 return result;
405 if(rev1 != GIT_REV_ZERO )
407 TCHAR szTempName[MAX_PATH] = {0};
408 GetTempFileName(temppath, pPath->GetBaseFilename(), 0, szTempName);
409 CString temp(szTempName);
410 DeleteFile(szTempName);
411 CreateDirectory(szTempName, NULL);
412 // use original file extension, an external diff tool might need it
413 file1.Format(_T("%s\\%s-%s-right%s"),
414 temp,
415 pPath->GetBaseFilename(),
416 rev1.Left(g_Git.GetShortHASHLength()),
417 pPath->GetFileExtension());
418 title1 = pPath->GetFileOrDirectoryName() + _T(":") + rev1.Left(g_Git.GetShortHASHLength());
419 if (g_Git.GetOneFile(rev1, *pPath, file1))
421 CString out;
422 out.Format(IDS_STATUSLIST_CHECKOUTFILEFAILED, pPath->GetGitPathString(), rev1, file1);
423 CMessageBox::Show(nullptr, g_Git.GetGitLastErr(out, CGit::GIT_CMD_GETONEFILE), _T("TortoiseGit"), MB_OK);
424 return -1;
426 ::SetFileAttributes(file1, FILE_ATTRIBUTE_READONLY);
428 else
430 file1 = g_Git.CombinePath(pPath);
431 title1.Format( IDS_DIFF_WCNAME, pPath->GetFileOrDirectoryName() );
432 if (!PathFileExists(file1))
434 CString sMsg;
435 sMsg.Format(IDS_PROC_DIFFERROR_FILENOTINWORKINGTREE, file1);
436 if (MessageBox(NULL, sMsg, _T("TortoiseGit"), MB_ICONEXCLAMATION | MB_YESNO) == IDNO)
437 return 1;
438 if (!CCommonAppUtils::FileOpenSave(file1, NULL, IDS_SELECTFILE, IDS_COMMONFILEFILTER, true))
439 return 1;
440 title1.Format(IDS_DIFF_WCNAME, CTGitPath(file1).GetUIFileOrDirectoryName());
444 CString file2;
445 CString title2;
446 if(rev2 != GIT_REV_ZERO)
448 TCHAR szTempName[MAX_PATH] = {0};
449 GetTempFileName(temppath, pPath2->GetBaseFilename(), 0, szTempName);
450 CString temp(szTempName);
451 DeleteFile(szTempName);
452 CreateDirectory(szTempName, NULL);
453 CTGitPath fileName = *pPath2;
454 if (pPath2->m_Action & CTGitPath::LOGACTIONS_REPLACED)
455 fileName = CTGitPath(pPath2->GetGitOldPathString());
457 // use original file extension, an external diff tool might need it
458 file2.Format(_T("%s\\%s-%s-left%s"),
459 temp,
460 fileName.GetBaseFilename(),
461 rev2.Left(g_Git.GetShortHASHLength()),
462 fileName.GetFileExtension());
463 title2 = fileName.GetFileOrDirectoryName() + _T(":") + rev2.Left(g_Git.GetShortHASHLength());
464 if (g_Git.GetOneFile(rev2, fileName, file2))
466 CString out;
467 out.Format(IDS_STATUSLIST_CHECKOUTFILEFAILED, pPath->GetGitPathString(), rev2, file2);
468 CMessageBox::Show(nullptr, g_Git.GetGitLastErr(out, CGit::GIT_CMD_GETONEFILE), _T("TortoiseGit"), MB_OK);
469 return -1;
471 ::SetFileAttributes(file2, FILE_ATTRIBUTE_READONLY);
473 else
475 file2 = g_Git.CombinePath(pPath2);
476 title2.Format( IDS_DIFF_WCNAME, pPath2->GetFileOrDirectoryName() );
479 if (pPath->m_Action == pPath->LOGACTIONS_ADDED)
481 CGitDiff::DiffNull(pPath, rev1, true, jumpToLine);
483 else if (pPath->m_Action == pPath->LOGACTIONS_DELETED)
485 CGitDiff::DiffNull(pPath, rev2, false, jumpToLine);
487 else
489 CAppUtils::DiffFlags flags;
490 CAppUtils::StartExtDiff(file2,file1,
491 title2,
492 title1,
493 g_Git.CombinePath(pPath2),
494 g_Git.CombinePath(pPath),
495 rev2,
496 rev1,
497 flags, jumpToLine);
499 return 0;
502 int CGitDiff::DiffCommit(const CTGitPath &path, const GitRev *r1, const GitRev *r2)
504 return DiffCommit(path, path, r1, r2);
507 int CGitDiff::DiffCommit(const CTGitPath &path1, const CTGitPath &path2, const GitRev *r1, const GitRev *r2)
509 if (path1.GetWinPathString().IsEmpty())
511 CFileDiffDlg dlg;
512 dlg.SetDiff(NULL, *r1, *r2);
513 dlg.DoModal();
515 else if (path1.IsDirectory())
517 CFileDiffDlg dlg;
518 dlg.SetDiff(&path1, *r1, *r2);
519 dlg.DoModal();
521 else
523 Diff(&path1, &path2, r1->m_CommitHash.ToString(), r2->m_CommitHash.ToString());
525 return 0;
528 int CGitDiff::DiffCommit(const CTGitPath &path, const CString &r1, const CString &r2)
530 return DiffCommit(path, path, r1, r2);
534 int CGitDiff::DiffCommit(const CTGitPath &path1, const CTGitPath &path2, const CString &r1, const CString &r2)
536 if (path1.GetWinPathString().IsEmpty())
538 CFileDiffDlg dlg;
539 dlg.SetDiff(NULL, r1, r2);
540 dlg.DoModal();
542 else if (path1.IsDirectory())
544 CFileDiffDlg dlg;
545 dlg.SetDiff(&path1, r1, r2);
546 dlg.DoModal();
548 else
550 Diff(&path1, &path2, r1, r2);
552 return 0;