Use static method
[TortoiseGit.git] / src / TortoiseProc / Commands / FormatPatchCommand.cpp
blobd831439b337c032c957a52ef15da5b1f82fd9b5a
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2007-2008 - TortoiseSVN
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 "FormatPatchCommand.h"
22 #include "MessageBox.h"
23 #include "FormatPatchDlg.h"
24 #include "InputLogDlg.h"
25 #include "Git.h"
26 #include "DirFileEnum.h"
27 #include "ShellUpdater.h"
29 #include "ProgressDlg.h"
30 #include "AppUtils.h"
32 bool FormatPatchCommand::Execute()
34 CFormatPatchDlg dlg;
35 // dlg.m_bIsTag=TRUE;
36 CString startval = parser.GetVal(_T("startrev"));
37 CString endval = parser.GetVal(_T("endrev"));
39 if( endval.IsEmpty() && (!startval.IsEmpty()))
41 dlg.m_Since=startval;
42 dlg.m_Radio = IDC_RADIO_SINCE;
45 else if( (!endval.IsEmpty()) && (!startval.IsEmpty()))
47 dlg.m_From=startval;
48 dlg.m_To=endval;
49 dlg.m_Radio = IDC_RADIO_RANGE;
52 if(dlg.DoModal()==IDOK)
54 CString cmd;
55 CString range;
57 switch(dlg.m_Radio)
59 case IDC_RADIO_SINCE:
60 range=g_Git.FixBranchName(dlg.m_Since);
61 break;
62 case IDC_RADIO_NUM:
63 range.Format(_T("-%d"),dlg.m_Num);
64 break;
65 case IDC_RADIO_RANGE:
66 range.Format(_T("%s..%s"),dlg.m_From,dlg.m_To);
67 break;
69 dlg.m_Dir.Replace(_T('\\'),_T('/'));
70 cmd.Format(_T("git.exe format-patch -o \"%s\" %s"),
71 dlg.m_Dir,
72 range
75 CProgressDlg progress;
76 progress.m_GitCmd=cmd;
77 progress.DoModal();
79 CShellUpdater::Instance().AddPathForUpdate(CTGitPath(dlg.m_Dir));
80 CShellUpdater::Instance().Flush();
82 if(!progress.m_GitStatus)
84 if(dlg.m_bSendMail)
86 CAppUtils::SendPatchMail(cmd,progress.m_LogText);
89 return !progress.m_GitStatus;
91 return FALSE;