]> git.meshlink.io Git - meshlink/blob - src/meshlink_queue.h
Avoid allocating packet buffers unnecessarily.
[meshlink] / src / meshlink_queue.h
1 #ifndef MESHLINK_QUEUE_H
2 #define MESHLINK_QUEUE_H
3
4 /*
5     queue.h -- Thread-safe queue
6     Copyright (C) 2014, 2017 Guus Sliepen <guus@meshlink.io>
7
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License along
19     with this program; if not, write to the Free Software Foundation, Inc.,
20     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23 #include <pthread.h>
24 #include <stdbool.h>
25 #include <stddef.h>
26 #include <unistd.h>
27
28 typedef struct meshlink_queue {
29         struct meshlink_queue_item *head;
30         struct meshlink_queue_item *tail;
31         pthread_mutex_t mutex;
32 } meshlink_queue_t;
33
34 typedef struct meshlink_queue_item {
35         void *data;
36         struct meshlink_queue_item *next;
37 } meshlink_queue_item_t;
38
39 static inline void meshlink_queue_init(meshlink_queue_t *queue) {
40         queue->head = NULL;
41         queue->tail = NULL;
42         pthread_mutexattr_t attr;
43         pthread_mutexattr_init(&attr);
44         pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_DEFAULT);
45         pthread_mutex_init(&queue->mutex, &attr);
46 }
47
48 static inline void meshlink_queue_exit(meshlink_queue_t *queue) {
49         pthread_mutex_destroy(&queue->mutex);
50 }
51
52 static inline __attribute__((__warn_unused_result__)) bool meshlink_queue_push(meshlink_queue_t *queue, void *data) {
53         meshlink_queue_item_t *item = malloc(sizeof(*item));
54
55         if(!item) {
56                 return false;
57         }
58
59         item->data = data;
60         item->next = NULL;
61         pthread_mutex_lock(&queue->mutex);
62
63         if(!queue->tail) {
64                 queue->head = queue->tail = item;
65         } else {
66                 queue->tail = queue->tail->next = item;
67         }
68
69         pthread_mutex_unlock(&queue->mutex);
70         return true;
71 }
72
73 static inline __attribute__((__warn_unused_result__)) void *meshlink_queue_pop(meshlink_queue_t *queue) {
74         meshlink_queue_item_t *item;
75         void *data;
76         pthread_mutex_lock(&queue->mutex);
77
78         if((item = queue->head)) {
79                 queue->head = item->next;
80
81                 if(!queue->head) {
82                         queue->tail = NULL;
83                 }
84         }
85
86         pthread_mutex_unlock(&queue->mutex);
87         data = item ? item->data : NULL;
88         free(item);
89         return data;
90 }
91
92 #endif