Fixed issue #2219: "add cherry picked from" is not applied when squashing/editing...
[TortoiseGit.git] / src / TortoiseProc / MassiveGitTask.h
blob60bbf441d44a698c37c7354ea8a1884bc17812c2
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(const CString &filename);
34 void AddFile(const CTGitPath &filename);
35 bool ExecuteWithNotify(CTGitPathList* pathList, volatile BOOL& cancel, CGitProgressList::WC_File_NotificationData::git_wc_notify_action_t action, CGitProgressList* instance);
36 bool Execute(BOOL &cancel);
37 int GetListCount();
39 private:
40 bool ExecuteCommands(volatile BOOL &cancel);
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 CGitProgressList::WC_File_NotificationData::git_wc_notify_action_t m_NotifyCallbackAction;