1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 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.
20 #include "PasteCopyCommand.h"
22 #include "ProgressDlg.h"
23 #include "SysProgressDlg.h"
24 #include "MessageBox.h"
25 #include "RenameDlg.h"
27 #include "GitStatus.h"
28 #include "ShellUpdater.h"
30 bool PasteCopyCommand::Execute()
32 CString sDroppath
= parser
.GetVal(_T("droptarget"));
33 CTGitPath
dropPath(sDroppath
);
34 if (dropPath
.IsAdminDir())
37 if(!dropPath
.HasAdminDir(&g_Git
.m_CurrentDir
))
41 unsigned long count
= 0;
43 orgPathList
.RemoveAdminPaths();
44 CSysProgressDlg progress
;
45 progress
.SetTitle(IDS_PROC_COPYING
);
46 progress
.SetAnimation(IDR_MOVEANI
);
47 progress
.SetTime(true);
48 progress
.ShowModeless(CWnd::FromHandle(hwndExplorer
));
49 for (int nPath
= 0; nPath
< orgPathList
.GetCount(); ++nPath
)
51 const CTGitPath
& sourcePath
= orgPathList
[nPath
];
53 CTGitPath fullDropPath
= dropPath
;
54 if (sNewName
.IsEmpty())
55 fullDropPath
.AppendPathString(sourcePath
.GetFileOrDirectoryName());
57 fullDropPath
.AppendPathString(sNewName
);
59 // Check for a drop-on-to-ourselves
60 if (sourcePath
.IsEquivalentTo(fullDropPath
))
65 dlg
.m_windowtitle
.Format(IDS_PROC_NEWNAMECOPY
, (LPCTSTR
)sourcePath
.GetUIFileOrDirectoryName());
66 if (dlg
.DoModal() != IDOK
)
70 // rebuild the progress dialog
71 progress
.EnsureValid();
72 progress
.SetTitle(IDS_PROC_COPYING
);
73 progress
.SetAnimation(IDR_MOVEANI
);
74 progress
.SetTime(true);
75 progress
.SetProgress(count
, orgPathList
.GetCount());
76 progress
.ShowModeless(CWnd::FromHandle(hwndExplorer
));
77 // Rebuild the destination path, with the new name
78 fullDropPath
.SetFromUnknown(sDroppath
);
79 fullDropPath
.AppendPathString(dlg
.m_name
);
82 //svn_wc_status_kind s = status.GetAllStatus(sourcePath);
83 //if ((s == svn_wc_status_none)||(s == svn_wc_status_unversioned)||(s == svn_wc_status_ignored))
85 // source file is unversioned: move the file to the target, then add it
86 CopyFile(sourcePath
.GetWinPath(), fullDropPath
.GetWinPath(), FALSE
);
88 cmd
.Format(_T("git.exe add -- \"%s\""),fullDropPath
.GetWinPath());
89 if (g_Git
.Run(cmd
, &output
, CP_UTF8
))
91 TRACE(_T("%s\n"), (LPCTSTR
)output
);
92 CMessageBox::Show(hwndExplorer
, output
, _T("TortoiseGit"), MB_ICONERROR
);
93 return FALSE
; //get out of here
96 CShellUpdater::Instance().AddPathForUpdate(fullDropPath
);
100 // if (!svn.Copy(CTSVNPathList(sourcePath), fullDropPath, SVNRev::REV_WC, SVNRev()))
102 // TRACE(_T("%s\n"), (LPCTSTR)svn.GetLastErrorMessage());
103 // CMessageBox::Show(hwndExplorer, svn.GetLastErrorMessage(), _T("TortoiseSVN"), MB_ICONERROR);
104 // return FALSE; //get out of here
107 // CShellUpdater::Instance().AddPathForUpdate(fullDropPath);
110 if (progress
.IsValid())
112 progress
.FormatPathLine(1, IDS_PROC_COPYINGPROG
, sourcePath
.GetWinPath());
113 progress
.FormatPathLine(2, IDS_PROC_CPYMVPROG2
, fullDropPath
.GetWinPath());
114 progress
.SetProgress(count
, orgPathList
.GetCount());
116 if ((progress
.IsValid())&&(progress
.HasUserCancelled()))
118 CMessageBox::Show(hwndExplorer
, IDS_SVN_USERCANCELLED
, IDS_APPNAME
, MB_ICONINFORMATION
);