You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
/* |
|
* Copyright (c) 2022 Rodrigo Peixoto <rodrigopex@gmail.com> |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
#include <zephyr/logging/log.h> |
|
#include <zephyr/sys/iterable_sections.h> |
|
#include <zephyr/zbus/zbus.h> |
|
LOG_MODULE_DECLARE(zbus, CONFIG_ZBUS_LOG_LEVEL); |
|
|
|
bool zbus_iterate_over_channels(bool (*iterator_func)(const struct zbus_channel *chan)) |
|
{ |
|
STRUCT_SECTION_FOREACH(zbus_channel, chan) { |
|
if (!(*iterator_func)(chan)) { |
|
return false; |
|
} |
|
} |
|
return true; |
|
} |
|
|
|
bool zbus_iterate_over_channels_with_user_data( |
|
bool (*iterator_func)(const struct zbus_channel *chan, void *user_data), void *user_data) |
|
{ |
|
STRUCT_SECTION_FOREACH(zbus_channel, chan) { |
|
if (!(*iterator_func)(chan, user_data)) { |
|
return false; |
|
} |
|
} |
|
return true; |
|
} |
|
|
|
bool zbus_iterate_over_observers(bool (*iterator_func)(const struct zbus_observer *obs)) |
|
{ |
|
STRUCT_SECTION_FOREACH(zbus_observer, obs) { |
|
if (!(*iterator_func)(obs)) { |
|
return false; |
|
} |
|
} |
|
return true; |
|
} |
|
|
|
bool zbus_iterate_over_observers_with_user_data( |
|
bool (*iterator_func)(const struct zbus_observer *obs, void *user_data), void *user_data) |
|
{ |
|
STRUCT_SECTION_FOREACH(zbus_observer, obs) { |
|
if (!(*iterator_func)(obs, user_data)) { |
|
return false; |
|
} |
|
} |
|
return true; |
|
}
|
|
|