[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 #define IOTIMERFLAG_PARENT_SOCKET  0x10
28
29 struct _IOTimerDescriptor;
30
31 extern struct _IOTimerDescriptor *iotimer_sorted_descriptors;
32
33 struct _IOTimerDescriptor {
34     unsigned int flags : 8;
35     void *parent; 
36     
37     struct timeval timeout;
38     struct timeval autoreload;
39     
40     struct _IOTimerDescriptor *prev, *next;
41 };
42
43 void _init_timers();
44 struct _IOTimerDescriptor _create_timer(struct timeval timeout);
45 void _destroy_timer(struct _IOTimerDescriptor *timer);
46
47 #endif
48
49 #define IOTIMER_CALLBACK(NAME) void NAME(struct IOTimerDescriptor *iotimer)
50 typedef IOTIMER_CALLBACK(iotimer_callback);
51
52 struct IOTimerDescriptor {
53     void *iotimer; /* struct _IOTimerDescriptor */
54     
55     iotimer_callback *callback;
56     void *data;
57 };
58
59 struct IOTimerDescriptor iotimer_create(struct timeval *timeout);
60 void iotimer_start(struct IOTimerDescriptor *iotimer);
61 void iotimer_set_autoreload(struct IOTimerDescriptor *iotimer, struct timeval *autoreload);
62 void iotimer_set_callback(struct IOTimerDescriptor *iotimer, iotimer_callback *callback);
63 void iotimer_destroy(struct IOTimerDescriptor *iotimer);
64
65 #endif