-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfmimpl.hpp
More file actions
318 lines (302 loc) · 11.4 KB
/
fmimpl.hpp
File metadata and controls
318 lines (302 loc) · 11.4 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/*
Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 the "License"; you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
Portions created by the Initial Developer are Copyright (c) 2022
the Initial Developer. All Rights Reserved.
*/
#ifndef __flmgr_included
#error [flmgr] PREPROCESSOR SYSTEM @ Error: This file is not standalone.
#endif
#define __flmgr_filetype_txt 0
#define __flmgr_filetype_ini 1
namespace flmgr
{
namespace filepath
{
const std::string null = "";
}
class dir
{
private:
std::string dirname;
public:
dir()
{
this->dirname=flmgr::filepath::null;
flmgr::__internal::function::wrn("`dirname` argument is set to `NULL`.");
}
dir(std::string dirname)
{
this->dirname=dirname;
}
//funcs - getters and setters
void set_name(std::string dirname)
{
this->dirname=dirname;
}
std::string get_name()
{
return (this->dirname) + "/";
}
void create()
{
std::filesystem::path dirpath = this->dirname;
try
{
std::filesystem::create_directory(dirpath);
}
catch(const std::filesystem::filesystem_error *error)
{
flmgr::__internal::function::err("File system error - " + (std::string)error->what());
}
}
void remove()
{
std::filesystem::path dirpath = this->dirname;
try
{
std::filesystem::remove(dirpath);
}
catch(const std::filesystem::filesystem_error *error)
{
flmgr::__internal::function::err("File system error - " + (std::string)error->what());
}
}
bool exists()
{
std::filesystem::path dirpath = this->dirname;
return std::filesystem::exists(dirpath);
}
};
namespace filetype
{
const int txt = __flmgr_filetype_txt;
const int ini = __flmgr_filetype_ini;
}
template<const unsigned int t_filetype> class file
{
private:
std::string filename;
int filetype = (int)t_filetype;
std::string filepath = flmgr::filepath::null;
public:
file()
{
this->filepath = flmgr::filepath::null;
this->filename = flmgr::filepath::null;
flmgr::__internal::function::wrn("`filepath` and `filename` arguments are set to `NULL`.");
}
file(std::string filename)
{
this->filepath = flmgr::filepath::null;
this->filename = filename;
}
file(flmgr::dir &dir, std::string filename)
{
this->filepath = dir.get_name();
this->filename = filename;
}
//funcs - getters and setters
void set_name(std::string filename)
{
this->filename = filename;
}
std::string get_name()
{
return (std::string)(this->filepath + this->filename);
}
//management
void overwrite_text(std::string text)
{
if(this->filetype != __flmgr_filetype_txt)
{
flmgr::__internal::function::wrn("Invalid file type for this operation.");
}
std::ofstream internal_fileobject((std::string)(this->filepath + this->filename));
if(internal_fileobject.is_open())
{
internal_fileobject << text;
internal_fileobject.close();
}
else
{
flmgr::__internal::function::err("Unable to open the file.");
}
}
void append_text(std::string text)
{
if(this->filetype != __flmgr_filetype_txt)
{
flmgr::__internal::function::wrn("Invalid file type for this operation.");
}
std::ofstream internal_fileobject((std::string)(this->filepath + this->filename), std::ios::app);
if(internal_fileobject.is_open())
{
internal_fileobject << text << std::endl;
internal_fileobject.close();
}
else
{
flmgr::__internal::function::err("Unable to open the file.");
}
}
void read_text(std::vector<std::string> &dest)
{
if(this->filetype != __flmgr_filetype_txt)
{
flmgr::__internal::function::wrn("Invalid file type for this operation.");
}
std::ifstream internal_fileobject((std::string)(this->filepath + this->filename));
if(internal_fileobject.is_open())
{
std::string line;
while(std::getline(internal_fileobject, line))
{
dest.push_back(line);
}
internal_fileobject.close();
}
else
{
flmgr::__internal::function::err("Unable to open the file.");
}
}
void read_line(int line, std::string &dest)
{
if(this->filetype != __flmgr_filetype_txt)
{
flmgr::__internal::function::wrn("Invalid file type for this operation.");
}
std::ifstream internal_fileobject((std::string)(this->filepath + this->filename));
if(internal_fileobject.is_open())
{
std::string readtext;
int linenumber = 1;
while(std::getline(internal_fileobject, readtext))
{
if(linenumber == line)
{
dest = readtext;
break;
}
linenumber++;
}
internal_fileobject.close();
}
else
{
flmgr::__internal::function::err("Unable to open the file.");
}
}
void remove_content()
{
std::ofstream internal_fileobject((std::string)(this->filepath + this->filename));
if(internal_fileobject.is_open())
{
internal_fileobject.close();
}
else
{
flmgr::__internal::function::err("Unable to open the file.");
}
}
void set_key(std::string key, std::string value)
{
if(this->filetype != __flmgr_filetype_ini)
{
flmgr::__internal::function::wrn("Invalid file type for this operation.");
}
std::ofstream internal_fileobject((std::string)(this->filepath + this->filename), std::ios::app);
if(internal_fileobject.is_open())
{
internal_fileobject << key << "=" << value << std::endl;
internal_fileobject.close();
}
else
{
flmgr::__internal::function::err("Unable to open the file.");
}
}
std::string get_key(std::string key)
{
if(this->filetype != __flmgr_filetype_ini)
{
flmgr::__internal::function::wrn("Invalid file type for this operation.");
}
std::ifstream internal_fileobject((std::string)(this->filepath + this->filename));
if(internal_fileobject.is_open())
{
std::string line;
std::vector<std::string>linesplit;
while(std::getline(internal_fileobject, line))
{
linesplit.clear();
linesplit = flmgr::__internal::function::split(line,'=');
flmgr::__internal::function::trim(linesplit[0]);
flmgr::__internal::function::trim(linesplit[1]);
if(linesplit[0] == key)
{
return linesplit[1];
}
}
internal_fileobject.close();
}
else
{
flmgr::__internal::function::err("Unable to open the file.");
}
return flmgr::__internal::constants::nullstr;
}
std::string get_keys(std::unordered_map<std::string, std::string> &dest)
{
if(this->filetype != __flmgr_filetype_ini)
{
flmgr::__internal::function::wrn("Invalid file type for this operation.");
}
std::ifstream internal_fileobject((std::string)(this->filepath + this->filename));
if(internal_fileobject.is_open())
{
std::string line;
std::vector<std::string>linesplit;
while(std::getline(internal_fileobject, line))
{
linesplit.clear();
linesplit = flmgr::__internal::function::split(line,'=');
flmgr::__internal::function::trim(linesplit[0]);
flmgr::__internal::function::trim(linesplit[1]);
dest[linesplit[0]] = linesplit[1];
}
internal_fileobject.close();
}
else
{
flmgr::__internal::function::err("Unable to open the file.");
}
return flmgr::__internal::constants::nullstr;
}
void remove()
{
std::filesystem::path filepath = (std::string)(this->filepath + this->filename);
try
{
std::filesystem::remove(filepath);
}
catch(const std::filesystem::filesystem_error *error)
{
flmgr::__internal::function::err("File system error - " + (std::string)error->what());
}
}
bool exists()
{
std::filesystem::path filepath = static_cast<std::string>(this->filepath + this->filename);
return std::filesystem::exists(filepath);
}
};
}