1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#if defined(_MSC_VER) && !defined(S_ISDIR)
# define S_ISDIR(m) (((m) & 0170000) == 0040000)
#endif
#include "FileSystemAbstraction.h"
#include "FileQueryFlags.h"
#include "System/StringUtil.h"
#include "System/Log/ILog.h"
#include "System/Exceptions.h"
#include <cassert>
#include <sys/stat.h>
#include <sys/types.h>
#include <errno.h>
#include <string.h>
#include <boost/regex.hpp>
#ifndef _WIN32
#include <dirent.h>
#include <sstream>
#include <unistd.h>
#include <time.h>
#else
#include <windows.h>
#include <io.h>
#include <direct.h>
#include <fstream>
// Win-API redefines these, which breaks things
#if defined(CreateDirectory)
#undef CreateDirectory
#endif
#if defined(DeleteFile)
#undef DeleteFile
#endif
#endif
std::string FileSystemAbstraction::RemoveLocalPathPrefix(const std::string& path)
{
std::string p(path);
if ((p.length() >= 2) && (p[0] == '.') && IsPathSeparator(p[1])) {
p.erase(0, 2);
}
return p;
}
bool FileSystemAbstraction::IsFSRoot(const std::string& p)
{
#ifdef WIN32
// examples: "C:\", "C:/", "C:", "c:", "D:"
bool isFsRoot = (p.length() >= 2 && p[1] == ':' &&
((p[0] >= 'a' && p[0] <= 'z') || (p[0] >= 'A' && p[0] <= 'Z')) &&
(p.length() == 2 || (p.length() == 3 && IsPathSeparator(p[2]))));
#else
// examples: "/"
bool isFsRoot = (p.length() == 1 && IsNativePathSeparator(p[0]));
#endif
return isFsRoot;
}
bool FileSystemAbstraction::IsPathSeparator(char aChar) { return ((aChar == cPS_WIN32) || (aChar == cPS_POSIX)); }
bool FileSystemAbstraction::IsNativePathSeparator(char aChar) { return (aChar == cPS); }
bool FileSystemAbstraction::HasPathSepAtEnd(const std::string& path)
{
bool pathSepAtEnd = false;
if (!path.empty()) {
pathSepAtEnd = IsNativePathSeparator(path.at(path.size() - 1));
}
return pathSepAtEnd;
}
std::string& FileSystemAbstraction::EnsurePathSepAtEnd(std::string& path)
{
if (path.empty()) {
path += "." sPS;
} else if (!HasPathSepAtEnd(path)) {
path += cPS;
}
return path;
}
std::string FileSystemAbstraction::EnsurePathSepAtEnd(const std::string& path)
{
std::string pathCopy(path);
EnsurePathSepAtEnd(pathCopy);
return pathCopy;
}
void FileSystemAbstraction::EnsureNoPathSepAtEnd(std::string& path)
{
if (HasPathSepAtEnd(path)) {
path.resize(path.size() - 1);
}
}
std::string FileSystemAbstraction::EnsureNoPathSepAtEnd(const std::string& path)
{
std::string pathCopy(path);
EnsureNoPathSepAtEnd(pathCopy);
return pathCopy;
}
std::string FileSystemAbstraction::StripTrailingSlashes(const std::string& path)
{
size_t len = path.length();
while (len > 0) {
if (IsPathSeparator(path.at(len - 1))) {
--len;
} else {
break;
}
}
return path.substr(0, len);
}
std::string FileSystemAbstraction::GetParent(const std::string& path)
{
//TODO uncomment and test if it breaks other code
/*try {
const boost::filesystem::path p(path);
return p.parent_path.string();
} catch (const boost::filesystem::filesystem_error& ex) {
return "";
}*/
std::string parent = path;
EnsureNoPathSepAtEnd(parent);
static const char* PATH_SEP_REGEX = sPS_POSIX sPS_WIN32;
const std::string::size_type slashPos = parent.find_last_of(PATH_SEP_REGEX);
if (slashPos == std::string::npos)
return "";
parent.resize(slashPos + 1);
return parent;
}
size_t FileSystemAbstraction::GetFileSize(const std::string& file)
{
struct stat info;
if ((stat(file.c_str(), &info) == 0) && (!S_ISDIR(info.st_mode)))
return info.st_size;
return -1;
}
bool FileSystemAbstraction::IsReadableFile(const std::string& file)
{
// Exclude directories!
if (!FileExists(file))
return false;
#ifdef WIN32
return (_access(StripTrailingSlashes(file).c_str(), 4) == 0);
#else
return (access(file.c_str(), R_OK | F_OK) == 0);
#endif
}
unsigned int FileSystemAbstraction::GetFileModificationTime(const std::string& file)
{
struct stat info;
if (stat(file.c_str(), &info) != 0) {
LOG_L(L_WARNING, "Failed to get last modification time of file '%s' (error '%s')", file.c_str(), strerror(errno));
return 0;
}
return info.st_mtime;
}
std::string FileSystemAbstraction::GetFileModificationDate(const std::string& file)
{
const std::time_t t = GetFileModificationTime(file);
if (t == 0)
return "";
const struct tm* clk = std::gmtime(&t);
const char* fmt = "%d%02d%02d%02d%02d%02d";
char buf[20];
SNPRINTF(buf, sizeof(buf), fmt, 1900 + clk->tm_year, clk->tm_mon, clk->tm_mday, clk->tm_hour, clk->tm_min, clk->tm_sec);
return buf;
}
char FileSystemAbstraction::GetNativePathSeparator()
{
#ifndef _WIN32
return '/';
#else
return '\\';
#endif
}
bool FileSystemAbstraction::IsAbsolutePath(const std::string& path)
{
//TODO uncomment this and test if there are conflicts in the code when this returns true but other custom code doesn't (e.g. with IsFSRoot)
//const boost::filesystem::path f(file);
//return f.is_absolute();
#ifdef WIN32
return ((path.length() > 1) && (path[1] == ':'));
#else
return ((path.length() > 0) && (path[0] == '/'));
#endif
}
/**
* @brief creates a rwxr-xr-x dir in the writedir
*
* Returns true if the postcondition of this function is that dir exists in
* the write directory.
*
* Note that this function does not check access to the dir, ie. if you've
* created it manually with 0000 permissions then this function may return
* true, subsequent operation on files inside the directory may still fail.
*
* As a rule of thumb, set identical permissions on identical items in the
* data directory, ie. all subdirectories the same perms, all files the same
* perms.
*/
bool FileSystemAbstraction::MkDir(const std::string& dir)
{
// First check if directory exists. We'll return success if it does.
if (DirExists(dir))
return true;
// If it doesn't exist we try to mkdir it and return success if that succeeds.
#ifndef _WIN32
const bool dirCreated = (::mkdir(dir.c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) == 0);
#else
const bool dirCreated = (::_mkdir(StripTrailingSlashes(dir).c_str()) == 0);
#endif
if (!dirCreated)
LOG_L(L_WARNING, "Could not create directory %s: %s", dir.c_str(), strerror(errno));
return dirCreated;
}
bool FileSystemAbstraction::DeleteFile(const std::string& file)
{
#ifdef WIN32
if (DirExists(file)) {
if (!RemoveDirectory(StripTrailingSlashes(file).c_str())) {
LPSTR messageBuffer = nullptr;
FormatMessageA(
FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
nullptr, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR) &messageBuffer, 0, nullptr);
LOG_L(L_WARNING, "Could not delete directory %s: %s", file.c_str(), messageBuffer);
LocalFree(messageBuffer);
return false;
}
return true;
}
#endif
if (remove(file.c_str()) != 0) {
LOG_L(L_WARNING, "Could not delete file %s: %s", file.c_str(), strerror(errno));
return false;
}
return true;
}
bool FileSystemAbstraction::FileExists(const std::string& file)
{
struct stat info;
return ((stat(file.c_str(), &info) == 0 && !S_ISDIR(info.st_mode)));
}
bool FileSystemAbstraction::DirExists(const std::string& dir)
{
struct stat info;
return ((stat(StripTrailingSlashes(dir).c_str(), &info) == 0 && S_ISDIR(info.st_mode)));
}
bool FileSystemAbstraction::DirIsWritable(const std::string& dir)
{
#ifdef _WIN32
// this exists because _access does not do the right thing
// see http://msdn.microsoft.com/en-us/library/1w06ktdy(VS.71).aspx
// for now, try to create a temporary file in a directory and open it
// to rule out the possibility of it being created in the virtual store
// TODO perhaps use SECURITY_DESCRIPTOR winapi calls here
std::string testfile = dir + "\\__$testfile42$.test";
std::ofstream os(testfile.c_str());
if (os.fail())
return false;
const char* testdata = "THIS IS A TEST";
os << testdata;
os.close();
// this part should only be needed when there is no manifest embedded
std::ifstream is(testfile.c_str());
if (is.fail())
return false; // the file most likely exists in the virtual store
std::string input;
getline(is, input);
if (input != testdata) {
unlink(testfile.c_str());
return false;
}
is.close();
unlink(testfile.c_str());
return true;
#else
return (access(dir.c_str(), W_OK) == 0);
#endif
}
bool FileSystemAbstraction::ComparePaths(const std::string& path1, const std::string& path2)
{
#ifndef WIN32
struct stat info1, info2;
const int ret1 = stat(path1.c_str(), &info1);
const int ret2 = stat(path2.c_str(), &info2);
// If either files doesn't exist, return false
if (ret1 || ret2)
return false;
return (info1.st_dev == info2.st_dev) && (info1.st_ino == info2.st_ino);
#else
HANDLE h1 = CreateFile(
path1.c_str(),
0,
FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
0,
OPEN_EXISTING,
FILE_FLAG_BACKUP_SEMANTICS,
0);
if (h1 == INVALID_HANDLE_VALUE)
return false;
HANDLE h2 = CreateFile(
path2.c_str(),
0,
FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
0,
OPEN_EXISTING,
FILE_FLAG_BACKUP_SEMANTICS,
0);
if (h2 == INVALID_HANDLE_VALUE) {
CloseHandle(h1);
return false;
}
BY_HANDLE_FILE_INFORMATION info1, info2;
if (!GetFileInformationByHandle(h1, &info1)) {
CloseHandle(h1);
CloseHandle(h2);
return false;
}
if (!GetFileInformationByHandle(h2, &info2)) {
CloseHandle(h1);
CloseHandle(h2);
return false;
}
CloseHandle(h1);
CloseHandle(h2);
return
info1.dwVolumeSerialNumber == info2.dwVolumeSerialNumber
&& info1.nFileIndexHigh == info2.nFileIndexHigh
&& info1.nFileIndexLow == info2.nFileIndexLow
&& info1.nFileSizeHigh == info2.nFileSizeHigh
&& info1.nFileSizeLow == info2.nFileSizeLow
&& info1.ftLastWriteTime.dwLowDateTime
== info2.ftLastWriteTime.dwLowDateTime
&& info1.ftLastWriteTime.dwHighDateTime
== info2.ftLastWriteTime.dwHighDateTime;
#endif
}
std::string FileSystemAbstraction::GetCwd()
{
#ifndef _WIN32
#define GETCWD getcwd
#else
#define GETCWD _getcwd
#endif
char path[1024];
if (GETCWD(path, sizeof(path)) != nullptr)
return path;
return "";
}
void FileSystemAbstraction::ChDir(const std::string& dir)
{
#ifndef _WIN32
const int err = chdir(dir.c_str());
#else
const int err = _chdir(StripTrailingSlashes(dir).c_str());
#endif
if (err) {
throw content_error("Could not chdir into " + dir);
}
}
static void FindFiles(std::vector<std::string>& matches, const std::string& datadir, const std::string& dir, const boost::regex& regexPattern, int flags)
{
#ifdef _WIN32
WIN32_FIND_DATA wfd;
HANDLE hFind = FindFirstFile((datadir + dir + "\\*").c_str(), &wfd);
if (hFind != INVALID_HANDLE_VALUE) {
do {
if (strcmp(wfd.cFileName,".") && strcmp(wfd.cFileName ,"..")) {
if (!(wfd.dwFileAttributes&FILE_ATTRIBUTE_DIRECTORY)) {
if ((flags & FileQueryFlags::ONLY_DIRS) == 0) {
if (boost::regex_match(wfd.cFileName, regexPattern)) {
matches.push_back(dir + wfd.cFileName);
}
}
} else {
if (flags & FileQueryFlags::INCLUDE_DIRS) {
if (boost::regex_match(wfd.cFileName, regexPattern)) {
matches.push_back(dir + wfd.cFileName + "\\");
}
}
if (flags & FileQueryFlags::RECURSE) {
FindFiles(matches, datadir, dir + wfd.cFileName + "\\", regexPattern, flags);
}
}
}
} while (FindNextFile(hFind, &wfd));
FindClose(hFind);
}
#else
DIR* dp;
struct dirent* ep;
if ((dp = opendir((datadir + dir).c_str())) == nullptr)
return;
while ((ep = readdir(dp))) {
// exclude hidden files
if (ep->d_name[0] == '.')
continue;
// is it a file? (we just treat sockets / pipes / fifos / character&block devices as files...)
// (need to stat because d_type is DT_UNKNOWN on linux :-/)
struct stat info;
if (stat((datadir + dir + ep->d_name).c_str(), &info) != 0)
continue;
if (!S_ISDIR(info.st_mode)) {
if ((flags & FileQueryFlags::ONLY_DIRS) == 0) {
if (boost::regex_match(ep->d_name, regexPattern)) {
matches.push_back(dir + ep->d_name);
}
}
} else {
// or a directory?
if (flags & FileQueryFlags::INCLUDE_DIRS) {
if (boost::regex_match(ep->d_name, regexPattern)) {
matches.push_back(dir + ep->d_name + "/");
}
}
if (flags & FileQueryFlags::RECURSE) {
FindFiles(matches, datadir, dir + ep->d_name + "/", regexPattern, flags);
}
}
}
closedir(dp);
#endif
}
void FileSystemAbstraction::FindFiles(std::vector<std::string>& matches, const std::string& dataDir, const std::string& dir, const std::string& regex, int flags)
{
const boost::regex regexPattern(regex);
::FindFiles(matches, dataDir, dir, regexPattern, flags);
}
|