OSDN Git Service

FormatPatch Finished
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / TortoiseProc.cpp
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-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 "vld.h"\r
21 #include "TortoiseProc.h"\r
22 #include "SysImageList.h"\r
23 //#include "CrashReport.h"\r
24 #include "CmdLineParser.h"\r
25 #include "Hooks.h"\r
26 #include "AppUtils.h"\r
27 #include "PathUtils.h"\r
28 #include "UnicodeUtils.h"\r
29 #include "MessageBox.h"\r
30 //#include "libintl.h"\r
31 #include "DirFileEnum.h"\r
32 //#include "SoundUtils.h"\r
33 //#include "SVN.h"\r
34 #include "GitAdminDir.h"\r
35 #include "Git.h"\r
36 //#include "SVNGlobal.h"\r
37 //#include "svn_types.h"\r
38 //#include "svn_dso.h"\r
39 //#include <openssl/ssl.h>\r
40 //#include <openssl/err.h>\r
41 \r
42 #include "Commands\Command.h"\r
43 \r
44 #include "..\version.h"\r
45 #define STRUCT_IOVEC_DEFINED\r
46 //#include "sasl.h"\r
47 \r
48 #ifdef _DEBUG\r
49 #define new DEBUG_NEW\r
50 #endif\r
51 \r
52 #pragma comment(linker, "\"/manifestdependency:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")\r
53 \r
54 \r
55 BEGIN_MESSAGE_MAP(CTortoiseProcApp, CWinAppEx)\r
56         ON_COMMAND(ID_HELP, CWinAppEx::OnHelp)\r
57 END_MESSAGE_MAP()\r
58 \r
59 CString g_version;\r
60 CString CGit::m_MsysGitPath;\r
61 //////////////////////////////////////////////////////////////////////////\r
62 \r
63 CTortoiseProcApp::CTortoiseProcApp()\r
64 {\r
65         EnableHtmlHelp();\r
66         int argc = 0;\r
67         g_version=_T("abc");\r
68         const char* const * argv = NULL;\r
69 //      apr_app_initialize(&argc, &argv, NULL);\r
70 //      svn_dso_initialize2();\r
71         SYS_IMAGE_LIST();\r
72 //      CHooks::Create();\r
73         g_GitAdminDir.Init();\r
74         m_bLoadUserToolbars = FALSE;\r
75         m_bSaveState = FALSE;\r
76         retSuccess = false;\r
77         CGit git;\r
78         git.GetUserName();\r
79 }\r
80 \r
81 CTortoiseProcApp::~CTortoiseProcApp()\r
82 {\r
83 //      sasl_done();\r
84 \r
85         // global application exit cleanup (after all SSL activity is shutdown)\r
86         // we have to clean up SSL ourselves, since neon doesn't do that (can't do it)\r
87         // because those cleanup functions work globally per process.\r
88         //ERR_free_strings();\r
89         //EVP_cleanup();\r
90         //CRYPTO_cleanup_all_ex_data();\r
91 \r
92         // since it is undefined *when* the global object SVNAdminDir is\r
93         // destroyed, we tell it to destroy the memory pools and terminate apr\r
94         // *now* instead of later when the object itself is destroyed.\r
95         g_GitAdminDir.Close();\r
96 //      CHooks::Destroy();\r
97         SYS_IMAGE_LIST().Cleanup();\r
98         //apr_terminate();\r
99 }\r
100 \r
101 // The one and only CTortoiseProcApp object\r
102 CTortoiseProcApp theApp;\r
103 HWND hWndExplorer;\r
104 CString sOrigCWD;\r
105 \r
106 BOOL CTortoiseProcApp::CheckMsysGitDir()\r
107 {\r
108         CRegString msysdir=CRegString(_T("Software\\TortoiseGit\\MSysGit"),_T(""),FALSE,HKEY_LOCAL_MACHINE);\r
109         CString str=msysdir;\r
110         if(str.IsEmpty())\r
111         {\r
112                 CRegString msysinstalldir=CRegString(_T("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Git_is1\\InstallLocation"),_T(""),FALSE,HKEY_LOCAL_MACHINE);\r
113                 str=msysinstalldir;\r
114                 str+="\\bin";\r
115                 msysdir=str;\r
116                 msysdir.write();\r
117 \r
118         }\r
119         CGit::m_MsysGitPath=str;\r
120 \r
121         TCHAR *oldpath;\r
122         size_t size;\r
123         \r
124         _tdupenv_s(&oldpath,&size,_T("PATH")); \r
125 \r
126         CString path;\r
127         path.Format(_T("%s;"),str);\r
128         path+=oldpath;\r
129 \r
130         _tputenv_s(_T("PATH"),path);\r
131 \r
132         CString cmd,out;\r
133         cmd=_T("git.exe --version");\r
134         if(g_Git.Run(cmd,&out))\r
135         {\r
136                 return false;\r
137         }\r
138         else\r
139                 return true;\r
140         \r
141 }\r
142 //CCrashReport crasher("crashreports@tortoisesvn.tigris.org", "Crash Report for TortoiseSVN " APP_X64_STRING " : " STRPRODUCTVER, TRUE);// crash\r
143 \r
144 // CTortoiseProcApp initialization\r
145 \r
146 BOOL CTortoiseProcApp::InitInstance()\r
147 {\r
148         EnableCrashHandler();\r
149         CheckUpgrade();\r
150         CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows));\r
151         CMFCButton::EnableWindowsTheming();\r
152 \r
153         if(!CheckMsysGitDir())\r
154         {\r
155                 if(CMessageBox::Show(NULL,_T("MSysGit(http://code.google.com/p/msysgit) have not installed Correctly\n\\r
156 or MSysGit Path setting error\n\\r
157 Click Yes to open setting dialog to setup MSysGit Path"),\r
158                                                         _T("TortoiseGit"),MB_YESNO|MB_ICONERROR)==IDYES);\r
159                 {\r
160                         //todo open setting\r
161                 }\r
162                 return FALSE;   \r
163         }\r
164 \r
165         //set the resource dll for the required language\r
166         CRegDWORD loc = CRegDWORD(_T("Software\\TortoiseGit\\LanguageID"), 1033);\r
167         long langId = loc;\r
168         CString langDll;\r
169         CStringA langpath = CStringA(CPathUtils::GetAppParentDirectory());\r
170         langpath += "Languages";\r
171 //      bindtextdomain("subversion", (LPCSTR)langpath);\r
172 //      bind_textdomain_codeset("subversion", "UTF-8");\r
173         HINSTANCE hInst = NULL;\r
174         do\r
175         {\r
176                 langDll.Format(_T("..\\Languages\\TortoiseProc%d.dll"), langId);\r
177                 \r
178                 hInst = LoadLibrary(langDll);\r
179 \r
180                 CString sVer = _T(STRPRODUCTVER);\r
181                 CString sFileVer = CPathUtils::GetVersionFromFile(langDll);\r
182                 if (sFileVer.Compare(sVer)!=0)\r
183                 {\r
184                         FreeLibrary(hInst);\r
185                         hInst = NULL;\r
186                 }\r
187                 if (hInst != NULL)\r
188                 {\r
189                         AfxSetResourceHandle(hInst);\r
190                 }\r
191                 else\r
192                 {\r
193                         DWORD lid = SUBLANGID(langId);\r
194                         lid--;\r
195                         if (lid > 0)\r
196                         {\r
197                                 langId = MAKELANGID(PRIMARYLANGID(langId), lid);\r
198                         }\r
199                         else\r
200                                 langId = 0;\r
201                 }\r
202         } while ((hInst == NULL) && (langId != 0));\r
203         TCHAR buf[6];\r
204         _tcscpy_s(buf, _T("en"));\r
205         langId = loc;\r
206         CString sHelppath;\r
207         sHelppath = this->m_pszHelpFilePath;\r
208         sHelppath = sHelppath.MakeLower();\r
209         // MFC uses a help file with the same name as the application by default,\r
210         // which means we have to change that default to our language specific help files\r
211         sHelppath.Replace(_T("tortoiseproc.chm"), _T("TortoiseSVN_en.chm"));\r
212         free((void*)m_pszHelpFilePath);\r
213         m_pszHelpFilePath=_tcsdup(sHelppath);\r
214         sHelppath = CPathUtils::GetAppParentDirectory() + _T("Languages\\TortoiseGit_en.chm");\r
215         do\r
216         {\r
217                 CString sLang = _T("_");\r
218                 if (GetLocaleInfo(MAKELCID(langId, SORT_DEFAULT), LOCALE_SISO639LANGNAME, buf, sizeof(buf)))\r
219                 {\r
220                         sLang += buf;\r
221                         sHelppath.Replace(_T("_en"), sLang);\r
222                         if (PathFileExists(sHelppath))\r
223                         {\r
224                                 free((void*)m_pszHelpFilePath);\r
225                                 m_pszHelpFilePath=_tcsdup(sHelppath);\r
226                                 break;\r
227                         }\r
228                 }\r
229                 sHelppath.Replace(sLang, _T("_en"));\r
230                 if (GetLocaleInfo(MAKELCID(langId, SORT_DEFAULT), LOCALE_SISO3166CTRYNAME, buf, sizeof(buf)))\r
231                 {\r
232                         sLang += _T("_");\r
233                         sLang += buf;\r
234                         sHelppath.Replace(_T("_en"), sLang);\r
235                         if (PathFileExists(sHelppath))\r
236                         {\r
237                                 free((void*)m_pszHelpFilePath);\r
238                                 m_pszHelpFilePath=_tcsdup(sHelppath);\r
239                                 break;\r
240                         }\r
241                 }\r
242                 sHelppath.Replace(sLang, _T("_en"));\r
243 \r
244                 DWORD lid = SUBLANGID(langId);\r
245                 lid--;\r
246                 if (lid > 0)\r
247                 {\r
248                         langId = MAKELANGID(PRIMARYLANGID(langId), lid);\r
249                 }\r
250                 else\r
251                         langId = 0;\r
252         } while (langId);\r
253         setlocale(LC_ALL, "");\r
254         \r
255         // InitCommonControls() is required on Windows XP if an application\r
256         // manifest specifies use of ComCtl32.dll version 6 or later to enable\r
257         // visual styles.  Otherwise, any window creation will fail.\r
258         \r
259     INITCOMMONCONTROLSEX used = {\r
260         sizeof(INITCOMMONCONTROLSEX),\r
261                         ICC_ANIMATE_CLASS | ICC_BAR_CLASSES | ICC_COOL_CLASSES | ICC_DATE_CLASSES |\r
262                         ICC_HOTKEY_CLASS | ICC_INTERNET_CLASSES | ICC_LISTVIEW_CLASSES |\r
263                         ICC_NATIVEFNTCTL_CLASS | ICC_PAGESCROLLER_CLASS | ICC_PROGRESS_CLASS |\r
264                         ICC_TAB_CLASSES | ICC_TREEVIEW_CLASSES | ICC_UPDOWN_CLASS |\r
265                         ICC_USEREX_CLASSES | ICC_WIN95_CLASSES\r
266     };\r
267     InitCommonControlsEx(&used);\r
268         AfxOleInit();\r
269         AfxEnableControlContainer();\r
270         AfxInitRichEdit2();\r
271         CWinAppEx::InitInstance();\r
272         SetRegistryKey(_T("TortoiseGit"));\r
273 \r
274         CCmdLineParser parser(AfxGetApp()->m_lpCmdLine);\r
275 \r
276         // if HKCU\Software\TortoiseSVN\Debug is not 0, show our command line\r
277         // in a message box\r
278         if (CRegDWORD(_T("Software\\TortoiseGit\\Debug"), FALSE)==TRUE)\r
279                 AfxMessageBox(AfxGetApp()->m_lpCmdLine, MB_OK | MB_ICONINFORMATION);\r
280 \r
281         if ( parser.HasKey(_T("path")) && parser.HasKey(_T("pathfile")))\r
282         {\r
283                 CMessageBox::Show(NULL, IDS_ERR_INVALIDPATH, IDS_APPNAME, MB_ICONERROR);\r
284                 return FALSE;\r
285         }\r
286 \r
287         CTGitPath cmdLinePath;\r
288         CTGitPathList pathList;\r
289         if ( parser.HasKey(_T("pathfile")) )\r
290         {\r
291 \r
292                 CString sPathfileArgument = CPathUtils::GetLongPathname(parser.GetVal(_T("pathfile")));\r
293 \r
294                 cmdLinePath.SetFromUnknown(sPathfileArgument);\r
295                 if (pathList.LoadFromFile(cmdLinePath)==false)\r
296                         return FALSE;           // no path specified!\r
297                 if ( parser.HasKey(_T("deletepathfile")) )\r
298                 {\r
299                         // We can delete the temporary path file, now that we've loaded it\r
300                         ::DeleteFile(cmdLinePath.GetWinPath());\r
301                 }\r
302                 // This was a path to a temporary file - it's got no meaning now, and\r
303                 // anybody who uses it again is in for a problem...\r
304                 cmdLinePath.Reset();\r
305 \r
306         }\r
307         else\r
308         {\r
309 \r
310                 CString sPathArgument = CPathUtils::GetLongPathname(parser.GetVal(_T("path")));\r
311                 int asterisk = sPathArgument.Find('*');\r
312                 cmdLinePath.SetFromUnknown(asterisk >= 0 ? sPathArgument.Left(asterisk) : sPathArgument);\r
313                 pathList.LoadFromAsteriskSeparatedString(sPathArgument);\r
314 \r
315         }\r
316         \r
317         hWndExplorer = NULL;\r
318         CString sVal = parser.GetVal(_T("hwnd"));\r
319         if (!sVal.IsEmpty())\r
320                 hWndExplorer = (HWND)_ttoi64(sVal);\r
321 \r
322         while (GetParent(hWndExplorer)!=NULL)\r
323                 hWndExplorer = GetParent(hWndExplorer);\r
324         if (!IsWindow(hWndExplorer))\r
325         {\r
326                 hWndExplorer = NULL;\r
327         }\r
328         \r
329         // Subversion sometimes writes temp files to the current directory!\r
330         // Since TSVN doesn't need a specific CWD anyway, we just set it\r
331         // to the users temp folder: that way, Subversion is guaranteed to\r
332         // have write access to the CWD\r
333         {\r
334                 DWORD len = GetCurrentDirectory(0, NULL);\r
335                 if (len)\r
336                 {\r
337                         TCHAR * originalCurrentDirectory = new TCHAR[len];\r
338                         if (GetCurrentDirectory(len, originalCurrentDirectory))\r
339                         {\r
340                                 sOrigCWD = originalCurrentDirectory;\r
341                                 sOrigCWD = CPathUtils::GetLongPathname(sOrigCWD);\r
342                         }\r
343                         delete [] originalCurrentDirectory;\r
344                 }\r
345                 TCHAR pathbuf[MAX_PATH];\r
346                 GetTempPath(MAX_PATH, pathbuf);\r
347                 SetCurrentDirectory(pathbuf);           \r
348         }\r
349 \r
350         // check for newer versions\r
351         if (CRegDWORD(_T("Software\\TortoiseSVN\\CheckNewer"), TRUE) != FALSE)\r
352         {\r
353                 time_t now;\r
354                 struct tm ptm;\r
355 \r
356                 time(&now);\r
357                 if ((now != 0) && (localtime_s(&ptm, &now)==0))\r
358                 {\r
359                         int week = 0;\r
360                         // we don't calculate the real 'week of the year' here\r
361                         // because just to decide if we should check for an update\r
362                         // that's not needed.\r
363                         week = ptm.tm_yday / 7;\r
364 \r
365                         CRegDWORD oldweek = CRegDWORD(_T("Software\\TortoiseSVN\\CheckNewerWeek"), (DWORD)-1);\r
366                         if (((DWORD)oldweek) == -1)\r
367                                 oldweek = week;         // first start of TortoiseProc, no update check needed\r
368                         else\r
369                         {\r
370                                 if ((DWORD)week != oldweek)\r
371                                 {\r
372                                         oldweek = week;\r
373 \r
374                                         TCHAR com[MAX_PATH+100];\r
375                                         GetModuleFileName(NULL, com, MAX_PATH);\r
376                                         _tcscat_s(com, MAX_PATH+100, _T(" /command:updatecheck"));\r
377 \r
378                                         //CAppUtils::LaunchApplication(com, 0, false);\r
379                                 }\r
380                         }\r
381                 }\r
382         }\r
383 \r
384         if (parser.HasVal(_T("configdir")))\r
385         {\r
386                 // the user can override the location of the Subversion config directory here\r
387                 CString sConfigDir = parser.GetVal(_T("configdir"));\r
388 //              g_GitGlobal.SetConfigDir(sConfigDir);\r
389         }\r
390         // to avoid that SASL will look for and load its plugin dlls all around the\r
391         // system, we set the path here.\r
392         // Note that SASL doesn't have to be initialized yet for this to work\r
393 //      sasl_set_path(SASL_PATH_TYPE_PLUGIN, (LPSTR)(LPCSTR)CUnicodeUtils::GetUTF8(CPathUtils::GetAppDirectory().TrimRight('\\')));\r
394 \r
395         HANDLE TSVNMutex = ::CreateMutex(NULL, FALSE, _T("TortoiseGitProc.exe"));       \r
396         {\r
397 #if 0\r
398                 CString err = Git::CheckConfigFile();\r
399                 if (!err.IsEmpty())\r
400                 {\r
401                         CMessageBox::Show(hWndExplorer, err, _T("TortoiseGit"), MB_ICONERROR);\r
402                         // Normally, we give-up and exit at this point, but there is a trap here\r
403                         // in that the user might need to use the settings dialog to edit the config file.\r
404                         if (CString(parser.GetVal(_T("command"))).Compare(_T("settings"))==0)\r
405                         {\r
406                                 // just open the config file\r
407                                 TCHAR buf[MAX_PATH];\r
408                                 SHGetFolderPath(NULL, CSIDL_APPDATA, NULL, SHGFP_TYPE_CURRENT, buf);\r
409                                 CString path = buf;\r
410                                 path += _T("\\Git\\config");\r
411                                 CAppUtils::StartTextViewer(path);\r
412                                 return FALSE;\r
413                         }\r
414                 }\r
415 #endif\r
416         }\r
417 \r
418         // execute the requested command\r
419         CommandServer server;\r
420         Command * cmd = server.GetCommand(parser.GetVal(_T("command")));\r
421         if (cmd)\r
422         {\r
423                 cmd->SetExplorerHwnd(hWndExplorer);\r
424                 \r
425                 if(!g_Git.SetCurrentDir(cmdLinePath.GetWinPathString()))\r
426                 {\r
427                         int i=0;\r
428                         for(i=0;i<pathList.GetCount();i++)\r
429                                 if(g_Git.SetCurrentDir(pathList[i].GetWinPath()))\r
430                                         break;\r
431                 }\r
432 \r
433                 if(g_Git.m_CurrentDir)\r
434                         SetCurrentDirectory(g_Git.m_CurrentDir);\r
435 \r
436                 cmd->SetParser(parser);\r
437                 cmd->SetPaths(pathList, cmdLinePath);\r
438 \r
439                 retSuccess = cmd->Execute();\r
440                 delete cmd;\r
441         }\r
442 \r
443         if (TSVNMutex)\r
444                 ::CloseHandle(TSVNMutex);\r
445 \r
446         // Look for temporary files left around by TortoiseSVN and\r
447         // remove them. But only delete 'old' files because some\r
448         // apps might still be needing the recent ones.\r
449         {\r
450                 DWORD len = ::GetTempPath(0, NULL);\r
451                 TCHAR * path = new TCHAR[len + 100];\r
452                 len = ::GetTempPath (len+100, path);\r
453                 if (len != 0)\r
454                 {\r
455                         CSimpleFileFind finder = CSimpleFileFind(path, _T("*svn*.*"));\r
456                         FILETIME systime_;\r
457                         ::GetSystemTimeAsFileTime(&systime_);\r
458                         __int64 systime = (((_int64)systime_.dwHighDateTime)<<32) | ((__int64)systime_.dwLowDateTime);\r
459                         while (finder.FindNextFileNoDirectories())\r
460                         {\r
461                                 CString filepath = finder.GetFilePath();\r
462                                 HANDLE hFile = ::CreateFile(filepath, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, NULL, NULL);\r
463                                 if (hFile != INVALID_HANDLE_VALUE)\r
464                                 {\r
465                                         FILETIME createtime_;\r
466                                         if (::GetFileTime(hFile, &createtime_, NULL, NULL))\r
467                                         {\r
468                                                 ::CloseHandle(hFile);\r
469                                                 __int64 createtime = (((_int64)createtime_.dwHighDateTime)<<32) | ((__int64)createtime_.dwLowDateTime);\r
470                                                 if ((createtime + 864000000000) < systime)              //only delete files older than a day\r
471                                                 {\r
472                                                         ::SetFileAttributes(filepath, FILE_ATTRIBUTE_NORMAL);\r
473                                                         ::DeleteFile(filepath);\r
474                                                 }\r
475                                         }\r
476                                         else\r
477                                                 ::CloseHandle(hFile);\r
478                                 }\r
479                         }\r
480                 }       \r
481                 delete[] path;          \r
482         }\r
483 \r
484 \r
485         // Since the dialog has been closed, return FALSE so that we exit the\r
486         // application, rather than start the application's message pump.\r
487         return FALSE;\r
488 }\r
489 \r
490 \r
491 \r
492 void CTortoiseProcApp::CheckUpgrade()\r
493 {\r
494         CRegString regVersion = CRegString(_T("Software\\TortoiseSVN\\CurrentVersion"));\r
495         CString sVersion = regVersion;\r
496         if (sVersion.Compare(_T(STRPRODUCTVER))==0)\r
497                 return;\r
498         // we're starting the first time with a new version!\r
499         \r
500         LONG lVersion = 0;\r
501         int pos = sVersion.Find(',');\r
502         if (pos > 0)\r
503         {\r
504                 lVersion = (_ttol(sVersion.Left(pos))<<24);\r
505                 lVersion |= (_ttol(sVersion.Mid(pos+1))<<16);\r
506                 pos = sVersion.Find(',', pos+1);\r
507                 lVersion |= (_ttol(sVersion.Mid(pos+1))<<8);\r
508         }\r
509         \r
510         CRegDWORD regval = CRegDWORD(_T("Software\\TortoiseSVN\\DontConvertBase"), 999);\r
511         if ((DWORD)regval != 999)\r
512         {\r
513                 // there's a leftover registry setting we have to convert and then delete it\r
514                 CRegDWORD newregval = CRegDWORD(_T("Software\\TortoiseSVN\\ConvertBase"));\r
515                 newregval = !regval;\r
516                 regval.removeValue();\r
517         }\r
518 #if 0\r
519         if (lVersion <= 0x01010300)\r
520         {\r
521                 CSoundUtils::RegisterTSVNSounds();\r
522                 // remove all saved dialog positions\r
523                 CRegString(_T("Software\\TortoiseSVN\\TortoiseProc\\ResizableState\\")).removeKey();\r
524                 CRegDWORD(_T("Software\\TortoiseSVN\\RecursiveOverlay")).removeValue();\r
525                 // remove the external cache key\r
526                 CRegDWORD(_T("Software\\TortoiseSVN\\ExternalCache")).removeValue();\r
527         }\r
528 #endif  \r
529         if (lVersion <= 0x01020200)\r
530         {\r
531                 // upgrade to > 1.2.3 means the doc diff scripts changed from vbs to js\r
532                 // so remove the diff/merge scripts if they're the defaults\r
533                 CRegString diffreg = CRegString(_T("Software\\TortoiseSVN\\DiffTools\\.doc"));\r
534                 CString sDiff = diffreg;\r
535                 CString sCL = _T("wscript.exe \"") + CPathUtils::GetAppParentDirectory()+_T("Diff-Scripts\\diff-doc.vbs\"");\r
536                 if (sDiff.Left(sCL.GetLength()).CompareNoCase(sCL)==0)\r
537                         diffreg = _T("");\r
538                 CRegString mergereg = CRegString(_T("Software\\TortoiseSVN\\MergeTools\\.doc"));\r
539                 sDiff = mergereg;\r
540                 sCL = _T("wscript.exe \"") + CPathUtils::GetAppParentDirectory()+_T("Diff-Scripts\\merge-doc.vbs\"");\r
541                 if (sDiff.Left(sCL.GetLength()).CompareNoCase(sCL)==0)\r
542                         mergereg = _T("");\r
543         }\r
544         if (lVersion <= 0x01040000)\r
545         {\r
546                 CRegStdWORD(_T("Software\\TortoiseSVN\\OwnerdrawnMenus")).removeValue();\r
547         }\r
548         \r
549         // set the custom diff scripts for every user\r
550         CString scriptsdir = CPathUtils::GetAppParentDirectory();\r
551         scriptsdir += _T("Diff-Scripts");\r
552         CSimpleFileFind files(scriptsdir);\r
553         while (files.FindNextFileNoDirectories())\r
554         {\r
555                 CString file = files.GetFilePath();\r
556                 CString filename = files.GetFileName();\r
557                 CString ext = file.Mid(file.ReverseFind('-')+1);\r
558                 ext = _T(".")+ext.Left(ext.ReverseFind('.'));\r
559                 CString kind;\r
560                 if (file.Right(3).CompareNoCase(_T("vbs"))==0)\r
561                 {\r
562                         kind = _T(" //E:vbscript");\r
563                 }\r
564                 if (file.Right(2).CompareNoCase(_T("js"))==0)\r
565                 {\r
566                         kind = _T(" //E:javascript");\r
567                 }\r
568                 \r
569                 if (filename.Left(5).CompareNoCase(_T("diff-"))==0)\r
570                 {\r
571                         CRegString diffreg = CRegString(_T("Software\\TortoiseSVN\\DiffTools\\")+ext);\r
572                         CString diffregstring = diffreg;\r
573                         if ((diffregstring.IsEmpty()) || (diffregstring.Find(filename)>=0))\r
574                                 diffreg = _T("wscript.exe \"") + file + _T("\" %base %mine") + kind;\r
575                 }\r
576                 if (filename.Left(6).CompareNoCase(_T("merge-"))==0)\r
577                 {\r
578                         CRegString diffreg = CRegString(_T("Software\\TortoiseSVN\\MergeTools\\")+ext);\r
579                         CString diffregstring = diffreg;\r
580                         if ((diffregstring.IsEmpty()) || (diffregstring.Find(filename)>=0))\r
581                                 diffreg = _T("wscript.exe \"") + file + _T("\" %merged %theirs %mine %base") + kind;\r
582                 }\r
583         }\r
584 \r
585         // Initialize "Software\\TortoiseSVN\\DiffProps" once with the same value as "Software\\TortoiseSVN\\Diff"\r
586         CRegString regDiffPropsPath = CRegString(_T("Software\\TortoiseSVN\\DiffProps"),_T("non-existant"));\r
587         CString strDiffPropsPath = regDiffPropsPath;\r
588         if ( strDiffPropsPath==_T("non-existant") )\r
589         {\r
590                 CString strDiffPath = CRegString(_T("Software\\TortoiseSVN\\Diff"));\r
591                 regDiffPropsPath = strDiffPath;\r
592         }\r
593 \r
594         // set the current version so we don't come here again until the next update!\r
595         regVersion = _T(STRPRODUCTVER); \r
596 }\r
597 \r
598 void CTortoiseProcApp::EnableCrashHandler()\r
599 {\r
600         // the crash handler is enabled by default, but we disable it\r
601         // after 3 months after a release\r
602 \r
603 #define YEAR ((((__DATE__ [7] - '0') * 10 + (__DATE__ [8] - '0')) * 10  \\r
604               + (__DATE__ [9] - '0')) * 10 + (__DATE__ [10] - '0'))\r
605 \r
606 #define MONTH (__DATE__ [2] == 'n' ? (__DATE__ [1] == 'a' ? 1 : 6)      \\r
607                 : __DATE__ [2] == 'b' ? 2                               \\r
608                 : __DATE__ [2] == 'r' ? (__DATE__ [0] == 'M' ? 3 : 4)   \\r
609                 : __DATE__ [2] == 'y' ? 5                                                               \\r
610                 : __DATE__ [2] == 'l' ? 7                               \\r
611                 : __DATE__ [2] == 'g' ? 8                               \\r
612                 : __DATE__ [2] == 'p' ? 9                               \\r
613                 : __DATE__ [2] == 't' ? 10                               \\r
614                 : __DATE__ [2] == 'v' ? 11 : 12)\r
615 \r
616  #define DAY ((__DATE__ [4] == ' ' ? 0 : __DATE__ [4] - '0') * 10       \\r
617               + (__DATE__ [5] - '0'))\r
618 \r
619  #define DATE_AS_INT (((YEAR - 2000) * 12 + MONTH) * 31 + DAY)\r
620 \r
621         CTime compiletime(YEAR, MONTH, DAY, 0, 0, 0);\r
622         CTime now = CTime::GetCurrentTime();\r
623 \r
624         CTimeSpan timediff = now-compiletime;\r
625         if (timediff.GetDays() > 3*31)\r
626         {\r
627 //              crasher.Enable(FALSE);\r
628         }\r
629 }\r
630 \r
631 int CTortoiseProcApp::ExitInstance()\r
632 {\r
633         CWinAppEx::ExitInstance();\r
634         if (retSuccess)\r
635                 return 0;\r
636         return -1;\r
637 }\r