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
|
#include "file.h"
#include "utils/log.h"
#include "utils/memory.h"
#include <stdio.h>
#include <string.h>
size_t fileCodes_capacity = 0;
char **fileCodes = NULL;
char **fileCodes_names = NULL;
size_t fileCodes_length = 0;
void fileInit() {
fileCodes_capacity = 0;
fileCodes = a404m_malloc(fileCodes_capacity * sizeof(*fileCodes));
fileCodes_names = a404m_malloc(fileCodes_capacity * sizeof(*fileCodes_names));
fileCodes_length = 0;
}
void fileDelete() {
fileCodes_capacity = 0;
for (size_t i = 0; i < fileCodes_length; ++i) {
free(fileCodes[i]);
free(fileCodes_names[i]);
}
free(fileCodes);
free(fileCodes_names);
fileCodes_length = 0;
}
void filePush(const char *filePath, char *code) {
if (fileCodes_capacity == fileCodes_length) {
fileCodes_capacity += fileCodes_capacity / 2 + 1;
fileCodes =
a404m_realloc(fileCodes, fileCodes_capacity * sizeof(*fileCodes));
fileCodes_names = a404m_realloc(
fileCodes_names, fileCodes_capacity * sizeof(*fileCodes_names));
}
fileCodes[fileCodes_length] = code;
fileCodes_names[fileCodes_length] =
a404m_malloc((strlen(filePath) + 1) * sizeof(**fileCodes_names));
strcpy(fileCodes_names[fileCodes_length], filePath);
fileCodes_length += 1;
}
char *readWholeFile(const char *filePath) {
const size_t index = getFileIndex(filePath);
if (index != fileCodes_length) {
return fileCodes[index];
}
FILE *file = fopen(filePath, "r");
if (!file) {
printLog("Can't open file '%s'", filePath);
return NULL;
}
fseek(file, 0, SEEK_END);
const size_t file_size = ftell(file);
fseek(file, 0, SEEK_SET);
char *str = a404m_malloc((file_size + 1) * sizeof(*str));
fread(str, file_size, 1, file);
str[file_size] = '\0';
fclose(file);
filePush(filePath, str);
return str;
}
size_t getFileIndex(const char *filePath) {
for (size_t i = 0; i < fileCodes_length; ++i) {
const char *str = fileCodes_names[i];
if (strcmp(filePath, str) == 0) {
return i;
}
}
return fileCodes_length;
}
char *joinToPathOf(const char *original, const char *file) {
size_t result_size = 0;
for (size_t i = 0; original[i] != '\0'; ++i) {
if (original[i] == '/') {
result_size = i;
}
}
char *result =
a404m_malloc((result_size + 1 + strlen(file) + 1) * sizeof(*result));
strncpy(result, original, result_size);
result[result_size++] = '/';
for (size_t i = 0; file[i] != '\0'; ++i) {
if (result_size != 0 && result[result_size - 1] == '/' &&
file[i + 1] == '.') {
if (file[i + 2] == '/') {
i += 2;
continue;
} else if (file[i + 2] == '.' && file[i + 3] == '/') {
bool found = false;
for (size_t j = i - 2; j != -1ULL; --j) {
if (result[j] == '/') {
result_size = j;
found = true;
break;
}
}
if (!found) {
result_size = 0;
result[result_size++] = '.';
result[result_size++] = '.';
result[result_size++] = '/';
}
continue;
}
}
result[result_size++] = file[i];
}
result[result_size++] = '\0';
result = a404m_realloc(result, result_size);
return result;
}
|