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