-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathll_fgl.c
175 lines (146 loc) · 3.22 KB
/
ll_fgl.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
#include <stdio.h>
#include <stdlib.h> /* rand() */
#include <limits.h>
#include <pthread.h> /* for pthread_spinlock_t */
#include "../common/alloc.h"
#include "ll.h"
typedef struct ll_node {
int key;
struct ll_node *next;
pthread_spinlock_t lock;
} ll_node_t;
struct linked_list {
ll_node_t *head;
};
/**
* Create a new linked list node.
**/
static ll_node_t *ll_node_new(int key)
{
ll_node_t *ret;
XMALLOC(ret, 1);
ret->key = key;
ret->next = NULL;
pthread_spin_init(&(ret->lock), PTHREAD_PROCESS_SHARED);
return ret;
}
/**
* Free a linked list node.
**/
static void ll_node_free(ll_node_t *ll_node)
{
pthread_spin_destroy(&(ll_node->lock));
XFREE(ll_node);
}
/**
* Create a new empty linked list.
**/
ll_t *ll_new()
{
ll_t *ret;
XMALLOC(ret, 1);
ret->head = ll_node_new(-1);
ret->head->next = ll_node_new(INT_MAX);
ret->head->next->next = NULL;
return ret;
}
/**
* Free a linked list and all its contained nodes.
**/
void ll_free(ll_t *ll)
{
ll_node_t *next, *curr = ll->head;
while (curr) {
next = curr->next;
ll_node_free(curr);
curr = next;
}
XFREE(ll);
}
int ll_contains(ll_t *ll, int key)
{
int ret = 0;
ll_node_t *pred, *curr;
pred = ll->head;
pthread_spin_lock(&(pred->lock));
curr = pred->next;
pthread_spin_lock(&(curr->lock));
while (curr->key < key && curr->next != NULL) {
pthread_spin_unlock(&(pred->lock));
pred = curr;
curr = curr->next;
pthread_spin_lock(&(curr->lock));
}
ret = (curr->key == key);
pthread_spin_unlock(&(pred->lock));
pthread_spin_unlock(&(curr->lock));
return ret;
}
int ll_add(ll_t *ll, int key)
{
int ret = 0;
ll_node_t *pred, *curr;
ll_node_t *new_node;
pred = ll->head;
pthread_spin_lock(&(pred->lock));
curr = pred->next;
pthread_spin_lock(&(curr->lock));
while (curr->key < key && curr->next != NULL) {
pthread_spin_unlock(&(pred->lock));
pred = curr;
curr = curr->next;
pthread_spin_lock(&(curr->lock));
}
if (curr->key != key) {
new_node = ll_node_new(key);
new_node->next = curr;
pred->next = new_node;
ret = 1;
}
pthread_spin_unlock(&(curr->lock));
pthread_spin_unlock(&(pred->lock));
return ret;
}
int ll_remove(ll_t *ll, int key)
{
int ret = 0;
ll_node_t *pred, *curr;
pred = ll->head;
pthread_spin_lock(&(pred->lock));
curr = pred->next;
pthread_spin_lock(&(curr->lock));
while (curr->key < key && curr->next != NULL) {
pthread_spin_unlock(&(pred->lock));
pred = curr;
curr = curr->next;
pthread_spin_lock(&(curr->lock));
}
if (curr->key == key) {
pred->next = curr->next;
pthread_spin_unlock(&(curr->lock));
pthread_spin_unlock(&(pred->lock));
ll_node_free(curr);
ret = 1;
}
else {
pthread_spin_unlock(&(curr->lock));
pthread_spin_unlock(&(pred->lock));
}
return ret;
}
/**
* Print a linked list.
**/
void ll_print(ll_t *ll)
{
ll_node_t *curr = ll->head;
printf("LIST [");
while (curr) {
if (curr->key == INT_MAX)
printf(" -> MAX");
else
printf(" -> %d", curr->key);
curr = curr->next;
}
printf(" ]\n");
}