Add CMassiveGitTaskBase as the base class of CMassiveGitTask
[TortoiseGit.git] / src / Git / MassiveGitTaskBase.h
blobaa58ededd4b4a3453b21baffcfb7fa0e159e089e
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-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.
21 #pragma once
22 #include "TGitPath.h"
24 #define MAX_COMMANDLINE_LENGTH 30000
26 class CMassiveGitTaskBase
28 public:
29 CMassiveGitTaskBase(CString params, BOOL isPath = TRUE, bool ignoreErrors = false);
30 ~CMassiveGitTaskBase(void);
32 void AddFile(const CString& filename);
33 void AddFile(const CTGitPath& filename);
34 bool Execute(BOOL& cancel);
35 int GetListCount();
36 protected:
37 void SetPaths(const CTGitPathList* pathList);
38 bool ExecuteCommands(volatile BOOL& cancel);
39 virtual void ReportError(const CString &out);
40 virtual void ReportProgress(const CTGitPath& /*path*/, int /*index*/) { }
41 virtual void ReportUserCanceled() { }
42 private:
43 CString GetListItem(int index);
44 bool m_bUnused;
45 BOOL m_bIsPath;
46 bool m_bIgnoreErrors;
47 CString m_sParams;
48 CTGitPathList m_pathList;
49 STRING_VECTOR m_itemList;