tevent: pass down handler_name and location to the backend layer
[samba.git] / lib / tevent / tevent_timed.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    common events code for timed events
5
6    Copyright (C) Andrew Tridgell        2003-2006
7    Copyright (C) Stefan Metzmacher      2005
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 #include "replace.h"
24 #include "system/time.h"
25 #include "tevent.h"
26 #include "tevent_internal.h"
27 #include "tevent_util.h"
28
29 /**
30   compare two timeval structures. 
31   Return -1 if tv1 < tv2
32   Return 0 if tv1 == tv2
33   Return 1 if tv1 > tv2
34 */
35 static int ev_timeval_compare(const struct timeval *tv1, const struct timeval *tv2)
36 {
37         if (tv1->tv_sec  > tv2->tv_sec)  return 1;
38         if (tv1->tv_sec  < tv2->tv_sec)  return -1;
39         if (tv1->tv_usec > tv2->tv_usec) return 1;
40         if (tv1->tv_usec < tv2->tv_usec) return -1;
41         return 0;
42 }
43
44 /**
45   return a zero timeval
46 */
47 static struct timeval ev_timeval_zero(void)
48 {
49         struct timeval tv;
50         tv.tv_sec = 0;
51         tv.tv_usec = 0;
52         return tv;
53 }
54
55 /**
56   return a timeval for the current time
57 */
58 static struct timeval ev_timeval_current(void)
59 {
60         struct timeval tv;
61         gettimeofday(&tv, NULL);
62         return tv;
63 }
64
65 /**
66   return a timeval struct with the given elements
67 */
68 static struct timeval ev_timeval_set(uint32_t secs, uint32_t usecs)
69 {
70         struct timeval tv;
71         tv.tv_sec = secs;
72         tv.tv_usec = usecs;
73         return tv;
74 }
75
76 /**
77   return the difference between two timevals as a timeval
78   if tv1 comes after tv2, then return a zero timeval
79   (this is *tv2 - *tv1)
80 */
81 static struct timeval ev_timeval_until(const struct timeval *tv1,
82                                         const struct timeval *tv2)
83 {
84         struct timeval t;
85         if (ev_timeval_compare(tv1, tv2) >= 0) {
86                 return ev_timeval_zero();
87         }
88         t.tv_sec = tv2->tv_sec - tv1->tv_sec;
89         if (tv1->tv_usec > tv2->tv_usec) {
90                 t.tv_sec--;
91                 t.tv_usec = 1000000 - (tv1->tv_usec - tv2->tv_usec);
92         } else {
93                 t.tv_usec = tv2->tv_usec - tv1->tv_usec;
94         }
95         return t;
96 }
97
98 /**
99   return true if a timeval is zero
100 */
101 bool ev_timeval_is_zero(const struct timeval *tv)
102 {
103         return tv->tv_sec == 0 && tv->tv_usec == 0;
104 }
105
106 /*
107   destroy a timed event
108 */
109 static int tevent_common_timed_destructor(struct tevent_timer *te)
110 {
111         struct tevent_context *ev = talloc_get_type(te->event_ctx,
112                                                    struct tevent_context);
113         DLIST_REMOVE(ev->timer_events, te);
114         return 0;
115 }
116
117 static int tevent_common_timed_deny_destructor(struct tevent_timer *te)
118 {
119         return -1;
120 }
121
122 /*
123   add a timed event
124   return NULL on failure (memory allocation error)
125 */
126 struct tevent_timer *tevent_common_add_timer(struct tevent_context *ev, TALLOC_CTX *mem_ctx,
127                                              struct timeval next_event,
128                                              tevent_timer_handler_t handler,
129                                              void *private_data,
130                                              const char *handler_name,
131                                              const char *location)
132 {
133         struct tevent_timer *te, *last_te, *cur_te;
134
135         te = talloc(mem_ctx?mem_ctx:ev, struct tevent_timer);
136         if (te == NULL) return NULL;
137
138         te->event_ctx           = ev;
139         te->next_event          = next_event;
140         te->handler             = handler;
141         te->private_data        = private_data;
142         te->handler_name        = handler_name;
143         te->location            = location;
144         te->additional_data     = NULL;
145
146         /* keep the list ordered */
147         last_te = NULL;
148         for (cur_te = ev->timer_events; cur_te; cur_te = cur_te->next) {
149                 /* if the new event comes before the current one break */
150                 if (ev_timeval_compare(&te->next_event, &cur_te->next_event) < 0) {
151                         break;
152                 }
153
154                 last_te = cur_te;
155         }
156
157         DLIST_ADD_AFTER(ev->timer_events, te, last_te);
158
159         talloc_set_destructor(te, tevent_common_timed_destructor);
160
161         return te;
162 }
163
164 /*
165   do a single event loop using the events defined in ev
166
167   return the delay untill the next timed event,
168   or zero if a timed event was triggered
169 */
170 struct timeval tevent_common_loop_timer_delay(struct tevent_context *ev)
171 {
172         struct timeval current_time = ev_timeval_zero();
173         struct tevent_timer *te = ev->timer_events;
174
175         if (!te) {
176                 /* have a default tick time of 30 seconds. This guarantees
177                    that code that uses its own timeout checking will be
178                    able to proceeed eventually */
179                 return ev_timeval_set(30, 0);
180         }
181
182         /*
183          * work out the right timeout for the next timed event
184          *
185          * avoid the syscall to gettimeofday() if the timed event should
186          * be triggered directly
187          *
188          * if there's a delay till the next timed event, we're done
189          * with just returning the delay
190          */
191         if (!ev_timeval_is_zero(&te->next_event)) {
192                 struct timeval delay;
193
194                 current_time = ev_timeval_current();
195
196                 delay = ev_timeval_until(&current_time, &te->next_event);
197                 if (!ev_timeval_is_zero(&delay)) {
198                         return delay;
199                 }
200         }
201
202         /*
203          * ok, we have a timed event that we'll process ...
204          */
205
206         /* deny the handler to free the event */
207         talloc_set_destructor(te, tevent_common_timed_deny_destructor);
208
209         /* We need to remove the timer from the list before calling the
210          * handler because in a semi-async inner event loop called from the
211          * handler we don't want to come across this event again -- vl */
212         DLIST_REMOVE(ev->timer_events, te);
213
214         /*
215          * If the timed event was registered for a zero current_time,
216          * then we pass a zero timeval here too! To avoid the
217          * overhead of gettimeofday() calls.
218          *
219          * otherwise we pass the current time
220          */
221         te->handler(ev, te, current_time, te->private_data);
222
223         /* The destructor isn't necessary anymore, we've already removed the
224          * event from the list. */
225         talloc_set_destructor(te, NULL);
226
227         talloc_free(te);
228
229         return ev_timeval_zero();
230 }
231