Extend static functions in CAppUtils with a window handle parameter
[TortoiseGit.git] / src / TortoiseProc / Commands / BisectCommand.cpp
blobc23fd77b49a132c1b343091b1692c1f93db99a30
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013, 2015-2016, 2018 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "stdafx.h"
20 #include "BisectCommand.h"
21 #include "AppUtils.h"
22 #include "ProgressDlg.h"
23 #include "resource.h"
25 bool BisectCommand::Execute()
27 CTGitPath path = g_Git.m_CurrentDir;
29 if (parser.HasKey(L"start") && !path.IsBisectActive())
31 CString lastGood, firstBad;
32 if (parser.HasKey(L"good"))
33 lastGood = parser.GetVal(L"good");
34 if (parser.HasKey(L"bad"))
35 firstBad = parser.GetVal(L"bad");
37 return CAppUtils::BisectStart(hwndExplorer, lastGood, firstBad, true);
39 else if ((this->parser.HasKey(L"good") || this->parser.HasKey(L"bad") || this->parser.HasKey(L"skip") || this->parser.HasKey(L"reset")) && path.IsBisectActive())
41 CString op;
42 CString ref;
44 if (parser.HasKey(L"good"))
45 g_Git.GetBisectTerms(&op, nullptr);
46 else if (parser.HasKey(L"bad"))
47 g_Git.GetBisectTerms(nullptr, &op);
48 else if (this->parser.HasKey(L"skip"))
49 op = L"skip";
50 else if (parser.HasKey(L"reset"))
51 op = L"reset";
53 if (parser.HasKey(L"ref") && !parser.HasKey(L"reset"))
54 ref = parser.GetVal(L"ref");
56 return CAppUtils::BisectOperation(hwndExplorer, op, ref);
58 else
59 MessageBox(hwndExplorer, L"Operation unknown or not allowed.", L"TortoiseGit", MB_OK | MB_ICONINFORMATION);
60 return false;