modified code to use IOHandler functions instead of own ones
[NeonServV5.git] / src / timeq.c
1 /* timeq.c - NeonServ v5.5
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 #include "IOHandler.h"
20
21 static struct timeq_entry *timeq_events;
22 #ifdef HAVE_THREADS
23 static int pthread_mutex_initialized = 0;
24 static pthread_mutex_t synchronized;
25 #endif
26
27 static IOHANDLER_CALLBACK(timeq_callback) {
28     struct timeq_entry *entry = event->iofd->data;
29     switch(event->type) {
30     case IOEVENT_TIMEOUT:
31         entry->callback(entry->data);
32         timeq_del(entry);
33         break;
34     default:
35         break;
36     }
37 }
38
39 struct timeq_entry* timeq_add(int seconds, int module_id, timeq_callback_t *callback, void *data) {
40     return timeq_uadd(seconds * 1000, module_id, callback, data);
41 }
42
43 struct timeq_entry* timeq_uadd(int useconds, int module_id, timeq_callback_t *callback, void *data) {
44     struct timeval timeout;
45     struct timeq_entry *entry = malloc(sizeof(*entry));
46     if (!entry)
47     {
48         perror("malloc() failed");
49         return NULL;
50     }
51     if(!pthread_mutex_initialized) {
52         THREAD_MUTEX_INIT(synchronized);
53         pthread_mutex_initialized = 1;
54     }
55     gettimeofday(&timeout, NULL);
56     SYNCHRONIZE(synchronized);
57     timeout.tv_usec += (useconds % 1000);
58     timeout.tv_sec += (useconds / 1000);
59     entry->iofd = iohandler_timer(timeout, timeq_callback);
60     entry->iofd->data = entry;
61     entry->module_id = module_id;
62     entry->callback = callback;
63     entry->data = data;
64     entry->name = NULL;
65     entry->next = timeq_events;
66     entry->prev = NULL;
67     timeq_events->prev = entry;
68     timeq_events = entry;
69     DESYNCHRONIZE(synchronized);
70     return entry;
71 }
72
73 struct timeq_entry* timeq_add_name(char *name, int seconds, int module_id, timeq_callback_t *callback, void *data) {
74     return timeq_uadd_name(name, seconds * 1000, module_id, callback, data);
75 }
76
77 struct timeq_entry* timeq_uadd_name(char *name, int useconds, int module_id, timeq_callback_t *callback, void *data) {
78     struct timeq_entry *entry = timeq_uadd(useconds, module_id, callback, data);
79     entry->name = strdup(name);
80     return entry;
81 }
82
83 int timeq_del(struct timeq_entry* entry) {
84     if(!pthread_mutex_initialized) return 0;
85     SYNCHRONIZE(synchronized);
86     if(entry->next)
87         entry->next->prev = entry->prev;
88     if(entry->prev)
89         entry->prev->next = entry->next;
90     else
91         timeq_events = entry->next;
92     if(entry->name)
93         free(entry->name);
94     iohandler_close(entry->iofd);
95     free(entry);
96     DESYNCHRONIZE(synchronized);
97     return 1;
98 }
99
100 int timeq_del_name(char *name) {
101     SYNCHRONIZE(synchronized);
102     struct timeq_entry *entry;
103     int removed = 0;
104     for(entry = timeq_events; entry; entry = entry->next) {
105         if(entry->name && !stricmp(entry->name, name)) {
106             removed = timeq_del(entry);
107             break;
108         }
109     }
110     DESYNCHRONIZE(synchronized);
111     return removed;
112 }
113
114 int timeq_name_exists(char *name) {
115     SYNCHRONIZE(synchronized);
116     struct timeq_entry *centry;
117     for(centry = timeq_events; centry; centry = centry->next) {
118         if(centry->name && !stricmp(centry->name, name)) {
119             DESYNCHRONIZE(synchronized);
120             return 1;
121         }
122     }
123     DESYNCHRONIZE(synchronized);
124     return 0;
125 }
126
127 void unregister_module_timers(int module_id) {
128     SYNCHRONIZE(synchronized);
129     struct timeq_entry *entry, *next_entry;
130     for(entry = timeq_events; entry; entry = next_entry) {
131         next_entry = entry->next;
132         if(entry->module_id == module_id)
133             timeq_del(entry);
134     }
135     DESYNCHRONIZE(synchronized);
136 }