207 lines
5.5 KiB
C++
207 lines
5.5 KiB
C++
/*
|
|
https://github.com/peterix/dfhack
|
|
Copyright (c) 2009-2012 Petr Mrázek (peterix@gmail.com)
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
warranty. In no event will the authors be held liable for any
|
|
damages arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any
|
|
purpose, including commercial applications, and to alter it and
|
|
redistribute it freely, subject to the following restrictions:
|
|
|
|
1. The origin of this software must not be misrepresented; you must
|
|
not claim that you wrote the original software. If you use this
|
|
software in a product, an acknowledgment in the product documentation
|
|
would be appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and
|
|
must not be misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
distribution.
|
|
*/
|
|
/* Based on luafilesystem
|
|
Copyright © 2003-2014 Kepler Project.
|
|
|
|
Permission is hereby granted, free of charge, to any person
|
|
obtaining a copy of this software and associated documentation
|
|
files (the "Software"), to deal in the Software without
|
|
restriction, including without limitation the rights to use, copy,
|
|
modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
#include "modules/Filesystem.h"
|
|
|
|
using namespace DFHack;
|
|
|
|
bool Filesystem::chdir (std::string path)
|
|
{
|
|
return ::chdir(path.c_str()) == 0;
|
|
}
|
|
|
|
std::string Filesystem::getcwd ()
|
|
{
|
|
char *path;
|
|
char buf[FILENAME_MAX];
|
|
std::string result = "";
|
|
#ifdef _WIN32
|
|
if ((path = ::_getcwd(buf, FILENAME_MAX)) != NULL)
|
|
#else
|
|
if ((path = ::getcwd(buf, FILENAME_MAX)) != NULL)
|
|
#endif
|
|
result = buf;
|
|
return result;
|
|
}
|
|
|
|
bool Filesystem::mkdir (std::string path)
|
|
{
|
|
int fail;
|
|
#ifdef _WIN32
|
|
fail = ::_mkdir(path.c_str());
|
|
#else
|
|
fail = ::mkdir(path.c_str(), S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP |
|
|
S_IWGRP | S_IXGRP | S_IROTH | S_IXOTH);
|
|
#endif
|
|
return fail == 0;
|
|
}
|
|
|
|
bool Filesystem::rmdir (std::string path)
|
|
{
|
|
int fail;
|
|
#ifdef _WIN32
|
|
fail = ::_rmdir(path.c_str());
|
|
#else
|
|
fail = ::rmdir(path.c_str());
|
|
#endif
|
|
return fail == 0;
|
|
}
|
|
|
|
#ifdef _WIN32
|
|
_filetype mode2type (unsigned short mode) {
|
|
#else
|
|
_filetype mode2type (mode_t mode) {
|
|
#endif
|
|
if (S_ISREG(mode))
|
|
return FILETYPE_FILE;
|
|
else if (S_ISDIR(mode))
|
|
return FILETYPE_DIRECTORY;
|
|
else if (S_ISLNK(mode))
|
|
return FILETYPE_LINK;
|
|
else if (S_ISSOCK(mode))
|
|
return FILETYPE_SOCKET;
|
|
else if (S_ISCHR(mode))
|
|
return FILETYPE_CHAR_DEVICE;
|
|
else if (S_ISBLK(mode))
|
|
return FILETYPE_BLOCK_DEVICE;
|
|
else
|
|
return FILETYPE_UNKNOWN;
|
|
}
|
|
|
|
bool Filesystem::stat (std::string path, STAT_STRUCT &info)
|
|
{
|
|
return (STAT_FUNC(path.c_str(), &info)) == 0;
|
|
}
|
|
|
|
bool Filesystem::exists (std::string path)
|
|
{
|
|
STAT_STRUCT info;
|
|
return Filesystem::stat(path, info);
|
|
}
|
|
|
|
_filetype Filesystem::filetype (std::string path)
|
|
{
|
|
STAT_STRUCT info;
|
|
if (!Filesystem::stat(path, info))
|
|
return FILETYPE_NONE;
|
|
return mode2type(info.st_mode);
|
|
}
|
|
|
|
bool Filesystem::isfile (std::string path)
|
|
{
|
|
return Filesystem::exists(path) && Filesystem::filetype(path) == FILETYPE_FILE;
|
|
}
|
|
|
|
bool Filesystem::isdir (std::string path)
|
|
{
|
|
return Filesystem::exists(path) && Filesystem::filetype(path) == FILETYPE_DIRECTORY;
|
|
}
|
|
|
|
#define DEFINE_STAT_TIME_WRAPPER(attr) \
|
|
int64_t Filesystem::attr (std::string path) \
|
|
{ \
|
|
STAT_STRUCT info; \
|
|
if (!Filesystem::stat(path, info)) \
|
|
return -1; \
|
|
return (int64_t)info.st_##attr; \
|
|
}
|
|
|
|
DEFINE_STAT_TIME_WRAPPER(atime)
|
|
DEFINE_STAT_TIME_WRAPPER(ctime)
|
|
DEFINE_STAT_TIME_WRAPPER(mtime)
|
|
|
|
#undef DEFINE_STAT_TIME_WRAPPER
|
|
|
|
int Filesystem::listdir (std::string dir, std::vector<std::string> &files)
|
|
{
|
|
DIR *dp;
|
|
struct dirent *dirp;
|
|
if((dp = opendir(dir.c_str())) == NULL)
|
|
{
|
|
return errno;
|
|
}
|
|
while ((dirp = readdir(dp)) != NULL) {
|
|
files.push_back(std::string(dirp->d_name));
|
|
}
|
|
closedir(dp);
|
|
return 0;
|
|
}
|
|
|
|
int Filesystem::listdir_recursive (std::string dir, std::map<std::string, bool> &files,
|
|
int depth /* = 10 */, std::string prefix /* = "" */)
|
|
{
|
|
int err;
|
|
if (depth < 0)
|
|
return -1;
|
|
if (prefix == "")
|
|
prefix = dir;
|
|
std::vector<std::string> tmp;
|
|
err = listdir(dir, tmp);
|
|
if (err)
|
|
return err;
|
|
for (auto file = tmp.begin(); file != tmp.end(); ++file)
|
|
{
|
|
if (*file == "." || *file == "..")
|
|
continue;
|
|
std::string rel_path = prefix + "/" + *file;
|
|
if (isdir(rel_path))
|
|
{
|
|
files.insert(std::pair<std::string, bool>(rel_path, true));
|
|
err = listdir_recursive(dir + "/" + *file, files, depth - 1, rel_path);
|
|
if (err)
|
|
return err;
|
|
}
|
|
else
|
|
{
|
|
files.insert(std::pair<std::string, bool>(rel_path, false));
|
|
}
|
|
}
|
|
return 0;
|
|
}
|