Error message box is no longer shown while committing
[TortoiseGit.git] / src / TortoiseProc / MassiveGitTask.cpp
blob74f55055a7ccd16fe0f7ff2c46404aee916f070d
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-2015 - 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"
24 CMassiveGitTask::CMassiveGitTask(CString gitParameters, BOOL isPath, bool ignoreErrors)
25 : CMassiveGitTaskBase(gitParameters, isPath, ignoreErrors)
26 , m_NotifyCallbackInstance(NULL)
27 , m_NotifyCallbackAction(CGitProgressList::WC_File_NotificationData::git_wc_notify_add)
31 CMassiveGitTask::~CMassiveGitTask(void)
35 void CMassiveGitTask::ReportError(const CString& out)
37 if (m_NotifyCallbackInstance)
38 m_NotifyCallbackInstance->ReportError(out);
39 else
40 CMassiveGitTaskBase::ReportError(out);
43 void CMassiveGitTask::ReportProgress(const CTGitPath& path, int index)
45 if (m_NotifyCallbackInstance)
47 m_NotifyCallbackInstance->AddNotify(new CGitProgressList::WC_File_NotificationData(path, m_NotifyCallbackAction));
48 m_NotifyCallbackInstance->SetItemProgress(index);
52 void CMassiveGitTask::ReportUserCanceled()
54 if (m_NotifyCallbackInstance)
55 m_NotifyCallbackInstance->ReportUserCanceled();
58 bool CMassiveGitTask::ExecuteWithNotify(CTGitPathList* pathList, volatile BOOL& cancel, CGitProgressList::WC_File_NotificationData::git_wc_notify_action_t action, CGitProgressList* instance)
60 SetPaths(pathList);
61 m_NotifyCallbackInstance = instance;
62 m_NotifyCallbackAction = action;
63 return ExecuteCommands(cancel);