forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqos.c
356 lines (281 loc) · 8.92 KB
/
qos.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/*
* Copyright (c) 2022 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/
#include <zephyr/kernel.h>
#include <zephyr/sys/slist.h>
#include <qos.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(qos, CONFIG_QOS_LOG_LEVEL);
/* Define a custom STATIC macro that exposes internal variables when unit testing. */
#if defined(CONFIG_UNITY)
#define STATIC
#else
#define STATIC static
#endif
/* Structure used to keep track of pending messages. Used in combination with a linked list. */
struct qos_metadata {
/* Mandatory variable used to construct a linked list. */
sys_snode_t header;
/* Message associated with each node in the linked list. */
struct qos_data message;
};
/* Structure containing internal variables in the library. */
STATIC struct ctx {
/* Library event handler. Used in callbacks to the caller. */
qos_evt_handler_t app_evt_handler;
/* Internal array of pending messages. Used in combination with linked list. */
struct qos_metadata list_internal[CONFIG_QOS_PENDING_MESSAGES_MAX];
/* Linked list used to keep track of pending messages. */
sys_slist_t pending_list;
/* Variable used to prevent multiple library initializations. */
bool initialized;
/* Delayed work used as the backoff timer. */
struct k_work_delayable timeout_handler_work;
/* Internal variable used to generate message IDs. */
uint16_t message_id_next;
} ctx = {
.message_id_next = QOS_MESSAGE_ID_BASE
};
/* Mutex used to protect internal library variables. */
static K_MUTEX_DEFINE(ctx_lock);
/* Internal API functions */
static void notify_event(struct qos_evt *evt)
{
__ASSERT(evt != NULL, "Library event not found");
if (ctx.app_evt_handler != NULL) {
ctx.app_evt_handler(evt);
}
}
STATIC void timeout_handler_work_fn(struct k_work *work)
{
struct qos_metadata *node = NULL, *next_node = NULL;
struct qos_evt evt = {
.type = QOS_EVT_MESSAGE_REMOVED_FROM_LIST
};
k_mutex_lock(&ctx_lock, K_FOREVER);
/* Remove all messages where the notified_count equals or exceeds
* CONFIG_QOS_MESSAGE_NOTIFIED_COUNT_MAX
*/
SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&ctx.pending_list, node, next_node, header) {
if (node->message.notified_count >= CONFIG_QOS_MESSAGE_NOTIFIED_COUNT_MAX) {
LOG_DBG("Notified count for message ID: %d exceeds the maximum allowed "
"value, remove message from pending list.", node->message.id);
evt.message = node->message;
notify_event(&evt);
memset(&node->message, 0, sizeof(struct qos_data));
sys_slist_find_and_remove(&ctx.pending_list, &node->header);
}
};
/* Don't shedule a new work if the pending list is empty. */
if (sys_slist_is_empty(&ctx.pending_list)) {
LOG_DBG("QoS list is empty, don't reschedule work");
goto exit;
}
/* Notify all remaining entries in the list. */
evt.type = QOS_EVT_MESSAGE_TIMER_EXPIRED;
SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&ctx.pending_list, node, next_node, header) {
node->message.notified_count++;
evt.message = node->message;
notify_event(&evt);
};
k_work_reschedule(&ctx.timeout_handler_work,
K_SECONDS(CONFIG_QOS_MESSAGE_NOTIFY_TIMEOUT_SECONDS));
exit:
k_mutex_unlock(&ctx_lock);
}
/* @brief Function that appends a message to the internal list of pending messages.
*
* @returns A positive value indicating the index of the internal list that the message was
* added to. Otherwise a negative value indicating the reason of failure.
*
* @retval -ENOMEM if the internal list is full.
*/
static int list_append(struct qos_data *message)
{
/* Mark the initial list index as invalid. */
int index_next = -1;
/* Find the next available list index. */
for (int i = 0; i < ARRAY_SIZE(ctx.list_internal); i++) {
if ((ctx.list_internal[i].message.notified_count == 0) &&
(ctx.list_internal[i].message.data.buf == NULL)) {
index_next = i;
break;
}
}
if (index_next == -1) {
LOG_ERR("No available entries in pending message list");
return -ENOMEM;
}
ctx.list_internal[index_next].message = *message;
sys_slist_append(&ctx.pending_list, &ctx.list_internal[index_next].header);
return index_next;
}
static int list_remove(uint32_t id)
{
struct qos_metadata *node = NULL, *next_node = NULL, *node_prev = NULL;
struct qos_evt evt = {
.type = QOS_EVT_MESSAGE_REMOVED_FROM_LIST,
};
SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&ctx.pending_list, node, next_node, header) {
if (node->message.id == id) {
evt.message = node->message;
notify_event(&evt);
memset(&node->message, 0, sizeof(struct qos_data));
sys_slist_remove(&ctx.pending_list, &node_prev->header, &node->header);
return 0;
}
node_prev = node;
};
return -ENODATA;
}
/* Public API functions */
int qos_init(qos_evt_handler_t evt_handler)
{
int err = 0;
if (evt_handler == NULL) {
LOG_ERR("Handler is NULL");
return -EINVAL;
}
k_mutex_lock(&ctx_lock, K_FOREVER);
if (ctx.initialized) {
err = -EALREADY;
goto exit;
}
ctx.initialized = true;
LOG_DBG("Registering handler %p", evt_handler);
ctx.app_evt_handler = evt_handler;
/* Initializing linked list and delayed work. */
sys_slist_init(&ctx.pending_list);
k_work_init_delayable(&ctx.timeout_handler_work, timeout_handler_work_fn);
exit:
k_mutex_unlock(&ctx_lock);
return err;
}
int qos_message_add(struct qos_data *message)
{
int err = 0, ret;
struct qos_evt evt = {
.type = QOS_EVT_MESSAGE_NEW
};
k_mutex_lock(&ctx_lock, K_FOREVER);
if (message == NULL) {
LOG_ERR("Message cannot be NULL");
err = -EINVAL;
goto exit;
}
evt.message = *message;
/* Only ACK_REQUIRED messages are added to the internal list. */
if (qos_message_has_flag(message, QOS_FLAG_RELIABILITY_ACK_REQUIRED)) {
ret = list_append(message);
if (ret < 0) {
LOG_WRN("No list entries available, error: %d", ret);
evt.type = QOS_EVT_MESSAGE_REMOVED_FROM_LIST;
notify_event(&evt);
err = -ENOMEM;
goto exit;
}
/* Increment notified count before the callback. */
ctx.list_internal[ret].message.notified_count++;
evt.message = ctx.list_internal[ret].message;
notify_event(&evt);
} else {
/* If the message does not carry the ACK_REQUIRED flag, its notified as a new
* message before it is removed from the library.
*/
notify_event(&evt);
evt.type = QOS_EVT_MESSAGE_REMOVED_FROM_LIST;
notify_event(&evt);
}
/* Start the internal timer if it is not running when there are messages in the
* pending list.
*/
if (!k_work_delayable_is_pending(&ctx.timeout_handler_work) &&
!sys_slist_is_empty(&ctx.pending_list)) {
k_work_reschedule(&ctx.timeout_handler_work,
K_SECONDS(CONFIG_QOS_MESSAGE_NOTIFY_TIMEOUT_SECONDS));
}
exit:
k_mutex_unlock(&ctx_lock);
return err;
}
int qos_message_remove(uint32_t id)
{
int err;
k_mutex_lock(&ctx_lock, K_FOREVER);
err = list_remove(id);
if (err) {
LOG_DBG("Failed removing message from list, message ID not found");
goto exit;
}
/* If the removed message is the last in the pending list, we stop the internal timer. */
if (sys_slist_is_empty(&ctx.pending_list)) {
LOG_DBG("QoS list is empty, cancel ongoing delayed work");
k_work_cancel_delayable(&ctx.timeout_handler_work);
}
exit:
k_mutex_unlock(&ctx_lock);
return err;
}
void qos_message_print(const struct qos_data *message)
{
LOG_DBG("Notified count: %d", message->notified_count);
LOG_DBG("Message heap_allocated: %d", message->heap_allocated);
LOG_DBG("Message ID: %d", message->id);
LOG_DBG("Message Buffer pointer: %p", (void *)message->data.buf);
LOG_DBG("Message Buffer length: %d", message->data.len);
LOG_DBG("Message Flags: %x", message->flags);
LOG_DBG("Message type: %d", message->type);
}
bool qos_message_has_flag(const struct qos_data *message, uint32_t flag)
{
return ((message->flags & flag) == flag) ? true : false;
}
uint16_t qos_message_id_get_next(void)
{
uint16_t message_id_temp;
k_mutex_lock(&ctx_lock, K_FOREVER);
if (ctx.message_id_next == UINT16_MAX) {
ctx.message_id_next = QOS_MESSAGE_ID_BASE;
}
message_id_temp = ctx.message_id_next++;
k_mutex_unlock(&ctx_lock);
return message_id_temp;
}
void qos_message_notify_all(void)
{
struct qos_metadata *node = NULL, *next_node = NULL;
struct qos_evt evt = {
.type = QOS_EVT_MESSAGE_TIMER_EXPIRED,
};
k_mutex_lock(&ctx_lock, K_FOREVER);
SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&ctx.pending_list, node, next_node, header) {
node->message.notified_count++;
evt.message = node->message;
notify_event(&evt);
};
k_mutex_unlock(&ctx_lock);
}
void qos_message_remove_all(void)
{
struct qos_metadata *node = NULL, *next_node = NULL;
struct qos_evt evt = {
.type = QOS_EVT_MESSAGE_REMOVED_FROM_LIST,
};
k_mutex_lock(&ctx_lock, K_FOREVER);
SYS_SLIST_FOR_EACH_CONTAINER_SAFE(&ctx.pending_list, node, next_node, header) {
evt.message = node->message;
notify_event(&evt);
memset(&node->message, 0, sizeof(struct qos_data));
sys_slist_remove(&ctx.pending_list, NULL, &node->header);
};
k_mutex_unlock(&ctx_lock);
qos_timer_reset();
}
void qos_timer_reset(void)
{
k_mutex_lock(&ctx_lock, K_FOREVER);
k_work_cancel_delayable(&ctx.timeout_handler_work);
k_mutex_unlock(&ctx_lock);
}