-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprioque.c
755 lines (523 loc) · 14.5 KB
/
prioque.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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
//
// implementation of "prioque.h" priority queue functions */
// (c) 198x/1998/2001 (minor updates) by Golden G. Richard III, Ph.D. */
//
// Major update October 2004. See prioque.h for details.
//
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "prioque.h"
// global lock on entire package
pthread_mutex_t global_lock = PTHREAD_MUTEX_INITIALIZER;
// for init purposes
pthread_mutex_t initial_mutex = PTHREAD_MUTEX_INITIALIZER;
// function prototypes for internal functions
void nolock_next_element(Queue *q);
void nolock_rewind_queue(Queue *q);
int nolock_element_in_queue(Queue *q, void *element);
void nolock_destroy_queue(Queue *q);
void local_nolock_next_element(Context *ctx);
void local_nolock_rewind_queue(Context *ctx);
void init_queue(Queue *q, int elementsize, int duplicates,
int (*compare)(void *e1, void *e2)) {
q->queuelength = 0;
q->elementsize = elementsize;
q->queue = 0;
q->duplicates = duplicates;
q->compare = compare;
nolock_rewind_queue(q);
q->lock = initial_mutex;
}
void destroy_queue(Queue *q) {
// lock entire queue
pthread_mutex_lock(&(q->lock));
nolock_destroy_queue(q);
// release lock on queue
pthread_mutex_unlock(&(q->lock));
}
void nolock_destroy_queue(Queue *q) {
Queue_element temp;
if (q != 0) {
while (q->queue != 0) {
free(q->queue->info);
temp = q->queue;
q->queue = q->queue->next;
free(temp);
(q->queuelength)--;
}
}
nolock_rewind_queue(q);
}
int element_in_queue(Queue *q, void *element) {
int found;
// lock entire queue
pthread_mutex_lock(&(q->lock));
found = nolock_element_in_queue(q, element);
// release lock on queue
pthread_mutex_unlock(&(q->lock));
return found;
}
int nolock_element_in_queue(Queue *q, void *element) {
int found = 0;
if (q->queue != 0) {
nolock_rewind_queue(q);
while (! end_of_queue(q) && ! found) {
if (q->compare(element, q->current->info) == 0) {
found = 1;
}
else {
nolock_next_element(q);
}
}
}
if (! found) {
nolock_rewind_queue(q);
}
return found;
}
void nolock_add_to_queue(Queue *q, void *element, int priority) {
Queue_element new_element, ptr, prev = 0;
if (! q->queue ||
(q->queue && (q->duplicates ||
! nolock_element_in_queue(q, element)))) {
new_element = (Queue_element)malloc(sizeof(struct _Queue_element));
if (new_element == 0) {
fprintf(stderr,"Malloc failed in function add_to_queue()\n");
exit(1);
}
new_element->info = (void *)malloc(q->elementsize);
if (new_element->info == 0) {
fprintf(stderr,"Malloc failed in function add_to_queue()\n");
exit(1);
}
memcpy(new_element->info, element, q->elementsize);
new_element->priority = priority;
(q->queuelength)++;
if (q->queue == 0) {
new_element->next = 0;
q->queue = new_element;
}
else if ((q->queue)->priority >= priority) {
new_element->next = q->queue;
q->queue = new_element;
}
else {
ptr = q->queue;
while (ptr != 0 && priority >= ptr->priority) {
prev = ptr;
ptr = ptr->next;
}
new_element->next = prev->next;
prev->next = new_element;
}
nolock_rewind_queue(q);
}
}
void add_to_queue(Queue *q, void *element, int priority) {
// lock entire queue
pthread_mutex_lock(&(q->lock));
nolock_add_to_queue(q, element, priority);
// release lock on queue
pthread_mutex_unlock(&(q->lock));
}
int empty_queue(Queue *q) {
return q->queue == 0;
}
void remove_from_front(Queue *q, void *element) {
Queue_element temp;
// lock entire queue
pthread_mutex_lock(&(q->lock));
#if defined(CONSISTENCY_CHECKING)
if (q->queue == 0) {
fprintf(stderr,"NULL pointer in function remove_from_front()\n");
exit(1);
}
else
#endif
{
memcpy(element, q->queue->info, q->elementsize);
free(q->queue->info);
temp = q->queue;
q->queue = q->queue->next;
free(temp);
(q->queuelength)--;
}
nolock_rewind_queue(q);
// release lock on queue
pthread_mutex_unlock(&(q->lock));
}
void peek_at_current(Queue *q, void *element) {
// lock entire queue
pthread_mutex_lock(&(q->lock));
#if defined(CONSISTENCY_CHECKING)
if (q->queue == 0 || q->current == 0) {
fprintf(stderr,"NULL pointer in function peek_at_current()\n");
exit(1);
}
else
#endif
{
memcpy(element, (q->current)->info, q->elementsize);
// release lock on queue
pthread_mutex_unlock(&(q->lock));
}
}
void *pointer_to_current(Queue *q) {
void *data;
// lock entire queue
pthread_mutex_lock(&(q->lock));
#if defined(CONSISTENCY_CHECKING)
if (q->queue == 0 || q->current == 0) {
fprintf(stderr,"NULL pointer in function pointer_to_current()\n");
exit(1);
}
else
#endif
{
data = (q->current)->info;
// release lock on queue
pthread_mutex_unlock(&(q->lock));
return data;
}
}
int current_priority(Queue *q) {
int priority;
// lock entire queue
pthread_mutex_lock(&(q->lock));
#if defined(CONSISTENCY_CHECKING)
if (q->queue == 0 || q->current == 0) {
fprintf(stderr,"NULL pointer in function peek_at_current()\n");
exit(1);
}
else
#endif
{
priority = (q->current)->priority;
// release lock on queue
pthread_mutex_unlock(&(q->lock));
return priority;
}
}
void update_current(Queue *q, void *element) {
// lock entire queue
pthread_mutex_lock(&(q->lock));
#if defined(CONSISTENCY_CHECKING)
if (q->queue == 0 || q->current == 0) {
fprintf(stderr,"NULL pointer in function update_current()\n");
exit(1);
}
else
#endif
{
memcpy(q->current->info, element, q->elementsize);
}
// release lock on queue
pthread_mutex_unlock(&(q->lock));
}
void delete_current(Queue *q) {
Queue_element temp;
// lock entire queue
pthread_mutex_lock(&(q->lock));
#if defined(CONSISTENCY_CHECKING)
if (q->queue == 0 || q->current == 0) {
fprintf(stderr,"NULL pointer in function delete_current()\n");
exit(1);
}
else
#endif
{
free(q->current->info);
temp = q->current;
if (q->previous == 0) { /* deletion at beginning */
q->queue = q->queue->next;
q->current = q->queue;
}
else { /* internal deletion */
q->previous->next = q->current->next;
q->current = q->previous->next;
}
free(temp);
(q->queuelength)--;
}
// release lock on queue
pthread_mutex_unlock(&(q->lock));
}
int end_of_queue(Queue *q) {
return (q->current == 0);
}
void next_element(Queue *q) {
// lock entire queue
pthread_mutex_lock(&(q->lock));
nolock_next_element(q);
// release lock on queue
pthread_mutex_unlock(&(q->lock));
}
void nolock_next_element(Queue *q) {
#if defined(CONSISTENCY_CHECKING)
if (q->queue == 0) {
fprintf(stderr,"NULL pointer in function next_element()\n");
exit(1);
}
else if (q->current == 0) {
fprintf(stderr,"Advance past end in NULL pointer in function next_element()\n");
exit(1);
}
else
#endif
{
q->previous = q->current;
q->current = q->current->next;
}
}
void rewind_queue(Queue *q) {
// lock entire queue
pthread_mutex_lock(&(q->lock));
nolock_rewind_queue(q);
// release lock on queue
pthread_mutex_unlock(&(q->lock));
}
void nolock_rewind_queue(Queue *q) {
q->current = q->queue;
q->previous = 0;
}
int queue_length(Queue *q) {
return q->queuelength;
}
void copy_queue(Queue *q1, Queue *q2) {
Queue_element temp, new_element, endq1;
// to avoid deadlock, this function acquires a global package
// lock!
pthread_mutex_lock(&global_lock);
// lock entire queues q1, q2
pthread_mutex_lock(&(q1->lock));
pthread_mutex_lock(&(q2->lock));
/* free elements in q1 before copy */
nolock_destroy_queue(q1);
/* now make q1 a clone of q2 */
q1->queuelength = 0;
q1->elementsize = q2->elementsize;
q1->queue = 0;
q1->duplicates = q2->duplicates;
q1->compare = q2->compare;
temp = q2->queue;
endq1 = q1->queue;
while (temp != 0) {
new_element = (Queue_element)malloc(sizeof(struct _Queue_element));
if (new_element == 0) {
fprintf(stderr,"Malloc failed in function copy_queue()\n");
exit(1);
}
new_element->info = (void *)malloc(q1->elementsize);
if (new_element->info == 0) {
fprintf(stderr,"Malloc failed in function copy_queue()\n");
exit(1);
}
memcpy(new_element->info, temp->info, q1->elementsize);
new_element->priority = temp->priority;
new_element->next = 0;
(q1->queuelength)++;
if (endq1 == 0) {
q1->queue = new_element;
}
else {
endq1->next = new_element;
}
endq1 = new_element;
temp = temp->next;
}
nolock_rewind_queue(q1);
// release locks on q1, q2
pthread_mutex_unlock(&(q2->lock));
pthread_mutex_unlock(&(q1->lock));
// release global package lock
pthread_mutex_unlock(&global_lock);
}
int equal_queues(Queue *q1, Queue *q2) {
Queue_element temp1, temp2;
int same = TRUE;
// to avoid deadlock, this function acquires a global package
// lock!
pthread_mutex_lock(&global_lock);
// lock entire queues q1, q2
pthread_mutex_lock(&(q1->lock));
pthread_mutex_lock(&(q2->lock));
if (q1->queuelength != q2->queuelength || q1->elementsize != q2->elementsize) {
same = FALSE;
}
else {
temp1 = q1->queue;
temp2 = q2->queue;
while (same && temp1 != 0) {
same = (! memcmp(temp1->info, temp2->info, q1->elementsize) &&
temp1->priority == temp2->priority);
temp1=temp1->next;
temp2=temp2->next;
}
}
// release locks on q1, q2
pthread_mutex_unlock(&(q2->lock));
pthread_mutex_unlock(&(q1->lock));
// release global package lock
pthread_mutex_unlock(&global_lock);
return same;
}
void merge_queues(Queue *q1, Queue *q2) {
Queue_element temp;
// to avoid deadlock, this function acquires a global package
// lock!
pthread_mutex_lock(&global_lock);
// lock entire queues q1, q2
pthread_mutex_lock(&(q1->lock));
pthread_mutex_lock(&(q2->lock));
temp = q2->queue;
while (temp != 0) {
nolock_add_to_queue(q1, temp->info, temp->priority);
temp=temp->next;
}
nolock_rewind_queue(q1);
// release locks on q1, q2
pthread_mutex_unlock(&(q2->lock));
pthread_mutex_unlock(&(q1->lock));
// release global package lock
pthread_mutex_unlock(&global_lock);
}
void local_peek_at_current(Context *ctx, void *element) {
// lock entire queue
pthread_mutex_lock(&(ctx->queue->lock));
#if defined(CONSISTENCY_CHECKING)
if (ctx->queue == 0 || ctx->current == 0) {
fprintf(stderr,"NULL pointer in function peek_at_current()\n");
exit(1);
}
else
#endif
{
memcpy(element, (ctx->current)->info, ctx->queue->elementsize);
// release lock on queue
pthread_mutex_unlock(&(ctx->queue->lock));
}
}
void *local_pointer_to_current(Context *ctx) {
void *data;
// lock entire queue
pthread_mutex_lock(&(ctx->queue->lock));
#if defined(CONSISTENCY_CHECKING)
if (ctx->queue == 0 || ctx->current == 0) {
fprintf(stderr,"NULL pointer in function pointer_to_current()\n");
exit(1);
}
else
#endif
{
data = (ctx->current)->info;
// release lock on queue
pthread_mutex_unlock(&(ctx->queue->lock));
return data;
}
}
int local_current_priority(Context *ctx) {
int priority;
// lock entire queue
pthread_mutex_lock(&(ctx->queue->lock));
#if defined(CONSISTENCY_CHECKING)
if (ctx->queue == 0 || ctx->current == 0) {
fprintf(stderr,"NULL pointer in function peek_at_current()\n");
exit(1);
}
else
#endif
{
priority = (ctx->current)->priority;
// release lock on queue
pthread_mutex_unlock(&(ctx->queue->lock));
return priority;
}
}
void local_update_current(Context *ctx, void *element) {
// lock entire queue
pthread_mutex_lock(&(ctx->queue->lock));
#if defined(CONSISTENCY_CHECKING)
if (ctx->queue == 0 || ctx->current == 0) {
fprintf(stderr,"NULL pointer in function update_current()\n");
exit(1);
}
else
#endif
{
memcpy(ctx->current->info, element, ctx->queue->elementsize);
}
// release lock on queue
pthread_mutex_unlock(&(ctx->queue->lock));
}
void local_delete_current(Context *ctx) {
Queue_element temp;
// lock entire queue
pthread_mutex_lock(&(ctx->queue->lock));
#if defined(CONSISTENCY_CHECKING)
if (ctx->queue == 0 || ctx->current == 0) {
fprintf(stderr,"NULL pointer in function delete_current()\n");
exit(1);
}
else
#endif
{
free(ctx->current->info);
temp = ctx->current;
if (ctx->previous == 0) { /* deletion at beginning */
ctx->queue->queue = ctx->queue->queue->next;
ctx->current = ctx->queue->queue;
}
else { /* internal deletion */
ctx->previous->next = ctx->current->next;
ctx->current = ctx->current->next;
}
free(temp);
(ctx->queue->queuelength)--;
}
// release lock on queue
pthread_mutex_unlock(&(ctx->queue->lock));
}
int local_end_of_queue(Context *ctx) {
return (ctx->current == 0);
}
void local_next_element(Context *ctx) {
// lock entire queue
pthread_mutex_lock(&(ctx->queue->lock));
local_nolock_next_element(ctx);
// release lock on queue
pthread_mutex_unlock(&(ctx->queue->lock));
}
void local_nolock_next_element(Context *ctx) {
#if defined(CONSISTENCY_CHECKING)
if (ctx->queue == 0) {
fprintf(stderr,"NULL pointer in function next_element()\n");
exit(1);
}
else if (ctx->current == 0) {
fprintf(stderr,"Advance past end in NULL pointer in function next_element()\n");
exit(1);
}
else
#endif
{
ctx->previous = ctx->current;
ctx->current = ctx->current->next;
}
}
void local_rewind_queue(Context *ctx) {
// lock entire queue
pthread_mutex_lock(&(ctx->queue->lock));
local_nolock_rewind_queue(ctx);
// release lock on queue
pthread_mutex_unlock(&(ctx->queue->lock));
}
void local_nolock_rewind_queue(Context *ctx) {
ctx->current = ctx->queue->queue;
ctx->previous = 0;
}
void local_init_context(Queue *q, Context *ctx) {
ctx->queue = q;
ctx->current = q->queue;
ctx->previous=0;
}