1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-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.
23 #include "SmartHandle.h"
25 static DWORD
GetTortoiseGitTempPath(DWORD nBufferLength
, LPTSTR lpBuffer
)
27 int result
= ::GetTempPath(nBufferLength
, lpBuffer
);
28 if (result
== 0) return 0;
29 if (lpBuffer
== NULL
|| (result
+ 13 > nBufferLength
))
36 _tcscat(lpBuffer
, _T("TortoiseGit\\"));
37 CreateDirectory(lpBuffer
, NULL
);
42 CTempFiles::CTempFiles(void)
46 CTempFiles::~CTempFiles(void)
48 m_TempFileList
.DeleteAllFiles(false);
51 CTempFiles
& CTempFiles::Instance()
53 static CTempFiles instance
;
57 CTGitPath
CTempFiles::GetTempFilePath(bool bRemoveAtEnd
, const CTGitPath
& path
/* = CTGitPath() */, const GitRev revision
/* = GitRev() */)
59 DWORD len
= GetTortoiseGitTempPath(0, NULL
);
60 TCHAR
* temppath
= new TCHAR
[len
+1];
61 TCHAR
* tempF
= new TCHAR
[len
+50];
62 GetTortoiseGitTempPath (len
+1, temppath
);
64 CString possibletempfile
;
67 ::GetTempFileName (temppath
, TEXT("git"), 0, tempF
);
68 tempfile
= CTGitPath(tempF
);
75 if (!((GitRev
&)revision
).m_CommitHash
.IsEmpty())
77 possibletempfile
.Format(_T("%s%s-rev%s.git%3.3x.tmp%s"), temppath
, (LPCTSTR
)path
.GetFileOrDirectoryName(), (LPCTSTR
)((GitRev
&)revision
).m_CommitHash
.ToString().Left(7), i
, (LPCTSTR
)path
.GetFileExtension());
81 possibletempfile
.Format(_T("%s%s.git%3.3x.tmp%s"), temppath
, (LPCTSTR
)path
.GetFileOrDirectoryName(), i
, (LPCTSTR
)path
.GetFileExtension());
83 tempfile
.SetFromWin(possibletempfile
);
85 } while (PathFileExists(tempfile
.GetWinPath()));
87 //now create the temp file, so that subsequent calls to GetTempFile() return
88 //different filenames.
89 CAutoFile hFile
= CreateFile(tempfile
.GetWinPath(), GENERIC_READ
, FILE_SHARE_READ
, NULL
, CREATE_ALWAYS
, FILE_ATTRIBUTE_TEMPORARY
, NULL
);
93 m_TempFileList
.AddPath(tempfile
);