*** VERSION 5.2.0 ***
[NeonServV5.git] / src / timeq.c
1 /* timeq.c - NeonServ v5.2
2  * Copyright (C) 2011  Philipp Kreil (pk910)
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 "timeq.h"
19
20 static struct timeq_entry *timeq_events;
21
22 void timeq_tick() {
23     struct timeq_entry *entry, *next;
24     time_t now = time(0);
25     for(entry = timeq_events; entry; entry = next) {
26         if(entry->execute <= now) {
27             entry->callback(entry->data);
28             next = entry->next;
29             free(entry);
30         } else
31             break;
32     }
33     timeq_events = entry;
34 }
35
36 struct timeq_entry* timeq_add(int seconds, timeq_callback_t *callback, void *data) {
37     time_t now = time(0);
38     struct timeq_entry *entry = malloc(sizeof(*entry));
39     if (!entry)
40     {
41         perror("malloc() failed");
42         return NULL;
43     }
44     entry->execute = now + seconds;
45     entry->callback = callback;
46     entry->data = data;
47     entry->name = NULL;
48     struct timeq_entry *next, *prev = NULL;
49     for(next = timeq_events; next; next = next->next) {
50         if(next->execute >= entry->execute)
51             break;
52         else
53             prev = next;
54     }
55     if(prev == NULL) {
56         entry->next = timeq_events;
57         timeq_events = entry;
58     } else {
59         entry->next = next;
60         prev->next = entry;
61     }
62     return entry;
63 }
64
65 struct timeq_entry* timeq_add_name(char *name, int seconds, timeq_callback_t *callback, void *data) {
66     struct timeq_entry *entry = timeq_add(seconds, callback, data);
67     entry->name = strdup(name);
68     return entry;
69 }
70
71 int timeq_del(struct timeq_entry* entry) {
72     struct timeq_entry *centry, *last = NULL;
73     for(centry = timeq_events; centry; centry = centry->next) {
74         if(centry == entry) {
75             if(last)
76                 last->next = centry->next;
77             else
78                 timeq_events = centry->next;
79             if(centry->name)
80                 free(centry->name);
81             free(centry);
82             return 1;
83         } else {
84             last = centry;
85         }
86     }
87     return 0;
88 }
89
90 int timeq_del_name(char *name) {
91     struct timeq_entry *centry, *last = NULL;
92     for(centry = timeq_events; centry; centry = centry->next) {
93         if(centry->name && !stricmp(centry->name, name)) {
94             if(last)
95                 last->next = centry->next;
96             else
97                 timeq_events = centry->next;
98             free(centry->name);
99             free(centry);
100             return 1;
101         } else {
102             last = centry;
103         }
104     }
105     return 0;
106 }
107
108 int timeq_name_exists(char *name) {
109     struct timeq_entry *centry;
110     for(centry = timeq_events; centry; centry = centry->next) {
111         if(centry->name && !stricmp(centry->name, name)) {
112             return 1;
113         }
114     }
115     return 0;
116 }