From 98cf44a23e4216c7e2ba156a67eabdf21a224c91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sat, 2 Feb 2019 19:43:40 +0100 Subject: Broke read_vcalendar of into own file. --- calendar.c | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 calendar.c (limited to 'calendar.c') diff --git a/calendar.c b/calendar.c new file mode 100644 index 00000000..f99eb775 --- /dev/null +++ b/calendar.c @@ -0,0 +1,56 @@ +#include "calendar.h" + +/* + * These three are only for some FD hacks. + */ +#include +#include +#include +#include +#include +#include +#include + +#include "macro.h" +#include "parse.h" + +int read_vcalendar(vcalendar* cal, char* path) { + + DIR* dir = opendir(path); + struct dirent* d; + while ((d = readdir(dir)) != NULL) { + + /* Check that it's a regular file */ + if (d->d_type != DT_REG) continue; + + /* Check that we have an ICS file */ + char *s, *fname; + s = fname = d->d_name; + while (*(s++) != '.'); + + if (strcmp(s, "ics") != 0) continue; + + /* We now assume that it's a good file, and start parsing it */ + + int fd = openat(dirfd(dir), fname, O_RDONLY); + + FILE* f = fdopen(fd, "r"); + if (f == NULL) { + fprintf(stderr, "Error opening file [%s], errno = %i\n", + fname, errno); + exit (1); + } + + /* TODO currently the hedaers cal is overwritten each + * iteration (not really, since I don't save any headers). + * Preferably, a special case is made for vdir structures + * which can assume that all headers are equal. */ + parse_file(f, cal); + fclose(f); + + } + + closedir(dir); + + return 0; +} -- cgit v1.2.3