X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FUtils%2FFolders.cpp;h=8de69db5098383ec1cb47db41401ba38d2226da9;hb=7d2f9d40d94d14a61ecdaaa2c41f964029815bc2;hp=7e08959fadabbae35eedb00e9bcff4f2750cbb27;hpb=8d45019f2b1ac74108ae4589333680158fee32d5;p=lugaru.git diff --git a/Source/Utils/Folders.cpp b/Source/Utils/Folders.cpp index 7e08959..8de69db 100644 --- a/Source/Utils/Folders.cpp +++ b/Source/Utils/Folders.cpp @@ -18,45 +18,130 @@ You should have received a copy of the GNU General Public License along with Lugaru. If not, see . */ -#include "Folders.h" +#include "Folders.hpp" + #include +#include +#include +#include -const std::string Folders::dataDir = DATADIR; +#if PLATFORM_UNIX +#include +#include +#include +#endif -std::string Folders::getScreenshotDir() -{ - /* TODO - create folder if missing */ - return getUserDataPath() + "/Screenshots"; -} +#if _WIN32 +#include // to get paths related functions +#include +#endif + +const std::string Folders::dataDir = DATA_DIR; -std::string Folders::getResourcePath(std::string filepath) +std::string Folders::getScreenshotDir() { - return dataDir + '/' + filepath; + std::string screenshotDir = getUserDataPath() + "/Screenshots"; + makeDirectory(screenshotDir); + return screenshotDir; } std::string Folders::getUserDataPath() { - return getGenericDirectory("XDG_DATA_HOME", ".local/share"); + std::string userDataPath; +#ifdef _WIN32 + char path[MAX_PATH]; + // %APPDATA% (%USERPROFILE%\Application Data) + if(SUCCEEDED(SHGetFolderPathA(nullptr, CSIDL_APPDATA, nullptr, 0, path))) { + userDataPath = std::string(path) + "/Lugaru/"; + } else { + return dataDir; + } +#elif (defined(__APPLE__) && defined(__MACH__)) + const char* homePath = getHomeDirectory(); + if (homePath == NULL) { + userDataPath = "."; + } else { + userDataPath = std::string(homePath) + "/Library/Application Support/Lugaru"; + } +#else // Linux + userDataPath = getGenericDirectory("XDG_DATA_HOME", ".local/share"); +#endif + makeDirectory(userDataPath); + return userDataPath; } std::string Folders::getConfigFilePath() { - return getGenericDirectory("XDG_CONFIG_HOME", ".config") + "/config.txt"; + std::string configFolder; +#if defined(_WIN32) || (defined(__APPLE__) && defined(__MACH__)) + configFolder = getUserDataPath(); +#else // Linux + configFolder = getGenericDirectory("XDG_CONFIG_HOME", ".config"); + makeDirectory(configFolder); +#endif + return configFolder + "/config.txt"; } +#if PLATFORM_LINUX /* Generic code for XDG ENVVAR test and fallback */ std::string Folders::getGenericDirectory(const char* ENVVAR, const std::string fallback) { - char* path = getenv(ENVVAR); + const char* path = getenv(ENVVAR); std::string ret; - if((path != NULL) && (strlen(path) != 0)) { + if ((path != NULL) && (strlen(path) != 0)) { ret = std::string(path) + "/lugaru"; } else { - path = getenv("HOME"); - if((path != NULL) && (strlen(path) != 0)) { - ret = std::string(path) + '/' + fallback + "/lugaru"; + const char* homedir = getHomeDirectory(); + if ((homedir != NULL) && (strlen(homedir) != 0)) { + ret = std::string(homedir) + '/' + fallback + "/lugaru"; } else { - ret = ""; + ret = "."; } } return ret; } +#endif + +#if PLATFORM_UNIX +const char* Folders::getHomeDirectory() +{ + const char *homedir = getenv("HOME"); + if (homedir != NULL) + return homedir; + struct passwd *pw = getpwuid(getuid()); + if (pw != NULL) + return pw->pw_dir; + return NULL; +} +#endif + +bool Folders::makeDirectory(std::string path) { +#ifdef _WIN32 + int status = CreateDirectory(path.c_str(), NULL); + if (status != 0) { + return true; + } else if(GetLastError() == ERROR_ALREADY_EXISTS) { + return true; + } else { + return false; + } +#else + errno = 0; + int status = mkdir(path.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH); + if (status == 0) { + return true; + } else if(errno == EEXIST) { + return true; + } else { + return false; + } +#endif +} + +FILE* Folders::openMandatoryFile(std::string filename, const char* mode) +{ + FILE* tfile = fopen(filename.c_str(), mode); + if (tfile == NULL) { + throw FileNotFoundException(filename); + } + return tfile; +}