MassiveGitTask: Allow to run w/o error handling
[TortoiseGit.git] / src / TortoiseProc / MassiveGitTask.h
blob70c9623f8e6cb792a0f47d4f26d4f43475e2a003
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 - 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 #pragma once
22 #include "GitProgressList.h"
23 #include "TGitPath.h"
25 #define MAX_COMMANDLINE_LENGTH 30000
27 class CMassiveGitTask
29 public:
30 CMassiveGitTask(CString params, BOOL isPath = TRUE, bool ignoreErrors = false);
31 ~CMassiveGitTask(void);
33 void AddFile(CString filename);
34 void AddFile(CTGitPath filename);
35 bool ExecuteWithNotify(CTGitPathList *pathList, volatile BOOL &cancel, git_wc_notify_action_t action, CGitProgressList * instance);
36 bool Execute(BOOL &cancel);
38 private:
39 bool ExecuteCommands(volatile BOOL &cancel);
40 int GetListCount();
41 CString GetListItem(int index);
42 bool m_bUnused;
43 BOOL m_bIsPath;
44 bool m_bIgnoreErrors;
45 CString m_sParams;
46 CTGitPathList m_pathList;
47 STRING_VECTOR m_itemList;
48 CGitProgressList * m_NotifyCallbackInstance;
49 git_wc_notify_action_t m_NotifyCallbackAction;