Fixed issue #2507: Support keyboard shortcuts in yes/no prompts
[TortoiseGit.git] / src / Utils / TempFile.cpp
blob869e1298ae9288e33a1133e7a23ffcc7c7d26b1b
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2011-2013, 2015 - TortoiseGit
4 // Copyright (C) 2003-2008 - TortoiseSVN
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "stdafx.h"
21 #include "registry.h"
22 #include "TempFile.h"
23 #include "TGitPath.h"
24 #include "SmartHandle.h"
25 #include "Git.h"
27 CTempFiles::CTempFiles(void)
31 CTempFiles::~CTempFiles(void)
33 m_TempFileList.DeleteAllFiles(false);
36 CTempFiles& CTempFiles::Instance()
38 static CTempFiles instance;
39 return instance;
42 CTGitPath CTempFiles::GetTempFilePath(bool bRemoveAtEnd, const CTGitPath& path /* = CTGitPath() */, const GitRev &revision /* = GitRev() */)
44 DWORD len = GetTortoiseGitTempPath(0, NULL);
46 std::unique_ptr<TCHAR[]> temppath(new TCHAR[len + 1]);
47 std::unique_ptr<TCHAR[]> tempF(new TCHAR[len + 50]);
48 GetTortoiseGitTempPath(len + 1, temppath.get());
49 CTGitPath tempfile;
50 CString possibletempfile;
51 if (path.IsEmpty())
53 ::GetTempFileName (temppath.get(), _T("git"), 0, tempF.get());
54 tempfile = CTGitPath(tempF.get());
56 else
58 int i=0;
61 if (!((GitRev&)revision).m_CommitHash.IsEmpty())
63 possibletempfile.Format(_T("%s%s-rev%s.git%3.3x.tmp%s"), temppath.get(), (LPCTSTR)path.GetFileOrDirectoryName(), (LPCTSTR)((GitRev&)revision).m_CommitHash.ToString().Left(7), i, (LPCTSTR)path.GetFileExtension());
65 else
67 possibletempfile.Format(_T("%s%s.git%3.3x.tmp%s"), temppath.get(), (LPCTSTR)path.GetFileOrDirectoryName(), i, (LPCTSTR)path.GetFileExtension());
69 tempfile.SetFromWin(possibletempfile);
70 ++i;
71 } while (PathFileExists(tempfile.GetWinPath()));
73 //now create the temp file, so that subsequent calls to GetTempFile() return
74 //different filenames.
75 CAutoFile hFile = CreateFile(tempfile.GetWinPath(), GENERIC_READ, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_TEMPORARY, NULL);
76 if (bRemoveAtEnd)
77 m_TempFileList.AddPath(tempfile);
78 return tempfile;