Add CMassiveGitTaskBase as the base class of CMassiveGitTask
[TortoiseGit.git] / src / Git / MassiveGitTaskBase.cpp
blob63c3b3e6d8de452666a62d9af9f86003ca1abbe1
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 #include "stdafx.h"
22 #include "MassiveGitTaskBase.h"
23 #include "Git.h"
24 #include <assert.h>
26 CMassiveGitTaskBase::CMassiveGitTaskBase(CString gitParameters, BOOL isPath, bool ignoreErrors)
27 : m_bUnused(true)
28 , m_bIsPath(isPath)
29 , m_bIgnoreErrors(ignoreErrors)
31 m_sParams = gitParameters;
34 CMassiveGitTaskBase::~CMassiveGitTaskBase(void)
38 void CMassiveGitTaskBase::AddFile(const CString& filename)
40 assert(m_bUnused);
41 if (m_bIsPath)
42 m_pathList.AddPath(filename);
43 else
44 m_itemList.push_back(filename);
47 void CMassiveGitTaskBase::AddFile(const CTGitPath& filename)
49 assert(m_bUnused);
50 if (m_bIsPath)
51 m_pathList.AddPath(filename);
52 else
53 m_itemList.push_back(filename.GetGitPathString());
56 void CMassiveGitTaskBase::SetPaths(const CTGitPathList* pathList)
58 assert(m_bUnused);
59 m_bIsPath = true;
60 m_pathList.Clear();
61 m_pathList = *pathList;
64 bool CMassiveGitTaskBase::Execute(BOOL& cancel)
66 assert(m_bUnused);
67 m_pathList.RemoveDuplicates();
68 return ExecuteCommands(cancel);
71 bool CMassiveGitTaskBase::ExecuteCommands(volatile BOOL& cancel)
73 m_bUnused = false;
75 int maxLength = 0;
76 int firstCombine = 0;
77 for (int i = 0; i < GetListCount(); ++i)
79 if (maxLength + GetListItem(i).GetLength() > MAX_COMMANDLINE_LENGTH || i == GetListCount() - 1 || cancel)
81 CString add;
82 for (int j = firstCombine; j <= i; ++j)
83 add += _T(" \"") + GetListItem(j) + _T("\"");
85 CString cmd, out;
86 cmd.Format(_T("git.exe %s %s%s"), m_sParams, m_bIsPath ? _T("--") : _T(""), add);
87 if (g_Git.Run(cmd, &out, CP_UTF8) && !m_bIgnoreErrors)
89 ReportError(out);
90 return false;
93 if (m_bIsPath)
95 for (int j = firstCombine; j <= i; ++j)
96 ReportProgress(m_pathList[j], j);
99 maxLength = 0;
100 firstCombine = i+1;
102 if (cancel)
104 ReportUserCanceled();
105 return false;
108 else
110 maxLength += 3 + GetListItem(i).GetLength();
113 return true;
116 void CMassiveGitTaskBase::ReportError(const CString& out)
118 MessageBox(NULL, out, _T("TortoiseGit"), MB_OK | MB_ICONERROR);
121 int CMassiveGitTaskBase::GetListCount()
123 return m_bIsPath ? m_pathList.GetCount() : (int)m_itemList.size();
126 CString CMassiveGitTaskBase::GetListItem(int index)
128 return m_bIsPath ? m_pathList[index].GetGitPathString() : m_itemList[index];