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.
22 #include "MassiveGitTaskBase.h"
26 CMassiveGitTaskBase::CMassiveGitTaskBase(CString gitParameters
, BOOL isPath
, bool ignoreErrors
)
29 , m_bIgnoreErrors(ignoreErrors
)
31 m_sParams
= gitParameters
;
34 CMassiveGitTaskBase::~CMassiveGitTaskBase(void)
38 void CMassiveGitTaskBase::AddFile(const CString
& filename
)
42 m_pathList
.AddPath(filename
);
44 m_itemList
.push_back(filename
);
47 void CMassiveGitTaskBase::AddFile(const CTGitPath
& filename
)
51 m_pathList
.AddPath(filename
);
53 m_itemList
.push_back(filename
.GetGitPathString());
56 void CMassiveGitTaskBase::SetPaths(const CTGitPathList
* pathList
)
61 m_pathList
= *pathList
;
64 bool CMassiveGitTaskBase::Execute(BOOL
& cancel
)
67 m_pathList
.RemoveDuplicates();
68 return ExecuteCommands(cancel
);
71 bool CMassiveGitTaskBase::ExecuteCommands(volatile BOOL
& cancel
)
77 for (int i
= 0; i
< GetListCount(); ++i
)
79 if (maxLength
+ GetListItem(i
).GetLength() > MAX_COMMANDLINE_LENGTH
|| i
== GetListCount() - 1 || cancel
)
82 for (int j
= firstCombine
; j
<= i
; ++j
)
83 add
+= _T(" \"") + GetListItem(j
) + _T("\"");
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
)
95 for (int j
= firstCombine
; j
<= i
; ++j
)
96 ReportProgress(m_pathList
[j
], j
);
104 ReportUserCanceled();
110 maxLength
+= 3 + GetListItem(i
).GetLength();
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
];