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
|
/* Message Queue data structure -- header
* Copyright (C) 2009 Chris Hall (GMCH), Highwayman
*
* This file is part of GNU Zebra.
*
* GNU Zebra is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 2, or (at your
* option) any later version.
*
* GNU Zebra is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Zebra; see the file COPYING. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef _ZEBRA_MQUEUE_H
#define _ZEBRA_MQUEUE_H
#include "qpthreads.h"
#include "qtime.h"
#ifndef Inline
#define Inline static inline
#endif
/*==============================================================================
*/
typedef struct mqueue_block* mqueue_block ;
typedef uint32_t mqb_flags_t ;
typedef uint32_t mqb_context_t ;
typedef void* mqb_ptr_t ;
typedef intptr_t mqb_int_t ;
typedef uintptr_t mqb_uint_t ;
typedef union
{
mqb_ptr_t p ;
mqb_int_t i ;
mqb_uint_t u ;
} mqb_arg_t ;
enum mqb_flag
{
mqb_destroy = 0,
mqb_action = 1
} ;
typedef enum mqb_flag mqb_flag_t ;
typedef void mqueue_action(mqueue_block mqb, mqb_flag_t flag) ;
struct mqueue_block
{
mqueue_block next ; /* single linked list */
mqueue_action* action ; /* for message dispatch */
mqb_flags_t flags ; /* for message handler */
void* arg0 ; /* NB: used for specific revoke */
mqb_arg_t arg1 ; /* may be pointer or integer */
} ;
typedef struct mqueue_thread_signal* mqueue_thread_signal ;
struct mqueue_thread_signal {
mqueue_thread_signal next ; /* NULL => last on list */
mqueue_thread_signal prev ; /* NULL => NOT on list -- vital ! */
qpt_thread_t qpthread ; /* qpthread to kick */
int signum ; /* signal to kick with */
} ;
enum mqueue_queue_type {
mqt_cond_unicast, /* use qpt_cond_signal to kick the queue */
mqt_cond_broadcast, /* use qpt_cond_broadcast to kick the queue */
mqt_signal_unicast, /* use single qpt_signal to kick the queue */
mqt_signal_broadcast, /* use multiple qpt_signal to kick the queue */
};
#ifndef MQUEUE_DEFAULT_INTERVAL
# define MQUEUE_DEFAULT_INTERVAL QTIME(5)
#endif
struct mqueue_queue_cond {
qpt_cond_t wait_here ;
qtime_mono_t timeout ;
qtime_t interval ;
} ;
struct mqueue_queue_signal {
mqueue_thread_signal head ; /* NULL => list is empty */
mqueue_thread_signal tail ;
};
typedef struct mqueue_queue* mqueue_queue ;
struct mqueue_queue
{
qpt_mutex_t mutex ;
mqueue_block head ; /* NULL => list is empty */
mqueue_block tail_priority ; /* last priority message (if any & not empty) */
mqueue_block tail ; /* last message (if not empty) */
enum mqueue_queue_type type ;
unsigned waiters ;
union {
struct mqueue_queue_cond cond ;
struct mqueue_queue_signal signal ;
} kick ;
} ;
typedef struct mqueue_local_queue* mqueue_local_queue ;
struct mqueue_local_queue
{
mqueue_block head ; /* NULL => list is empty */
mqueue_block tail ; /* last message (if not empty) */
} ;
/*==============================================================================
* Functions
*/
extern void
mqueue_initialise(void) ;
extern mqueue_queue
mqueue_init_new(mqueue_queue mq, enum mqueue_queue_type type) ;
extern mqueue_local_queue
mqueue_local_init_new(mqueue_local_queue lmq) ;
extern mqueue_local_queue
mqueue_local_reset(mqueue_local_queue lmq, int free_structure) ;
#define mqueue_local_reset_keep(lmq) mqueue_local_reset(lmq, 0)
#define mqueue_local_reset_free(lmq) mqueue_local_reset(lmq, 1)
extern void
mqueue_set_timeout_interval(mqueue_queue mq, qtime_t interval) ;
extern mqueue_thread_signal
mqueue_thread_signal_init(mqueue_thread_signal mqt, qpt_thread_t thread,
int signum) ;
extern mqueue_block
mqb_init_new(mqueue_block mqb, mqueue_action action, void* arg0) ;
extern void
mqb_free(mqueue_block mqb) ;
extern void
mqueue_enqueue(mqueue_queue mq, mqueue_block mqb, int priority) ;
extern mqueue_block
mqueue_dequeue(mqueue_queue mq, int wait, void* arg) ;
extern int
mqueue_done_waiting(mqueue_queue mq, mqueue_thread_signal mtsig) ;
extern void
mqueue_local_enqueue(mqueue_local_queue lmq, mqueue_block mqb) ;
extern mqueue_block
mqueue_local_dequeue(mqueue_local_queue lmq) ;
/*==============================================================================
* Access functions for mqueue_block fields -- mqb_set_xxx/mqb_get_xxx
*
* Users should not poke around inside the mqueue_block structure.
*/
Inline void mqb_set_action(mqueue_block mqb, mqueue_action action) ;
Inline void mqb_set_arg0(mqueue_block mqb, void* p) ;
Inline void mqb_set_arg1_p(mqueue_block mqb, mqb_ptr_t p) ;
Inline void mqb_set_arg1_i(mqueue_block mqb, mqb_int_t i) ;
Inline void mqb_set_arg1_u(mqueue_block mqb, mqb_uint_t u) ;
Inline void mqb_dispatch(mqueue_block mqb, mqb_flag_t flag) ;
Inline void* mqb_get_arg0(mqueue_block mqb) ;
Inline mqb_ptr_t mqb_get_arg1_p(mqueue_block mqb) ;
Inline mqb_int_t mqb_get_arg1_i(mqueue_block mqb) ;
Inline mqb_uint_t mqb_get_arg1_u(mqueue_block mqb) ;
/*==============================================================================
* The Inline functions.
*/
/* Set operations. */
Inline void
mqb_set_action(mqueue_block mqb, mqueue_action action)
{
mqb->action = action ;
} ;
Inline void
mqb_set_arg0(mqueue_block mqb, void* arg0)
{
mqb->arg0 = arg0 ;
} ;
Inline void
mqb_set_arg1_p(mqueue_block mqb, mqb_ptr_t p)
{
mqb->arg1.p = p ;
} ;
Inline void
mqb_set_arg1_i(mqueue_block mqb, mqb_int_t i)
{
mqb->arg1.i = i ;
} ;
Inline void
mqb_set_arg1_u(mqueue_block mqb, mqb_uint_t u)
{
mqb->arg1.u = u ;
} ;
/* Get operations */
Inline void
mqb_dispatch(mqueue_block mqb, mqb_flag_t flag)
{
mqb->action(mqb, flag) ;
} ;
Inline void
mqb_dispatch_action(mqueue_block mqb)
{
mqb->action(mqb, mqb_action) ;
} ;
Inline void
mqb_dispatch_destroy(mqueue_block mqb)
{
mqb->action(mqb, mqb_destroy) ;
} ;
Inline void*
mqb_get_arg0(mqueue_block mqb)
{
return mqb->arg0 ;
} ;
Inline mqb_ptr_t
mqb_get_arg1_p(mqueue_block mqb)
{
return mqb->arg1.p ;
} ;
Inline mqb_int_t
mqb_get_arg1_i(mqueue_block mqb)
{
return mqb->arg1.i ;
} ;
Inline mqb_uint_t
mqb_get_arg1_u(mqueue_block mqb)
{
return mqb->arg1.u ;
} ;
#endif /* _ZEBRA_MQUEUE_H */
|