2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Volker Lendecke 2005
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 struct timed_event
*next
, *prev
;
25 struct event_context
*event_ctx
;
27 const char *event_name
;
28 void (*handler
)(struct event_context
*event_ctx
,
29 struct timed_event
*te
,
30 const struct timeval
*now
,
36 struct fd_event
*prev
, *next
;
37 struct event_context
*event_ctx
;
39 uint16_t flags
; /* see EVENT_FD_* flags */
40 void (*handler
)(struct event_context
*event_ctx
,
41 struct fd_event
*event
,
47 #define EVENT_FD_WRITEABLE(fde) \
48 event_set_fd_flags(fde, event_get_fd_flags(fde) | EVENT_FD_WRITE)
49 #define EVENT_FD_READABLE(fde) \
50 event_set_fd_flags(fde, event_get_fd_flags(fde) | EVENT_FD_READ)
52 #define EVENT_FD_NOT_WRITEABLE(fde) \
53 event_set_fd_flags(fde, event_get_fd_flags(fde) & ~EVENT_FD_WRITE)
54 #define EVENT_FD_NOT_READABLE(fde) \
55 event_set_fd_flags(fde, event_get_fd_flags(fde) & ~EVENT_FD_READ)
57 struct event_context
{
58 struct timed_event
*timed_events
;
59 struct fd_event
*fd_events
;
62 static int timed_event_destructor(struct timed_event
*te
)
64 DEBUG(10, ("Destroying timed event %lx \"%s\"\n", (unsigned long)te
,
66 DLIST_REMOVE(te
->event_ctx
->timed_events
, te
);
70 /****************************************************************************
72 ****************************************************************************/
74 static void add_event_by_time(struct timed_event
*te
)
76 struct event_context
*ctx
= te
->event_ctx
;
77 struct timed_event
*last_te
, *cur_te
;
79 /* Keep the list ordered by time. We must preserve this. */
81 for (cur_te
= ctx
->timed_events
; cur_te
; cur_te
= cur_te
->next
) {
82 /* if the new event comes before the current one break */
83 if (!timeval_is_zero(&cur_te
->when
) &&
84 timeval_compare(&te
->when
, &cur_te
->when
) < 0) {
90 DLIST_ADD_AFTER(ctx
->timed_events
, te
, last_te
);
93 /****************************************************************************
94 Schedule a function for future calling, cancel with TALLOC_FREE().
95 It's the responsibility of the handler to call TALLOC_FREE() on the event
97 ****************************************************************************/
99 struct timed_event
*event_add_timed(struct event_context
*event_ctx
,
102 const char *event_name
,
103 void (*handler
)(struct event_context
*event_ctx
,
104 struct timed_event
*te
,
105 const struct timeval
*now
,
109 struct timed_event
*te
;
111 te
= TALLOC_P(mem_ctx
, struct timed_event
);
113 DEBUG(0, ("talloc failed\n"));
117 te
->event_ctx
= event_ctx
;
119 te
->event_name
= event_name
;
120 te
->handler
= handler
;
121 te
->private_data
= private_data
;
123 add_event_by_time(te
);
125 talloc_set_destructor(te
, timed_event_destructor
);
127 DEBUG(10, ("Added timed event \"%s\": %lx\n", event_name
,
132 static int fd_event_destructor(struct fd_event
*fde
)
134 struct event_context
*event_ctx
= fde
->event_ctx
;
136 DLIST_REMOVE(event_ctx
->fd_events
, fde
);
140 struct fd_event
*event_add_fd(struct event_context
*event_ctx
,
142 int fd
, uint16_t flags
,
143 void (*handler
)(struct event_context
*event_ctx
,
144 struct fd_event
*event
,
149 struct fd_event
*fde
;
151 if (!(fde
= TALLOC_P(mem_ctx
, struct fd_event
))) {
155 fde
->event_ctx
= event_ctx
;
158 fde
->handler
= handler
;
159 fde
->private_data
= private_data
;
161 DLIST_ADD(event_ctx
->fd_events
, fde
);
163 talloc_set_destructor(fde
, fd_event_destructor
);
167 void event_fd_set_writeable(struct fd_event
*fde
)
169 fde
->flags
|= EVENT_FD_WRITE
;
172 void event_fd_set_not_writeable(struct fd_event
*fde
)
174 fde
->flags
&= ~EVENT_FD_WRITE
;
177 void event_fd_set_readable(struct fd_event
*fde
)
179 fde
->flags
|= EVENT_FD_READ
;
182 void event_fd_set_not_readable(struct fd_event
*fde
)
184 fde
->flags
&= ~EVENT_FD_READ
;
188 * Return if there's something in the queue
191 bool event_add_to_select_args(struct event_context
*event_ctx
,
192 const struct timeval
*now
,
193 fd_set
*read_fds
, fd_set
*write_fds
,
194 struct timeval
*timeout
, int *maxfd
)
196 struct fd_event
*fde
;
200 for (fde
= event_ctx
->fd_events
; fde
; fde
= fde
->next
) {
201 if (fde
->flags
& EVENT_FD_READ
) {
202 FD_SET(fde
->fd
, read_fds
);
205 if (fde
->flags
& EVENT_FD_WRITE
) {
206 FD_SET(fde
->fd
, write_fds
);
210 if ((fde
->flags
& (EVENT_FD_READ
|EVENT_FD_WRITE
))
211 && (fde
->fd
> *maxfd
)) {
216 if (event_ctx
->timed_events
== NULL
) {
220 diff
= timeval_until(now
, &event_ctx
->timed_events
->when
);
221 *timeout
= timeval_min(timeout
, &diff
);
226 bool events_pending(struct event_context
*event_ctx
)
228 struct fd_event
*fde
;
230 if (event_ctx
->timed_events
!= NULL
) {
233 for (fde
= event_ctx
->fd_events
; fde
; fde
= fde
->next
) {
234 if (fde
->flags
& (EVENT_FD_READ
|EVENT_FD_WRITE
)) {
241 bool run_events(struct event_context
*event_ctx
,
242 int selrtn
, fd_set
*read_fds
, fd_set
*write_fds
)
245 struct fd_event
*fde
, *next
;
247 /* Run all events that are pending, not just one (as we
250 while (event_ctx
->timed_events
) {
255 &now
, &event_ctx
->timed_events
->when
) < 0) {
256 /* Nothing to do yet */
257 DEBUG(11, ("run_events: Nothing to do\n"));
261 DEBUG(10, ("Running event \"%s\" %lx\n",
262 event_ctx
->timed_events
->event_name
,
263 (unsigned long)event_ctx
->timed_events
));
265 event_ctx
->timed_events
->handler(
267 event_ctx
->timed_events
, &now
,
268 event_ctx
->timed_events
->private_data
);
275 * We might have changed the socket status during the timed
276 * events, return to run select again.
288 for (fde
= event_ctx
->fd_events
; fde
; fde
= next
) {
292 if (FD_ISSET(fde
->fd
, read_fds
)) flags
|= EVENT_FD_READ
;
293 if (FD_ISSET(fde
->fd
, write_fds
)) flags
|= EVENT_FD_WRITE
;
295 if (flags
& fde
->flags
) {
296 fde
->handler(event_ctx
, fde
, flags
, fde
->private_data
);
305 struct timeval
*get_timed_events_timeout(struct event_context
*event_ctx
,
306 struct timeval
*to_ret
)
310 if (event_ctx
->timed_events
== NULL
) {
314 now
= timeval_current();
315 *to_ret
= timeval_until(&now
, &event_ctx
->timed_events
->when
);
317 DEBUG(10, ("timed_events_timeout: %d/%d\n", (int)to_ret
->tv_sec
,
318 (int)to_ret
->tv_usec
));
323 int event_loop_once(struct event_context
*ev
)
325 struct timeval now
, to
;
333 to
.tv_sec
= 9999; /* Max timeout */
338 if (!event_add_to_select_args(ev
, &now
, &r_fds
, &w_fds
, &to
, &maxfd
)) {
342 if (timeval_is_zero(&to
)) {
343 run_events(ev
, 0, NULL
, NULL
);
347 ret
= sys_select(maxfd
, &r_fds
, &w_fds
, NULL
, &to
);
349 if (ret
== -1 && errno
!= EINTR
) {
353 run_events(ev
, ret
, &r_fds
, &w_fds
);
357 struct event_context
*event_context_init(TALLOC_CTX
*mem_ctx
)
359 return TALLOC_ZERO_P(NULL
, struct event_context
);
362 int set_event_dispatch_time(struct event_context
*event_ctx
,
363 const char *event_name
, struct timeval when
)
365 struct timed_event
*te
;
367 for (te
= event_ctx
->timed_events
; te
; te
= te
->next
) {
368 if (strcmp(event_name
, te
->event_name
) == 0) {
369 DLIST_REMOVE(event_ctx
->timed_events
, te
);
371 add_event_by_time(te
);
378 /* Returns 1 if event was found and cancelled, 0 otherwise. */
380 int cancel_named_event(struct event_context
*event_ctx
,
381 const char *event_name
)
383 struct timed_event
*te
;
385 for (te
= event_ctx
->timed_events
; te
; te
= te
->next
) {
386 if (strcmp(event_name
, te
->event_name
) == 0) {
394 void dump_event_list(struct event_context
*event_ctx
)
396 struct timed_event
*te
;
398 struct timeval evt
, now
;
404 now
= timeval_current();
406 DEBUG(10,("dump_event_list:\n"));
408 for (te
= event_ctx
->timed_events
; te
; te
= te
->next
) {
410 evt
= timeval_until(&now
, &te
->when
);
412 DEBUGADD(10,("Timed Event \"%s\" %lx handled in %d seconds (at %s)\n",
416 http_timestring(te
->when
.tv_sec
)));
419 for (fe
= event_ctx
->fd_events
; fe
; fe
= fe
->next
) {
421 DEBUGADD(10,("FD Event %d %lx, flags: 0x%04x\n",