[platform] Added RemoveFileIfExists(), TmpPathForFile().

This commit is contained in:
Maksim Andrianov 2018-10-10 17:53:53 +03:00 committed by Sergey Yershov
parent 78f53f3ee4
commit b1f93615d9
2 changed files with 51 additions and 18 deletions

View file

@ -10,7 +10,9 @@
#include "base/logging.hpp"
#include "base/string_utils.hpp"
#include <algorithm>
#include <thread>
#include <string>
#include "std/target_os.hpp"
@ -22,6 +24,23 @@ using namespace std;
namespace
{
std::string RandomString(size_t length)
{
auto const randchar = []()
{
static std::string const charset =
"0123456789"
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz";
size_t const maxIndex = sizeof(charset) - 1;
return charset[rand() % maxIndex];
};
std::string str(length, 0);
std::generate_n(str.begin(), length, randchar);
return str;
}
bool IsSpecialDirName(string const & dirName)
{
return dirName == "." || dirName == "..";
@ -44,24 +63,24 @@ Platform::EError Platform::ErrnoToError()
{
switch (errno)
{
case ENOENT:
return ERR_FILE_DOES_NOT_EXIST;
case EACCES:
return ERR_ACCESS_FAILED;
case ENOTEMPTY:
return ERR_DIRECTORY_NOT_EMPTY;
case EEXIST:
return ERR_FILE_ALREADY_EXISTS;
case ENAMETOOLONG:
return ERR_NAME_TOO_LONG;
case ENOTDIR:
return ERR_NOT_A_DIRECTORY;
case ELOOP:
return ERR_SYMLINK_LOOP;
case EIO:
return ERR_IO_ERROR;
default:
return ERR_UNKNOWN;
case ENOENT:
return ERR_FILE_DOES_NOT_EXIST;
case EACCES:
return ERR_ACCESS_FAILED;
case ENOTEMPTY:
return ERR_DIRECTORY_NOT_EMPTY;
case EEXIST:
return ERR_FILE_ALREADY_EXISTS;
case ENAMETOOLONG:
return ERR_NAME_TOO_LONG;
case ENOTDIR:
return ERR_NOT_A_DIRECTORY;
case ELOOP:
return ERR_SYMLINK_LOOP;
case EIO:
return ERR_IO_ERROR;
default:
return ERR_UNKNOWN;
}
}
@ -146,6 +165,17 @@ string Platform::DefaultUrlsJSON() const
return DEFAULT_URLS_JSON;
}
bool Platform::RemoveFileIfExists(std::string const & filePath)
{
return IsFileExistsByFullPath(filePath) ? base::DeleteFileX(filePath) : true;
}
std::string Platform::TmpPathForFile() const
{
size_t const kNameLen = 32;
return TmpDir() + RandomString(kNameLen);
}
void Platform::GetFontNames(FilesList & res) const
{
ASSERT(res.empty(), ());

View file

@ -137,6 +137,7 @@ public:
static bool IsFileExistsByFullPath(std::string const & filePath);
static void DisableBackupForFile(std::string const & filePath);
static bool RemoveFileIfExists(std::string const & filePath);
/// @returns path to current working directory.
/// @note In case of an error returns an empty std::string.
@ -176,6 +177,8 @@ public:
std::string const & TmpDir() const { return m_tmpDir; }
/// @return full path to file in the temporary directory
std::string TmpPathForFile(std::string const & file) const { return TmpDir() + file; }
/// @return full path to temporary file
std::string TmpPathForFile() const;
/// @return full path to the file where data for unit tests is stored.
std::string TestsDataPathForFile(std::string const & file) const { return ReadPathForFile(file); }