Fixed issue #4133: libgit2 returned: failed to parse revision specifier (ref ending...
[TortoiseGit.git] / src / Git / MassiveGitTaskBase.h
blob7d5c8aa473f6c3cd865f22eb178498bbb9c605c2
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-2017, 2020, 2022-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 #pragma once
22 #include "gittype.h"
23 #include "TGitPath.h"
25 class CMassiveGitTaskBase
27 public:
28 CMassiveGitTaskBase(CString params, BOOL isPath = TRUE, bool ignoreErrors = false);
29 ~CMassiveGitTaskBase();
31 void AddFile(const CString& filename);
32 void AddFile(const CTGitPath& filename);
33 bool Execute(volatile BOOL& cancel);
34 int GetListCount() const;
35 bool IsListEmpty() const;
36 static void ConvertToCmdList(CString params, const STRING_VECTOR& pathList, STRING_VECTOR& cmdList);
37 protected:
38 void SetPaths(const CTGitPathList* pathList);
39 bool ExecuteCommands(volatile BOOL& cancel);
40 virtual void ReportError(const CString &out, int exitCode);
41 virtual void ReportProgress(const CTGitPath& /*path*/, int /*index*/) { }
42 virtual void ReportUserCanceled() { }
43 CString GetParams() const { return m_sParams; }
44 private:
45 CString GetListItem(int index) const;
46 bool m_bUnused = true;
47 BOOL m_bIsPath = TRUE;
48 bool m_bIgnoreErrors = false;
49 CString m_sParams;
50 CTGitPathList m_pathList;
51 STRING_VECTOR m_itemList;