From c8d77714b9922d33adeb070f22fa0535f84cda67 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Sat, 5 Apr 2014 20:30:45 -0700 Subject: [PATCH] Remove plFileSystem::GetTempFileName. It was unused and on *nix used the deprecated mktemp function. --- Sources/Plasma/CoreLib/plFileSystem.cpp | 31 ------------------------- Sources/Plasma/CoreLib/plFileSystem.h | 6 ----- 2 files changed, 37 deletions(-) diff --git a/Sources/Plasma/CoreLib/plFileSystem.cpp b/Sources/Plasma/CoreLib/plFileSystem.cpp index 51aa3dc2..f1d3bd62 100644 --- a/Sources/Plasma/CoreLib/plFileSystem.cpp +++ b/Sources/Plasma/CoreLib/plFileSystem.cpp @@ -540,37 +540,6 @@ plFileName plFileSystem::GetCurrentAppPath() #endif } -plFileName plFileSystem::GetTempFilename(const char *prefix, const plFileName &path) -{ -#if HS_BUILD_FOR_WIN32 - // GetTempFileName() never uses more than 3 chars for the prefix - wchar_t wprefix[4]; - for (size_t i=0; i<4; ++i) - wprefix[i] = prefix[i]; - wprefix[3] = 0; - - wchar_t temp[MAX_PATH]; - if (GetTempFileNameW(path.AsString().ToWchar(), wprefix, 0, temp)) - return plString::FromWchar(temp); - - return ""; -#else - plFileName tmpdir = path; - if (!tmpdir.IsValid()) - tmpdir = "/tmp"; - - // "/tmp/prefixXXXXXX" - size_t temp_len = tmpdir.GetSize() + strlen(prefix) + 7; - char *temp = new char[temp_len + 1]; - snprintf(temp, temp_len + 1, "%s/%sXXXXXX", tmpdir.AsString().c_str(), prefix); - mktemp(temp); - plFileName result = temp; - delete [] temp; - - return result; -#endif -} - plString plFileSystem::ConvertFileSize(uint64_t size) { const char* labels[] = { "KiB", "MiB", "GiB", "TiB", "PiB", "EiB" }; diff --git a/Sources/Plasma/CoreLib/plFileSystem.h b/Sources/Plasma/CoreLib/plFileSystem.h index 317e8a03..1d3a2ce9 100644 --- a/Sources/Plasma/CoreLib/plFileSystem.h +++ b/Sources/Plasma/CoreLib/plFileSystem.h @@ -333,12 +333,6 @@ namespace plFileSystem /** Get the full path and filename of the current process. */ plFileName GetCurrentAppPath(); - /** Create a temporary filename. If path is specified, the returned - * filename will be relative to the supplied path -- otherwise, the - * system temp path is used. - */ - plFileName GetTempFilename(const char *prefix = "tmp", const plFileName &path = ""); - /** Convert a file size from bytes to a human readable size. */ plString ConvertFileSize(uint64_t size); }