Refactor rebase commit list: Don't fill list again and again when reordering commits
[TortoiseGit.git] / src / TortoiseProc / MassiveGitTask.cpp
blob921c3e65e231d4414ba6f63f76bb414e78899704
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2011-2013 - Sven Strickroth <email@cs-ware.de>
4 // Copyright (C) 2013-2016 - 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.
21 #include "stdafx.h"
22 #include "MassiveGitTask.h"
23 #include "ProgressDlg.h"
25 CMassiveGitTask::CMassiveGitTask(CString gitParameters, BOOL isPath, bool ignoreErrors)
26 : CMassiveGitTaskBase(gitParameters, isPath, ignoreErrors)
27 , m_NotifyCallbackInstance(nullptr)
28 , m_NotifyCallbackAction(CGitProgressList::WC_File_NotificationData::git_wc_notify_add)
32 CMassiveGitTask::~CMassiveGitTask(void)
36 void CMassiveGitTask::ReportError(const CString& out, int exitCode)
38 if (m_NotifyCallbackInstance)
39 m_NotifyCallbackInstance->ReportError(out);
40 else
42 CProgressDlg dlg;
43 dlg.m_PreText = L"git.exe ";
44 dlg.m_PreText += GetParams();
45 dlg.m_PreText += L" [...]\r\n\r\n";
46 dlg.m_PreText += out;
47 dlg.m_PreFailText.Format(IDS_PROC_PROGRESS_GITUNCLEANEXIT, exitCode);
48 dlg.DoModal();
52 void CMassiveGitTask::ReportProgress(const CTGitPath& path, int index)
54 if (m_NotifyCallbackInstance)
56 m_NotifyCallbackInstance->AddNotify(new CGitProgressList::WC_File_NotificationData(path, m_NotifyCallbackAction));
57 m_NotifyCallbackInstance->SetItemProgress(index);
61 void CMassiveGitTask::ReportUserCanceled()
63 if (m_NotifyCallbackInstance)
64 m_NotifyCallbackInstance->ReportUserCanceled();
67 bool CMassiveGitTask::ExecuteWithNotify(CTGitPathList* pathList, volatile BOOL& cancel, CGitProgressList::WC_File_NotificationData::git_wc_notify_action_t action, CGitProgressList* instance)
69 SetPaths(pathList);
70 m_NotifyCallbackInstance = instance;
71 m_NotifyCallbackAction = action;
72 return ExecuteCommands(cancel);