20 #define GETTEXT_DOMAIN "wesnoth-lib"
34 #include <boost/algorithm/string.hpp>
35 #include <boost/filesystem.hpp>
36 #include <boost/filesystem/fstream.hpp>
37 #include <boost/iostreams/device/file_descriptor.hpp>
38 #include <boost/iostreams/stream.hpp>
39 #include <boost/process.hpp>
43 #include <boost/locale.hpp>
50 #ifndef VOLUME_NAME_NONE
51 #define VOLUME_NAME_NONE 0x4
60 #if defined(__APPLE__) && defined(__MACH__) && defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__)
62 #define WESNOTH_BOOST_OS_IOS (__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__*1000)
63 #include <SDL2/SDL_filesystem.h>
69 #define DBG_FS LOG_STREAM(debug, log_filesystem)
70 #define LOG_FS LOG_STREAM(info, log_filesystem)
71 #define WRN_FS LOG_STREAM(warn, log_filesystem)
72 #define ERR_FS LOG_STREAM(err, log_filesystem)
75 namespace bfs = boost::filesystem;
76 using boost::system::error_code;
84 std::string
path = WESNOTH_PATH;
89 #ifdef DEFAULT_PREFS_PATH
104 const std::string maincfg_filename =
"_main.cfg";
105 const std::string finalcfg_filename =
"_final.cfg";
106 const std::string initialcfg_filename =
"_initial.cfg";
109 class customcodecvt :
public std::codecvt<wchar_t , char , std::mbstate_t>
113 template<
typename char_t_to>
114 struct customcodecvt_do_conversion_writer
116 customcodecvt_do_conversion_writer(char_t_to*& _to_next, char_t_to* _to_end)
125 bool can_push(std::size_t count)
const
127 return static_cast<std::size_t
>(to_end - to_next) > count;
130 void push(char_t_to val)
132 assert(to_next != to_end);
137 template<
typename char_t_from,
typename char_t_to>
138 static void customcodecvt_do_conversion(std::mbstate_t& ,
139 const char_t_from* from,
140 const char_t_from* from_end,
141 const char_t_from*& from_next,
151 customcodecvt_do_conversion_writer<char_t_to> writer(to_next, to_end);
153 while(from_next != from_end) {
160 int do_encoding()
const noexcept
166 bool do_always_noconv()
const noexcept
171 int do_length(std::mbstate_t& ,
const char* ,
const char* , std::size_t )
const
174 throw "Not supported";
177 std::codecvt_base::result unshift(
178 std::mbstate_t& ,
char* ,
char* ,
char*& )
const
181 throw "Not supported";
185 std::codecvt_base::result do_in(std::mbstate_t& state,
187 const char* from_end,
188 const char*& from_next,
191 wchar_t*& to_next)
const
194 customcodecvt_do_conversion<char, wchar_t>(state, from, from_end, from_next, to, to_end, to_next);
197 return std::codecvt_base::error;
200 return std::codecvt_base::ok;
203 std::codecvt_base::result do_out(std::mbstate_t& state,
205 const wchar_t* from_end,
206 const wchar_t*& from_next,
209 char*& to_next)
const
212 customcodecvt_do_conversion<wchar_t, char>(state, from, from_end, from_next, to, to_end, to_next);
215 return std::codecvt_base::error;
218 return std::codecvt_base::ok;
232 utf8_loc = std::locale(utf8_loc,
new customcodecvt());
234 boost::filesystem::path::imbue(utf8_loc);
238 static static_runner static_bfs_path_imbuer;
240 bool is_filename_case_correct(
const std::string& fname,
const boost::iostreams::file_descriptor_source& fd)
242 wchar_t real_path[MAX_PATH];
243 GetFinalPathNameByHandleW(fd.handle(), real_path, MAX_PATH - 1, VOLUME_NAME_NONE);
250 bool is_filename_case_correct(
const std::string& ,
const boost::iostreams::file_descriptor_source& )
298 vec->push_back(file.generic_string());
300 vec->push_back(file.filename().generic_string());
307 return ec && ec != boost::system::errc::no_such_file_or_directory;
315 LOG_FS <<
"Failed to check if " << fpath.string() <<
" is a directory: " << ec.message();
326 ERR_FS <<
"Failed to check existence of file " << fpath.string() <<
": " << ec.message();
337 bfs::create_directory(dirpath, ec);
340 ERR_FS <<
"Failed to create directory " << dirpath.string() <<
": " << ec.message();
348 ERR_FS <<
"Could not open or create directory " << dirpath.string();
349 return std::string();
358 bfs::file_status
fs = bfs::status(dirpath, ec);
361 ERR_FS <<
"Failed to retrieve file status for " << dirpath.string() <<
": " << ec.message();
364 DBG_FS <<
"directory " << dirpath.string() <<
" exists, not creating";
367 ERR_FS <<
"cannot create directory " << dirpath.string() <<
"; file exists";
371 bool created = bfs::create_directory(dirpath, ec);
373 ERR_FS <<
"Failed to create directory " << dirpath.string() <<
": " << ec.message();
381 DBG_FS <<
"creating recursive directory: " << dirpath.string();
383 if(dirpath.empty()) {
388 bfs::file_status
fs = bfs::status(dirpath);
391 ERR_FS <<
"Failed to retrieve file status for " << dirpath.string() <<
": " << ec.message();
402 ERR_FS <<
"Could not create parents to " << dirpath.string();
408 std::vector<std::string>* files,
409 std::vector<std::string>* dirs,
420 get_files_in_dir(absolute_dir.string(), files, dirs, mode, filter, reorder, checksum);
428 LOG_FS <<
"searching for _main.cfg in directory " << dir;
429 const bfs::path maincfg = dirpath / maincfg_filename;
432 LOG_FS <<
"_main.cfg found : " << maincfg;
439 bfs::directory_iterator di(dirpath, ec);
440 bfs::directory_iterator end;
447 for(; di != end; ++di) {
449 bfs::file_status st = di->status(ec);
451 LOG_FS <<
"Failed to get file status of " << di->path().string() <<
": " << ec.message();
455 if(st.type() == bfs::regular_file) {
457 std::string basename = di->path().filename().string();
460 if(!basename.empty() && basename[0] ==
'.')
466 if(checksum !=
nullptr) {
467 std::time_t mtime = bfs::last_write_time(di->path(), ec);
469 LOG_FS <<
"Failed to read modification time of " << di->path().string() <<
": " << ec.message();
470 }
else if(mtime > checksum->
modified) {
476 LOG_FS <<
"Failed to read filesize of " << di->path().string() <<
": " << ec.message();
483 }
else if(st.type() == bfs::directory_file) {
484 std::string basename = di->path().filename().string();
486 if(!basename.empty() && basename[0] ==
'.') {
494 const bfs::path inner_main(di->path() / maincfg_filename);
495 bfs::file_status main_st = bfs::status(inner_main, ec);
498 LOG_FS <<
"Failed to get file status of " << inner_main.string() <<
": " << ec.message();
500 LOG_FS <<
"_main.cfg found : "
509 if(files !=
nullptr) {
510 std::sort(files->begin(), files->end());
513 if(dirs !=
nullptr) {
514 std::sort(dirs->begin(), dirs->end());
519 for(
unsigned int i = 0;
i < files->size();
i++) {
520 if(
ends_with((*files)[
i],
"/" + finalcfg_filename)) {
521 files->push_back((*files)[
i]);
522 files->erase(files->begin() +
i);
529 for(
unsigned int i = 0;
i < files->size();
i++)
530 if(
ends_with((*files)[
i],
"/" + initialcfg_filename)) {
535 std::string initialcfg = (*files)[foundit];
536 for(
unsigned int i = foundit;
i > 0;
i--)
537 (*files)[
i] = (*files)[
i - 1];
538 (*files)[0] = initialcfg;
550 std::string next_filename;
554 std::stringstream filename;
559 filename.setf(std::ios_base::right);
560 filename << counter << extension;
563 next_filename = filename.str();
564 }
while(
file_exists(next_filename) && counter < 1000);
566 return next_filename;
573 std::ostringstream
s;
580 static std::string suffix;
592 #if defined(__APPLE__) && !defined(__IPHONEOS__)
598 static void migrate_apple_config_directory_for_unsandboxed_builds()
600 const char* home_str = getenv(
"HOME");
601 bfs::path home = home_str ? home_str :
".";
606 boost::filesystem::path new_saves_dir = home /
"Library/Containers/org.wesnoth.Wesnoth/Data/Library/Application Support/Wesnoth_";
611 LOG_FS <<
"Apple developer's userdata migration: symlinking " << old_saves_dir.string() <<
" to " << new_saves_dir.string();
612 bfs::create_symlink(new_saves_dir, old_saves_dir);
613 }
else if(!bfs::symbolic_link_exists(old_saves_dir)) {
614 ERR_FS <<
"Apple developer's userdata migration: Problem! Old (non-containerized) directory " << old_saves_dir.string() <<
" is not a symlink. Your savegames are scattered around 2 locations.";
624 #if defined(__APPLE__) && !defined(__IPHONEOS__)
625 migrate_apple_config_directory_for_unsandboxed_builds();
652 static bool is_path_relative_to_cwd(
const std::string& str)
660 return *
p.begin() ==
"." || *
p.begin() ==
"..";
666 [[maybe_unused]]
bool relative_ok =
false;
668 #ifdef PREFERENCES_DIR
669 if(newprefdir.empty()) {
670 newprefdir = PREFERENCES_DIR;
676 if(newprefdir.size() > 2 && newprefdir[1] ==
':') {
679 }
else if(is_path_relative_to_cwd(newprefdir)) {
683 if(newprefdir.empty()) {
686 #ifdef PREFERENCES_DIR
687 if (newprefdir != PREFERENCES_DIR)
694 _(
"Use an absolute path, or a relative path that starts with a period and a backslash"));
698 PWSTR docs_path =
nullptr;
699 HRESULT res = SHGetKnownFolderPath(FOLDERID_Documents, KF_FLAG_CREATE,
nullptr, &docs_path);
705 ERR_FS <<
"Could not determine path to user's Documents folder! (" << std::hex <<
"0x" << res << std::dec <<
") "
706 <<
"User config/data directories may be unavailable for "
707 <<
"this session. Please report this as a bug.";
716 CoTaskMemFree(docs_path);
723 #ifdef WESNOTH_BOOST_OS_IOS
724 char *sdl_pref_path = SDL_GetPrefPath(
"wesnoth.org",
"iWesnoth");
726 backupprefdir = std::string(sdl_pref_path) + backupprefdir;
727 SDL_free(sdl_pref_path);
732 const char* home_str = getenv(
"HOME");
734 if(newprefdir.empty()) {
735 char const* xdg_data = getenv(
"XDG_DATA_HOME");
736 if(!xdg_data || xdg_data[0] ==
'\0') {
738 newprefdir = backupprefdir;
752 bfs::path home = home_str ? home_str :
".";
754 if(newprefdir[0] ==
'/') {
762 _(
"Use absolute paths. Relative paths are deprecated because they are interpreted relative to $HOME"));
768 if(newprefdir.empty()) {
769 newprefdir = backupprefdir;
773 const char* home_str = getenv(
"HOME");
774 bfs::path home = home_str ? home_str :
".";
776 if(newprefdir[0] ==
'/') {
784 _(
"Use absolute paths. Relative paths are deprecated because they are interpreted relative to $HOME"));
795 bool rename_dir(
const std::string& old_dir,
const std::string& new_dir)
798 bfs::rename(old_dir, new_dir, ec);
801 ERR_FS <<
"Failed to rename directory '" << old_dir <<
"' to '" << new_dir <<
"'";
824 ERR_FS <<
"could not open or create cache directory at " <<
cache_dir.string() <<
'\n';
845 #if defined(_X11) && !defined(PREFERENCES_DIR)
846 char const* xdg_config = getenv(
"XDG_CONFIG_HOME");
848 if(!xdg_config || xdg_config[0] ==
'\0') {
849 xdg_config = getenv(
"HOME");
884 #if defined(_X11) && !defined(PREFERENCES_DIR)
885 char const* xdg_cache = getenv(
"XDG_CACHE_HOME");
887 if(!xdg_cache || xdg_cache[0] ==
'\0') {
888 xdg_cache = getenv(
"HOME");
912 #if !defined(_WIN32) && !defined(_X11) && !defined(__APPLE__)
919 if(w_ver.major_version() != 1 || ms_ver.major_version() != 1) {
924 std::vector<other_version_dir> result;
927 for(
auto minor = w_ver.minor_version() + 4; minor >= ms_ver.minor_version(); --minor) {
928 if(minor == w_ver.minor_version())
933 version.set_minor_version(minor);
950 #elif defined(__APPLE__)
955 result.emplace_back(suffix,
path.string());
969 ERR_FS <<
"Failed to get current directory: " << ec.message();
973 return cwd.generic_string();
982 ERR_FS <<
"Failed to set current directory: " << ec.message();
985 LOG_FS <<
"Process working directory set to " << dir;
994 wchar_t process_path[MAX_PATH];
995 SetLastError(ERROR_SUCCESS);
997 GetModuleFileNameW(
nullptr, process_path, MAX_PATH);
999 if(GetLastError() != ERROR_SUCCESS) {
1004 return exe.parent_path().string();
1010 bfs::path exe = bfs::read_symlink(self_exe, ec);
1012 return exe.parent_path().string();
1020 bfs::path search = bp::search_path(exe).string();
1021 if(!search.string().empty()) {
1022 return search.parent_path().string();
1027 search = bp::search_path(exe).string();
1028 if(!search.string().empty()) {
1029 return search.parent_path().string();
1040 bool created = bfs::create_directory(
bfs::path(dirname), ec);
1042 ERR_FS <<
"Failed to create directory " << dirname <<
": " << ec.message();
1051 std::vector<std::string> files;
1052 std::vector<std::string> dirs;
1057 if(!files.empty()) {
1058 for(
const std::string&
f : files) {
1061 LOG_FS <<
"remove(" <<
f <<
"): " << ec.message();
1068 for(
const std::string&
d : dirs) {
1079 LOG_FS <<
"remove(" << dirname <<
"): " << ec.message();
1092 ERR_FS <<
"Could not delete file " << filename <<
": " << ec.message();
1100 std::ifstream file(fname, std::ios::binary);
1101 std::vector<uint8_t> file_contents;
1103 file_contents.reserve(
file_size(fname));
1104 file_contents.assign(std::istreambuf_iterator<char>(file), std::istreambuf_iterator<char>());
1106 return file_contents;
1114 std::string img =
"";
1116 if(name.find(
".") != std::string::npos) {
1118 img =
"data:image/"+name.substr(name.find(
".")+1)+
";base64,"+
base64::encode(view);
1127 std::stringstream ss;
1134 LOG_FS <<
"Streaming " << fname <<
" for reading.";
1137 ERR_FS <<
"Trying to open file with empty name.";
1139 s->clear(std::ios_base::failbit);
1146 boost::iostreams::file_descriptor_source fd(
bfs::path(fname), std::ios_base::binary);
1149 if(!fd.is_open() && treat_failure_as_error) {
1150 ERR_FS <<
"Could not open '" << fname <<
"' for reading.";
1151 }
else if(!is_filename_case_correct(fname, fd)) {
1152 ERR_FS <<
"Not opening '" << fname <<
"' due to case mismatch.";
1154 s->clear(std::ios_base::failbit);
1158 return std::make_unique<boost::iostreams::stream<boost::iostreams::file_descriptor_source>>(fd, 4096, 0);
1159 }
catch(
const std::exception&) {
1160 if(treat_failure_as_error) {
1161 ERR_FS <<
"Could not open '" << fname <<
"' for reading.";
1165 s->clear(std::ios_base::failbit);
1172 LOG_FS <<
"streaming " << fname <<
" for writing.";
1174 boost::iostreams::file_descriptor_sink fd(
bfs::path(fname), mode);
1175 return std::make_unique<boost::iostreams::stream<boost::iostreams::file_descriptor_sink>>(fd, 4096, 0);
1176 }
catch(
const BOOST_IOSTREAMS_FAILURE&
e) {
1179 error_code ec_unused;
1180 if(create_directory && bfs::create_directories(
bfs::path(fname).parent_path(), ec_unused)) {
1189 void write_file(
const std::string& fname,
const std::string&
data, std::ios_base::openmode mode)
1192 os->exceptions(std::ios_base::goodbit);
1194 const std::size_t block_size = 4096;
1195 char buf[block_size];
1197 for(std::size_t
i = 0;
i <
data.size();
i += block_size) {
1198 const std::size_t bytes = std::min<std::size_t>(block_size,
data.size() -
i);
1199 std::copy(
data.begin() +
i,
data.begin() +
i + bytes, buf);
1201 os->write(buf, bytes);
1203 throw io_exception(
"Error writing to file: '" + fname +
"'");
1208 void copy_file(
const std::string& src,
const std::string& dest)
1236 std::time_t mtime = bfs::last_write_time(
bfs::path(fname), ec);
1238 LOG_FS <<
"Failed to read modification time of " << fname <<
": " << ec.message();
1246 return bfs::path(filename).extension() ==
".gz";
1251 return bfs::path(filename).extension() ==
".bz2";
1259 LOG_FS <<
"Failed to read filesize of " << fname <<
": " << ec.message();
1261 }
else if(
size > INT_MAX) {
1271 uintmax_t size_sum = 0;
1273 for(bfs::recursive_directory_iterator
i(
p), end;
i != end && !ec; ++
i) {
1274 if(bfs::is_regular_file(
i->path())) {
1280 LOG_FS <<
"Failed to read directorysize of " << pname <<
": " << ec.message();
1282 }
else if(size_sum > INT_MAX) {
1289 std::string
base_name(
const std::string& file,
const bool remove_extension)
1291 if(!remove_extension) {
1292 return bfs::path(file).filename().string();
1300 return bfs::path(file).parent_path().string();
1313 p =
p.parent_path();
1318 }
while(ec && !
is_root(
p.string()));
1320 return ec ?
"" :
p.string();
1326 const std::string
s = std::string(1,
c);
1332 return bfs::path::preferred_separator;
1340 return ec ? false : !
p.has_parent_path();
1363 const std::wstring& wpath =
bfs::path{
path}.make_preferred().wstring();
1364 return PathIsRootW(wpath.c_str()) == TRUE;
1378 std::string
normalize_path(
const std::string& fpath,
bool normalize_separators,
bool resolve_dot_entries)
1385 bfs::path p = resolve_dot_entries ? bfs::canonical(fpath, ec) : bfs::absolute(fpath);
1391 if(normalize_separators) {
1392 return p.make_preferred().string();
1412 std::set<std::string> binary_paths;
1414 typedef std::map<std::string, std::vector<std::string>> paths_map;
1415 paths_map binary_paths_cache;
1421 if(binary_paths.empty()) {
1422 binary_paths.insert(
"");
1448 std::string
path = bp[
"path"].str();
1449 if(
path.find(
"..") != std::string::npos) {
1450 ERR_FS <<
"Invalid binary path '" <<
path <<
"'";
1454 if(!
path.empty() &&
path.back() !=
'/')
1456 if(binary_paths.count(
path) == 0) {
1457 binary_paths.insert(
path);
1465 binary_paths_cache.clear();
1467 for(
const std::string&
p :
paths_) {
1468 binary_paths.erase(
p);
1474 binary_paths_cache.clear();
1479 DBG_FS <<
"Looking for '" << filename_str <<
"'.";
1481 if(filename_str.empty()) {
1482 LOG_FS <<
" invalid filename";
1486 if(filename_str.find(
"..") != std::string::npos) {
1487 ERR_FS <<
"Illegal path '" << filename_str <<
"' (\"..\" not allowed).";
1491 if(filename_str.find(
'\\') != std::string::npos) {
1492 ERR_FS <<
"Illegal path '" << filename_str
1493 << R
"end(' ("\" not allowed, for compatibility with GNU/Linux and macOS).)end";
1500 ERR_FS <<
"Illegal path '" << filename_str <<
"' (blacklisted filename).";
1504 if(std::any_of(filepath.begin(), filepath.end(),
1505 [](
const bfs::path& dirname) { return default_blacklist.match_dir(dirname.string()); })) {
1506 ERR_FS <<
"Illegal path '" << filename_str <<
"' (blacklisted directory name).";
1519 const paths_map::const_iterator itor = binary_paths_cache.find(
type);
1520 if(itor != binary_paths_cache.end()) {
1521 return itor->second;
1524 if(
type.find(
"..") != std::string::npos) {
1526 ERR_FS <<
"Invalid WML type '" <<
type <<
"' for binary paths";
1527 static std::vector<std::string> dummy;
1531 std::vector<std::string>& res = binary_paths_cache[
type];
1535 for(
const std::string&
path : binary_paths) {
1562 std::string::size_type pos = filename.rfind(
"../");
1563 if(pos != std::string::npos) {
1569 return std::string();
1577 DBG_FS <<
" checking '" << bp <<
"'";
1580 DBG_FS <<
" found at '" << bpath.string() <<
"'";
1581 if(result.empty()) {
1582 result = bpath.string();
1584 WRN_FS <<
"Conflicting files in binary_path: '" << result
1585 <<
"' and '" << bpath.string() <<
"'";
1597 return std::string();
1603 DBG_FS <<
" checking '" << bp <<
"'";
1605 DBG_FS <<
" found at '" << bpath.string() <<
"'";
1606 return bpath.string();
1611 return std::string();
1617 return std::string();
1625 if(filename[0] ==
'~') {
1627 DBG_FS <<
" trying '" << result.string() <<
"'";
1628 }
else if(*fpath.begin() ==
".") {
1629 if(!current_dir.empty()) {
1644 DBG_FS <<
" found: '" << result.string() <<
"'";
1647 return result.string();
1652 bfs::path::iterator fi = full.begin(), fe = full.end(), pi = prefix.begin(), pe = prefix.end();
1653 while(fi != fe && pi != pe && *fi == *pi) {
1675 return "~" +
partial.generic_string();
1680 return partial.generic_string();
1690 if(full_path.empty()) {
1691 return full_path.generic_string();
1696 return partial.generic_string();
1701 return partial.generic_string();
1704 return full_path.generic_string();
1709 const std::string real_program_name(program_name
1718 return real_program_name;
1724 const char* user_name = getenv(
"USERNAME");
1726 const char* user_name = getenv(
"USER");
1730 if(user_name !=
nullptr) {
1731 boost::replace_all(canonicalized, user_name,
"USER");
1734 return canonicalized;
1744 const std::size_t pos_ext = base.rfind(
".");
1746 std::string loc_base;
1747 if(pos_ext != std::string::npos) {
1748 loc_base = base.substr(0, pos_ext) + suff + base.substr(pos_ext);
1750 loc_base = base + suff;
1763 std::vector<std::string> langs =
utils::split(
_(
"language code for localized resources^en_US"));
1768 langs.push_back(
"en_US");
1769 for(
const std::string& lang : langs) {
1770 std::string loc_file = dir +
"/" +
"l10n" +
"/" + lang +
"/" + loc_base;
A config object defines a single node in a WML file, with access to child nodes.
bool match_file(const std::string &name) const
A class grating read only view to a vector of config objects, viewed as one config with all children ...
config_array_view child_range(config_key_type key) const
Represents version numbers.
void set_major_version(unsigned int)
Sets the major version number.
unsigned int minor_version() const
Retrieves the minor version number (x2 in "x1.x2.x3").
unsigned int major_version() const
Retrieves the major version number (x1 in "x1.x2.x3").
std::string deprecated_message(const std::string &elem_name, DEP_LEVEL level, const version_info &version, const std::string &detail)
static lg::log_domain log_filesystem("filesystem")
Declarations for File-IO.
static std::string _(const char *str)
Standard logging facilities (interface).
std::string encode(utils::byte_string_view bytes)
std::string get_legacy_editor_dir()
std::string get_cache_dir()
std::time_t file_modified_time(const std::string &fname)
Get the modification time of a file.
bool is_bzip2_file(const std::string &filename)
Returns true if the file ends with '.bz2'.
int dir_size(const std::string &pname)
Returns the sum of the sizes of the files contained in a directory.
bool is_relative(const std::string &path)
Returns whether the path seems to be relative.
static const bfs::path & get_user_data_path()
filesystem::scoped_istream istream_file(const std::string &fname, bool treat_failure_as_error)
std::string get_user_config_dir()
std::string get_localized_path(const std::string &file, const std::string &suff)
Returns the localized version of the given filename, if it exists.
bool is_root(const std::string &path)
Returns whether the path is the root of the file hierarchy.
void get_files_in_dir(const std::string &dir, std::vector< std::string > *files, std::vector< std::string > *dirs, name_mode mode, filter_mode filter, reorder_mode reorder, file_tree_checksum *checksum)
Get a list of all files and/or directories in a given directory.
static bfs::path get_dir(const bfs::path &dirpath)
std::string get_user_data_dir()
std::string base_name(const std::string &file, const bool remove_extension)
Returns the base filename of a file, with directory name stripped.
std::string get_wml_persist_dir()
bool rename_dir(const std::string &old_dir, const std::string &new_dir)
static bool is_legal_file(const std::string &filename_str)
void copy_file(const std::string &src, const std::string &dest)
Read a file and then writes it back out.
bool delete_file(const std::string &filename)
bool is_gzip_file(const std::string &filename)
Returns true if the file ends with '.gz'.
static bool file_exists(const bfs::path &fpath)
std::string get_exe_dir()
bool is_directory(const std::string &fname)
Returns true if the given file is a directory.
static bool is_directory_internal(const bfs::path &fpath)
bool delete_directory(const std::string &dirname, const bool keep_pbl)
std::string get_saves_dir()
std::string get_wml_location(const std::string &filename, const std::string ¤t_dir)
Returns a complete path to the actual WML file or directory or an empty string if the file isn't pres...
std::string get_program_invocation(const std::string &program_name)
Returns the appropriate invocation for a Wesnoth-related binary, assuming that it is located in the s...
std::string get_binary_dir_location(const std::string &type, const std::string &filename)
Returns a complete path to the actual directory of a given type or an empty string if the directory i...
std::string read_file(const std::string &fname)
Basic disk I/O - read file.
bool ends_with(const std::string &str, const std::string &suffix)
std::string get_independent_binary_file_path(const std::string &type, const std::string &filename)
Returns an asset path to filename for binary path-independent use in saved games.
void set_user_config_dir(const std::string &newconfigdir)
std::string get_binary_file_location(const std::string &type, const std::string &filename)
Returns a complete path to the actual file of a given type or an empty string if the file isn't prese...
filesystem::scoped_ostream ostream_file(const std::string &fname, std::ios_base::openmode mode, bool create_directory)
static bool create_directory_if_missing_recursive(const bfs::path &dirpath)
int file_size(const std::string &fname)
Returns the size of a file, or -1 if the file doesn't exist.
std::string read_file_as_data_uri(const std::string &fname)
void set_cache_dir(const std::string &newcachedir)
std::unique_ptr< std::istream > scoped_istream
void clear_binary_paths_cache()
static bfs::path user_data_dir
void write_file(const std::string &fname, const std::string &data, std::ios_base::openmode mode)
Throws io_exception if an error occurs.
std::string get_short_wml_path(const std::string &filename)
Returns a short path to filename, skipping the (user) data directory.
std::string root_name(const std::string &path)
Returns the name of the root device if included in the given path.
std::string directory_name(const std::string &file)
Returns the directory name of a file, with filename stripped.
std::string get_logs_dir()
std::unique_ptr< std::ostream > scoped_ostream
static bool create_directory_if_missing(const bfs::path &dirpath)
std::string nearest_extant_parent(const std::string &file)
Finds the nearest parent in existence for a file or directory.
char path_separator()
Returns the standard path separator for the current platform.
bool looks_like_pbl(const std::string &file)
std::string get_addons_data_dir()
static void push_if_exists(std::vector< std::string > *vec, const bfs::path &file, bool full)
bool make_directory(const std::string &dirname)
static void setup_user_data_dir()
const blacklist_pattern_list default_blacklist
std::string get_addons_dir()
static bfs::path user_config_dir
bool set_cwd(const std::string &dir)
std::vector< other_version_dir > find_other_version_saves_dirs()
Searches for directories containing saves created by other versions of Wesnoth.
static void set_user_config_path(bfs::path newconfig)
std::string get_next_filename(const std::string &name, const std::string &extension)
Get the next free filename using "name + number (3 digits) + extension" maximum 1000 files then start...
static bfs::path subtract_path(const bfs::path &full, const bfs::path &prefix)
static void set_cache_path(bfs::path newcache)
std::vector< uint8_t > read_file_binary(const std::string &fname)
std::string sanitize_path(const std::string &path)
Sanitizes a path to remove references to the user's name.
const std::string get_version_path_suffix(const version_info &version)
const std::vector< std::string > & get_binary_paths(const std::string &type)
Returns a vector with all possible paths to a given type of binary, e.g.
static bool error_except_not_found(const error_code &ec)
bool is_path_sep(char c)
Returns whether c is a path separator.
static bfs::path cache_dir
std::string normalize_path(const std::string &fpath, bool normalize_separators, bool resolve_dot_entries)
Returns the absolute path of a file.
void set_user_data_dir(std::string newprefdir)
static void init_binary_paths()
Game configuration data as global variables.
const version_info min_savegame_version(MIN_SAVEGAME_VERSION)
std::string default_preferences_path
const version_info wesnoth_version(VERSION)
const std::string observer_team_name
observer team name used for observer team chat
int cache_compression_level
void remove()
Removes a tip.
bool exists(const image::locator &i_locator)
Returns true if the given image actually exists, without loading it.
rng * generator
This generator is automatically synced during synced context.
std::size_t size(const std::string &str)
Length in characters of a UTF-8 string.
std::basic_string_view< uint8_t > byte_string_view
std::string get_unknown_exception_type()
Utility function for finding the type of thing caught with catch(...).
std::vector< std::string > split(const config_attribute_value &val)
std::string::const_iterator iterator
@ partial
There are still moves and/or attacks possible, but the unit doesn't fit in the "unmoved" status.
void read(config &cfg, std::istream &in, abstract_validator *validator)
void write(std::ostream &out, const configr_of &cfg, unsigned int level)
std::vector< std::string > paths_
void set_paths(const game_config_view &cfg)
An exception object used when an IO error occurs.
static map_location::DIRECTION s