]> git.meshlink.io Git - meshlink/blob - src/meshlink_queue.h
Add a public API for the thread-safe message queue.
[meshlink] / src / meshlink_queue.h
1 /*
2     queue.h -- Thread-safe queue
3     Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef MESHLINK_QUEUE_H
21 #define MESHLINK_QUEUE_H
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 bool meshlink_queue_push(meshlink_queue_t *queue, void *data) {
40         meshlink_queue_item_t *item = malloc(sizeof *item);
41         fprintf(stderr, "Pushing %p %p %p\n", queue, item, data);
42         if(!item)
43                 return false;
44         item->data = data;
45         item->next = NULL;
46         pthread_mutex_lock(&queue->mutex);
47         if(!queue->tail)
48                 queue->head = queue->tail = item;
49         else
50                 queue->tail = queue->tail->next = item;
51         pthread_mutex_unlock(&queue->mutex);
52         return true;
53 }
54
55 static inline void *meshlink_queue_pop(meshlink_queue_t *queue) {
56         meshlink_queue_item_t *item;
57         void *data;
58         pthread_mutex_lock(&queue->mutex);
59         if((item = queue->head)) {
60                 queue->head = item->next;
61                 if(!queue->head)
62                         queue->tail = NULL;
63         }
64         pthread_mutex_unlock(&queue->mutex);
65         data = item ? item->data : NULL;
66         fprintf(stderr, "Popping %p %p %p\n", queue, item, data);
67         free(item);
68         return data;
69 }
70
71 #endif