-
Notifications
You must be signed in to change notification settings - Fork 0
/
write_tx.go
384 lines (281 loc) · 7.35 KB
/
write_tx.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
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
package bolted
import (
"context"
"errors"
"fmt"
"io"
"path/filepath"
"runtime"
"github.com/draganm/bolted/dbpath"
"go.etcd.io/bbolt"
)
type writeTx struct {
btx *bbolt.Tx
readOnly bool
rootBucket *bbolt.Bucket
fillPercent float64
observer *txObserver
ctx context.Context
}
func (w *writeTx) checkForCancelledContext() {
if w.ctx.Err() != nil {
panic(w.ctx.Err())
}
}
func (w *writeTx) SetFillPercent(fillPercent float64) {
w.checkForCancelledContext()
if fillPercent < 0.1 {
panic(fmt.Errorf("%s: %w", "SetFillPercent", errors.New("fill percent is too low")))
}
if fillPercent > 1.0 {
panic(fmt.Errorf("%s: %w", "SetFillPercent", errors.New("fill percent is too high")))
}
w.fillPercent = fillPercent
}
func raiseErrorForPath(pth dbpath.Path, method string, err error) {
_, file, line, ok := runtime.Caller(2)
if !ok {
file = "unknown.go"
line = 0
}
file = filepath.Base(file)
panic(fmt.Errorf("caller %s:%d: %s(%s): %w", file, line, method, pth.String(), err))
}
func (w *writeTx) CreateMap(path dbpath.Path) {
w.checkForCancelledContext()
if len(path) == 0 {
raiseErrorForPath(path, "CreateMap", errors.New("root map already exists"))
}
var bucket = w.rootBucket
if bucket == nil {
raiseErrorForPath(path, "CreateMap", errors.New("root bucket not found"))
}
for _, p := range path[:len(path)-1] {
bucket = bucket.Bucket([]byte(p))
if bucket == nil {
raiseErrorForPath(path, "CreateMap", errors.New("one of the parent buckets does not exist"))
}
}
last := path[len(path)-1]
bucket.FillPercent = w.fillPercent
_, err := bucket.CreateBucket([]byte(last))
if err != nil {
raiseErrorForPath(path, "CreateMap", err)
}
bucket.NextSequence()
w.observer.createMap(path)
}
func (w *writeTx) Delete(path dbpath.Path) {
w.checkForCancelledContext()
if len(path) == 0 {
raiseErrorForPath(path, "Delete", errors.New("root cannot be deleted"))
}
var bucket = w.rootBucket
if bucket == nil {
raiseErrorForPath(path, "Delete", errors.New("root bucket not found"))
}
for _, p := range path[:len(path)-1] {
bucket = bucket.Bucket([]byte(p))
if bucket == nil {
raiseErrorForPath(path, "Delete", errors.New("one of the parent buckets does not exist"))
}
}
last := []byte(path[len(path)-1])
bucket.FillPercent = w.fillPercent
countDownSize := func() {
size := bucket.Sequence()
if size == 0 {
raiseErrorForPath(path, "Delete", errors.New("successful deletion from empty sequence - this should never happen"))
}
size--
bucket.SetSequence(size)
}
val := bucket.Get(last)
if val != nil {
err := bucket.Delete(last)
if err != nil {
raiseErrorForPath(path, "Delete", err)
}
countDownSize()
w.observer.delete(path)
return
}
b := bucket.Bucket(last)
if b == nil {
raiseErrorForPath(path, "Delete", ErrNotFound)
}
err := bucket.DeleteBucket(last)
if err != nil {
raiseErrorForPath(path, "Delete", err)
}
countDownSize()
w.observer.delete(path)
}
func (w *writeTx) Put(path dbpath.Path, value []byte) {
w.checkForCancelledContext()
if len(path) == 0 {
raiseErrorForPath(path, "Put", errors.New("value cannot be put as root"))
}
var bucket = w.rootBucket
if bucket == nil {
raiseErrorForPath(path, "Put", errors.New("root bucket not found"))
}
for _, p := range path[:len(path)-1] {
bucket = bucket.Bucket([]byte(p))
if bucket == nil {
raiseErrorForPath(path, "Put", errors.New("one of the parent buckets does not exist"))
}
}
last := path[len(path)-1]
exists := bucket.Get([]byte(last)) != nil
bucket.FillPercent = w.fillPercent
err := bucket.Put([]byte(last), value)
if err == bbolt.ErrIncompatibleValue {
raiseErrorForPath(path, "Put", ErrConflict)
}
if err != nil {
raiseErrorForPath(path, "Put", err)
}
if !exists {
bucket.NextSequence()
}
w.observer.put(path)
}
func (w *writeTx) Get(path dbpath.Path) (v []byte) {
w.checkForCancelledContext()
if len(path) == 0 {
raiseErrorForPath(path, "Get", errors.New("cannot get value of root"))
}
var bucket = w.rootBucket
if bucket == nil {
raiseErrorForPath(path, "Get", errors.New("root bucket not found"))
}
for _, p := range path[:len(path)-1] {
bucket = bucket.Bucket([]byte(p))
if bucket == nil {
raiseErrorForPath(path, "Get", errors.New("one of the parent buckets does not exist"))
}
}
last := path[len(path)-1]
v = bucket.Get([]byte(last))
if v == nil {
raiseErrorForPath(path, "Get", errors.New("value not found"))
}
copyOfValue := make([]byte, len(v))
copy(copyOfValue, v)
return copyOfValue
}
func (w *writeTx) ID() uint64 {
return uint64(w.btx.ID())
}
func (w *writeTx) Iterate(path dbpath.Path) (it Iterator) {
w.checkForCancelledContext()
var bucket = w.rootBucket
if bucket == nil {
raiseErrorForPath(path, "Iterate", errors.New("root bucket not found"))
}
for _, p := range path {
bucket = bucket.Bucket([]byte(p))
if bucket == nil {
raiseErrorForPath(path, "Iterate", errors.New("one of the parent buckets does not exist"))
}
}
c := bucket.Cursor()
k, v := c.First()
copyOfValue := make([]byte, len(v))
copy(copyOfValue, v)
return &iterator{
c: c,
key: string(k),
value: copyOfValue,
done: k == nil,
ctx: w.ctx,
}
}
func (w *writeTx) Exists(path dbpath.Path) (ex bool) {
w.checkForCancelledContext()
if len(path) == 0 {
// root always exists
return true
}
var bucket = w.rootBucket
if bucket == nil {
raiseErrorForPath(path, "Exists", errors.New("root bucket not found"))
}
for _, p := range path[:len(path)-1] {
bucket = bucket.Bucket([]byte(p))
if bucket == nil {
return false
}
}
last := path[len(path)-1]
v := bucket.Get([]byte(last))
if v != nil {
return true
}
return bucket.Bucket([]byte(last)) != nil
}
func (w *writeTx) IsMap(path dbpath.Path) (ism bool) {
w.checkForCancelledContext()
if len(path) == 0 {
// root is always a map
return true
}
var bucket = w.rootBucket
if bucket == nil {
raiseErrorForPath(path, "IsMap", errors.New("root bucket not found"))
}
for _, p := range path[:len(path)-1] {
bucket = bucket.Bucket([]byte(p))
if bucket == nil {
raiseErrorForPath(path, "IsMap", errors.New("one of the parent buckets does not exist"))
}
}
last := path[len(path)-1]
v := bucket.Get([]byte(last))
if v != nil {
return false
}
return bucket.Bucket([]byte(last)) != nil
}
func (w *writeTx) GetSizeOf(path dbpath.Path) (s uint64) {
w.checkForCancelledContext()
var bucket = w.rootBucket
if bucket == nil {
raiseErrorForPath(path, "GetSizeOf", errors.New("root bucket not found"))
}
if len(path) == 0 {
return bucket.Sequence()
}
for _, p := range path[:len(path)-1] {
bucket = bucket.Bucket([]byte(p))
if bucket == nil {
raiseErrorForPath(path, "GetSizeOf", errors.New("one of the parent buckets does not exist"))
}
}
last := path[len(path)-1]
v := bucket.Get([]byte(last))
if v != nil {
return uint64(len(v))
}
bucket = bucket.Bucket([]byte(last))
if bucket == nil {
raiseErrorForPath(path, "GetSizeOf", errors.New("does not exist"))
}
return bucket.Sequence()
}
func (w *writeTx) DumpDatabase(wr io.Writer) (n int64) {
w.checkForCancelledContext()
n, err := w.btx.WriteTo(wr)
if err != nil {
panic(fmt.Errorf("%s: %w", "Dump", err))
}
return n
}
func (w *writeTx) GetDBFileSize() int64 {
w.checkForCancelledContext()
return w.btx.Size()
}
func (w *writeTx) Context() context.Context {
return w.ctx
}