aboutsummaryrefslogtreecommitdiff
path: root/src/wanda/xdg.cpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2022-09-16 21:36:12 +0200
committerFelix Morgner <felix.morgner@gmail.com>2022-09-16 21:36:12 +0200
commit64922e213ac731279cf3341253e67509adb2dfc8 (patch)
treeddcf4fd5b05ac426ecf032e43e8662c2f9ce0f57 /src/wanda/xdg.cpp
parentd22bc7b557d36da41fe88d3188a7cd335c3ccaa0 (diff)
downloadwanda-64922e213ac731279cf3341253e67509adb2dfc8.tar.xz
wanda-64922e213ac731279cf3341253e67509adb2dfc8.zip
wanda: restructure source directory
Diffstat (limited to 'src/wanda/xdg.cpp')
-rw-r--r--src/wanda/xdg.cpp46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/wanda/xdg.cpp b/src/wanda/xdg.cpp
deleted file mode 100644
index d49e53f..0000000
--- a/src/wanda/xdg.cpp
+++ /dev/null
@@ -1,46 +0,0 @@
-#include <wanda/xdg.hpp>
-
-#include <unistd.h>
-
-namespace wanda
-{
- std::string xdg_variable(xdg_directory directory)
- {
- switch (directory)
- {
- case xdg_directory::data_home:
- return "XDG_DATA_HOME";
- case xdg_directory::config_home:
- return "XDG_CONFIG_HOME";
- case xdg_directory::cache_home:
- return "XDG_CACHE_HOME";
- case xdg_directory::runtime_dir:
- return "XDG_RUNTIME_DIR";
- }
- return "XDG_INVALID_PATH";
- }
-
- std::filesystem::path xdg_path_for(xdg_directory directory, environment const & environment)
- {
- if (auto path = environment[xdg_variable(directory)]; !path.empty())
- {
- return path;
- }
-
- auto home = std::filesystem::path{environment["HOME"]};
- switch (directory)
- {
- case xdg_directory::data_home:
- return home / ".local/share";
- case xdg_directory::config_home:
- return home / ".config";
- case xdg_directory::cache_home:
- return home / ".cache";
- case xdg_directory::runtime_dir:
- return std::filesystem::path{"/run/user"} / std::to_string(::getuid());
- }
-
- return "";
- }
-
-} // namespace wanda \ No newline at end of file