[IOMultiplexerV2] dev snapshot
[NextIRCd.git] / src / IOTimer.h
1 /* IOTimer.h - IOMultiplexer v2
2  * Copyright (C) 2014  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 #ifndef _IOTimer_h
18 #define _IOTimer_h
19 #ifndef _IOHandler_internals
20 #include "IOHandler.h"
21 #else
22
23 #define IOTIMERFLAG_PERIODIC       0x01
24 #define IOTIMERFLAG_ACTIVE         0x02
25 #define IOTIMERFLAG_IN_LIST        0x04
26 #define IOTIMERFLAG_PARENT_PUBLIC  0x08
27
28 struct _IOTimerDescriptor;
29
30 extern struct _IOTimerDescriptor *iotimer_sorted_descriptors;
31
32 struct _IOTimerDescriptor {
33     unsigned int flags : 8;
34     void *parent; 
35     
36     struct timeval timeout;
37     struct timeval autoreload;
38     
39     struct _IOTimerDescriptor *prev, *next;
40 };
41
42 void _init_timers();
43 struct _IOTimerDescriptor _create_timer(struct timeval timeout);
44 void _destroy_timer(struct _IOTimerDescriptor *timer);
45
46 #endif
47
48 #define IOTIMER_CALLBACK(NAME) void NAME(struct IOTimerDescriptor *iotimer)
49 typedef IOTIMER_CALLBACK(iotimer_callback);
50
51 struct IOTimerDescriptor {
52     void *iotimer; /* struct _IOTimerDescriptor */
53     
54     iotimer_callback *callback;
55     void *data;
56 };
57
58 struct IOTimerDescriptor iotimer_create(struct timeval *timeout);
59 void iotimer_start(struct IOTimerDescriptor *iotimer);
60 void iotimer_set_autoreload(struct IOTimerDescriptor *iotimer, struct timeval *autoreload);
61 void iotimer_set_callback(struct IOTimerDescriptor *iotimer, iotimer_callback *callback);
62 void iotimer_destroy(struct IOTimerDescriptor *iotimer);
63
64 #endif