Merge branch '1.8.0'
[TortoiseGit.git] / src / TortoiseProc / MassiveGitTask.h
blob89bce9db1c2ba47215ccd2d19f41f9e3968dc031
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2011-2012 - 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 "GitProgressDlg.h"
23 #include "TGitPath.h"
25 #define MAX_COMMANDLINE_LENGTH 30000
27 typedef BOOL (CGitProgressDlg::*NOTIFY_CALLBACK)(const CTGitPath& path, git_wc_notify_action_t action, int status, CString *strErr);
29 class CMassiveGitTask
31 public:
32 CMassiveGitTask(CString params, BOOL isPath = TRUE);
33 ~CMassiveGitTask(void);
35 void AddFile(CString filename);
36 void AddFile(CTGitPath filename);
37 bool ExecuteWithNotify(CTGitPathList *pathList, BOOL &cancel, git_wc_notify_action_t action, CGitProgressDlg * instance, NOTIFY_CALLBACK m_NotifyCallbackMethod);
38 bool Execute(BOOL &cancel);
40 private:
41 bool ExecuteCommands(BOOL &cancel);
42 bool m_bUnused;
43 BOOL m_bIsPath;
44 CString m_sParams;
45 CTGitPathList m_pathList;
46 CGitProgressDlg * m_NotifyCallbackInstance;
47 NOTIFY_CALLBACK m_NotifyCallbackMethod;
48 git_wc_notify_action_t m_NotifyCallbackAction;