1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
18758: sys/event: add event sources r=kaspar030 a=benpicco



Co-authored-by: Benjamin Valentin <benjamin.valentin@ml-pa.com>
This commit is contained in:
bors[bot] 2023-02-10 16:03:41 +00:00 committed by GitHub
commit ea300c3d15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 199 additions and 0 deletions

118
sys/include/event/source.h Normal file
View File

@ -0,0 +1,118 @@
/*
* Copyright (C) 2022 ML!PA Consulting GmbH
*
* 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 sys_event
* @brief Provides functionality to trigger multiple events at once
*
* @{
*
* @file
* @brief Event Source API
*
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
*
*/
#ifndef EVENT_SOURCE_H
#define EVENT_SOURCE_H
#include "event.h"
#include "list.h"
#include "irq.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Event source struct
*/
typedef struct {
list_node_t list; /**< event source list node */
} event_source_t;
/**
* @brief Subscriber of an event source
*/
typedef struct {
list_node_t node; /**< event subscriber list node */
event_t *event; /**< pointer to event that should be triggered */
event_queue_t *queue; /**< event queue to be used for the event */
} event_source_subscriber_t;
/**
* @brief Initialize an event source
*/
#define EVENT_SOURCE_INIT { 0 }
/**
* @brief Initialize an event source subscriber
*
* @param[in] e The event to trigger
* @param[in] q The event queue to use for the event
*/
#define EVENT_SOURCE_SUBSCRIBER_INIT(e, q) { .event = (event_t *)e, .queue = q }
/**
* @brief Attach an event to an event source
*
* @param[in] source The event list to attach the event to
* @param[in] event The new event subscription
*/
static inline void event_source_attach(event_source_t *source,
event_source_subscriber_t *event)
{
unsigned state = irq_disable();
list_add(&source->list, &event->node);
irq_restore(state);
}
/**
* @brief Remove a subscription from the event source
*
* @param[in] source The event list to remove the event from
* @param[in] event The event to remove
*/
static inline void event_source_detach(event_source_t *source,
event_source_subscriber_t *event)
{
unsigned state = irq_disable();
list_remove(&source->list, &event->node);
irq_restore(state);
}
/**
* @brief Trigger all events registered on the event source
*
* @param[in] source The event list to trigger
*/
static inline void event_source_trigger(event_source_t *source)
{
unsigned state = irq_disable();
event_source_subscriber_t *event = container_of(source->list.next,
event_source_subscriber_t,
node);
while (event) {
event_post(event->queue, event->event);
event = container_of(event->node.next, event_source_subscriber_t, node);
}
irq_restore(state);
}
#ifdef __cplusplus
}
#endif
#endif /* EVENT_SOURCE_H */
/** @} */

View File

@ -0,0 +1,6 @@
include ../Makefile.tests_common
USEMODULE += event_callback
USEMODULE += event_thread
include $(RIOTBASE)/Makefile.include

View File

@ -0,0 +1,3 @@
BOARD_INSUFFICIENT_MEMORY := \
nucleo-l011k4 \
#

56
tests/event_source/main.c Normal file
View File

@ -0,0 +1,56 @@
/*
* Copyright (C) 2022 ML!PA Consulting GmbH
*
* 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 tests
* @{
*
* @file
* @brief Event Source test application
*
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
*
* @}
*/
#include <stdio.h>
#include "event/callback.h"
#include "event/source.h"
#include "event/thread.h"
static void _event_cb(void *ctx)
{
puts(ctx);
}
int main(void)
{
event_source_t source = EVENT_SOURCE_INIT;
event_callback_t a, b, c;
event_source_subscriber_t ba = EVENT_SOURCE_SUBSCRIBER_INIT(&a, EVENT_PRIO_MEDIUM);
event_source_subscriber_t bb = EVENT_SOURCE_SUBSCRIBER_INIT(&b, EVENT_PRIO_MEDIUM);
event_source_subscriber_t bc = EVENT_SOURCE_SUBSCRIBER_INIT(&c, EVENT_PRIO_MEDIUM);
event_callback_init(&a, _event_cb, "event A");
event_callback_init(&b, _event_cb, "event B");
event_callback_init(&c, _event_cb, "event C");
puts("empty event source");
event_source_trigger(&source);
event_source_attach(&source, &ba);
event_source_attach(&source, &bb);
event_source_attach(&source, &bc);
puts("occupied event source");
event_source_trigger(&source);
return 0;
}

View File

@ -0,0 +1,16 @@
#!/usr/bin/env python3
import sys
from testrunner import run
def testfunc(child):
child.expect_exact("empty event source")
child.expect_exact("occupied event source")
child.expect_exact("event C")
child.expect_exact("event B")
child.expect_exact("event A")
if __name__ == "__main__":
sys.exit(run(testfunc))