-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpkt_Queue.c
388 lines (245 loc) · 7.84 KB
/
pkt_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
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/*
2020 © Copyright (c) BiDaE Technology Inc.
Provided under BiDaE SHAREWARE LICENSE-1.0 in the LICENSE.
Project Name:
BeDIS
File Name:
pkt_Queue.c
File Description:
This file contains functions for the waiting queue.
Version:
2.0, 20190608
Abstract:
BeDIS uses LBeacons to deliver 3D coordinates and textual descriptions of
their locations to users' devices. Basically, a LBeacon is an inexpensive,
Bluetooth Smart Ready device. The 3D coordinates and location description
of every LBeacon are retrieved from BeDIS (Building/environment Data and
Information System) and stored locally during deployment and maintenance
times. Once initialized, each LBeacon broadcasts its coordinates and
location description to Bluetooth enabled user devices within its coverage
area.
Authors:
Gary Xiao , [email protected]
*/
#include "pkt_Queue.h"
/* Initialize and free Queue */
int init_Packet_Queue(pkt_ptr pkt_queue)
{
/* The variable for initializing the pkt queue */
int num;
pthread_mutex_init( &pkt_queue -> mutex, 0);
pthread_mutex_lock( &pkt_queue -> mutex);
pkt_queue -> is_free = false;
pkt_queue -> front = -1;
pkt_queue -> rear = -1;
/* Initialize all flags in the pkt queue */
for(num = 0;num < MAX_QUEUE_LENGTH; num ++)
pkt_queue -> Queue[num].is_null = true;
pthread_mutex_unlock( &pkt_queue -> mutex);
return pkt_Queue_SUCCESS;
}
int Free_Packet_Queue(pkt_ptr pkt_queue)
{
/* The variable for initializing the pkt queue */
int num;
pthread_mutex_lock( &pkt_queue -> mutex);
pkt_queue -> is_free = true;
/* Delete all pkts in the pkt queue */
while (is_null(pkt_queue) == false)
delpkt(pkt_queue);
/* Reset all flags in the pkt queue */
for(num = 0;num < MAX_QUEUE_LENGTH; num ++)
pkt_queue -> Queue[num].is_null = true;
pthread_mutex_unlock( &pkt_queue -> mutex);
pthread_mutex_destroy( &pkt_queue -> mutex);
return pkt_Queue_SUCCESS;
}
/* New : add pkts */
int addpkt(pkt_ptr pkt_queue, char *address, unsigned int port,
char *content, int content_size)
{
int current_idx;
if(content_size > MESSAGE_LENGTH)
return MESSAGE_OVERSIZE;
pthread_mutex_lock( &pkt_queue -> mutex);
if(pkt_queue -> is_free == true)
{
pthread_mutex_unlock( &pkt_queue -> mutex);
return pkt_Queue_is_free;
}
#ifdef debugging
printf("--------- Content ---------\n");
printf("address : %s\n", address);
printf("port : %d\n", port);
printf("\n");
printf("--------- content ---------\n");
print_content(content, content_size);
printf("\n");
printf("---------------------------\n");
#endif
if(is_full(pkt_queue) == true)
{
/* If the pkt queue is full */
pthread_mutex_unlock( &pkt_queue -> mutex);
return pkt_Queue_FULL;
}
else if(is_null(pkt_queue) == true)
{
/* If there is no pkt in the pkt queue */
pkt_queue -> front = 0;
pkt_queue -> rear = 0;
}
else if( pkt_queue -> rear == MAX_QUEUE_LENGTH - 1)
{
/* If the rear points to the end of the queue reset the location to the
first location of the pkt queue
*/
pkt_queue -> rear = 0;
}
else
{
/* If the rear not points to the end of the pkt queue move to the next
location of the pkt queue
*/
pkt_queue -> rear ++;
}
current_idx = pkt_queue -> rear;
pkt_queue -> Queue[current_idx].is_null = false;
memset(pkt_queue -> Queue[current_idx].address, 0,
NETWORK_ADDR_LENGTH * sizeof(char));
strncpy(pkt_queue -> Queue[current_idx].address, address,
NETWORK_ADDR_LENGTH);
pkt_queue -> Queue[current_idx].port = port;
memset(pkt_queue -> Queue[current_idx].content, 0,
MESSAGE_LENGTH * sizeof(char));
strncpy(pkt_queue -> Queue[current_idx].content, content,
content_size);
pkt_queue -> Queue[current_idx].content_size = content_size;
#ifdef debugging
display_pkt("addedpkt", pkt_queue, current_idx);
printf("= pkt_queue len =\n");
printf("%d\n", queue_len(pkt_queue));
printf("==================\n");
#endif
pthread_mutex_unlock( &pkt_queue -> mutex);
return pkt_Queue_SUCCESS;
}
sPkt get_pkt(pkt_ptr pkt_queue)
{
sPkt tmp;
pthread_mutex_lock( &pkt_queue -> mutex);
memset(&tmp, 0, sizeof(tmp));
if(is_null(pkt_queue) == true)
{
/* If the pkt queue is null, return a blank pkt */
tmp.is_null = true;
pthread_mutex_unlock( &pkt_queue -> mutex);
return tmp;
}
#ifdef debugging
display_pkt("Get_pkt", pkt_queue, pkt_queue -> front);
#endif
tmp = pkt_queue -> Queue[pkt_queue -> front];
delpkt(pkt_queue);
pthread_mutex_unlock( &pkt_queue -> mutex);
return tmp;
}
/* Delete : delete pkts */
int delpkt(pkt_ptr pkt_queue)
{
int current_idx;
if(is_null(pkt_queue) == true)
{
return pkt_Queue_SUCCESS;
}
current_idx = pkt_queue -> front;
#ifdef debugging
display_pkt("deledpkt", pkt_queue, current_idx);
#endif
pkt_queue -> Queue[current_idx].is_null = true;
memset(pkt_queue -> Queue[current_idx].content, 0,
MESSAGE_LENGTH * sizeof(char));
memset(pkt_queue -> Queue[current_idx].address, 0,
NETWORK_ADDR_LENGTH * sizeof(char));
pkt_queue -> Queue[current_idx].port = 0;
if(current_idx == pkt_queue -> rear)
{
pkt_queue -> front = -1;
pkt_queue -> rear = -1;
}
else if(current_idx == MAX_QUEUE_LENGTH - 1)
pkt_queue -> front = 0;
else
pkt_queue -> front += 1;
#ifdef debugging
printf("= pkt_queue len =\n");
printf("%d\n", queue_len(pkt_queue));
printf("==================\n");
#endif
return pkt_Queue_SUCCESS;
}
int display_pkt(char *display_title, pkt_ptr pkt_queue, int pkt_num)
{
pPkt current_pkt;
if(pkt_num < 0 || pkt_num >= MAX_QUEUE_LENGTH)
{
return pkt_Queue_display_over_range;
}
current_pkt = &pkt_queue -> Queue[pkt_num];
printf("==================\n");
printf("%s\n", display_title);
printf("==================\n");
printf("===== address ====\n");
printf("%s\n", current_pkt -> address);
printf("====== port ======\n");
printf("%d\n", current_pkt -> port);
printf("==== content =====\n");
print_content(current_pkt -> content, current_pkt -> content_size);
printf("\n");
printf("==================\n");
return pkt_Queue_SUCCESS;
}
/* Tools */
bool is_null(pkt_ptr pkt_queue)
{
if (pkt_queue->front == -1 && pkt_queue->rear == -1)
return true;
return false;
}
bool is_full(pkt_ptr pkt_queue)
{
if(pkt_queue -> front == pkt_queue -> rear + 1)
return true;
else if(pkt_queue -> front == 0 &&
pkt_queue -> rear == MAX_QUEUE_LENGTH - 1)
return true;
else
return false;
}
int queue_len(pkt_ptr pkt_queue)
{
if (pkt_queue -> front == 0 && pkt_queue -> rear == 0)
return 1;
else if(pkt_queue -> front == -1 && pkt_queue -> rear == -1)
return 0;
else if (pkt_queue -> front == pkt_queue -> rear)
return 1;
else if (pkt_queue -> rear > pkt_queue -> front){
int len = (pkt_queue -> rear - pkt_queue -> front + 1);
return len;
}
else if (pkt_queue -> front > pkt_queue -> rear){
int len = ((MAX_QUEUE_LENGTH - pkt_queue -> front) +
pkt_queue -> rear + 1);
return len;
}
else
return queue_len_error;
return queue_len_error;
}
void print_content(char *content, int size)
{
int loc;
for(loc = 0; loc < size; loc ++)
printf("%c", content[loc]);
}