mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-15 13:32:44 +01:00
242 lines
5.0 KiB
C
242 lines
5.0 KiB
C
/*
|
|
* Copyright (C) 2020 Inria
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup pkg_uwb_core
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief uwb-core DPL (Decawave Porting Layer) event queue wrappers
|
|
*
|
|
* @author Francisco Molina <francois-xavier.molina@inria.fr>
|
|
* @}
|
|
*/
|
|
|
|
#ifndef DPL_DPL_EVENTQ_H
|
|
#define DPL_DPL_EVENTQ_H
|
|
|
|
#include <dpl/dpl_types.h>
|
|
|
|
#include "uwb_core.h"
|
|
#include "event/callback.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief dpl event wrapper
|
|
*/
|
|
struct dpl_event
|
|
{
|
|
event_callback_t e; /**< the event callback */
|
|
void *arg; /**< the event argument */
|
|
};
|
|
|
|
/**
|
|
* @brief dpl event queue wrapper
|
|
*/
|
|
struct dpl_eventq
|
|
{
|
|
event_queue_t q; /**< the event queue */
|
|
};
|
|
|
|
/**
|
|
* @brief dpl event callback function
|
|
*/
|
|
typedef void dpl_event_fn(struct dpl_event *ev);
|
|
|
|
/**
|
|
* @brief Init a event
|
|
*
|
|
* @param[in] ev pointer to event to set
|
|
* @param[in] fn event callback function
|
|
* @param[in] arg event argument
|
|
*/
|
|
static inline void dpl_event_init(struct dpl_event *ev, dpl_event_fn * fn,
|
|
void *arg)
|
|
{
|
|
/*
|
|
* Need to clear list_node manually since init function below does not do
|
|
* this.
|
|
*/
|
|
ev->e.super.list_node.next = NULL;
|
|
event_callback_init(&ev->e, (void(*)(void *))fn, ev);
|
|
ev->arg = arg;
|
|
}
|
|
|
|
/**
|
|
* @brief Check if event is in queue
|
|
*
|
|
* @param[in] ev event to check
|
|
*
|
|
* @return true if event is queues, false otherwise
|
|
*/
|
|
static inline bool dpl_event_is_queued(struct dpl_event *ev)
|
|
{
|
|
return (ev->e.super.list_node.next != NULL);
|
|
}
|
|
|
|
/**
|
|
* @brief Runs an event
|
|
*
|
|
* @param[in] ev event to run
|
|
*/
|
|
static inline void *dpl_event_get_arg(struct dpl_event *ev)
|
|
{
|
|
return ev->arg;
|
|
}
|
|
|
|
/**
|
|
* @brief Set the vent arg
|
|
*
|
|
* @param[in] ev event
|
|
* @param[in] arg arg to set event
|
|
*/
|
|
static inline void dpl_event_set_arg(struct dpl_event *ev, void *arg)
|
|
{
|
|
ev->arg = arg;
|
|
}
|
|
|
|
/**
|
|
* @brief Runs an event
|
|
*
|
|
* @param[in] ev event to run
|
|
*/
|
|
static inline void dpl_event_run(struct dpl_event *ev)
|
|
{
|
|
ev->e.super.handler(&ev->e.super);
|
|
}
|
|
|
|
/**
|
|
* @brief Initialize the event queue
|
|
*
|
|
* @param[in] evq The event queue to initialize
|
|
*/
|
|
static inline void dpl_eventq_init(struct dpl_eventq *evq)
|
|
{
|
|
event_queue_init_detached(&evq->q);
|
|
}
|
|
|
|
/**
|
|
* @brief Check whether the event queue is initialized.
|
|
*
|
|
* @param[in] evq the event queue to check
|
|
*/
|
|
static inline int dpl_eventq_inited(struct dpl_eventq *evq)
|
|
{
|
|
return evq->q.waiter != NULL;
|
|
}
|
|
|
|
/**
|
|
* @brief Deinitialize an event queue
|
|
*
|
|
* @note Not supported in RIOT
|
|
*
|
|
* @param[in] evq the event queue to deinit
|
|
*/
|
|
static inline void dpl_eventq_deinit(struct dpl_eventq *evq)
|
|
{
|
|
(void) evq;
|
|
/* Can't deinit an eventq in RIOT */
|
|
}
|
|
|
|
/**
|
|
* @brief Get next event from event queue, blocking.
|
|
*
|
|
* @param[in] evq the event queue to pull an event from
|
|
*
|
|
* @return the event from the queue
|
|
*/
|
|
static inline struct dpl_event * dpl_eventq_get(struct dpl_eventq *evq)
|
|
{
|
|
if (evq->q.waiter == NULL) {
|
|
event_queue_claim(&evq->q);
|
|
}
|
|
|
|
return (struct dpl_event *) event_wait(&evq->q);
|
|
}
|
|
|
|
/**
|
|
* @brief Get next event from event queue, non-blocking
|
|
*
|
|
* @return event from the queue, or NULL if none available.
|
|
*/
|
|
static inline struct dpl_event * dpl_eventq_get_no_wait(struct dpl_eventq *evq)
|
|
{
|
|
if (evq->q.waiter == NULL) {
|
|
event_queue_claim(&evq->q);
|
|
}
|
|
|
|
return (struct dpl_event *) event_get(&evq->q);
|
|
}
|
|
|
|
/**
|
|
* @brief Put an event on the event queue.
|
|
*
|
|
* @param[in] evq event queue
|
|
* @param[in] ev event to put in queue
|
|
*/
|
|
static inline void dpl_eventq_put(struct dpl_eventq *evq, struct dpl_event *ev)
|
|
{
|
|
event_post(&evq->q, &ev->e.super);
|
|
}
|
|
|
|
/**
|
|
* @brief Remove an event from the queue.
|
|
*
|
|
* @param[in] evq event queue to remove the event from
|
|
* @param[in] ev event to remove from the queue
|
|
*/
|
|
static inline void dpl_eventq_remove(struct dpl_eventq *evq, struct dpl_event *ev)
|
|
{
|
|
event_cancel(&evq->q, &ev->e.super);
|
|
}
|
|
|
|
/**
|
|
* @brief Gets and runs an event from the queue callback.
|
|
*
|
|
* @param[in] evq The event queue to pull the item off.
|
|
*/
|
|
static inline void dpl_eventq_run(struct dpl_eventq *evq)
|
|
{
|
|
struct dpl_event *ev = dpl_eventq_get(evq);
|
|
dpl_event_run(ev);
|
|
}
|
|
|
|
/**
|
|
* @brief Check if queue is empty
|
|
*
|
|
* @param[in] evq the event queue to check
|
|
*
|
|
* @return true if empty, false otherwise
|
|
*/
|
|
static inline bool dpl_eventq_is_empty(struct dpl_eventq *evq)
|
|
{
|
|
return clist_count(&(evq->q.event_list)) == 0;
|
|
}
|
|
|
|
/**
|
|
* @brief Retrieves the default event queue.
|
|
*
|
|
* As there is no default event queue in RIOT, uwb-core will start and
|
|
* handle a default event queue.
|
|
*
|
|
* @return the default event queue.
|
|
*/
|
|
static inline struct dpl_eventq * dpl_eventq_dflt_get(void)
|
|
{
|
|
return (struct dpl_eventq*) uwb_core_get_eventq();
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* DPL_DPL_EVENTQ_H */
|