Kiln » TortoiseHg » TortoiseHg
Clone URL:  
TortoiseUtils.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
#include "stdafx.h" #include "TortoiseUtils.h" #include <vector> #include <assert.h> #include <map> #include <io.h> #include "FCNTL.H" #include "shlwapi.h" LPWSTR hf_mbtowc(LPWSTR lpw, LPCSTR lpa, int nChars) { assert(lpa != NULL); assert(lpw != NULL); lpw[0] = '\0'; MultiByteToWideChar(CP_ACP, 0, lpa, -1, lpw, nChars); return lpw; } LPSTR hf_wctomb(LPSTR lpa, LPCWSTR lpw, int nChars) { assert(lpw != NULL); assert(lpa != NULL); lpa[0] = '\0'; WideCharToMultiByte(CP_ACP, 0, lpw, -1, lpa, nChars, NULL, NULL); return lpa; } std::string GetTHgProgRoot() { LPCSTR regname = "Software\\TortoiseHg"; HKEY key = HKEY_LOCAL_MACHINE; TCHAR lpszValue[MAX_PATH] = ""; LONG lpcbLonger = MAX_PATH * sizeof(TCHAR); if (RegQueryValue(key, regname, lpszValue, &lpcbLonger) != ERROR_SUCCESS) return ""; return lpszValue; } // Start an external command // Note: if the command is a batch file and the [full] path to the // batch contains spaces, the path must be double-quoted. // (see http://www.encocoservices.com/createprocess.html) bool LaunchCommand(const std::string& command, const std::string& cwd) { TDEBUG_TRACE("LaunchCommand: " << command); TDEBUG_TRACE("LaunchCommand: in " << cwd); PROCESS_INFORMATION processInfo; memset(&processInfo, 0, sizeof(processInfo)); STARTUPINFOA startupInfo; memset(&startupInfo, 0, sizeof(startupInfo)); int res = CreateProcessA( NULL, // No module name, use command line const_cast<char*>(command.c_str()), NULL, // Process handle not inherited NULL, // Thread handle not inherited FALSE, CREATE_NO_WINDOW, NULL, // use parent's environment const_cast<char*>(cwd.c_str()), &startupInfo, &processInfo ); if (res == 0) { TDEBUG_TRACE("LaunchCommand: failed to launch"); return false; } CloseHandle(processInfo.hProcess); CloseHandle(processInfo.hThread); return true; } std::string GetTemporaryFile(LPCTSTR prefix) { char tempDir[MAX_PATH + 1]; char tempFile[MAX_PATH + 1]; if (GetTempPath(MAX_PATH, tempDir) == 0) { TDEBUG_TRACE("GetTemporaryFile: Failed to find temporary path"); } else if (GetTempFileName(tempDir, prefix, 0, tempFile) != 0) { return tempFile; } else { TDEBUG_TRACE("GetTemporaryFile: Failed to get temporary file"); } return ""; } bool IsDirectory(const std::string& filename) { return ::PathIsDirectory(filename.c_str()) != 0; } std::string DirName(const std::string& filename) { if (filename.empty()) return filename; std::string::size_type pos = filename.find_last_of("\\"); if (pos == std::string::npos) return ""; std::string myfilename = filename.substr(0, pos); if (myfilename.size() > 0 && myfilename[myfilename.size()-1] == ':') myfilename.push_back('\\'); return myfilename; } std::string BaseName(const std::string& filename) { if (filename.empty()) return filename; std::string::size_type pos = filename.find_last_of("\\"); if (pos == std::string::npos) return filename; return filename.substr(pos+1); } // not reentrant HICON GetTortoiseIcon(const std::string& iconname) { typedef std::map<std::string, HICON> IconCacheT; static IconCacheT iconcache_; std::string thgdir = GetTHgProgRoot(); if (thgdir.empty()) { TDEBUG_TRACE("GetTortoiseIcon: THG root is empty"); return 0; } const std::string iconpath = thgdir + "\\icons\\" + iconname; IconCacheT::const_iterator i = iconcache_.find(iconpath); if (i != iconcache_.end()) return i->second; if (iconcache_.size() > 200) { TDEBUG_TRACE("**** GetTortoiseIcon: error: too many icons in cache"); return 0; } HICON h = (HICON) LoadImageA(0, iconpath.c_str(), IMAGE_ICON, 16, 16, LR_LOADFROMFILE); if (!h) { TDEBUG_TRACE("GetTortoiseIcon: can't find " + iconpath); return 0; } iconcache_[iconpath] = h; TDEBUG_TRACE( "GetTortoiseIcon: added '" << iconpath << "' to iconcache_" " (" << iconcache_.size() << " icons in cache)" ); return h; } std::string GetHgRepoRoot(const std::string& path) { TDEBUG_TRACE("GetHgRepoRoot('" << path << "')"); std::string p = (::PathIsUNCServerShare(path.c_str()) || IsDirectory(path)) ? path : DirName(path); for (;;) { std::string tdir = p + "\\.hg"; if (::PathIsUNCServerShare(tdir.c_str())) { TDEBUG_TRACE("GetHgRepoRoot: tdir is UNC share '" << tdir << "'"); p.clear(); break; } else if (IsDirectory(tdir)) break; std::string oldp = p; p = DirName(p); if (p == oldp) { p.clear(); break; } } TDEBUG_TRACE("GetHgRepoRoot: returning '" << p << "'"); return p; } bool IsHgRepo(const std::string& path) { return !GetHgRepoRoot(path).empty(); } // open a file for reading, allowing renames and deletes by other // processes while we have it open FILE* fopenReadRenameAllowed(const char* path) { HANDLE fh = ::CreateFileA( path, GENERIC_READ, FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE, 0, OPEN_EXISTING, 0, 0 ); if (fh == INVALID_HANDLE_VALUE) return 0; // get C runtime file descriptor from file handle int fd = ::_open_osfhandle((intptr_t)fh, _O_RDONLY); if (fd == -1) { TDEBUG_TRACE("fopenReadRenameAllowed: _open_osfhandle failed"); ::CloseHandle(fh); return 0; } // get C runtime FILE from file descriptor FILE* f = ::_fdopen(fd, "r"); if (f == 0) { TDEBUG_TRACE("fopenReadRenameAllowed: _fdopen failed"); ::_close(fd); return 0; } return f; } // read string value from registry int GetRegSZValue(HKEY hkey, const char* name, std::string& res) { res = ""; if (!hkey) return 0; std::vector<BYTE> Data(300); DWORD cbData = Data.size(); LONG rv = ::RegQueryValueExA(hkey, name, 0, 0, &Data[0], &cbData); if (rv == ERROR_SUCCESS) { res = reinterpret_cast<char*>(&Data[0]); return 1; } TDEBUG_TRACE("GetRegSZValue(" << name << ") failed"); return 0; } // read string value from registry, wide version int GetRegSZValueW(HKEY hkey, const wchar_t* name, std::wstring& res) { res = L""; if (!hkey) return 0; std::vector<BYTE> Data(600); DWORD cbData = Data.size(); LONG rv = ::RegQueryValueExW(hkey, name, 0, 0, &Data[0], &cbData); if (rv == ERROR_SUCCESS) { res = reinterpret_cast<wchar_t*>(&Data[0]); return 1; } TDEBUG_TRACEW(L"GetRegSZValueW(\"" << name << L"\") failed"); return 0; } // true if a starts with b bool StartsWith(const std::string& a, const std::string& b) { if (a.empty() || b.empty()) return false; if (b.size() > a.size()) return false; for (std::string::size_type i = 0; i < b.size(); ++i) { if (a[i] != b[i]) return false; } return true; } void Tokenize(const std::string& str, std::vector<std::string>& tokens, const std::string& delimiters) { typedef std::string S; S::size_type lastpos = str.find_first_not_of(delimiters, 0); S::size_type pos = str.find_first_of(delimiters, lastpos); while (S::npos != pos || S::npos != lastpos) { tokens.push_back(str.substr(lastpos, pos - lastpos)); lastpos = str.find_first_not_of(delimiters, pos); pos = str.find_first_of(delimiters, lastpos); } }