Select one of the symbols to view example projects that use it.
 
Outline
#include <string.h>
#include "osi/allocator.h"
#include "freertos/FreeRTOS.h"
#include "freertos/queue.h"
#include "osi/semaphore.h"
#include "osi/thread.h"
#include "osi/mutex.h"
work_item
work_queue
osi_thread
osi_thread_start_arg
osi_event
DEFAULT_WORK_QUEUE_CAPACITY
osi_work_queue_create(size_t)
osi_work_queue_delete(struct work_queue *)
osi_thead_work_queue_get(struct work_queue *, struct work_item *)
osi_thead_work_queue_put(struct work_queue *, const struct work_item *, uint32_t)
osi_thead_work_queue_len(struct work_queue *)
osi_thread_run(void *)
osi_thread_join(osi_thread_t *, uint32_t)
osi_thread_stop(osi_thread_t *)
osi_thread_create(const char *, size_t, int, osi_thread_core_t, uint8_t, const size_t *)
osi_thread_free(osi_thread_t *)
osi_thread_post(osi_thread_t *, osi_thread_func_t, void *, int, uint32_t)
osi_thread_set_priority(osi_thread_t *, int)
osi_thread_name(osi_thread_t *)
osi_thread_queue_wait_size(osi_thread_t *, int)
osi_event_create(osi_thread_func_t, void *)
osi_event_delete(struct osi_event *)
osi_event_bind(struct osi_event *, osi_thread_t *, int)
osi_thread_generic_event_handler(void *)
osi_thread_post_event(struct osi_event *, uint32_t)
Files
loading (3/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/common/osi/thread.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
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/****************************************************************************** * * Copyright (C) 2014 Google, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ******************************************************************************//* ... */ #include <string.h> #include "osi/allocator.h" #include "freertos/FreeRTOS.h" #include "freertos/queue.h" #include "osi/semaphore.h" #include "osi/thread.h" #include "osi/mutex.h"7 includes struct work_item { osi_thread_func_t func; void *context; }{ ... }; struct work_queue { QueueHandle_t queue; size_t capacity; }{ ... }; struct osi_thread { TaskHandle_t thread_handle; /*!< Store the thread object */ int thread_id; /*!< May for some OS, such as Linux */ bool stop; uint8_t work_queue_num; /*!< Work queue number */ struct work_queue **work_queues; /*!< Point to queue array, and the priority inverse array index */ osi_sem_t work_sem; osi_sem_t stop_sem; }{ ... }; struct osi_thread_start_arg { osi_thread_t *thread; osi_sem_t start_sem; int error; }{ ... }; struct osi_event { struct work_item item; osi_mutex_t lock; uint16_t is_queued; uint16_t queue_idx; osi_thread_t *thread; }{ ... }; static const size_t DEFAULT_WORK_QUEUE_CAPACITY = 100; static struct work_queue *osi_work_queue_create(size_t capacity) { if (capacity == 0) { return NULL; }{...} struct work_queue *wq = (struct work_queue *)osi_malloc(sizeof(struct work_queue)); if (wq != NULL) { wq->queue = xQueueCreate(capacity, sizeof(struct work_item)); if (wq->queue != 0) { wq->capacity = capacity; return wq; }{...} else { osi_free(wq); }{...} }{...} return NULL; }{ ... } static void osi_work_queue_delete(struct work_queue *wq) { if (wq != NULL) { if (wq->queue != 0) { vQueueDelete(wq->queue); }{...} wq->queue = 0; wq->capacity = 0; osi_free(wq); }{...} return; }{ ... } static bool osi_thead_work_queue_get(struct work_queue *wq, struct work_item *item) { assert (wq != NULL); assert (wq->queue != 0); assert (item != NULL); if (pdTRUE == xQueueReceive(wq->queue, item, 0)) { return true; }{...} else { return false; }{...} }{ ... } static bool osi_thead_work_queue_put(struct work_queue *wq, const struct work_item *item, uint32_t timeout) { assert (wq != NULL); assert (wq->queue != 0); assert (item != NULL); bool ret = true; if (timeout == OSI_SEM_MAX_TIMEOUT) { if (xQueueSend(wq->queue, item, portMAX_DELAY) != pdTRUE) { ret = false; }{...} }{...} else { if (xQueueSend(wq->queue, item, timeout / portTICK_PERIOD_MS) != pdTRUE) { ret = false; }{...} }{...} return ret; }{ ... } static size_t osi_thead_work_queue_len(struct work_queue *wq) { assert (wq != NULL); assert (wq->queue != 0); assert (wq->capacity != 0); size_t available_spaces = (size_t)uxQueueSpacesAvailable(wq->queue); if (available_spaces <= wq->capacity) { return wq->capacity - available_spaces; }{...} else { assert (0); }{...} return 0; }{ ... } static void osi_thread_run(void *arg) { struct osi_thread_start_arg *start = (struct osi_thread_start_arg *)arg; osi_thread_t *thread = start->thread; osi_sem_give(&start->start_sem); while (1) { int idx = 0; osi_sem_take(&thread->work_sem, OSI_SEM_MAX_TIMEOUT); if (thread->stop) { break; }{...} struct work_item item; while (!thread->stop && idx < thread->work_queue_num) { if (osi_thead_work_queue_get(thread->work_queues[idx], &item) == true) { item.func(item.context); idx = 0; continue; }{...} else { idx++; }{...} }{...} }{...} thread->thread_handle = NULL; osi_sem_give(&thread->stop_sem); vTaskDelete(NULL); }{ ... } static int osi_thread_join(osi_thread_t *thread, uint32_t wait_ms) { assert(thread != NULL); return osi_sem_take(&thread->stop_sem, wait_ms); }{ ... } static void osi_thread_stop(osi_thread_t *thread) { int ret; assert(thread != NULL); //stop the thread thread->stop = true; osi_sem_give(&thread->work_sem); //join ret = osi_thread_join(thread, 1000); //wait 1000ms //if join failed, delete the task here if (ret != 0 && thread->thread_handle) { vTaskDelete(thread->thread_handle); }{...} }{ ... } //in linux, the stack_size, priority and core may not be set here, the code will be ignore the arguments osi_thread_t *osi_thread_create(const char *name, size_t stack_size, int priority, osi_thread_core_t core, uint8_t work_queue_num, const size_t work_queue_len[]) { int ret; struct osi_thread_start_arg start_arg = {0}; if (stack_size <= 0 || core < OSI_THREAD_CORE_0 || core > OSI_THREAD_CORE_AFFINITY || work_queue_num <= 0 || work_queue_len == NULL) { return NULL; }{...} osi_thread_t *thread = (osi_thread_t *)osi_calloc(sizeof(osi_thread_t)); if (thread == NULL) { goto _err; }{...} thread->stop = false; thread->work_queues = (struct work_queue **)osi_calloc(sizeof(struct work_queue *) * work_queue_num); if (thread->work_queues == NULL) { goto _err; }{...} thread->work_queue_num = work_queue_num; for (int i = 0; i < thread->work_queue_num; i++) { size_t queue_len = work_queue_len[i] ? work_queue_len[i] : DEFAULT_WORK_QUEUE_CAPACITY; thread->work_queues[i] = osi_work_queue_create(queue_len); if (thread->work_queues[i] == NULL) { goto _err; }{...} }{...} ret = osi_sem_new(&thread->work_sem, 1, 0); if (ret != 0) { goto _err; }{...} ret = osi_sem_new(&thread->stop_sem, 1, 0); if (ret != 0) { goto _err; }{...} start_arg.thread = thread; ret = osi_sem_new(&start_arg.start_sem, 1, 0); if (ret != 0) { goto _err; }{...} if (xTaskCreatePinnedToCore(osi_thread_run, name, stack_size, &start_arg, priority, &thread->thread_handle, core) != pdPASS) { goto _err; }{...} osi_sem_take(&start_arg.start_sem, OSI_SEM_MAX_TIMEOUT); osi_sem_free(&start_arg.start_sem); return thread; _err: if (thread) { if (start_arg.start_sem) { osi_sem_free(&start_arg.start_sem); }{...} if (thread->thread_handle) { vTaskDelete(thread->thread_handle); }{...} for (int i = 0; i < thread->work_queue_num; i++) { if (thread->work_queues && thread->work_queues[i]) { osi_work_queue_delete(thread->work_queues[i]); thread->work_queues[i] = NULL; }{...} }{...} if (thread->work_queues) { osi_free(thread->work_queues); thread->work_queues = NULL; }{...} if (thread->work_sem) { osi_sem_free(&thread->work_sem); }{...} if (thread->stop_sem) { osi_sem_free(&thread->stop_sem); }{...} osi_free(thread); }{...} return NULL; }{ ... } void osi_thread_free(osi_thread_t *thread) { if (!thread) return; osi_thread_stop(thread); for (int i = 0; i < thread->work_queue_num; i++) { if (thread->work_queues[i]) { osi_work_queue_delete(thread->work_queues[i]); thread->work_queues[i] = NULL; }{...} }{...} if (thread->work_queues) { osi_free(thread->work_queues); thread->work_queues = NULL; }{...} if (thread->work_sem) { osi_sem_free(&thread->work_sem); }{...} if (thread->stop_sem) { osi_sem_free(&thread->stop_sem); }{...} osi_free(thread); }{ ... } bool osi_thread_post(osi_thread_t *thread, osi_thread_func_t func, void *context, int queue_idx, uint32_t timeout) { assert(thread != NULL); assert(func != NULL); if (queue_idx >= thread->work_queue_num) { return false; }{...} struct work_item item; item.func = func; item.context = context; if (osi_thead_work_queue_put(thread->work_queues[queue_idx], &item, timeout) == false) { return false; }{...} osi_sem_give(&thread->work_sem); return true; }{ ... } bool osi_thread_set_priority(osi_thread_t *thread, int priority) { assert(thread != NULL); vTaskPrioritySet(thread->thread_handle, priority); return true; }{ ... } const char *osi_thread_name(osi_thread_t *thread) { assert(thread != NULL); return pcTaskGetName(thread->thread_handle); }{ ... } int osi_thread_queue_wait_size(osi_thread_t *thread, int wq_idx) { if (wq_idx < 0 || wq_idx >= thread->work_queue_num) { return -1; }{...} return (int)(osi_thead_work_queue_len(thread->work_queues[wq_idx])); }{ ... } struct osi_event *osi_event_create(osi_thread_func_t func, void *context) { struct osi_event *event = osi_calloc(sizeof(struct osi_event)); if (event != NULL) { if (osi_mutex_new(&event->lock) == 0) { event->item.func = func; event->item.context = context; return event; }{...} osi_free(event); }{...} return NULL; }{ ... } void osi_event_delete(struct osi_event* event) { if (event != NULL) { osi_mutex_free(&event->lock); memset(event, 0, sizeof(struct osi_event)); osi_free(event); }{...} }{ ... } bool osi_event_bind(struct osi_event* event, osi_thread_t *thread, int queue_idx) { if (event == NULL || event->thread != NULL) { return false; }{...} if (thread == NULL || queue_idx >= thread->work_queue_num) { return false; }{...} event->thread = thread; event->queue_idx = queue_idx; return true; }{ ... } static void osi_thread_generic_event_handler(void *context) { struct osi_event *event = (struct osi_event *)context; if (event != NULL && event->item.func != NULL) { osi_mutex_lock(&event->lock, OSI_MUTEX_MAX_TIMEOUT); event->is_queued = 0; osi_mutex_unlock(&event->lock); event->item.func(event->item.context); }{...} }{ ... } bool osi_thread_post_event(struct osi_event *event, uint32_t timeout) { assert(event != NULL && event->thread != NULL); assert(event->queue_idx >= 0 && event->queue_idx < event->thread->work_queue_num); bool ret = false; if (event->is_queued == 0) { uint16_t acquire_cnt = 0; osi_mutex_lock(&event->lock, OSI_MUTEX_MAX_TIMEOUT); event->is_queued += 1; acquire_cnt = event->is_queued; osi_mutex_unlock(&event->lock); if (acquire_cnt == 1) { ret = osi_thread_post(event->thread, osi_thread_generic_event_handler, event, event->queue_idx, timeout); if (!ret) { // clear "is_queued" when post failure, to allow for following event posts osi_mutex_lock(&event->lock, OSI_MUTEX_MAX_TIMEOUT); event->is_queued = 0; osi_mutex_unlock(&event->lock); }{...} }{...} }{...} return ret; }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.