Remember "subfolder" as correctly spelled
[TortoiseGit.git] / src / TortoiseProc / MassiveGitTask.cpp
blob25c804f5d9d885e936eb0e9750c72914c312f64a
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, 2023 - 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_NotifyCallbackAction(CGitProgressList::WC_File_NotificationData::Git_WC_Notify_Action::Add)
31 CMassiveGitTask::~CMassiveGitTask()
35 void CMassiveGitTask::ReportError(const CString& out, int exitCode)
37 if (m_NotifyCallbackInstance)
38 m_NotifyCallbackInstance->ReportError(out);
39 else
41 CProgressDlg dlg;
42 dlg.m_PreText = L"git.exe ";
43 dlg.m_PreText += GetParams();
44 dlg.m_PreText += L" [...]\r\n\r\n";
45 dlg.m_PreText += out;
46 dlg.m_PreFailText.Format(IDS_PROC_PROGRESS_GITUNCLEANEXIT, exitCode);
47 dlg.DoModal();
51 void CMassiveGitTask::ReportProgress(const CTGitPath& path, int index)
53 if (m_progressCallback)
54 m_progressCallback(path, index);
55 else if (m_NotifyCallbackInstance)
57 m_NotifyCallbackInstance->AddNotify(new CGitProgressList::WC_File_NotificationData(path, m_NotifyCallbackAction));
58 m_NotifyCallbackInstance->SetItemProgress(index);
62 void CMassiveGitTask::ReportUserCanceled()
64 if (m_NotifyCallbackInstance)
65 m_NotifyCallbackInstance->ReportUserCanceled();
68 bool CMassiveGitTask::ExecuteWithNotify(CTGitPathList* pathList, volatile BOOL& cancel, CGitProgressList::WC_File_NotificationData::Git_WC_Notify_Action action, CGitProgressList* instance)
70 SetPaths(pathList);
71 m_NotifyCallbackInstance = instance;
72 m_NotifyCallbackAction = action;
73 return ExecuteCommands(cancel);