OSDN Git Service

Correct format patch command -<num> argument
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / Commands / FormatPatchCommand.cpp
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2007-2008 - TortoiseSVN\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #include "StdAfx.h"\r
20 #include "FormatPatchCommand.h"\r
21 \r
22 #include "MessageBox.h"\r
23 #include "FormatPatchDlg.h"\r
24 #include "InputLogDlg.h"\r
25 #include "Git.h"\r
26 #include "DirFileEnum.h"\r
27 #include "ShellUpdater.h"\r
28 \r
29 #include "ProgressDlg.h"\r
30 #include "AppUtils.h"\r
31 \r
32 bool FormatPatchCommand::Execute()\r
33 {\r
34         CFormatPatchDlg dlg;\r
35 //      dlg.m_bIsTag=TRUE;\r
36         CString startval = parser.GetVal(_T("startrev"));\r
37         CString endval = parser.GetVal(_T("endrev"));\r
38 \r
39         if( endval.IsEmpty() && (!startval.IsEmpty()))\r
40         {\r
41                 dlg.m_Since=startval;\r
42                 dlg.m_Radio = IDC_RADIO_SINCE;\r
43 \r
44         }else if( (!endval.IsEmpty()) && (!startval.IsEmpty()))\r
45         {\r
46                 dlg.m_From=startval;\r
47                 dlg.m_To=endval;\r
48                 dlg.m_Radio = IDC_RADIO_RANGE;\r
49         }\r
50 \r
51         if(dlg.DoModal()==IDOK)\r
52         {\r
53                 CString cmd;\r
54                 CString range;\r
55 \r
56                 switch(dlg.m_Radio)\r
57                 {\r
58                 case IDC_RADIO_SINCE:\r
59                         range=dlg.m_Since;\r
60                         break;\r
61                 case IDC_RADIO_NUM:\r
62                         range.Format(_T("-%d"),dlg.m_Num);\r
63                         break;\r
64                 case IDC_RADIO_RANGE:\r
65                         range.Format(_T("%s..%s"),dlg.m_From,dlg.m_To);\r
66                         break;\r
67                 }\r
68                 cmd.Format(_T("git.exe format-patch -o \"%s\" %s"),\r
69                         dlg.m_Dir,\r
70                         range\r
71                         );\r
72 \r
73                 CProgressDlg progress;\r
74                 progress.m_GitCmd=cmd;\r
75                 progress.DoModal();\r
76                 \r
77                 CShellUpdater::Instance().AddPathForUpdate(CTGitPath(dlg.m_Dir));\r
78                 CShellUpdater::Instance().Flush();\r
79                 \r
80                 if(!progress.m_GitStatus)\r
81                 {\r
82                         if(dlg.m_bSendMail)\r
83                         {\r
84                                 CTGitPathList list;\r
85                                 CString log=progress.m_LogText;\r
86                                 int start=log.Find(cmd);\r
87                                 if(start >=0)\r
88                                         CString one=log.Tokenize(_T("\n"),start);\r
89 \r
90                                 while(start>=0)\r
91                                 {\r
92                                         CString one=log.Tokenize(_T("\n"),start);\r
93                                         one=one.Trim();\r
94                                         if(one.IsEmpty())\r
95                                                 continue;\r
96                                         one.Replace(_T('/'),_T('\\'));\r
97                                         CTGitPath path;\r
98                                         path.SetFromWin(one);\r
99                                         list.AddPath(path);\r
100                                 }\r
101 \r
102                                 CAppUtils::SendPatchMail(list);\r
103                         }\r
104                 }\r
105                 return !progress.m_GitStatus;\r
106         }\r
107         return FALSE;\r
108 }\r