4 * @brief Event-Queue based on class linked_list_t
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23 #ifndef EVENT_QUEUE_H_
24 #define EVENT_QUEUE_H_
29 #include <queues/jobs/job.h>
32 * @brief Event-Queue used to store timed events.
34 * Although the event-queue is based on a linked_list_t
35 * all access functions are thread-save implemented.
37 typedef struct event_queue_s event_queue_t
;
39 struct event_queue_s
{
42 * @brief Returns number of events in queue.
44 * @param event_queue calling object
45 * @return number of events in queue
47 int (*get_count
) (event_queue_t
*event_queue
);
50 * @brief Get the next job from the event-queue.
52 * If no event is pending, this function blocks until a job can be returned.
54 * @param event_queue calling object
55 * @param[out] job pointer to a job pointer where to job is returned to
56 * @return - SUCCESS if succeeded
57 * - FAILED otherwisesa
59 status_t (*get
) (event_queue_t
*event_queue
, job_t
**job
);
62 * @brief Adds a event to the queue, using a relative time.
64 * This function is non blocking and adds a job_t at a specific time to the list.
65 * The specific job object has to get destroyed by the thread which
68 * @param event_queue calling object
69 * @param[in] job job to add to the queue (job is not copied)
70 * @param[in] time relative time, when the event has to get fired
72 * - SUCCESS if succeeded
75 status_t (*add_relative
) (event_queue_t
*event_queue
, job_t
*job
, u_int32_t ms
);
78 * @brief Adds a event to the queue, using an absolute time.
80 * This function is non blocking and adds a job_t at a specific time to the list.
81 * The specific job object has to get destroyed by the thread which
84 * @param event_queue calling object
85 * @param[in] job job to add to the queue (job is not copied)
86 * @param[in] absolute time time, when the event has to get fired
88 * - SUCCESS if succeeded
91 status_t (*add_absolute
) (event_queue_t
*event_queue
, job_t
*job
, timeval_t time
);
94 * @brief Destroys a event_queue object.
96 * @warning The caller of this function has to make sure
97 * that no thread is going to add or get an event from the event_queue
98 * after calling this function.
100 * @param event_queue calling object
101 * @returns always SUCCESS
103 status_t (*destroy
) (event_queue_t
*event_queue
);
107 * @brief Creates an empty event_queue
110 * - Empty event_queue_t object
111 * - NULL if memory allocation failed
113 event_queue_t
*event_queue_create();
114 #endif /*EVENT_QUEUE_H_*/