write_queue: Add a method to clear the queue.
[osmocom-bb.git] / src / write_queue.c
1 /* Generic write queue implementation */
2 /*
3  * (C) 2010 by Holger Hans Peter Freyther
4  * (C) 2010 by On-Waves
5  *
6  * All Rights Reserved
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
24 #include <osmocore/write_queue.h>
25
26 int write_queue_bfd_cb(struct bsc_fd *fd, unsigned int what)
27 {
28         struct write_queue *queue;
29
30         queue = container_of(fd, struct write_queue, bfd);
31
32         if (what & BSC_FD_READ)
33                 queue->read_cb(fd);
34
35         if (what & BSC_FD_WRITE) {
36                 struct msgb *msg;
37
38                 fd->when &= ~BSC_FD_WRITE;
39                 msg = msgb_dequeue(&queue->msg_queue);
40                 if (!msg)
41                         return -1;
42
43                 --queue->current_length;
44                 queue->write_cb(fd, msg);
45                 msgb_free(msg);
46
47                 if (!llist_empty(&queue->msg_queue))
48                         fd->when |= BSC_FD_WRITE;
49         }
50
51         return 0;
52 }
53
54 void write_queue_init(struct write_queue *queue, int max_length)
55 {
56         queue->max_length = max_length;
57         queue->current_length = 0;
58         queue->read_cb = NULL;
59         queue->write_cb = NULL;
60         queue->bfd.cb = write_queue_bfd_cb;
61         INIT_LLIST_HEAD(&queue->msg_queue);
62 }
63
64 int write_queue_enqueue(struct write_queue *queue, struct msgb *data)
65 {
66 //      if (queue->current_length + 1 >= queue->max_length)
67 //              LOGP(DMSC, LOGL_ERROR, "The queue is full. Dropping not yet implemented.\n");
68
69         ++queue->current_length;
70         msgb_enqueue(&queue->msg_queue, data);
71         queue->bfd.when |= BSC_FD_WRITE;
72
73         return 0;
74 }
75
76 void write_queue_clear(struct write_queue *queue)
77 {
78         while (!llist_empty(&queue->msg_queue)) {
79                 struct msgb *msg = msgb_dequeue(&queue->msg_queue);
80                 msgb_free(msg);
81         }
82
83         queue->current_length = 0;
84         queue->bfd.when &= ~BSC_FD_WRITE;
85 }