Fixed some unused variables warnings
[TortoiseGit.git] / src / TortoiseProc / Commands / SubmoduleCommand.cpp
blob198f484aa735bb51207ad9c7f83431d992160025
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2009 - 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 "SubmoduleCommand.h"
21 #include "commonresource.h"
23 #include "MessageBox.h"
24 #include "RenameDlg.h"
25 #include "InputLogDlg.h"
26 #include "Git.h"
27 #include "DirFileEnum.h"
28 #include "ShellUpdater.h"
29 #include "SubmoduleAddDlg.h"
30 #include "ProgressDlg.h"
32 bool SubmoduleAddCommand::Execute()
34 bool bRet = false;
35 CSubmoduleAddDlg dlg;
36 dlg.m_strPath = cmdLinePath.GetDirectory().GetWinPathString();
37 dlg.m_strProject = g_Git.m_CurrentDir;
38 if( dlg.DoModal() == IDOK )
40 CString cmd;
41 if(dlg.m_strPath.Left(g_Git.m_CurrentDir.GetLength()) == g_Git.m_CurrentDir)
42 dlg.m_strPath = dlg.m_strPath.Right(dlg.m_strPath.GetLength()-g_Git.m_CurrentDir.GetLength()-1);
44 CString branch;
45 if(dlg.m_bBranch)
46 branch.Format(_T(" -b %s "), dlg.m_strBranch);
48 dlg.m_strPath.Replace(_T('\\'),_T('/'));
49 dlg.m_strRepos.Replace(_T('\\'),_T('/'));
51 cmd.Format(_T("git.exe submodule add %s -- \"%s\" \"%s\""),
52 branch,
53 dlg.m_strRepos, dlg.m_strPath);
55 CProgressDlg progress;
56 progress.m_GitCmd=cmd;
57 progress.DoModal();
59 bRet = TRUE;
61 return bRet;
64 bool SubmoduleCommand::Execute(CString cmd, CString arg)
66 CProgressDlg progress;
67 CString bkpath;
69 if(parser.HasKey(_T("bkpath")))
71 bkpath=parser.GetVal(_T("bkpath"));
73 else
75 bkpath=this->orgPathList[0].GetWinPathString();
76 int start = bkpath.ReverseFind(_T('\\'));
77 if( start >= 0 )
78 bkpath=bkpath.Left(start);
81 CString super=g_GitAdminDir.GetSuperProjectRoot( bkpath );
82 if(super.IsEmpty())
84 CMessageBox::Show(NULL,IDS_ERR_NOTFOUND_SUPER_PRJECT,IDS_APPNAME,MB_OK|MB_ICONERROR);
85 //change current project root to super project
86 return false;
89 g_Git.m_CurrentDir=super;
91 progress.m_Title.Format(_T("Submodule %s - %s"),cmd,super);
93 //progress.m_GitCmd.Format(_T("git.exe submodule update --init "));
95 CString str;
96 for(int i=0;i<this->orgPathList.GetCount();i++)
98 if(orgPathList[i].IsDirectory())
100 str.Format(_T("git.exe submodule %s %s \"%s\""),cmd,arg, ((CTGitPath &)orgPathList[i]).GetSubPath(CTGitPath(super)).GetGitPathString());
101 progress.m_GitCmdList.push_back(str);
105 progress.DoModal();
107 return !progress.m_GitStatus;