#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 #include "Console.hpp" #include "File.h" #include "FileStream.hpp" #include "String.hpp" extern "C" { #include "../platform/platform.h" #include "../util/util.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((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 ReadAllLines(const std::string &path) { std::vector 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; } } extern "C" { bool readentirefile(const utf8 * path, void * * outBuffer, size_t * outLength) { try { *outBuffer = File::ReadAllBytes(String::ToStd(path), outLength); return true; } catch (const 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 Exception &) { return false; } } }