-
Notifications
You must be signed in to change notification settings - Fork 30
/
files.cpp
232 lines (201 loc) · 4.49 KB
/
files.cpp
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
#include "files.h"
#include "stringfunc.h" // for no_upper() etc
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <fstream>
std::string DATA_DIR;
std::string CUSS_DIR;
std::string SAVE_DIR;
bool directory_exists(std::string name)
{
DIR *dir;
dir = opendir(name.c_str());
if (dir) {
closedir(dir);
return true;
}
return false;
}
bool create_directory(std::string name)
{
if (directory_exists(name)) {
return false; // Couldn't create it because it exists...
}
#if (defined _WIN32 || defined __WIN32__)
mkdir(name.c_str());
#else
mkdir(name.c_str(), 0777);
#endif
if (!directory_exists(name)) { // Check to make sure we succeeded
return false;
}
return true;
}
bool remove_directory(std::string name)
{
if (!directory_exists(name)) {
return false;
}
DIR *dir;
struct dirent *entry;
dir = opendir(name.c_str());
if (dir == NULL) {
closedir(dir);
return false;
}
bool return_value = true;
while ((entry = readdir(dir)) != NULL) {
std::string d_name = entry->d_name;
std::string full_path = name + "/" + d_name;
if (!d_name.empty() && d_name[0] != '.') {
if (entry->d_type == DT_DIR) { // remove other directories recursively
if (!remove_directory(full_path)) {
return_value = false;
}
}
// remove() returns 0 on success. Just like all other functions WAIT NO
if (remove(full_path.c_str())) {
return_value = false;
}
}
}
// remove() returns 0 on success. Go figure.
if (remove(name.c_str())) {
return_value = false;
}
closedir(dir);
return return_value;
}
bool file_exists(std::string name)
{
std::ifstream fin;
fin.open(name.c_str());
if (fin.is_open()) {
fin.close();
return true;
}
return false;
}
bool remove_file(std::string name)
{
if (!file_exists(name)) {
return false;
}
// remove() returns 0 on success. Thanks stdlib, real consistent there.
return !remove(name.c_str());
}
std::vector<std::string> files_in(std::string dir, std::string suffix)
{
std::vector<std::string> ret;
DIR *dp;
dirent *dirp;
if ( (dp = opendir(dir.c_str())) == NULL )
return ret;
while ( (dirp = readdir(dp)) != NULL ) {
std::string filename(dirp->d_name);
if (suffix == "" || filename.find(suffix) != std::string::npos) {
ret.push_back( std::string(dirp->d_name) );
}
}
closedir(dp);
return ret;
}
std::vector<std::string> directories_in(std::string dir)
{
std::vector<std::string> ret;
DIR *dp;
dirent *dirp;
if ( (dp = opendir(dir.c_str())) == NULL ) {
return ret;
}
while ( (dirp = readdir(dp)) != NULL ) {
#if (defined _WIN32 || defined WINDOWS)
struct stat win_stat;
stat(dirp->d_name, &win_stat);
if (win_stat.st_mode & S_IFDIR) {
#else
if (dirp->d_type == DT_DIR) {
#endif
std::string dname = dirp->d_name;
if (dname[0] != '.') {
ret.push_back( std::string(dirp->d_name) );
}
}
}
closedir(dp);
return ret;
}
std::string slurp_file(const std::string &filename)
{
std::string ret;
std::ifstream fin;
fin.open(filename.c_str());
if (!fin.is_open()) {
return ret;
}
ret.assign( (std::istreambuf_iterator<char>(fin) ),
(std::istreambuf_iterator<char>() ) );
return ret;
}
int find_line_starting_with(const std::string &filename, std::string term,
bool match_case, bool ignore_flags)
{
if (!match_case) {
term = no_caps(term);
}
// Should we also trim term? I say, no. The user can trim it themselves, and
// we might WANT to search for whitespace.
std::ifstream fin;
fin.open(filename.c_str());
if (!fin.is_open()) {
return -1;
}
int line_number = 1;
std::string line;
while (std::getline(fin, line)) {
if (fin.bad()) {
return -1;
} else if (fin.eof()) {
return -1;
}
if (ignore_flags) {
line = remove_color_tags(line);
}
if (!match_case) {
line = no_caps(line);
}
if (line.find(term) == 0) {
return line_number;
}
line_number++;
}
return -1;
}
void chomp(std::istream &data)
{
if (data.peek() == '\n') {
std::string junk;
std::getline(data, junk);
}
}
void set_default_dirs()
{
if (DATA_DIR.empty()) {
DATA_DIR = "./data";
}
if (CUSS_DIR.empty()) {
CUSS_DIR = "./cuss";
}
if (SAVE_DIR.empty()) {
SAVE_DIR = "./save";
}
}
bool set_dir(std::string &dir, std::string name)
{
if (!directory_exists(name)) {
return false;
}
dir = name;
return true;
}