-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunFb.c
More file actions
416 lines (345 loc) · 10.8 KB
/
runFb.c
File metadata and controls
416 lines (345 loc) · 10.8 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
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
WeChat: cstutorcs
QQ: 749389476
Email: tutorcs@163.com
// runFb.c - a command-line interface to Friendbook
// !!! DO NOT MODIFY THIS FILE !!!
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "Fb.h"
#include "List.h"
#define MAX 8192
static void processOptions(int argc, char *argv[]);
static void showUsage(char *progName);
static void showWelcomeMessage(void);
static bool getCommand(char *buf);
static char **tokenize(char *s, int *ntokens);
static void freeTokens(char **tokens);
static void showHelp(void);
static void runAddPerson(Fb fb, int argc, char *argv[]);
static void runListPeople(Fb fb, int argc, char *argv[]);
static void runFriend(Fb fb, int argc, char *argv[]);
static void runUnfriend(Fb fb, int argc, char *argv[]);
static void runFriendshipStatus(Fb fb, int argc, char *argv[]);
static void runNumFriends(Fb fb, int argc, char *argv[]);
static void runMutualFriends(Fb fb, int argc, char *argv[]);
static void runFriendRecs1(Fb fb, int argc, char *argv[]);
static void runFriendRecs2(Fb fb, int argc, char *argv[]);
static void showCmdHelp(void);
static void showList(List l);
////////////////////////////////////////////////////////////////////////
struct command {
char *code;
void (*fn)(Fb, int, char **);
char *argHint;
char *helpMsg;
};
static struct command COMMANDS[] = {
{"+", runAddPerson, "<name>",
"add a new person"},
{"l", runListPeople, "",
"list the names of all people"},
{"f", runFriend, "<name1> <name2>",
"friend two people"},
{"u", runUnfriend, "<name1> <name2>",
"unfriend two people"},
{"s", runFriendshipStatus, "<name1> <name2>",
"get the friendship status of two people"},
{"n", runNumFriends, "<name>",
"get the number of friends a person has"},
{"m", runMutualFriends, "<name1> <name2>",
"list all mutual friends of two people"},
{"r", runFriendRecs1, "<name>",
"get friend recommendations for a person "
"based on mutual friends"},
{"R", runFriendRecs2, "<name>",
"get friend recommendations for a person "
"based on friendship closeness"},
// Meta-commands
{"?", NULL, "", "show this message"},
{"q", NULL, "", "quit"},
};
////////////////////////////////////////////////////////////////////////
static bool echoCommands = false;
static struct command *currCommand = NULL;
int main(int argc, char *argv[]) {
processOptions(argc, argv);
showWelcomeMessage();
Fb fb = FbNew();
bool done = false;
char cmd[MAX + 1] = {0};
while (!done && getCommand(cmd)) {
if (echoCommands) {
printf("%s", cmd);
}
int ntokens = 0;
char **tokens = tokenize(cmd, &ntokens);
if (ntokens == 0) {
free(tokens);
continue;
}
char *cmdName = tokens[0];
// Meta-commands
if (strcmp(cmdName, "?") == 0) {
showHelp();
} else if (strcmp(cmdName, "q") == 0) {
done = true;
// Actual commands
} else {
bool validCommand = false;
int numCommands = sizeof(COMMANDS) / sizeof(struct command);
for (int i = 0; i < numCommands; i++) {
if (strcmp(cmdName, COMMANDS[i].code) == 0) {
validCommand = true;
currCommand = &COMMANDS[i];
COMMANDS[i].fn(fb, ntokens, tokens);
}
}
if (!validCommand) {
printf("Unknown command '%s'\n", cmdName);
}
}
freeTokens(tokens);
}
FbFree(fb);
}
static void processOptions(int argc, char *argv[]) {
for (int i = 1; i < argc; i++) {
if (strcmp(argv[i], "-h") == 0) {
showUsage(argv[0]);
exit(EXIT_SUCCESS);
} else if (strcmp(argv[i], "-e") == 0) {
echoCommands = true;
}
}
}
static void showUsage(char *progName) {
printf("Usage: %s [options]...\n"
"Options:\n"
" -h show this help message\n"
" -e echo - echo all commands\n",
progName);
}
static void showWelcomeMessage(void) {
printf("Friendbook v1.0\n");
printf("Enter ? to see the list of commands.\n");
}
static bool getCommand(char *buf) {
printf("> ");
if (fgets(buf, MAX, stdin) != NULL) {
int len = strlen(buf);
if (len > 0 && buf[len - 1] != '\n') {
buf[len] = '\n';
buf[len + 1] = '\0';
}
return true;
} else {
return false;
}
}
static char **tokenize(char *s, int *ntokens) {
char *separators = " \t\r\n";
*ntokens = 0;
char **tokens = calloc((strlen(s) + 1), sizeof(*tokens));
assert(tokens != NULL);
while (*s != '\0') {
s += strspn(s, separators);
if (*s == '\0') {
break;
}
size_t length = strcspn(s, separators);
char *token = strndup(s, length);
assert(token != NULL);
s += length;
tokens[*ntokens] = token;
(*ntokens)++;
}
tokens[*ntokens] = NULL;
tokens = realloc(tokens, (*ntokens + 1) * sizeof(*tokens));
assert(tokens != NULL);
return tokens;
}
static void freeTokens(char **tokens) {
for (int i = 0; tokens[i] != NULL; i++) {
free(tokens[i]);
}
free(tokens);
}
static void showHelp(void) {
printf("Commands:\n");
int numCommands = sizeof(COMMANDS) / sizeof(struct command);
for (int i = 0; i < numCommands; i++) {
printf("%5s %-18s %s\n", COMMANDS[i].code, COMMANDS[i].argHint,
COMMANDS[i].helpMsg);
}
printf("\n");
}
////////////////////////////////////////////////////////////////////////
// Commands
static void runAddPerson(Fb fb, int argc, char *argv[]) {
if (argc != 2) {
showCmdHelp();
return;
}
char *name = argv[1];
if (FbAddPerson(fb, name)) {
printf("%s was successfully added to Friendbook!\n", name);
} else {
printf("There is already a person named %s\n", name);
}
}
static void runListPeople(Fb fb, int argc, char *argv[]) {
if (argc != 1) {
showCmdHelp();
return;
}
List l = FbGetPeople(fb);
printf("People:\n");
showList(l);
ListFree(l);
}
static void runFriend(Fb fb, int argc, char *argv[]) {
if (argc != 3) {
showCmdHelp();
return;
}
char *name1 = argv[1];
char *name2 = argv[2];
if (!FbHasPerson(fb, name1)) {
printf("error: there is no person named '%s'\n", name1);
return;
}
if (!FbHasPerson(fb, name2)) {
printf("error: there is no person named '%s'\n", name2);
return;
}
if (FbFriend(fb, name1, name2)) {
printf("Successfully friended %s and %s!\n", name1, name2);
} else {
printf("Could not friend %s and %s - they are already friends.\n",
name1, name2);
}
}
static void runUnfriend(Fb fb, int argc, char *argv[]) {
if (argc != 3) {
showCmdHelp();
return;
}
char *name1 = argv[1];
char *name2 = argv[2];
if (!FbHasPerson(fb, name1)) {
printf("error: there is no person named '%s'\n", name1);
return;
}
if (!FbHasPerson(fb, name2)) {
printf("error: there is no person named '%s'\n", name2);
return;
}
if (FbUnfriend(fb, name1, name2)) {
printf("Successfully unfriended %s and %s!\n", name1, name2);
} else {
printf("Could not unfriend %s and %s - they are not friends.\n",
name1, name2);
}
}
static void runFriendshipStatus(Fb fb, int argc, char *argv[]) {
if (argc != 3) {
showCmdHelp();
return;
}
char *name1 = argv[1];
char *name2 = argv[2];
if (!FbHasPerson(fb, name1)) {
printf("error: there is no person named '%s'\n", name1);
return;
}
if (!FbHasPerson(fb, name2)) {
printf("error: there is no person named '%s'\n", name2);
return;
}
bool status = FbIsFriend(fb, name1, name2);
printf("%s and %s %s friends.\n", name1, name2,
status ? "are" : "are not");
}
static void runNumFriends(Fb fb, int argc, char *argv[]) {
if (argc != 2) {
showCmdHelp();
return;
}
char *name = argv[1];
if (!FbHasPerson(fb, name)) {
printf("error: there is no person named '%s'\n", name);
return;
}
int res = FbNumFriends(fb, name);
printf("%s has %d friend%s.\n", name, res, res == 1 ? "" : "s");
}
static void runMutualFriends(Fb fb, int argc, char *argv[]) {
if (argc != 3) {
showCmdHelp();
return;
}
char *name1 = argv[1];
char *name2 = argv[2];
if (!FbHasPerson(fb, name1)) {
printf("error: there is no person named '%s'\n", name1);
return;
}
if (!FbHasPerson(fb, name2)) {
printf("error: there is no person named '%s'\n", name2);
return;
}
List l = FbMutualFriends(fb, name1, name2);
printf("%s and %s's mutual friends:\n", name1, name2);
ListSort(l);
showList(l);
ListFree(l);
}
static void runFriendRecs1(Fb fb, int argc, char *argv[]) {
if (argc != 2) {
showCmdHelp();
return;
}
char *name = argv[1];
if (!FbHasPerson(fb, name)) {
printf("error: there is no person named '%s'\n", name);
return;
}
struct recommendation *recs = calloc(FbNumPeople(fb), sizeof(*recs));
int numRecs = FbFriendRecs1(fb, name, recs);
printf("%s's friend recommendations:\n", name);
for (int i = 0; i < numRecs; i++) {
printf("\t%-20s%4d mutual friends\n", recs[i].name,
recs[i].numMutualFriends);
}
free(recs);
}
static void runFriendRecs2(Fb fb, int argc, char *argv[]) {
if (argc != 2) {
showCmdHelp();
return;
}
char *name = argv[1];
if (!FbHasPerson(fb, name)) {
printf("error: there is no person named '%s'\n", name);
return;
}
List l = FbFriendRecs2(fb, name);
printf("%s's friend recommendations:\n", name);
showList(l);
ListFree(l);
}
static void showCmdHelp(void) {
printf("Usage: %s %s\n", currCommand->code, currCommand->argHint);
}
////////////////////////////////////////////////////////////////////////
static void showList(List l) {
ListIterator it = ListItNew(l);
while (ListItHasNext(it)) {
char *name = ListItNext(it);
printf("\t%s\n", name);
}
ListItFree(it);
}