-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared.c
103 lines (80 loc) · 2.04 KB
/
shared.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
#include "shared.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
char *get_file_path() { return "/etc/.remindme"; }
char *read_to_buf(FILE *file) {
if (file == NULL) {
fprintf(stderr, "err: invalid file pointer\n");
return NULL;
}
// get the size of the file
fseek(file, 0, SEEK_END);
long file_size = ftell(file);
fseek(file, 0, SEEK_SET);
char *buffer = (char *)malloc(file_size + 1); // +1 for null terminator
if (buffer == NULL) {
perror("error allocating memory");
return NULL;
}
size_t read_size = fread(buffer, 1, file_size, file);
if (read_size != file_size) {
perror("error reading file");
free(buffer);
return NULL;
}
buffer[file_size] = '\0';
return buffer;
}
int delete_reminder(unsigned short id, FILE *file) {
int success = -1;
char *buf = read_to_buf(file);
freopen(NULL, "w", file);
freopen(NULL, "a+", file);
char *split = strtok(buf, "\n");
while (split != NULL) {
char id_str[6];
snprintf(id_str, sizeof(id_str), "%hu", id);
if (strstr(split, id_str) != NULL) {
split = strtok(NULL, "\n");
success = 0;
} else {
fprintf(file, "%s\n", split);
fflush(file);
split = strtok(NULL, "\n");
}
}
free(buf);
return success;
}
struct Reminder *get_reminders(FILE *file) {
struct Reminder *reminders =
malloc(sizeof(struct Reminder) * get_reminder_count(file));
int curr_index = 0;
char *buf = read_to_buf(file);
char *split = strtok(buf, "\n");
while (split != NULL) {
unsigned short id;
char *message;
time_t time;
sscanf(split, "%hu === %m[^=] === %ld", &id, &message, &time);
struct Reminder r = {id, message, time};
reminders[curr_index] = r;
curr_index++;
split = strtok(NULL, "\n");
}
free(buf);
return reminders;
}
int get_reminder_count(FILE *file) {
char *buf = read_to_buf(file);
int count = 0;
char *split = strtok(buf, "\n");
while (split != NULL) {
count++;
split = strtok(NULL, "\n");
}
free(buf);
return count;
}