Fixed issue #2591: Enable accent coloring for search term matches in log messages
[TortoiseGit.git] / src / Git / MassiveGitTaskBase.h
blobd691f284fcc2127d75d219fca756781b4a07b20f
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 - 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 #define MAX_COMMANDLINE_LENGTH 30000
27 class CMassiveGitTaskBase
29 public:
30 CMassiveGitTaskBase(CString params, BOOL isPath = TRUE, bool ignoreErrors = false);
31 ~CMassiveGitTaskBase(void);
33 void AddFile(const CString& filename);
34 void AddFile(const CTGitPath& filename);
35 bool Execute(BOOL& cancel);
36 int GetListCount() const;
37 bool IsListEmpty() const;
38 protected:
39 void SetPaths(const CTGitPathList* pathList);
40 bool ExecuteCommands(volatile BOOL& cancel);
41 virtual void ReportError(const CString &out, int exitCode);
42 virtual void ReportProgress(const CTGitPath& /*path*/, int /*index*/) { }
43 virtual void ReportUserCanceled() { }
44 CString GetParams() const { return m_sParams; }
45 private:
46 CString GetListItem(int index) const;
47 bool m_bUnused;
48 BOOL m_bIsPath;
49 bool m_bIgnoreErrors;
50 CString m_sParams;
51 CTGitPathList m_pathList;
52 STRING_VECTOR m_itemList;