* Move to local/stack allocated event API that doesn't require dynamic allocation/freeing. * Disable heap, we no longer use alloc/free unless using LVGL. * Tons of refactors all over to account for the new event approach.
82 lines
2.6 KiB
C
82 lines
2.6 KiB
C
/*
|
|
* Copyright (c) 2020 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <zephyr/logging/log.h>
|
|
|
|
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
|
|
|
|
#include <zmk/event_manager.h>
|
|
|
|
extern struct zmk_event_type *__event_type_start[];
|
|
extern struct zmk_event_type *__event_type_end[];
|
|
|
|
extern struct zmk_event_subscription __event_subscriptions_start[];
|
|
extern struct zmk_event_subscription __event_subscriptions_end[];
|
|
|
|
int zmk_event_manager_handle_from(zmk_event_t *event, uint8_t start_index) {
|
|
int ret = 0;
|
|
uint8_t len = __event_subscriptions_end - __event_subscriptions_start;
|
|
for (int i = start_index; i < len; i++) {
|
|
struct zmk_event_subscription *ev_sub = __event_subscriptions_start + i;
|
|
if (ev_sub->event_type != event->event) {
|
|
continue;
|
|
}
|
|
event->last_listener_index = i;
|
|
ret = ev_sub->listener->callback(event);
|
|
switch (ret) {
|
|
case ZMK_EV_EVENT_BUBBLE:
|
|
continue;
|
|
case ZMK_EV_EVENT_HANDLED:
|
|
LOG_DBG("Listener handled the event");
|
|
return 0;
|
|
case ZMK_EV_EVENT_CAPTURED:
|
|
LOG_DBG("Listener captured the event");
|
|
return 0;
|
|
default:
|
|
LOG_DBG("Listener returned an error: %d", ret);
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int zmk_event_manager_raise(zmk_event_t *event) { return zmk_event_manager_handle_from(event, 0); }
|
|
|
|
int zmk_event_manager_raise_after(zmk_event_t *event, const struct zmk_listener *listener) {
|
|
uint8_t len = __event_subscriptions_end - __event_subscriptions_start;
|
|
for (int i = 0; i < len; i++) {
|
|
struct zmk_event_subscription *ev_sub = __event_subscriptions_start + i;
|
|
|
|
if (ev_sub->event_type == event->event && ev_sub->listener == listener) {
|
|
return zmk_event_manager_handle_from(event, i + 1);
|
|
}
|
|
}
|
|
|
|
LOG_WRN("Unable to find where to raise this after event");
|
|
|
|
return -EINVAL;
|
|
}
|
|
|
|
int zmk_event_manager_raise_at(zmk_event_t *event, const struct zmk_listener *listener) {
|
|
uint8_t len = __event_subscriptions_end - __event_subscriptions_start;
|
|
for (int i = 0; i < len; i++) {
|
|
struct zmk_event_subscription *ev_sub = __event_subscriptions_start + i;
|
|
|
|
if (ev_sub->event_type == event->event && ev_sub->listener == listener) {
|
|
return zmk_event_manager_handle_from(event, i);
|
|
}
|
|
}
|
|
|
|
LOG_WRN("Unable to find where to raise this event");
|
|
|
|
return -EINVAL;
|
|
}
|
|
|
|
int zmk_event_manager_release(zmk_event_t *event) {
|
|
return zmk_event_manager_handle_from(event, event->last_listener_index + 1);
|
|
}
|