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.
24 CTempFiles::CTempFiles(void)
28 CTempFiles::~CTempFiles(void)
30 m_TempFileList
.DeleteAllFiles(false);
33 CTempFiles
& CTempFiles::Instance()
35 static CTempFiles instance
;
39 CTGitPath
CTempFiles::GetTempFilePath(bool bRemoveAtEnd
, const CTGitPath
& path
/* = CTGitPath() */, const GitRev revision
/* = GitRev() */)
41 DWORD len
= ::GetTempPath(0, NULL
);
42 TCHAR
* temppath
= new TCHAR
[len
+1];
43 TCHAR
* tempF
= new TCHAR
[len
+50];
44 ::GetTempPath (len
+1, temppath
);
46 CString possibletempfile
;
49 ::GetTempFileName (temppath
, TEXT("git"), 0, tempF
);
50 tempfile
= CTGitPath(tempF
);
57 if (!((GitRev
&)revision
).m_CommitHash
.IsEmpty())
59 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());
63 possibletempfile
.Format(_T("%s%s.git%3.3x.tmp%s"), temppath
, (LPCTSTR
)path
.GetFileOrDirectoryName(), i
, (LPCTSTR
)path
.GetFileExtension());
65 tempfile
.SetFromWin(possibletempfile
);
67 } while (PathFileExists(tempfile
.GetWinPath()));
69 //now create the temp file, so that subsequent calls to GetTempFile() return
70 //different filenames.
71 HANDLE hFile
= CreateFile(tempfile
.GetWinPath(), GENERIC_READ
, FILE_SHARE_READ
, NULL
, CREATE_ALWAYS
, FILE_ATTRIBUTE_TEMPORARY
, NULL
);
76 m_TempFileList
.AddPath(tempfile
);