]> Pileus Git - lackey/blob - cal/dummy.c
Start on events and calendars
[lackey] / cal / dummy.c
1 /*
2  * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <stdlib.h>
19
20 #include "main.h"
21 #include "event.h"
22
23 /* Test data */
24 static cal_t cal = {
25         .name  = "dummy",
26         .desc  = "dummy calendar",
27         .data  = NULL,
28 };
29
30 static event_t event = {
31         .cal   = &cal,
32         .start = {2012, OCT, 0, 12, 0},
33         .end   = {2012, OCT, 0, 13, 0},
34         .name  = "dummy event",
35         .desc  = "this event is random and does not exist",
36         .next  = NULL,
37 };
38
39 static event_t events[8];
40
41 /* Event functions */
42 event_t *dummy_get(cal_t *cal, year_t year, month_t month, day_t day, int days)
43 {
44         for (int i = 0; i < N_ELEMENTS(events); i++) {
45                 datetime_t *s = &events[i].start;
46                 datetime_t *e = &events[i].end;
47                 events[i] = event;
48                 add_days(&s->year, &s->month, &s->day, 7*i);
49                 add_days(&e->year, &e->month, &e->day, 7*i);
50                 if (i+1 < N_ELEMENTS(events))
51                         events[i].next = &events[i+1];
52         }
53         return &events[0];
54 }