summaryrefslogtreecommitdiffstats
path: root/mmc_updater/src/StandardDirs.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2015-06-07 21:10:18 +0200
committerPetr Mrázek <peterix@gmail.com>2015-06-07 21:10:18 +0200
commit6d7bff2476459049f4f554291a680e0f6003ea66 (patch)
tree4202e9f1cd843197648fec93b48a5bc88407dc2e /mmc_updater/src/StandardDirs.cpp
parent977e11ef8d6780b173ad5ca6d13e29e721d0c6a0 (diff)
downloadMultiMC-6d7bff2476459049f4f554291a680e0f6003ea66.tar
MultiMC-6d7bff2476459049f4f554291a680e0f6003ea66.tar.gz
MultiMC-6d7bff2476459049f4f554291a680e0f6003ea66.tar.lz
MultiMC-6d7bff2476459049f4f554291a680e0f6003ea66.tar.xz
MultiMC-6d7bff2476459049f4f554291a680e0f6003ea66.zip
GH-1060 remove updater code
Diffstat (limited to 'mmc_updater/src/StandardDirs.cpp')
-rw-r--r--mmc_updater/src/StandardDirs.cpp63
1 files changed, 0 insertions, 63 deletions
diff --git a/mmc_updater/src/StandardDirs.cpp b/mmc_updater/src/StandardDirs.cpp
deleted file mode 100644
index 72743d5e..00000000
--- a/mmc_updater/src/StandardDirs.cpp
+++ /dev/null
@@ -1,63 +0,0 @@
-#include "StandardDirs.h"
-
-#include "FileUtils.h"
-#include "StringUtils.h"
-
-#ifdef PLATFORM_UNIX
- #include <stdlib.h>
- #include <pwd.h>
- #include <unistd.h>
-#endif
-
-#ifdef PLATFORM_WINDOWS
-#include <shlobj.h>
-#endif
-
-#ifdef PLATFORM_UNIX
-std::string StandardDirs::homeDir()
-{
- std::string dir = notNullString(getenv("HOME"));
- if (!dir.empty())
- {
- return dir;
- }
- else
- {
- // note: if this process has been elevated with sudo,
- // this will return the home directory of the root user
- struct passwd* userData = getpwuid(getuid());
- return notNullString(userData->pw_dir);
- }
-}
-#endif
-
-std::string StandardDirs::appDataPath(const std::string& organizationName,
- const std::string& appName)
-{
-#ifdef PLATFORM_LINUX
- std::string xdgDataHome = notNullString(getenv("XDG_DATA_HOME"));
- if (xdgDataHome.empty())
- {
- xdgDataHome = homeDir() + "/.local/share";
- }
- xdgDataHome += "/data/" + organizationName + '/' + appName;
- return xdgDataHome;
-
-#elif defined(PLATFORM_MAC)
- std::string path = applicationSupportFolderPath();
- path += '/' + appName;
- return path;
-#elif defined(PLATFORM_WINDOWS)
- char buffer[MAX_PATH + 1];
- if (SHGetFolderPath(0, CSIDL_LOCAL_APPDATA, 0 /* hToken */, SHGFP_TYPE_CURRENT, buffer) == S_OK)
- {
- std::string path = FileUtils::toUnixPathSeparators(notNullString(buffer));
- path += '/' + organizationName + '/' + appName;
- return path;
- }
- else
- {
- return std::string();
- }
-#endif
-}