-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilesystem.c
224 lines (165 loc) · 4.04 KB
/
filesystem.c
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
#include "filesystem.h"
/*
* This function returns a heap allocated string which is the result
* from the concatenation of str1 and str2
*/
char * buildFilePath(char * str1, char * str2)
{
unsigned long len = strlen(str1)+strlen(str2)+1;
char * destination = (char *) malloc(sizeof(char)*len);
strcpy(destination, str1);
strcat(destination, str2);
return destination;
}
/*
* This function returns a pointer to a heap allocated struct token.
* You don't have to allocate it previously but
* you MUST free() it after use, in order to avoid memleak problems.
*/
struct token * getTokens(char * record)
{
struct token * t = (struct token *) malloc(sizeof(struct token));
char * pos;
char * key = strtok_r(record, "|", &pos);
strcpy(t->key, key);
char * value = strtok_r(NULL, "|", &pos);
strcpy(t->value, value);
return t;
}
/*
* writes a record with that value into a set of records
*
* example:
*
* saveRecord("config", "username", "password");
*/
int saveRecord(char * set, char * record, char * value)
{
FILE * fp;
char * folder = "data/";
char * destination = buildFilePath(folder, set);
if(isPresentRecord(set, record)){
deleteRecord(set, record);
saveRecord(set, record, value);
} else {
//append to the end of file
fp = fopen(destination, "a+");
fprintf(fp, "%s|%s\n", record, value);
fclose(fp);
}
free(destination);
return 1;
}
int isPresentRecord(char * set, char * record)
{
FILE * fp = NULL;
char * folder = "data/";
char * destination = buildFilePath(folder, set);
char current[100];
fp = fopen(destination, "a");
fclose(fp);
fp = fopen(destination, "r");
//check if file is empty
if(isFileEmpty(fp)){
fclose(fp);
free(destination);
return 0;
}
//iterate until end of file is reached
while(!feof(fp)){
fscanf(fp,"%s\n", current);
if(strlen(current)>3){
struct token * tokens = getTokens(current);
if(strcmp(tokens->key, record)==0){
fclose(fp);
free(destination);
free(tokens);
return 1;
}
free(tokens);
}
}
fclose(fp);
free(destination);
return 0;
}
/*
* read a single record value
*
* example:
*
* char * value = readRecord("config", "matrioska");
printf("value found: %s\n", value);
free(value);
*
*/
char * readRecord(char * set, char * record)
{
FILE * fp;
char * folder = "data/";
char * destination = buildFilePath(folder, set);
char * value = NULL;
char current[100];
fp = fopen(destination, "r");
//iterate until end of file is reached
do{
fscanf(fp,"%s\n", current);
struct token * tokens = getTokens(current);
if(strcmp(tokens->key, record)==0){
value = (char *) malloc(sizeof(char)*(strlen(tokens->value)+1));
strcpy(value, tokens->value);
free(tokens);
break;
}
free(tokens);
}while(!feof(fp));
fclose(fp);
free(destination);
return value;
}
int deleteRecord(char * set, char * record)
{
FILE * original, * temp;
char * dataFolder = "data/";
char * tempFolder = "temp/";
char * dataDestination = buildFilePath(dataFolder, set);
char * tempDestination = buildFilePath(tempFolder, set);
char current[100];
original = fopen(dataDestination, "r");
temp = fopen(tempDestination, "w");
//iterate until end of file is reached
do{
fscanf(original,"%s\n", current);
struct token * tokens = getTokens(current);
if(strcmp(tokens->key, record)!=0){
//append to the end of file
fprintf(temp, "%s|%s\n", tokens->key, tokens->value);
}
free(tokens);
}while(!feof(original));
fclose(original);
fclose(temp);
original = fopen(dataDestination, "w");
temp = fopen(tempDestination, "r");
//iterate until end of file is reached
do{
fscanf(temp,"%s\n", current);
fprintf(original, "%s\n", current);
}while(!feof(temp));
fclose(original);
fclose(temp);
free(dataDestination);
free(tempDestination);
return 1;
}
int isFileEmpty(FILE * file)
{
long savedOffset = ftell(file);
fseek(file, 0, SEEK_END);
if (ftell(file) == 0)
{
return 1;
}
fseek(file, savedOffset, SEEK_SET);
return 0;
}