1999-02-12 06:18:36 +08:00
|
|
|
/*
|
|
|
|
* BIRD Library -- Event Processing
|
|
|
|
*
|
|
|
|
* (c) 1999 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
2000-06-05 20:19:12 +08:00
|
|
|
/**
|
|
|
|
* DOC: Events
|
|
|
|
*
|
|
|
|
* Events are there to keep track of deferred execution.
|
|
|
|
* Since BIRD is single-threaded, it requires long lasting tasks to be split to smaller
|
|
|
|
* parts, so that no module can monopolize the CPU. To split such a task, just create
|
|
|
|
* an &event resource, point it to the function you want to have called and call ev_schedule()
|
2000-06-07 21:25:53 +08:00
|
|
|
* to ask the core to run the event when nothing more important requires attention.
|
2000-06-05 20:19:12 +08:00
|
|
|
*
|
|
|
|
* You can also define your own event lists (the &event_list structure), enqueue your
|
|
|
|
* events in them and explicitly ask to run them.
|
|
|
|
*/
|
|
|
|
|
1999-02-12 06:18:36 +08:00
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "lib/event.h"
|
|
|
|
|
|
|
|
event_list global_event_list;
|
|
|
|
|
|
|
|
inline void
|
|
|
|
ev_postpone(event *e)
|
|
|
|
{
|
2014-11-03 17:42:55 +08:00
|
|
|
if (ev_active(e))
|
1999-02-12 06:18:36 +08:00
|
|
|
{
|
|
|
|
rem_node(&e->n);
|
|
|
|
e->n.next = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ev_dump(resource *r)
|
|
|
|
{
|
|
|
|
event *e = (event *) r;
|
|
|
|
|
|
|
|
debug("(code %p, data %p, %s)\n",
|
|
|
|
e->hook,
|
|
|
|
e->data,
|
|
|
|
e->n.next ? "scheduled" : "inactive");
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct resclass ev_class = {
|
|
|
|
"Event",
|
1999-02-12 06:59:06 +08:00
|
|
|
sizeof(event),
|
1999-02-12 06:18:36 +08:00
|
|
|
(void (*)(resource *)) ev_postpone,
|
2010-02-21 21:34:53 +08:00
|
|
|
ev_dump,
|
2010-06-03 04:20:40 +08:00
|
|
|
NULL,
|
2010-02-21 21:34:53 +08:00
|
|
|
NULL
|
1999-02-12 06:18:36 +08:00
|
|
|
};
|
|
|
|
|
2000-06-05 20:19:12 +08:00
|
|
|
/**
|
|
|
|
* ev_new - create a new event
|
|
|
|
* @p: resource pool
|
|
|
|
*
|
|
|
|
* This function creates a new event resource. To use it,
|
|
|
|
* you need to fill the structure fields and call ev_schedule().
|
|
|
|
*/
|
1999-02-12 06:18:36 +08:00
|
|
|
event *
|
|
|
|
ev_new(pool *p)
|
|
|
|
{
|
|
|
|
event *e = ralloc(p, &ev_class);
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
2000-06-05 20:19:12 +08:00
|
|
|
/**
|
|
|
|
* ev_run - run an event
|
|
|
|
* @e: an event
|
|
|
|
*
|
|
|
|
* This function explicitly runs the event @e (calls its hook
|
|
|
|
* function) and removes it from an event list if it's linked to any.
|
|
|
|
*
|
|
|
|
* From the hook function, you can call ev_enqueue() or ev_schedule()
|
|
|
|
* to re-add the event.
|
|
|
|
*/
|
2000-04-28 06:28:49 +08:00
|
|
|
inline void
|
1999-02-12 06:18:36 +08:00
|
|
|
ev_run(event *e)
|
|
|
|
{
|
2000-04-28 06:28:49 +08:00
|
|
|
ev_postpone(e);
|
|
|
|
e->hook(e->data);
|
1999-02-12 06:18:36 +08:00
|
|
|
}
|
|
|
|
|
2000-06-05 20:19:12 +08:00
|
|
|
/**
|
|
|
|
* ev_enqueue - enqueue an event
|
|
|
|
* @l: an event list
|
|
|
|
* @e: an event
|
|
|
|
*
|
|
|
|
* ev_enqueue() stores the event @e to the specified event
|
|
|
|
* list @l which can be run by calling ev_run_list().
|
|
|
|
*/
|
1999-02-12 06:18:36 +08:00
|
|
|
inline void
|
|
|
|
ev_enqueue(event_list *l, event *e)
|
|
|
|
{
|
2000-04-28 06:28:49 +08:00
|
|
|
ev_postpone(e);
|
1999-02-12 06:18:36 +08:00
|
|
|
add_tail(l, &e->n);
|
|
|
|
}
|
|
|
|
|
2000-06-05 20:19:12 +08:00
|
|
|
/**
|
|
|
|
* ev_schedule - schedule an event
|
|
|
|
* @e: an event
|
|
|
|
*
|
|
|
|
* This function schedules an event by enqueueing it to a system-wide
|
|
|
|
* event list which is run by the platform dependent code whenever
|
|
|
|
* appropriate.
|
|
|
|
*/
|
1999-02-12 06:18:36 +08:00
|
|
|
void
|
|
|
|
ev_schedule(event *e)
|
|
|
|
{
|
|
|
|
ev_enqueue(&global_event_list, e);
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:41:14 +08:00
|
|
|
void io_log_event(void *hook, void *data);
|
|
|
|
|
2000-06-05 20:19:12 +08:00
|
|
|
/**
|
|
|
|
* ev_run_list - run an event list
|
|
|
|
* @l: an event list
|
|
|
|
*
|
|
|
|
* This function calls ev_run() for all events enqueued in the list @l.
|
|
|
|
*/
|
1999-11-17 20:01:11 +08:00
|
|
|
int
|
1999-02-12 06:18:36 +08:00
|
|
|
ev_run_list(event_list *l)
|
|
|
|
{
|
2008-12-19 06:26:08 +08:00
|
|
|
node *n;
|
2000-04-28 06:28:49 +08:00
|
|
|
list tmp_list;
|
1999-10-29 20:08:49 +08:00
|
|
|
|
2000-04-28 06:28:49 +08:00
|
|
|
init_list(&tmp_list);
|
|
|
|
add_tail_list(&tmp_list, l);
|
|
|
|
init_list(l);
|
2008-12-19 06:26:08 +08:00
|
|
|
WALK_LIST_FIRST(n, tmp_list)
|
1999-02-12 06:18:36 +08:00
|
|
|
{
|
1999-10-29 20:08:49 +08:00
|
|
|
event *e = SKIP_BACK(event, n, n);
|
2015-03-02 16:41:14 +08:00
|
|
|
|
|
|
|
/* This is ugly hack, we want to log just events executed from the main I/O loop */
|
|
|
|
if (l == &global_event_list)
|
|
|
|
io_log_event(e->hook, e->data);
|
|
|
|
|
2000-01-17 01:39:16 +08:00
|
|
|
ev_run(e);
|
1999-02-12 06:18:36 +08:00
|
|
|
}
|
2000-01-17 01:39:16 +08:00
|
|
|
return !EMPTY_LIST(*l);
|
1999-02-12 06:18:36 +08:00
|
|
|
}
|