Cleanup
[TortoiseGit.git] / src / TortoiseProc / Commands / LogCommand.cpp
blob0585bc8ce0ca5717aad8f84fad831fbd2b8d09ad
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2007-2008,2011 - TortoiseSVN
4 // Copyright (C) 2008-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.
20 #include "stdafx.h"
21 #include "LogCommand.h"
22 #include "StringUtils.h"
23 #include "LogDlg.h"
25 bool LogCommand::Execute()
27 //the log command line looks like this:
28 //command:log path:<path_to_file_or_directory_to_show_the_log_messages> [startrev:<startrevision>] [endrev:<endrevision>]
30 CString revstart = parser.GetVal(_T("startrev"));
31 if (revstart.IsEmpty())
33 // support deprecated parameter prior 1.5.0
34 revstart = parser.GetVal(_T("revstart"));
37 CString revend = parser.GetVal(_T("endrev"));
38 if (revend.IsEmpty())
40 // support deprecated parameter prior 1.5.0
41 revend = parser.GetVal(_T("revend"));
44 CString val = parser.GetVal(_T("limit"));
45 int limit = _tstoi(val);
46 CString rev = parser.GetVal(_T("rev"));
48 if (limit == 0)
50 CRegDWORD reg = CRegDWORD(_T("Software\\TortoiseGit\\NumberOfLogs"), 100);
51 limit = (int)(LONG)reg;
54 CString findStr = parser.GetVal(_T("findstring"));
55 LONG findType = parser.GetLongVal(_T("findtype"));
56 bool findRegex = !!CRegDWORD(_T("Software\\TortoiseGit\\UseRegexFilter"), FALSE);
57 if (parser.HasKey(_T("findtext")))
58 findRegex = false;
59 if (parser.HasKey(_T("findregex")))
60 findRegex = true;
62 CLogDlg dlg;
63 theApp.m_pMainWnd = &dlg;
64 dlg.SetParams(orgCmdLinePath, cmdLinePath, rev, revstart, revend, limit);
65 dlg.SetFilter(findStr, findType, findRegex);
66 dlg.DoModal();
67 if (parser.HasVal(_T("outfile")))
69 CString sText = dlg.GetSelectedHash();
70 CStringUtils::WriteStringToTextFile(parser.GetVal(L"outfile"), (LPCTSTR)sText, true);
72 return true;