-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
325 lines (313 loc) · 6.71 KB
/
main.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
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
319
320
321
322
323
324
325
/* COMAN ROBERT - 313CB*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "tdb.h"
// intoarce numarul de cuvinte dintr-un sir de caractere
int word_count(char string[MAX_CMD_LEN])
{
int count = 1;
int l = strlen(string);
for(int i = 0; i < l; i++)
if(string[i] == ' ')
count++;
return count;
}
//intoarce codul comenzii
int get_function_code(char *string, char functions [10][10])
{
char *function = strtok(string, " ");
int code = -1;
for(int i = 0; i < 9; i++)
if(!strcmp(function, functions[i]))
{
code = i;
break;
}
return code;
}
// intoarce codul corespunzator tipului de date
int convert_to_type(char *ctype)
{
if(!strcmp(ctype, "INT"))
return INT;
else
if(!strcmp(ctype, "FLOAT"))
return FLOAT;
else
return STRING;
}
//verifica daca tipul de date este int, float sau string
int unknown_type(char *type)
{
if(!strcmp(type, "INT") || !strcmp(type, "FLOAT") ||
!strcmp(type, "STRING"))
return 0;
return 1;
}
// converteste elementele de tip char in int si le introduce in vector
void read_vector_int(int* v)
{
int i = 0;
char *s = strtok(NULL, " ");
while(s)
{
v[i] = atoi(s);
i++;
s = strtok(NULL, " ");
}
}
// converteste elementele de tip char in float si le introduce in vector
void read_vector_float(float* v)
{
int i = 0;
char *s = strtok(NULL, " ");
while(s)
{
v[i] = strtof(s, NULL);
i++;
s = strtok(NULL, " ");
}
}
int main()
{
char *command = malloc(MAX_CMD_LEN*sizeof(char));
char functions[10][10] = {"INIT_DB", "DELETE_DB", "CREATE", "DELETE",
"PRINT_DB", "PRINT", "SEARCH", "ADD", "CLEAR"};
t_db* database;
int first_command = 1;
while(1)
{
//citire comanda
fgets(command, MAX_CMD_LEN, stdin);
command[strlen(command) - 1] = '\0';
int max = word_count(command);
//prelucrare comanda
int code = get_function_code(command, functions);
if(first_command && (code != 0)) // prima comanda nu este "INIT_DB"
code = -2;
if(code == -1)
printf("Unknown command: \"%s\".\n", command);
switch(code)
{
case 0: // INIT_DB
{
database = INIT_DB(strtok(NULL, " "));
first_command = 0;
break;
}
case 1: //DELETE_DB
{
free(command);
DELETE_DB(database);
break;
}
case 2: //CREATE
{
char *table_name = strtok(NULL, " ");
if(table_in_db(database, table_name))
{
printf("Table \"%s\" already exists.\n", table_name);
break;
}
char *ctype = strtok(NULL, " ");
if(unknown_type(ctype))
{
printf("Unknown data type: \"%s\"\n", ctype);
break;
}
t_cellType Type = convert_to_type(ctype);
t_column* c = alloc_column(strtok(NULL, " "));
char *aux = strtok(NULL, " ");
t_column *urm = NULL, *ant = NULL;
while(aux)
{
if(!ant)
{
urm = alloc_column(aux);
c->next = urm;
ant = urm;
}
else
{
urm = alloc_column(aux);
ant->next = urm;
ant = urm;
}
aux = strtok(NULL, " ");
}
t_table* new_table = alloc_table(table_name, Type);
if(!new_table)
exit(1);
new_table->columns = c;
t_table *t = database->tables;
if(!t)
database->tables = new_table;
else
{
for(;t->next != NULL; t = t->next);
t->next = new_table;
}
break;
}
case 3: //DELETE
{
if(max == 2) // DELETE TABLE
{
char *table_name = strtok(NULL, " ");
int found = delete_table(database, table_name);
if(!found)
printf("Table \"%s\" not found in database.\n",
table_name);
}
else //DELETE LINE
{
char *table_name = strtok(NULL, " ");
char *column_name = strtok(NULL, " ");
char * relation = strtok(NULL, " ");
char *value = strtok(NULL, " ");
t_table* t = table_in_db(database, table_name);
if(!t)
{
printf("Table \"%s\" not found in database.\n",
table_name);
break;
}
void *val;
int val_int;
if(t->type == INT)
{
val_int = atoi(value);
val = (void*) &val_int;
}
else
if(t->type == FLOAT)
{
float val_float = strtof(value, NULL);
val = (void*) &val_float;
}
else
val = (void*) value;
int rez = delete_lines(database, table_name, column_name,
relation, val);
if(rez == -1)
printf("Table \"%s\" not found in database.\n",
table_name);
else
if(rez == -2)
printf("Table \"%s\" does not contain column \"%s\".\n"
, table_name, column_name);
}
break;
}
case 4: //PRINT_DB
{
afisare_db(database);
break;
}
case 5: //PRINT
{
char *table_name = strtok(NULL, " ");
t_table *t = table_in_db(database, table_name);
if(!t)
{
printf("Table \"%s\" not found in database.\n",
table_name);
break;
}
afisare_tabel(t);
break;
}
case 6: //SEARCH
{
char *table_name = strtok(NULL, " ");
char *column_name = strtok(NULL, " ");
char * relation = strtok(NULL, " ");
char *value = strtok(NULL, " ");
t_table* t = table_in_db(database, table_name);
if(!t)
{
printf("Table \"%s\" not found in database.\n",
table_name);
break;
}
void *val;
int val_int;
if(t->type == INT)
{
val_int = atoi(value);
val = (void*) &val_int;
}
else
if(t->type == FLOAT)
{
float val_float = strtof(value, NULL);
val = (void*) &val_float;
}
else
val = (void*) value;
int rez = search(t, column_name, relation, val);
if(rez == 1)
continue;
else
if(rez == -1)
printf("Table \"%s\" does not contain column \"%s\".\n", table_name,
column_name);
break;
}
case 7: //ADD
{
char *table_name = strtok(NULL, " ");
t_table *t = table_in_db(database, table_name);
if(!t)
{
printf("Table \"%s\" not found in database.\n",
table_name);
break;
}
int nr_elem = max - 2;
if(t->type == INT){
int* v = malloc(nr_elem*sizeof(int));
if(!v)
exit(1);
read_vector_int(v);
add_line(t, (void*) v, nr_elem);
free(v);
}
else
if(t->type == FLOAT)
{
float *v = malloc(nr_elem * sizeof(float));
if(!v)
exit(1);
read_vector_float(v);
add_line(t, (void *) v, nr_elem);
free(v);
}
else // string
{
char v[20][MAX_COLUMN_NAME_LEN];
char *s = strtok(NULL, " ");
for(int i = 0; i < nr_elem; i++)
{
strcpy(v[i], s);
s = strtok(NULL, " ");
}
add_line(t, (void*) v, nr_elem);
}
break;
}
case 8: //CLEAR
{
char *table_name = strtok(NULL, " ");
int rez = clear_table(database, table_name);
if(rez == 1)
continue;
else
printf("Table \"%s\" not found in database.\n",
table_name);
break;
}
}
}
}