-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.hpp
More file actions
201 lines (168 loc) · 5.2 KB
/
utils.hpp
File metadata and controls
201 lines (168 loc) · 5.2 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
#pragma once
#include <iostream>
#include <sys/stat.h>
namespace f_io
{
FILE* OpenFile(const char* fname, const char* open_type)
{
struct stat buffer;
if (open_type == "r" && stat(fname, &buffer) != 0){
std::cout << "Couldn't find file: " << fname << std::endl;
exit(1);
}
FILE* fd;
if((fd = fopen(fname, open_type)) == NULL){
std::cout << "Couldn't open file to read: " << fname << std::endl;
exit(1);
}
return fd;
}
long GetFileSize(const char* fname)
{
FILE* fd = OpenFile(fname, "r");
fseek(fd, 0, SEEK_END);
long fsize = ftell(fd);
fclose(fd);
return fsize;
}
char* ReadFileAll(const char* fname)
{
long fsize = GetFileSize(fname);
FILE* fd = OpenFile(fname, "r");
char *fText = (char*) calloc(fsize,sizeof(char));
fread(fText, fsize, 1, fd);
fclose(fd);
return fText;
}
char* ReadFileLine(const char* fname, unsigned int lineIndex)
{
FILE* fd = OpenFile(fname, "r");
int currentLine = 0;
int lineLength = 0;
char* lineText;
char buff;
while(true)
{
lineLength = 0;
while((buff = fgetc(fd)) != EOF)
{
lineLength++;
if(buff == '\n') break;
}
if(buff == EOF)
{
std::cout << "Reached end of file" << std::endl;
fclose(fd);
return nullptr;
}
if(currentLine == lineIndex){
lineText = (char*) calloc(lineLength+1, sizeof(char));
fseek(fd, -lineLength, SEEK_CUR);
fread(lineText, lineLength, 1, fd);
break;
}
currentLine++;
}
fclose(fd);
return lineText;
}
char* ReadFileLines(const char* fname, unsigned int lineStart, unsigned int lineEnd)
{
FILE* fd = OpenFile(fname, "r");
int currentLine = 0;
int lineLength = 0;
size_t reachedStartLine = 0;
size_t textCharCount = 0;
char* lineText;
char buff;
while(true)
{
lineLength = 0;
if(currentLine == lineStart){
reachedStartLine = 1;
}
while((buff = fgetc(fd)) != EOF)
{
if(buff == '\n') {
if(reachedStartLine){
std::cout << buff;
textCharCount++;
}
break;
}
lineLength++;
if(reachedStartLine){
std::cout << buff;
textCharCount++;
}
}
if(currentLine == lineEnd){
lineText = (char*) calloc(textCharCount+1, sizeof(char));
fseek(fd, -(textCharCount), SEEK_CUR);
fread(lineText, textCharCount, 1, fd);
break;
}
if(buff == EOF)
{
std::cout << "Reached end of file" << std::endl;
fclose(fd);
return nullptr;
}
currentLine++;
}
fclose(fd);
return lineText;
}
char* ReadFileChars(const char* fname, unsigned int startIndex, unsigned int endIndex)
{
long fsize = GetFileSize(fname);
unsigned int charsCount = endIndex - startIndex + 1;
unsigned int finalEndIndex = startIndex + charsCount;
if(finalEndIndex > fsize || charsCount > fsize){
std::cout << "End index out of the file bounds" << std::endl;
return "";
}
FILE* fd = OpenFile(fname, "r");
fseek(fd, startIndex, SEEK_CUR);
char *chars = (char*) calloc(charsCount, sizeof(char));
fread(chars, charsCount, 1, fd);
fclose(fd);
return chars;
}
char* ReadFileChar(const char* fname, unsigned int index)
{
return ReadFileChars(fname, index, index);
}
int WriteChars(const char* fname, const char * value, const uint32_t length)
{
FILE* fd = OpenFile(fname, "w");
size_t wn;
if(fwrite(value, sizeof(char), length, fd) != length)
{
fclose(fd);
return 0;
}
fclose(fd);
return 1;
}
int WriteChar(const char* fname, const char * value)
{
return WriteChars(fname, value, 1);
}
int WriteLine(const char* fname, const char * value, unsigned int length, unsigned int line_num)
{
// TODO: Write func (WriteLine)
}
}
namespace str_op
{
class StringPresets
{
const char* numbers = "1234567890";
const char* lettersLowcase = "abcdefghijklmnopqrstuvwxyz";
const char* lettersCapital = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const char* letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
const char* symbols = "!@#$%^&*";
const char* allChars = "1234567890!@#$%^&*abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
};
}