5
5
#include "../hiredis.h"
6
6
#include "../async.h"
7
7
8
+ typedef struct redisLibhvEvents {
9
+ hio_t * io ;
10
+ htimer_t * timer ;
11
+ } redisLibhvEvents ;
12
+
8
13
static void redisLibhvHandleEvents (hio_t * io ) {
9
14
redisAsyncContext * context = (redisAsyncContext * )hevent_userdata (io );
10
15
int events = hio_events (io );
@@ -18,51 +23,100 @@ static void redisLibhvHandleEvents(hio_t* io) {
18
23
}
19
24
20
25
static void redisLibhvAddRead (void * privdata ) {
21
- hio_t * io = (hio_t * )privdata ;
22
- hio_add (io , redisLibhvHandleEvents , HV_READ );
26
+ redisLibhvEvents * events = (redisLibhvEvents * )privdata ;
27
+ hio_add (events -> io , redisLibhvHandleEvents , HV_READ );
23
28
}
24
29
25
30
static void redisLibhvDelRead (void * privdata ) {
26
- hio_t * io = (hio_t * )privdata ;
27
- hio_del (io , HV_READ );
31
+ redisLibhvEvents * events = (redisLibhvEvents * )privdata ;
32
+ hio_del (events -> io , HV_READ );
28
33
}
29
34
30
35
static void redisLibhvAddWrite (void * privdata ) {
31
- hio_t * io = (hio_t * )privdata ;
32
- hio_add (io , redisLibhvHandleEvents , HV_WRITE );
36
+ redisLibhvEvents * events = (redisLibhvEvents * )privdata ;
37
+ hio_add (events -> io , redisLibhvHandleEvents , HV_WRITE );
33
38
}
34
39
35
40
static void redisLibhvDelWrite (void * privdata ) {
36
- hio_t * io = (hio_t * )privdata ;
37
- hio_del (io , HV_WRITE );
41
+ redisLibhvEvents * events = (redisLibhvEvents * )privdata ;
42
+ hio_del (events -> io , HV_WRITE );
38
43
}
39
44
40
45
static void redisLibhvCleanup (void * privdata ) {
41
- hio_t * io = (hio_t * )privdata ;
42
- hio_close (io );
43
- hevent_set_userdata (io , NULL );
46
+ redisLibhvEvents * events = (redisLibhvEvents * )privdata ;
47
+
48
+ if (events -> timer )
49
+ htimer_del (events -> timer );
50
+
51
+ hio_close (events -> io );
52
+ hevent_set_userdata (events -> io , NULL );
53
+
54
+ hi_free (events );
55
+ }
56
+
57
+ static void redisLibhvTimeout (htimer_t * timer ) {
58
+ hio_t * io = (hio_t * )hevent_userdata (timer );
59
+ redisAsyncHandleTimeout (hevent_userdata (io ));
60
+ }
61
+
62
+ static void redisLibhvSetTimeout (void * privdata , struct timeval tv ) {
63
+ redisLibhvEvents * events ;
64
+ uint32_t millis ;
65
+ hloop_t * loop ;
66
+
67
+ events = (redisLibhvEvents * )privdata ;
68
+ millis = tv .tv_sec * 1000 + tv .tv_usec / 1000 ;
69
+
70
+ if (millis == 0 ) {
71
+ /* Libhv disallows zero'd timers so treat this as a delete or NO OP */
72
+ if (events -> timer ) {
73
+ htimer_del (events -> timer );
74
+ events -> timer = NULL ;
75
+ }
76
+ } else if (events -> timer == NULL ) {
77
+ /* Add new timer */
78
+ loop = hevent_loop (events -> io );
79
+ events -> timer = htimer_add (loop , redisLibhvTimeout , millis , 1 );
80
+ hevent_set_userdata (events -> timer , events -> io );
81
+ } else {
82
+ /* Update existing timer */
83
+ htimer_reset (events -> timer , millis );
84
+ }
44
85
}
45
86
46
87
static int redisLibhvAttach (redisAsyncContext * ac , hloop_t * loop ) {
47
88
redisContext * c = & (ac -> c );
89
+ redisLibhvEvents * events ;
48
90
hio_t * io = NULL ;
49
91
50
92
if (ac -> ev .data != NULL ) {
51
93
return REDIS_ERR ;
52
94
}
53
95
96
+ /* Create container struct to keep track of our io and any timer */
97
+ events = hi_malloc (sizeof (* events ));
98
+ if (events == NULL ) {
99
+ return REDIS_ERR ;
100
+ }
101
+
54
102
io = hio_get (loop , c -> fd );
55
103
if (io == NULL ) {
104
+ hi_free (events );
56
105
return REDIS_ERR ;
57
106
}
107
+
58
108
hevent_set_userdata (io , ac );
59
109
110
+ events -> io = io ;
111
+ events -> timer = NULL ;
112
+
60
113
ac -> ev .addRead = redisLibhvAddRead ;
61
114
ac -> ev .delRead = redisLibhvDelRead ;
62
115
ac -> ev .addWrite = redisLibhvAddWrite ;
63
116
ac -> ev .delWrite = redisLibhvDelWrite ;
64
117
ac -> ev .cleanup = redisLibhvCleanup ;
65
- ac -> ev .data = io ;
118
+ ac -> ev .scheduleTimer = redisLibhvSetTimeout ;
119
+ ac -> ev .data = events ;
66
120
67
121
return REDIS_OK ;
68
122
}
0 commit comments