-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathqueue.c
250 lines (213 loc) · 4.61 KB
/
queue.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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <pthread.h>
#include "common.h"
#include "threadpool.h"
#include "utils.h"
#include "log.h"
#include "queue.h"
typedef struct _Queue_node{
void *func;
void *arg;
} Q_node;
typedef struct _Queue{
Q_node *first;
Q_node *last;
size_t size;
Q_node *head;
void *pool;
pthread_mutex_t mutex;
pthread_cond_t has_data_cond;
pthread_cond_t drop_cond;
char is_close;
pthread_t tid;
} Q_t;
void q_remove(Q_t *q, void** func, void** arg);
int q_isfull(Q_t *q);
void* q_thread(void *q);
void print_p(void *data);
int q_length(Q_t *q);
void* q_init(size_t size, void *pool)
{
ASSERT(size > 0);
ASSERT(pool);
Q_t *q = (Q_t*)malloc(sizeof(Q_t));
if (NULL == q) return NULL;
Q_node *qn = (Q_node*)malloc(size * sizeof(Q_node));
if (NULL == qn) return NULL;
q->first = qn;
q->last = qn;
q->head = qn;
q->size = size;
q->pool = pool;
q->is_close = 0;
memset(q->head, 0, size * sizeof(Q_node));
pthread_mutex_init(&q->mutex, NULL);
pthread_cond_init(&q->has_data_cond, NULL);
pthread_cond_init(&q->drop_cond, NULL);
if (0 != pthread_create(&q->tid, NULL, q_thread, q)) {
free(q->head);
q->head = NULL;
free(q);
q = NULL;
dump(L_ERROR, "Create thread q_thread error");
}
return (void*)q;
}
int q_add(void *qt, void *func, void *arg)
{
ASSERT(qt);
ASSERT(func);
/*arg possible NULL*/
Q_t *q = (Q_t*)qt;
pthread_mutex_lock(&q->mutex);
if (OK == q_isfull(q)) {
pthread_mutex_unlock(&q->mutex);
return ERROR;
}
ASSERT(q->last->func == NULL);
q->last->func = func;
q->last->arg = arg;
q->last++;
if (q->last == q->first + 1) {
ASSERT(1 == q_length(q));
dump(L_DEBUG, "Queue send signal, has data");
pthread_cond_signal(&q->has_data_cond);
}
if (q->last == q->head + q->size)
q->last = q->head;
dump(L_DEBUG, "Add Queue Length %d", q_length(q));
pthread_mutex_unlock(&q->mutex);
return OK;
}
int q_isempty(void *qt)
{
Q_t *q = qt;
ASSERT(q);
if (q->last == q->first) {
if (NULL == q->first->func) {
dump(L_INFO, "Queue is empty");
return OK;
}
}
return ERROR;
}
int q_isfull(Q_t *q)
{
ASSERT(q);
if (q->last == q->first) {
if (NULL != q->last->func) {
dump(L_INFO, "Queue is full");
return OK;
}
}
return ERROR;
}
void* q_thread(void *qt)
{
ASSERT(qt);
Q_t *q = qt;
void *func;
void *arg;
while(0 == q->is_close) {
pthread_mutex_lock(&q->mutex);
if (OK == q_isempty(q)) {
pthread_cond_wait(&q->has_data_cond, &q->mutex);
}
/* possible close signal has_data cond */
if (0 != q->is_close) {
pthread_mutex_unlock(&q->mutex);
break;
}
q_remove(q, &func, &arg);
pthread_mutex_unlock(&q->mutex);
tp_add(q->pool, func, arg); //unlock first then tp add, let q_add go
}
tp_drop(q->pool);
q->pool = NULL;
pthread_mutex_lock(&q->mutex);
pthread_cond_signal(&q->drop_cond);
pthread_mutex_unlock(&q->mutex);
pthread_exit(NULL);
return NULL;
}
void q_remove(Q_t *q, void** func, void** arg)
{
ASSERT(q);
ASSERT(q->first->func);
ASSERT(func);
ASSERT(arg);
*func = q->first->func;
*arg = q->first->arg;
q->first->func = NULL;
q->first->arg = NULL;
q->first++;
if (q->first == q->head + q->size)
q->first = q->head;
dump(L_DEBUG, "Remove Queue Length %d", q_length(q));
//q_print(q, print_p);
}
void q_drop(void *qt)
{
ASSERT(qt);
Q_t* q = (Q_t*)qt;
pthread_mutex_lock(&q->mutex);
q->is_close = 1;
/* let q thread not wait */
if (OK == q_isempty(q))
pthread_cond_signal(&q->has_data_cond);
pthread_cond_wait(&q->drop_cond, &q->mutex);
pthread_join(q->tid, NULL);
pthread_mutex_unlock(&q->mutex);
pthread_mutex_destroy(&q->mutex);
pthread_cond_destroy(&q->has_data_cond);
pthread_cond_destroy(&q->drop_cond);
free(q->head);
q->head = NULL;
free(q);
}
int q_length(Q_t *q)
{
ASSERT(q);
if (q->last < q->first) {
return q->size - (q->first - q->last);
} else {
return q->last - q->first;
}
}
void q_print(void *qt, fp p)
{
ASSERT(qt);
ASSERT(p);
Q_t *q = qt;
Q_node* qn;
int i;
for (i = 0, qn = q->head; i < q->size; i++, qn++) {
p(qn->func);
//p(qn->arg);
}
}
void print_p(void* data)
{
if (NULL == data)
printf("[ ]");
else
printf("[x]");
}
/*
int main()
{
void* d;
Q_t *q = q_init(10);
int z1 = 1;
int z2 = 2;
int z3 = 3;
q_add(q, &z1);
q_add(q, &z2);
q_add(q, &z3);
q_print(q, print_int);
return 1;
}
*/