]> Pileus Git - lackey/blob - cals/dummy.c
Free unused cal memory memory
[lackey] / cals / 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 "util.h"
21 #include "date.h"
22 #include "cal.h"
23
24 /* Test data */
25 static cal_t cal = {
26         .name  = "dummy",
27         .desc  = "dummy calendar",
28         .data  = NULL,
29 };
30
31 static event_t event = {
32         .cal   = &cal,
33         .start = {2012, OCT, 0, 12, 0},
34         .end   = {2012, OCT, 0, 13, 0},
35         .name  = "dummy event",
36         .desc  = "this event is random and does not exist",
37 };
38
39 static todo_t todo = {
40         .cal     = &cal,
41         .name    = "dummy todo",
42         .desc    = "this todo is random and does not exist",
43         .due     = {2012, OCT, 0, 13, 0},
44         .status  = 50,
45 };
46
47 static int     enable;
48
49 /* Event functions */
50 event_t *dummy_events(date_t start, date_t end)
51 {
52         event_t *last = &event;
53         for (int i = 0; i < 8; i++) {
54                 last->next        = new0(event_t);
55                 last->next->cal   = event.cal;
56                 last->next->start = event.start;
57                 last->next->end   = event.end;
58                 last->next->name  = strcopy(event.name);
59                 last->next->desc  = strcopy(event.desc);
60
61                 date_t *s = &last->next->start;
62                 date_t *e = &last->next->end;
63                 add_days(&s->year, &s->month, &s->day, 7*i);
64                 add_days(&e->year, &e->month, &e->day, 7*i);
65
66                 last = last->next;
67                 last->next = NULL;
68         }
69         return enable ? event.next : 0;
70 }
71
72 /* Todo functions */
73 todo_t *dummy_todos(date_t start, date_t end)
74 {
75         todo_t *last = &todo;
76         for (int i = 0; i < 6; i++) {
77                 last->next = new0(event_t);
78                 last->next->cal    = todo.cal;
79                 last->next->name   = strcopy(todo.name);
80                 last->next->desc   = strcopy(todo.desc);
81                 last->next->due    = todo.due;
82                 last->next->status = todo.status;
83                 last = last->next;
84                 last->next = NULL;
85         }
86         return enable ? todo.next : 0;
87 }