mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 19:13:07 +01:00
163 lines
4.4 KiB
C++
163 lines
4.4 KiB
C++
#pragma region Copyright (c) 2014-2017 OpenRCT2 Developers
|
|
/*****************************************************************************
|
|
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
|
|
*
|
|
* OpenRCT2 is the work of many authors, a full list can be found in contributors.md
|
|
* For more information, visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* A full copy of the GNU General Public License can be found in licence.txt
|
|
*****************************************************************************/
|
|
#pragma endregion
|
|
|
|
#ifdef _WIN32
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#else
|
|
#include <sys/stat.h>
|
|
#endif
|
|
|
|
#include "File.h"
|
|
#include "FileStream.hpp"
|
|
#include "String.hpp"
|
|
#include "../util/Util.h"
|
|
|
|
#include "../platform/platform.h"
|
|
|
|
namespace File
|
|
{
|
|
bool Exists(const std::string &path)
|
|
{
|
|
return platform_file_exists(path.c_str());
|
|
}
|
|
|
|
bool Copy(const std::string &srcPath, const std::string &dstPath, bool overwrite)
|
|
{
|
|
return platform_file_copy(srcPath.c_str(), dstPath.c_str(), overwrite);
|
|
}
|
|
|
|
bool Delete(const std::string &path)
|
|
{
|
|
return platform_file_delete(path.c_str());
|
|
}
|
|
|
|
bool Move(const std::string &srcPath, const std::string &dstPath)
|
|
{
|
|
return platform_file_move(srcPath.c_str(), dstPath.c_str());
|
|
}
|
|
|
|
void * ReadAllBytes(const std::string &path, size_t * length)
|
|
{
|
|
void * result = nullptr;
|
|
|
|
FileStream fs = FileStream(path, FILE_MODE_OPEN);
|
|
uint64 fsize = fs.GetLength();
|
|
if (fsize > SIZE_MAX)
|
|
{
|
|
std::string message = String::StdFormat("'%s' exceeds maximum length of %lld bytes.", SIZE_MAX);
|
|
throw IOException(message);
|
|
}
|
|
else
|
|
{
|
|
result = fs.ReadArray<uint8>((size_t)fsize);
|
|
}
|
|
*length = (size_t)fsize;
|
|
return result;
|
|
}
|
|
|
|
void WriteAllBytes(const std::string &path, const void * buffer, size_t length)
|
|
{
|
|
auto fs = FileStream(path, FILE_MODE_WRITE);
|
|
fs.Write(buffer, length);
|
|
}
|
|
|
|
std::vector<std::string> ReadAllLines(const std::string &path)
|
|
{
|
|
std::vector<std::string> lines;
|
|
size_t length;
|
|
char * data = (char *)ReadAllBytes(path, &length);
|
|
char * lineStart = data;
|
|
char * ch = data;
|
|
char lastC = 0;
|
|
for (size_t i = 0; i < length; i++)
|
|
{
|
|
char c = *ch;
|
|
if (c == '\n' && lastC == '\r')
|
|
{
|
|
// Ignore \r\n
|
|
lineStart = ch + 1;
|
|
}
|
|
else if (c == '\n' || c == '\r')
|
|
{
|
|
lines.emplace_back(lineStart, ch - lineStart);
|
|
lineStart = ch + 1;
|
|
}
|
|
lastC = c;
|
|
ch++;
|
|
}
|
|
|
|
// Last line
|
|
lines.emplace_back(lineStart, ch - lineStart);
|
|
|
|
Memory::Free(data);
|
|
return lines;
|
|
}
|
|
|
|
uint64 GetLastModified(const std::string &path)
|
|
{
|
|
uint64 lastModified = 0;
|
|
#ifdef _WIN32
|
|
auto pathW = utf8_to_widechar(path.c_str());
|
|
auto hFile = CreateFileW(pathW, GENERIC_READ, FILE_SHARE_READ, nullptr, OPEN_EXISTING, 0, nullptr);
|
|
if (hFile != INVALID_HANDLE_VALUE)
|
|
{
|
|
FILETIME ftCreate, ftAccess, ftWrite;
|
|
if (GetFileTime(hFile, &ftCreate, &ftAccess, &ftWrite))
|
|
{
|
|
lastModified = ((uint64)ftWrite.dwHighDateTime << 32ULL) | (uint64)ftWrite.dwLowDateTime;
|
|
}
|
|
CloseHandle(hFile);
|
|
}
|
|
free(pathW);
|
|
#else
|
|
struct stat statInfo;
|
|
if (stat(path.c_str(), &statInfo) == 0)
|
|
{
|
|
lastModified = statInfo.st_mtime;
|
|
}
|
|
#endif
|
|
return lastModified;
|
|
}
|
|
} // namespace File
|
|
|
|
bool readentirefile(const utf8 * path, void * * outBuffer, size_t * outLength)
|
|
{
|
|
try
|
|
{
|
|
*outBuffer = File::ReadAllBytes(String::ToStd(path), outLength);
|
|
return true;
|
|
}
|
|
catch (const std::exception &)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool writeentirefile(const utf8 * path, const void * buffer, size_t length)
|
|
{
|
|
try
|
|
{
|
|
File::WriteAllBytes(String::ToStd(path), buffer, length);
|
|
return true;
|
|
}
|
|
catch (const std::exception &)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|