-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathio.cpp
More file actions
156 lines (144 loc) · 3.62 KB
/
Copy pathio.cpp
File metadata and controls
156 lines (144 loc) · 3.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#include "detect_os.hpp"
#ifndef PAZ_MACOS
#include "io.hpp"
#include <cstdlib>
#include <filesystem>
#include <fstream>
#include <sstream>
#include <map>
#include <regex>
static const std::string CompanyName = "PAZ Virtual"; //TEMP
static const std::string AppName = "temp-demo"; //TEMP
static void ensure_dir(const std::filesystem::path& path)
{
std::filesystem::file_status status;
try
{
status = std::filesystem::status(path);
}
catch(const std::exception& e)
{
throw std::runtime_error("Failed to get status for \"" + path.string() +
"\": " + e.what());
}
if(status.type() == std::filesystem::file_type::not_found)
{
try
{
std::filesystem::create_directory(path);
}
catch(const std::exception& e)
{
throw std::runtime_error("Failed to create directory \"" + path.
string() + "\": " + e.what());
}
}
else if(status.type() != std::filesystem::file_type::directory)
{
throw std::runtime_error("Path \"" + path.string() + "\" is not a direc"
"tory.");
}
}
static std::filesystem::path get_home()
{
#ifdef PAZ_LINUX
static const char* homeDir = std::getenv("HOME");
#else
static const char* homeDir = std::getenv("APPDATA");
#endif
if(!homeDir)
{
throw std::runtime_error("Failed to find home directory.");
}
return homeDir;
}
static std::filesystem::path ensure_settings_file(const std::string& company,
const std::string& app)
{
auto path = get_home();
#ifdef LINUX
path /= std::filesystem::path(".local");
ensure_dir(path);
path /= "share";
ensure_dir(path);
#endif
path /= company;
ensure_dir(path);
path /= app;
ensure_dir(path);
path /= "settings.txt";
return path;
}
void paz::save_setting(const std::string& name, const std::string& val)
{
const auto path = ensure_settings_file(CompanyName, AppName);
std::map<std::string, std::string> settings = {{name, val}};
// Get all other settings.
{
std::ifstream in(path);
if(in)
{
std::string line;
while(std::getline(in, line))
{
if(std::regex_match(line, std::regex("\\S+\\s+\\S+")))
{
const auto name = regex_replace(line, std::regex(
"\\s+\\S+"), "");
if(settings.count(name))
{
continue;
}
const auto val = regex_replace(line, std::regex("\\S+\\s+"),
"");
settings[name] = val;
}
}
}
}
// Write all settings.
std::ofstream out(path);
if(!out)
{
throw std::runtime_error("Failed to open \"" + path.string() + "\".");
}
for(const auto& n : settings)
{
out << n.first << ' ' << n.second << '\n';
}
}
std::string paz::load_setting(const std::string& name) noexcept
{
std::filesystem::path path;
try
{
path = get_home();
#ifdef PAZ_LINUX
path /= ".local";
path /= "share";
#endif
path /= CompanyName;
path /= AppName;
path /= "settings.txt";
}
catch(...)
{
return "";
}
std::ifstream in(path);
if(!in)
{
return "";
}
std::string line;
while(std::getline(in, line))
{
if(line.size() >= name.size() + 2 && line.substr(0, name.size() + 1) ==
name + ' ')
{
return line.substr(name.size() + 1);
}
}
return "";
}
#endif