OSDN Git Service

b2aece9134d86fededac5b249ce0c27e807fd7bb
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / Commands / CleanupCommand.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 "CleanupCommand.h"\r
21 \r
22 #include "MessageBox.h"\r
23 #include "ProgressDlg.h"\r
24 #include "Git.h"\r
25 //#include "GitGlobal.h"\r
26 #include "GitAdminDir.h"\r
27 #include "DirFileEnum.h"\r
28 #include "ShellUpdater.h"\r
29 \r
30 bool CleanupCommand::Execute()\r
31 {\r
32         bool bRet = false;\r
33 #if 0\r
34         CProgressDlg progress;\r
35         progress.SetTitle(IDS_PROC_CLEANUP);\r
36         progress.SetAnimation(IDR_CLEANUPANI);\r
37         progress.SetShowProgressBar(false);\r
38         progress.SetLine(1, CString(MAKEINTRESOURCE(IDS_PROC_CLEANUP_INFO1)));\r
39         progress.SetLine(2, CString(MAKEINTRESOURCE(IDS_PROC_CLEANUP_INFO2)));\r
40         progress.ShowModeless(hwndExplorer);\r
41         \r
42         CString strSuccessfullPaths, strFailedPaths;\r
43         for (int i=0; i<pathList.GetCount(); ++i)\r
44         {\r
45                 SVN svn;\r
46                 if (!svn.CleanUp(pathList[i]))\r
47                 {\r
48                         strFailedPaths += _T("- ") + pathList[i].GetWinPathString() + _T("\n");\r
49                         strFailedPaths += svn.GetLastErrorMessage() + _T("\n\n");\r
50                 }\r
51                 else\r
52                 {\r
53                         strSuccessfullPaths += _T("- ") + pathList[i].GetWinPathString() + _T("\n");\r
54 \r
55                         // after the cleanup has finished, crawl the path downwards and send a change\r
56                         // notification for every directory to the shell. This will update the\r
57                         // overlays in the left tree view of the explorer.\r
58                         CDirFileEnum crawler(pathList[i].GetWinPathString());\r
59                         CString sPath;\r
60                         bool bDir = false;\r
61                         CTSVNPathList updateList;\r
62                         while (crawler.NextFile(sPath, &bDir))\r
63                         {\r
64                                 if ((bDir) && (!g_SVNAdminDir.IsAdminDirPath(sPath)))\r
65                                 {\r
66                                         updateList.AddPath(CTSVNPath(sPath));\r
67                                 }\r
68                         }\r
69                         updateList.AddPath(pathList[i]);\r
70                         CShellUpdater::Instance().AddPathsForUpdate(updateList);\r
71                         CShellUpdater::Instance().Flush();\r
72                         updateList.SortByPathname(true);\r
73                         for (INT_PTR i=0; i<updateList.GetCount(); ++i)\r
74                         {\r
75                                 SHChangeNotify(SHCNE_UPDATEITEM, SHCNF_PATH, updateList[i].GetWinPath(), NULL);\r
76                                 ATLTRACE(_T("notify change for path %s\n"), updateList[i].GetWinPath());\r
77                         }\r
78                 }\r
79         }\r
80         progress.Stop();\r
81         \r
82         CString strMessage;\r
83         if ( !strSuccessfullPaths.IsEmpty() )\r
84         {\r
85                 CString tmp;\r
86                 tmp.Format(IDS_PROC_CLEANUPFINISHED, (LPCTSTR)strSuccessfullPaths);\r
87                 strMessage += tmp;\r
88                 bRet = true;\r
89         }\r
90         if ( !strFailedPaths.IsEmpty() )\r
91         {\r
92                 if (!strMessage.IsEmpty())\r
93                         strMessage += _T("\n");\r
94                 CString tmp;\r
95                 tmp.Format(IDS_PROC_CLEANUPFINISHED_FAILED, (LPCTSTR)strFailedPaths);\r
96                 strMessage += tmp;\r
97                 bRet = false;\r
98         }\r
99         CMessageBox::Show(hwndExplorer, strMessage, _T("TortoiseSVN"), MB_OK | (strFailedPaths.IsEmpty()?MB_ICONINFORMATION:MB_ICONERROR));\r
100 #endif\r
101         return bRet;\r
102 }\r