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
|
#include <stdio.h>
#include <stdbool.h>
#include <getopt.h>
#include <stdlib.h>
#include "common.h"
#include "file.h"
#include "parse.h"
void print_usage(char *argv[]) {
printf("Usage: %s -n -f <database file>\n", argv[0]);
printf("\t -n - create new database file\n");
printf("\t -f - (required) path to database file\n");
return;
}
int main(int argc, char *argv[]) {
char *filepath = NULL;
char *portarg = NULL;
unsigned short port = 0;
bool newfile = false;
bool list = false;
char *addstring = NULL;
int c;
int dbfd = -1;
struct dbheader_t *dbhdr = NULL;
struct employee_t *employees = NULL;
while ((c = getopt(argc, argv, "nf:a:l")) != -1) {
switch (c) {
case 'n':
newfile = true;
break;
case 'f':
filepath = optarg;
break;
case 'p':
portarg = optarg;
break;
case 'a':
addstring = optarg;
break;
case 'l':
list = true;
break;
case '?':
printf("Unknown option -%c\n", c);
break;
default:
return -1;
}
}
if (filepath == NULL) {
printf("Filepath is a required argument\n");
print_usage(argv);
return 0;
}
if (newfile) {
dbfd = create_db_file(filepath);
if (dbfd == STATUS_ERROR) {
printf("Unable to create database file\n");
return -1;
}
if (create_db_header(dbfd, &dbhdr) == STATUS_ERROR) {
printf("Failed to create database header\n");
return -1;
}
} else {
dbfd = open_db_file(filepath);
if (dbfd == STATUS_ERROR) {
printf("Unable to open database file\n");
return -1;
}
if (validate_db_header(dbfd, &dbhdr) == STATUS_ERROR) {
printf("Failed to validate database header\n");
return -1;
}
}
if (read_employees(dbfd, dbhdr, &employees) != STATUS_SUCCESS) {
printf("Failed to read employees");
return 0;
}
if (addstring) {
dbhdr->count++;
employees = realloc(employees, dbhdr->count*(sizeof(struct employee_t)));
add_employee(dbhdr, employees, addstring);
}
if (list) {
list_employees(dbhdr, employees);
}
output_file(dbfd, dbhdr, employees);
return 0;
}
|