-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject2.c
418 lines (370 loc) · 14.1 KB
/
project2.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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/* IAED-23 - ist1106635 - project2 ---------------------------------------------
* File: project2.c
* Author: Tiago Branquinho
* Description: a file for the first project of IAED, consisting of a program
* that manages a bus network
------------------------------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include "constants.h"
#include "prototypes.h"
/*------------------------------------------------------------------------------
* Function: parser
* Description: parses the line the user inputs into an array of arguments
* Output: returns the number of arguments if the command was successful,
* ERROR if it runs out of memory
------------------------------------------------------------------------------*/
int parser(char line[], char ***arguments, int max_arguments) {
int i, length = strlen(line);
int space = FALSE, quotation = FALSE, arg_number = 0, j = 0;
*arguments = malloc(max_arguments*sizeof(char*));
if (*arguments == NULL) {
return ERROR;
}
for (i = 0; i < max_arguments; i++) {
(*arguments)[i] = malloc(length*sizeof(char));
}
if (line[0] == '\n') {
return 0;
}
for (i = 1; i < length; i++) { /*already starts with a space*/
switch(line[i]) {
case ' ':
if (quotation == FALSE) {
space = TRUE;
}
else {
(*arguments)[arg_number][j] = line[i];
j++;
}
break;
case '"':
quotation = !quotation;
break;
case '\n':
(*arguments)[arg_number][j] = '\0';
(*arguments)[arg_number] = realloc
((*arguments)[arg_number], (j+1)*sizeof(char));
break;
default:
if (space) {
(*arguments)[arg_number][j] = '\0';
(*arguments)[arg_number] = realloc
((*arguments)[arg_number], (j+1)*sizeof(char));
arg_number ++;
j = 0;
space = FALSE;
}
(*arguments)[arg_number][j] = line[i];
j++;
}
}
return arg_number+1; /*+1 since the array starts with position 0*/
}
/*------------------------------------------------------------------------------
* Function: command_p
* Description: function that handles the command "p" in function of the number
* of arguments
* Output: returns TRUE if the command was successful,
* ERROR if it runs out of memory
------------------------------------------------------------------------------*/
int command_p(char line[], Stop **stops,
Route *routes, int *stop_num, int route_num) {
char **arguments = NULL;
int max_arguments = 3;
int exists, arg_number = parser(line, &arguments, max_arguments);
if (arg_number == ERROR) {
free_arguments(arguments, max_arguments);
return ERROR;
}
switch (arg_number) {
case 0:
list_stops(stops, routes, *stop_num, route_num);
break;
case 1:
exists = check_stop(arguments[0], stops, arg_number, *stop_num);
if (!exists)
printf("%s: no such stop.\n", arguments[0]);
break;
case 3:
exists = check_stop(arguments[0], stops, arg_number, *stop_num);
if (!exists) {
if (create_stop(arguments, stops, stop_num) == ERROR) {
free_arguments(arguments, max_arguments);
return ERROR;
}
}
else
printf("%s: stop already exists.\n", arguments[0]);
break;
}
free_arguments(arguments, max_arguments);
return TRUE;
}
/*------------------------------------------------------------------------------
* Function: command_c
* Description: function that handles the command "c" in function of the number
* of arguments
* Output: returns TRUE if the command was successful,
* ERROR if it runs out of memory
------------------------------------------------------------------------------*/
int command_c(char line[], Route **routes,
int *route_num) {
char **arguments = NULL;
int max_arguments = 2, arg_number = parser(line, &arguments, max_arguments);
int i, reverse_flag = FALSE;
int exists = FALSE;
if (arg_number == ERROR) {
free_arguments(arguments, max_arguments);
return ERROR;
}
switch(arg_number) {
case 0:
for (i = 0; i < *route_num; i++) {
print_route_description((*routes)[i]);
}
break;
case 1:
exists = get_stops_route(arguments, routes, *route_num);
if (!exists)
if (create_route(arguments, routes, route_num) == ERROR) {
free_arguments(arguments, arg_number);
return ERROR;
}
break;
case 2:
reverse_flag = is_inverted(arguments[1]);
if (reverse_flag == FALSE) {
printf("incorrect sort option.\n");
break;
}
get_inverted_stops_route(arguments, routes, *route_num);
}
free_arguments(arguments, max_arguments);
return TRUE;
}
/*------------------------------------------------------------------------------
* Function: command_l
* Description: function that handles the command "l"
* Output: returns TRUE if the command was successful,
* ERROR if it runs out of memory
------------------------------------------------------------------------------*/
int command_l(char line[], Route **routes, Stop *stops, int route_num,
int stop_num) {
char **args = NULL;
Connection spec_connection;
int add_end = FALSE; /*to check if we're adding to the end of the route*/
int max_arguments = 5, route_index, size_1, size_2;
int arg_number = parser(line, &args, max_arguments);
if (arg_number == ERROR) {
free_arguments(args, max_arguments);
return ERROR;
}
if (!is_valid_connection(args, routes, stops, stop_num, route_num,
&route_index)) {
free_arguments(args, arg_number);
return TRUE;
}
size_1 = strlen(args[1]);
size_2 = strlen(args[2]);
if (create_connection(args, routes, route_index,
size_1, size_2, &spec_connection) == ERROR) {
free_arguments(args, arg_number);
return ERROR;
}
if ((*routes)[route_index].stops_number == 0) { /*if it's the first one*/
add_route_information(args, routes, route_index,
size_1, size_2, spec_connection);
}
else if (strcmp(args[1], (*routes)[route_index].last_stop) == EQUAL) {
add_end = TRUE;
change_route_information(args, routes, route_index,
add_end, size_2, spec_connection);
}
else { /*when we're adding to the beginning of the route*/
change_route_information(args, routes, route_index,
add_end, size_1, spec_connection);
}
free_arguments(args, arg_number);
return TRUE;
}
/*------------------------------------------------------------------------------
* Function: command_i
* Description: function that handles the command i
* Output: doesn't return anything
------------------------------------------------------------------------------*/
void command_i(Stop **stops, Route *routes,
int stop_num, int route_num) {
int i, pos = 0;
for (i = 0; i < stop_num; i++) {
(*stops)[i] = add_routes_passing((*stops)[i], routes, route_num);
if ((*stops)[i].routes_passing > 1) {
/*to add all indexes to the routes that go through this stop*/
int *list_of_routes = malloc(sizeof(int) * route_num);
pos = add_route_to_array(list_of_routes, pos, route_num,
i, stops, routes);
bubble_sort(routes, list_of_routes, pos);
print_routes_passing(pos, list_of_routes, (*stops)[i], routes);
pos = 0;
free(list_of_routes);
}
}
}
/*------------------------------------------------------------------------------
* Function: command_r
* Description: function that handles the command r
* Output: doesn't return anything
------------------------------------------------------------------------------*/
int command_r(char line[], Route **routes, int *route_num) {
char **arguments = NULL;
int max_arguments = 1, arg_number = parser(line, &arguments, max_arguments);
int route_index;
if (arg_number == ERROR) {
free_arguments(arguments, max_arguments);
return ERROR;
}
route_index = find_route(arguments, routes, *route_num);
if (route_index != NO_ROUTE)
remove_route(routes, route_index, route_num);
free_arguments(arguments, arg_number);
return TRUE;
}
/*------------------------------------------------------------------------------
* Function: command_e
* Description: function that handles the command e
* Output: doesn't return anything
------------------------------------------------------------------------------*/
int command_e(char line[], Stop **stops, int *stop_num,
Route **routes, int route_num) {
char **arguments = NULL;
int max_arguments = 1, arg_number = parser(line, &arguments, max_arguments);
int stop_index = 0, exists = FALSE, i;
if (arg_number == ERROR) {
free_arguments(arguments, max_arguments);
return ERROR;
}
for (i = 0; i < *stop_num; i++) {
if (strcmp((*stops)[i].name, arguments[0]) == EQUAL) {
stop_index = i;
exists = TRUE;
break;
}
}
if (!exists) {
printf("%s: no such stop.\n", arguments[0]);
free_arguments(arguments, arg_number);
return TRUE;
}
for (i = 0; i < route_num; i++) {
if ((*routes)[i].stops_number == 0) {
continue;
}
else {
/*start by removing stops from the beginning*/
while(strcmp((*routes)[i].first_stop, (*stops)[stop_index].name) == EQUAL) {
if (remove_from_beginning(routes, i) == NO_CONNECTIONS)
break;
}
get_stops_number(routes, i);
if ((*routes)[i].stops_number == 0) {
continue;
}
/*if there are still stops left, check the end*/
else {
while(strcmp((*routes)[i].last_stop, (*stops)[stop_index].name) == EQUAL) {
if (remove_from_end(routes, i) == NO_CONNECTIONS)
break;
}
}
get_stops_number(routes, i);
if ((*routes)[i].stops_number == 0)
continue;
else
/*if there are still stops left, check the ones in the middle*/
remove_from_middle(stops, routes, i, stop_index);
get_stops_number(routes, i);
}
}
remove_stop(stops, stop_index, stop_num);
free_arguments(arguments, arg_number);
return TRUE;
}
/*------------------------------------------------------------------------------
* Function: handle_commands
* Description: brief function that handles the command the user inputs
* Output: doesn't return anything, exits the program if the user inputs 'q' or
* if there is no memory
------------------------------------------------------------------------------*/
void handle_commands(Stop *stops,
Route *routes, int *route_num,
int *stop_num) {
int *ptr_route = route_num;
int *ptr_stop = stop_num;
char c, line[BUFFER];
while ((c = getchar()) != EOF) {
if (fgets(line, BUFFER, stdin) == NULL) {
return;
}
switch(c) {
case 'q':
free_memory(stops, routes, ptr_stop, ptr_route);
return;
case 'c':
if (command_c(line, &routes, ptr_route) == ERROR) {
free_memory(stops, routes, ptr_stop, ptr_route);
printf("No memory.\n");
exit(1);
}
break;
case 'p':
if (command_p(line, &stops, routes,
ptr_stop, *route_num) == ERROR) {
free_memory(stops, routes, ptr_stop, ptr_route);
printf("No memory.\n");
exit(1);
}
break;
case 'l':
if (command_l(line, &routes, stops,
*route_num, *stop_num) == ERROR) {
free_memory(stops, routes, ptr_stop, ptr_route);
printf("No memory.\n");
exit(1);
}
break;
case 'i':
command_i(&stops, routes, *stop_num, *route_num);
break;
case 'a':
free_memory(stops, routes, ptr_stop, ptr_route);
break;
case 'r':
if (command_r(line, &routes, ptr_route) == ERROR) {
free_memory(stops, routes, ptr_stop, ptr_route);
printf("No memory.\n");
exit(1);
}
break;
case 'e':
if (command_e(line, &stops, ptr_stop, &routes,
*route_num) == ERROR) {
free_memory(stops, routes, ptr_stop, ptr_route);
printf("No memory.\n");
exit(1);
}
break;
}
}
}
/*-------------------------------MAIN FUNCTION--------------------------------*/
int main() {
int route_num = 0;
int stop_num = 0;
Route routes = {0};
Stop stops = {0};
handle_commands(&stops, &routes, &route_num,
&stop_num);
return 0;
}