]> jfr.im git - solanum.git/blame - librb/src/event.c
rename libratbox to librb, since its pretty modified anyway
[solanum.git] / librb / src / event.c
CommitLineData
db137867
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * event.c: Event functions.
4 *
5 * Copyright (C) 1998-2000 Regents of the University of California
6 * Copyright (C) 2001-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * Code borrowed from the squid web cache by Adrian Chadd.
10 * Original header:
11 *
12 * DEBUG: section 41 Event Processing
13 * AUTHOR: Henrik Nordstrom
14 *
15 * SQUID Internet Object Cache http://squid.nlanr.net/Squid/
16 * ----------------------------------------------------------
17 *
18 * Squid is the result of efforts by numerous individuals from the
19 * Internet community. Development is led by Duane Wessels of the
20 * National Laboratory for Applied Network Research and funded by the
21 * National Science Foundation. Squid is Copyrighted (C) 1998 by
22 * the Regents of the University of California. Please see the
23 * COPYRIGHT file for full details. Squid incorporates software
24 * developed and/or copyrighted by other sources. Please see the
25 * CREDITS file for full details.
26 *
27 * This program is free software; you can redistribute it and/or modify
28 * it under the terms of the GNU General Public License as published by
29 * the Free Software Foundation; either version 2 of the License, or
30 * (at your option) any later version.
31 *
32 * This program is distributed in the hope that it will be useful,
33 * but WITHOUT ANY WARRANTY; without even the implied warranty of
34 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 * GNU General Public License for more details.
36 *
37 * You should have received a copy of the GNU General Public License
38 * along with this program; if not, write to the Free Software
39 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
40 * USA
41 *
030272f3 42 * $Id: event.c 26272 2008-12-10 05:55:10Z androsyn $
db137867
AC
43 */
44
45#include <libratbox_config.h>
46#include <ratbox_lib.h>
47#include <commio-int.h>
48#include <event-int.h>
49
3202e249
VY
50#define EV_NAME_LEN 33
51static char last_event_ran[EV_NAME_LEN];
db137867
AC
52static rb_dlink_list event_list;
53
54static time_t event_time_min = -1;
db137867
AC
55
56/*
55abcbb2 57 * struct ev_entry *
db137867
AC
58 * rb_event_find(EVH *func, void *arg)
59 *
60 * Input: Event function and the argument passed to it
61 * Output: Index to the slow in the event_table
62 * Side Effects: None
63 */
64static struct ev_entry *
65rb_event_find(EVH * func, void *arg)
66{
67 rb_dlink_node *ptr;
68 struct ev_entry *ev;
69 RB_DLINK_FOREACH(ptr, event_list.head)
70 {
71 ev = ptr->data;
72 if((ev->func == func) && (ev->arg == arg))
73 return ev;
74 }
75
76 return NULL;
77}
78
8ace0906
SA
79static
80struct ev_entry *
81rb_event_add_common(const char *name, EVH * func, void *arg, time_t when, time_t frequency)
82{
83 struct ev_entry *ev;
84 ev = rb_malloc(sizeof(struct ev_entry));
85 ev->func = func;
86 ev->name = rb_strndup(name, EV_NAME_LEN);
87 ev->arg = arg;
88 ev->when = rb_current_time() + when;
89 ev->next = when;
90 ev->frequency = frequency;
91
92 if((ev->when < event_time_min) || (event_time_min == -1))
93 event_time_min = ev->when;
94
95 rb_dlinkAdd(ev, &ev->node, &event_list);
96 rb_io_sched_event(ev, when);
97 return ev;
98}
99
db137867 100/*
55abcbb2 101 * struct ev_entry *
db137867
AC
102 * rb_event_add(const char *name, EVH *func, void *arg, time_t when)
103 *
104 * Input: Name of event, function to call, arguments to pass, and frequency
105 * of the event.
106 * Output: None
107 * Side Effects: Adds the event to the event list.
108 */
109struct ev_entry *
110rb_event_add(const char *name, EVH * func, void *arg, time_t when)
111{
8db50c03
KB
112 if (rb_unlikely(when <= 0)) {
113 rb_lib_log("rb_event_add: tried to schedule %s event with a delay of "
114 "%d seconds", name, (int) when);
115 when = 1;
116 }
db137867 117
8ace0906 118 return rb_event_add_common(name, func, arg, when, when);
db137867 119}
3202e249 120
db137867
AC
121struct ev_entry *
122rb_event_addonce(const char *name, EVH * func, void *arg, time_t when)
123{
8db50c03
KB
124 if (rb_unlikely(when <= 0)) {
125 rb_lib_log("rb_event_addonce: tried to schedule %s event to run in "
126 "%d seconds", name, (int) when);
127 when = 1;
128 }
db137867 129
8ace0906 130 return rb_event_add_common(name, func, arg, when, 0);
db137867
AC
131}
132
133/*
134 * void rb_event_delete(struct ev_entry *ev)
135 *
136 * Input: pointer to ev_entry for the event
137 * Output: None
138 * Side Effects: Removes the event from the event list
139 */
140void
141rb_event_delete(struct ev_entry *ev)
142{
143 if(ev == NULL)
144 return;
145
146 rb_dlinkDelete(&ev->node, &event_list);
147 rb_io_unsched_event(ev);
3202e249 148 rb_free(ev->name);
db137867
AC
149 rb_free(ev);
150}
151
152/*
153 * void rb_event_find_delete(EVH *func, void *arg)
154 *
155 * Input: pointer to func and data
156 * Output: None
157 * Side Effects: Removes the event from the event list
158 */
159void
3202e249 160rb_event_find_delete(EVH * func, void *arg)
db137867
AC
161{
162 rb_event_delete(rb_event_find(func, arg));
163}
164
8ace0906
SA
165static time_t
166rb_event_frequency(time_t frequency)
167{
168 if(frequency < 0)
169 {
a1125230 170 const time_t two_third = (2 * labs(frequency)) / 3;
8ace0906
SA
171 frequency = two_third + ((rand() % 1000) * two_third) / 1000;
172 }
173 return frequency;
174}
175
55abcbb2 176/*
db137867
AC
177 * struct ev_entry *
178 * rb_event_addish(const char *name, EVH *func, void *arg, time_t delta_isa)
179 *
180 * Input: Name of event, function to call, arguments to pass, and frequency
181 * of the event.
182 * Output: None
183 * Side Effects: Adds the event to the event list within +- 1/3 of the
184 * specified frequency.
185 */
186struct ev_entry *
187rb_event_addish(const char *name, EVH * func, void *arg, time_t delta_ish)
188{
a1125230 189 delta_ish = labs(delta_ish);
db137867 190 if(delta_ish >= 3.0)
8ace0906
SA
191 delta_ish = -delta_ish;
192 return rb_event_add_common(name, func, arg,
193 rb_event_frequency(delta_ish), delta_ish);
db137867
AC
194}
195
196
197void
198rb_run_event(struct ev_entry *ev)
199{
3202e249 200 rb_strlcpy(last_event_ran, ev->name, sizeof(last_event_ran));
db137867
AC
201 ev->func(ev->arg);
202 if(!ev->frequency)
203 {
1d393245 204 rb_event_delete(ev);
db137867
AC
205 return;
206 }
8ace0906 207 ev->when = rb_current_time() + rb_event_frequency(ev->frequency);
db137867
AC
208 if((ev->when < event_time_min) || (event_time_min == -1))
209 event_time_min = ev->when;
210}
211
212/*
213 * void rb_event_run(void)
214 *
215 * Input: None
216 * Output: None
217 * Side Effects: Runs pending events in the event list
218 */
219void
220rb_event_run(void)
221{
222 rb_dlink_node *ptr, *next;
223 struct ev_entry *ev;
3202e249 224
db137867
AC
225 if(rb_io_supports_event())
226 return;
227
228 event_time_min = -1;
229 RB_DLINK_FOREACH_SAFE(ptr, next, event_list.head)
230 {
231 ev = ptr->data;
232 if(ev->when <= rb_current_time())
233 {
3202e249 234 rb_strlcpy(last_event_ran, ev->name, sizeof(last_event_ran));
db137867
AC
235 ev->func(ev->arg);
236
237 /* event is scheduled more than once */
3202e249 238 if(ev->frequency)
db137867 239 {
8ace0906 240 ev->when = rb_current_time() + rb_event_frequency(ev->frequency);
db137867
AC
241 if((ev->when < event_time_min) || (event_time_min == -1))
242 event_time_min = ev->when;
243 }
244 else
245 {
246 rb_dlinkDelete(&ev->node, &event_list);
247 rb_free(ev);
248 }
3202e249
VY
249 }
250 else
251 {
db137867
AC
252 if((ev->when < event_time_min) || (event_time_min == -1))
253 event_time_min = ev->when;
254 }
255 }
256}
257
258void
259rb_event_io_register_all(void)
260{
261 rb_dlink_node *ptr;
262 struct ev_entry *ev;
030272f3 263
db137867
AC
264 if(!rb_io_supports_event())
265 return;
3202e249 266
db137867 267 RB_DLINK_FOREACH(ptr, event_list.head)
3202e249 268 {
db137867 269 ev = ptr->data;
030272f3 270 rb_io_sched_event(ev, ev->next);
db137867
AC
271 }
272}
3202e249 273
db137867
AC
274/*
275 * void rb_event_init(void)
276 *
277 * Input: None
278 * Output: None
55abcbb2 279 * Side Effects: Initializes the event system.
db137867
AC
280 */
281void
282rb_event_init(void)
283{
3202e249 284 rb_strlcpy(last_event_ran, "NONE", sizeof(last_event_ran));
db137867
AC
285}
286
287void
288rb_dump_events(void (*func) (char *, void *), void *ptr)
289{
290 int len;
291 char buf[512];
292 rb_dlink_node *dptr;
293 struct ev_entry *ev;
294 len = sizeof(buf);
3202e249 295
5203cba5 296 snprintf(buf, len, "Last event to run: %s", last_event_ran);
3202e249
VY
297 func(buf, ptr);
298
db137867
AC
299 rb_strlcpy(buf, "Operation Next Execution", len);
300 func(buf, ptr);
301
302 RB_DLINK_FOREACH(dptr, event_list.head)
303 {
304 ev = dptr->data;
8ace0906
SA
305 snprintf(buf, len, "%-28s %-4ld seconds (frequency=%d)", ev->name,
306 ev->when - (long)rb_current_time(), (int)ev->frequency);
db137867
AC
307 func(buf, ptr);
308 }
309}
310
55abcbb2 311/*
db137867
AC
312 * void rb_set_back_events(time_t by)
313 * Input: Time to set back events by.
314 * Output: None.
315 * Side-effects: Sets back all events by "by" seconds.
316 */
317void
318rb_set_back_events(time_t by)
319{
320 rb_dlink_node *ptr;
321 struct ev_entry *ev;
322 RB_DLINK_FOREACH(ptr, event_list.head)
323 {
324 ev = ptr->data;
325 if(ev->when > by)
326 ev->when -= by;
327 else
328 ev->when = 0;
329 }
330}
331
332void
333rb_event_update(struct ev_entry *ev, time_t freq)
334{
335 if(ev == NULL)
336 return;
337
338 ev->frequency = freq;
339
8ace0906 340 /* update when it's scheduled to run if it's higher
db137867
AC
341 * than the new frequency
342 */
8ace0906
SA
343 time_t next = rb_event_frequency(freq);
344 if((rb_current_time() + next) < ev->when)
345 ev->when = rb_current_time() + next;
db137867
AC
346 return;
347}
348
349time_t
350rb_event_next(void)
351{
352 return event_time_min;
353}