-
Notifications
You must be signed in to change notification settings - Fork 28
/
partition_list.go
269 lines (210 loc) · 5.57 KB
/
partition_list.go
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
package catena
import (
"errors"
"fmt"
"sync/atomic"
"unsafe"
"github.com/Cistern/catena/partition"
)
type partitionList struct {
head unsafe.Pointer
size int32
}
type partitionListNode struct {
val partition.Partition
next unsafe.Pointer
}
type partitionListIterator struct {
list *partitionList
current *partitionListNode
valid bool
}
func comparePartitions(a, b partition.Partition) int {
// Highest timestamp first
return int(b.MinTimestamp() - a.MinTimestamp())
}
func newPartitionList() *partitionList {
return &partitionList{}
}
// Insert inserts v into the list in order. An error is returned if v is already present.
func (l *partitionList) Insert(v partition.Partition) error {
n := &partitionListNode{
val: v,
next: nil,
}
HEAD:
headPtr := atomic.LoadPointer(&l.head)
if headPtr == nil {
if !atomic.CompareAndSwapPointer(&l.head, headPtr, unsafe.Pointer(n)) {
goto HEAD
}
atomic.AddInt32(&l.size, 1)
return nil
}
headNode := (*partitionListNode)(headPtr)
if comparePartitions(headNode.val, n.val) > 0 {
n.next = headPtr
if !atomic.CompareAndSwapPointer(&l.head, headPtr, unsafe.Pointer(n)) {
goto HEAD
}
atomic.AddInt32(&l.size, 1)
return nil
}
NEXT:
nextPtr := atomic.LoadPointer(&headNode.next)
if nextPtr == nil {
if !atomic.CompareAndSwapPointer(&headNode.next, nextPtr, unsafe.Pointer(n)) {
goto NEXT
}
atomic.AddInt32(&l.size, 1)
return nil
}
nextNode := (*partitionListNode)(nextPtr)
if comparePartitions(nextNode.val, n.val) > 0 {
n.next = nextPtr
if !atomic.CompareAndSwapPointer(&headNode.next, nextPtr, unsafe.Pointer(n)) {
goto NEXT
}
atomic.AddInt32(&l.size, 1)
return nil
}
if comparePartitions(nextNode.val, n.val) == 0 {
return errors.New("catena/partition_list: partition exists")
}
headNode = nextNode
goto NEXT
}
func (l *partitionList) Swap(old, new partition.Partition) error {
n := &partitionListNode{
val: new,
next: nil,
}
HEAD:
headPtr := atomic.LoadPointer(&l.head)
if headPtr == nil {
return errors.New("catena/partition_list: partition not found")
}
headNode := (*partitionListNode)(headPtr)
if comparePartitions(headNode.val, n.val) == 0 {
n.next = headNode.next
if !atomic.CompareAndSwapPointer(&l.head, headPtr, unsafe.Pointer(n)) {
goto HEAD
}
return nil
}
NEXT:
nextPtr := atomic.LoadPointer(&headNode.next)
if nextPtr == nil {
return errors.New("catena/partition_list: partition not found")
}
nextNode := (*partitionListNode)(nextPtr)
if comparePartitions(nextNode.val, n.val) == 0 {
n.next = nextNode.next
if !atomic.CompareAndSwapPointer(&headNode.next, nextPtr, unsafe.Pointer(n)) {
goto NEXT
}
return nil
}
if comparePartitions(nextNode.val, n.val) > 0 {
return errors.New("catena/partition_list: partition not found")
}
headNode = nextNode
goto NEXT
}
// Remove removes v from the list. An error is returned if v is not present.
func (l *partitionList) Remove(v partition.Partition) error {
HEAD:
headPtr := atomic.LoadPointer(&l.head)
if headPtr == nil {
return errors.New("catena/partition_list: partition not found")
}
headNode := (*partitionListNode)(headPtr)
if comparePartitions(headNode.val, v) == 0 {
nextPtr := atomic.LoadPointer(&headNode.next)
if !atomic.CompareAndSwapPointer(&l.head, headPtr, nextPtr) {
goto HEAD
}
atomic.AddInt32(&l.size, -1)
return nil
}
NEXT:
nextPtr := atomic.LoadPointer(&headNode.next)
if nextPtr == nil {
return errors.New("catena/partition_list: partition not found")
}
nextNode := (*partitionListNode)(nextPtr)
if comparePartitions(nextNode.val, v) > 0 {
return errors.New("catena/partition_list: partition not found")
}
if comparePartitions(nextNode.val, v) == 0 {
replacementPtr := atomic.LoadPointer(&nextNode.next)
if !atomic.CompareAndSwapPointer(&headNode.next, nextPtr, replacementPtr) {
goto NEXT
}
atomic.AddInt32(&l.size, -1)
return nil
}
headNode = nextNode
goto NEXT
}
// Size returns the number of elements currently in the list.
func (l *partitionList) Size() int {
return int(atomic.LoadInt32(&l.size))
}
// NewIterator returns a new iterator. Values can be read
// after Next is called.
func (l *partitionList) NewIterator() *partitionListIterator {
return &partitionListIterator{
list: l,
valid: true,
}
}
// Next positions the iterator at the next node in the list.
// Next will be positioned at the head on the first call.
// The return value will be true if a value can be read from the list.
func (i *partitionListIterator) Next() bool {
if !i.valid {
return false
}
if i.current == nil {
head := atomic.LoadPointer(&i.list.head)
if head == nil {
i.valid = false
return false
}
i.current = (*partitionListNode)(head)
return true
}
next := atomic.LoadPointer(&i.current.next)
i.current = (*partitionListNode)(next)
i.valid = i.current != nil
return i.valid
}
func (i *partitionListIterator) HasNext() bool {
if i.current == nil {
return false
}
return atomic.LoadPointer(&i.current.next) != nil
}
// Value reads the value from the current node of the iterator.
// An error is returned if a value cannot be retrieved.
func (i *partitionListIterator) Value() (partition.Partition, error) {
var v partition.Partition
if i.current == nil {
return v, errors.New("catena/partition_list: partition not found")
}
return i.current.val, nil
}
// String returns the string representation of the list.
func (l *partitionList) String() string {
output := ""
if l.head == nil {
return output
}
i := l.NewIterator()
for i.Next() {
v, _ := i.Value()
output += fmt.Sprintf("%v ", v)
}
return output
}