OSDN Git Service

Change Dir Structure to be same as TortoiseSVN'
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / Commands / IgnoreCommand.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 "IgnoreCommand.h"\r
21 \r
22 #include "MessageBox.h"\r
23 #include "PathUtils.h"\r
24 #include "SVNProperties.h"\r
25 \r
26 bool IgnoreCommand::Execute()\r
27 {\r
28         CString filelist;\r
29         BOOL err = FALSE;\r
30         for(int nPath = 0; nPath < pathList.GetCount(); nPath++)\r
31         {\r
32                 CString name = CPathUtils::PathPatternEscape(pathList[nPath].GetFileOrDirectoryName());\r
33                 if (parser.HasKey(_T("onlymask")))\r
34                 {\r
35                         name = _T("*")+pathList[nPath].GetFileExtension();\r
36                 }\r
37                 filelist += name + _T("\n");\r
38                 CTSVNPath parentfolder = pathList[nPath].GetContainingDirectory();\r
39                 SVNProperties props(parentfolder, SVNRev::REV_WC, false);\r
40                 CStringA value;\r
41                 for (int i=0; i<props.GetCount(); i++)\r
42                 {\r
43                         CString propname(props.GetItemName(i).c_str());\r
44                         if (propname.CompareNoCase(_T("svn:ignore"))==0)\r
45                         {\r
46                                 //treat values as normal text even if they're not\r
47                                 value = (char *)props.GetItemValue(i).c_str();\r
48                         }\r
49                 }\r
50                 if (value.IsEmpty())\r
51                         value = name;\r
52                 else\r
53                 {\r
54                         // make sure we don't have duplicate entries\r
55                         std::set<CStringA> ignoreItems;\r
56                         ignoreItems.insert(CUnicodeUtils::GetUTF8(name));\r
57                         CStringA token;\r
58                         int curPos = 0;\r
59                         token= value.Tokenize("\n",curPos);\r
60                         while (token != _T(""))\r
61                         {\r
62                                 token.Trim();\r
63                                 ignoreItems.insert(token);\r
64                                 token = value.Tokenize("\n", curPos);\r
65                         };\r
66                         value.Empty();\r
67                         for (std::set<CStringA>::iterator it = ignoreItems.begin(); it != ignoreItems.end(); ++it)\r
68                         {\r
69                                 value += *it;\r
70                                 value += "\n";\r
71                         }\r
72                 }\r
73                 if (!props.Add(_T("svn:ignore"), (LPCSTR)value))\r
74                 {\r
75                         CString temp;\r
76                         temp.Format(IDS_ERR_FAILEDIGNOREPROPERTY, (LPCTSTR)name);\r
77                         temp += _T("\n");\r
78                         temp += props.GetLastErrorMsg().c_str();\r
79                         CMessageBox::Show(hwndExplorer, temp, _T("TortoiseSVN"), MB_ICONERROR);\r
80                         err = TRUE;\r
81                         break;\r
82                 }\r
83         }\r
84         if (err == FALSE)\r
85         {\r
86                 CString temp;\r
87                 temp.Format(IDS_PROC_IGNORESUCCESS, (LPCTSTR)filelist);\r
88                 CMessageBox::Show(hwndExplorer, temp, _T("TortoiseSVN"), MB_ICONINFORMATION);\r
89                 return true;\r
90         }\r
91         return false;\r
92 }