forked from ipfs/go-ds-leveldb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datastore.go
369 lines (320 loc) · 8.24 KB
/
datastore.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
package leveldb
import (
"math/rand"
"os"
"path/filepath"
"sync"
"time"
crust "github.com/crustio/go-ipfs-encryptor/crust"
"github.com/ipfs/go-datastore"
ds "github.com/ipfs/go-datastore"
dsq "github.com/ipfs/go-datastore/query"
"github.com/syndtr/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb/errors"
"github.com/syndtr/goleveldb/leveldb/iterator"
"github.com/syndtr/goleveldb/leveldb/opt"
"github.com/syndtr/goleveldb/leveldb/storage"
"github.com/syndtr/goleveldb/leveldb/util"
)
type Datastore struct {
*accessor
DB *leveldb.DB
path string
}
func init() {
rand.Seed(time.Now().UTC().UnixNano())
}
var _ ds.Datastore = (*Datastore)(nil)
var _ ds.TxnDatastore = (*Datastore)(nil)
// Options is an alias of syndtr/goleveldb/opt.Options which might be extended
// in the future.
type Options opt.Options
// NewDatastore returns a new datastore backed by leveldb
//
// for path == "", an in memory bachend will be chosen
func NewDatastore(path string, opts *Options) (*Datastore, error) {
var nopts opt.Options
if opts != nil {
nopts = opt.Options(*opts)
}
var err error
var db *leveldb.DB
if path == "" {
db, err = leveldb.Open(storage.NewMemStorage(), &nopts)
} else {
db, err = leveldb.OpenFile(path, &nopts)
if errors.IsCorrupted(err) && !nopts.GetReadOnly() {
db, err = leveldb.RecoverFile(path, &nopts)
}
}
if err != nil {
return nil, err
}
ds := Datastore{
accessor: &accessor{ldb: db, syncWrites: true, closeLk: new(sync.RWMutex)},
DB: db,
path: path,
}
return &ds, nil
}
// An extraction of the common interface between LevelDB Transactions and the DB itself.
//
// It allows to plug in either inside the `accessor`.
type levelDbOps interface {
Put(key, value []byte, wo *opt.WriteOptions) error
Get(key []byte, ro *opt.ReadOptions) (value []byte, err error)
Has(key []byte, ro *opt.ReadOptions) (ret bool, err error)
Delete(key []byte, wo *opt.WriteOptions) error
NewIterator(slice *util.Range, ro *opt.ReadOptions) iterator.Iterator
}
// Datastore operations using either the DB or a transaction as the backend.
type accessor struct {
ldb levelDbOps
syncWrites bool
closeLk *sync.RWMutex
}
func (a *accessor) Put(key ds.Key, value []byte) (err error) {
a.closeLk.RLock()
defer a.closeLk.RUnlock()
if ok, sb := crust.TryGetSealedBlock(value); ok {
// fmt.Printf("Sb: {path: %s, size: %d}\n", sb.Path, sb.Size)
data, err := a.GetRaw(key)
if err == datastore.ErrNotFound {
return a.ldb.Put(key.Bytes(), sb.ToSealedInfo().Bytes(), &opt.WriteOptions{Sync: a.syncWrites})
} else if err != nil {
return err
}
if ok, si := crust.TryGetSealedInfo(data); !ok {
return a.ldb.Put(key.Bytes(), sb.ToSealedInfo().Bytes(), &opt.WriteOptions{Sync: a.syncWrites})
} else {
// for i := 0; i < len(si.Sbs); i++ {
// fmt.Printf("Sbs[%d]: {path: %s, size: %d}\n", i, si.Sbs[i].Path, si.Sbs[i].Size)
// }
return a.ldb.Put(key.Bytes(), si.AddSealedBlock(*sb).Bytes(), &opt.WriteOptions{Sync: a.syncWrites})
}
}
return a.ldb.Put(key.Bytes(), value, &opt.WriteOptions{Sync: a.syncWrites})
}
func (a *accessor) Sync(prefix ds.Key) error {
return nil
}
func (a *accessor) GetRaw(key ds.Key) (value []byte, err error) {
a.closeLk.RLock()
defer a.closeLk.RUnlock()
val, err := a.ldb.Get(key.Bytes(), nil)
if err != nil {
if err == leveldb.ErrNotFound {
return nil, ds.ErrNotFound
}
return nil, err
}
return val, nil
}
func (a *accessor) Get(key ds.Key) (value []byte, err error) {
a.closeLk.RLock()
defer a.closeLk.RUnlock()
val, err := a.ldb.Get(key.Bytes(), nil)
if err != nil {
if err == leveldb.ErrNotFound {
return nil, ds.ErrNotFound
}
return nil, err
}
if ok, si := crust.TryGetSealedInfo(val); ok {
sbsLen := len(si.Sbs)
if sbsLen == 0 {
return nil, ds.ErrNotFound
}
rindex := rand.Intn(sbsLen)
var ret []byte
var code int
for i := rindex; i < len(si.Sbs)+rindex; {
nowi := i % len(si.Sbs)
ret, err, code = crust.Unseal(si.Sbs[nowi].Path)
if err != nil {
switch code {
case 200:
return ret, nil
// Can't find
case 404:
si.Sbs = append(si.Sbs[:nowi], si.Sbs[nowi+1:]...)
continue
// Lost
case 410:
i++
continue
default:
return nil, err
}
} else {
break
}
}
if sbsLen != len(si.Sbs) {
err = a.Put(key, si.Bytes())
if err != nil {
return nil, err
}
}
if ret == nil {
return nil, ds.ErrNotFound
} else {
return ret, nil
}
}
return val, nil
}
func (a *accessor) Has(key ds.Key) (exists bool, err error) {
a.closeLk.RLock()
defer a.closeLk.RUnlock()
return a.ldb.Has(key.Bytes(), nil)
}
func (a *accessor) GetSize(key ds.Key) (size int, err error) {
value, err := a.GetRaw(key)
if err != nil {
return -1, err
}
if ok, si := crust.TryGetSealedInfo(value); ok {
if len(si.Sbs) == 0 {
return -1, ds.ErrNotFound
}
return si.Sbs[0].Size, nil
}
return len(value), nil
}
func (a *accessor) Delete(key ds.Key) (err error) {
a.closeLk.RLock()
defer a.closeLk.RUnlock()
return a.ldb.Delete(key.Bytes(), &opt.WriteOptions{Sync: a.syncWrites})
}
func (a *accessor) Query(q dsq.Query) (dsq.Results, error) {
a.closeLk.RLock()
defer a.closeLk.RUnlock()
var rnge *util.Range
// make a copy of the query for the fallback naive query implementation.
// don't modify the original so res.Query() returns the correct results.
qNaive := q
prefix := ds.NewKey(q.Prefix).String()
if prefix != "/" {
rnge = util.BytesPrefix([]byte(prefix + "/"))
qNaive.Prefix = ""
}
i := a.ldb.NewIterator(rnge, nil)
next := i.Next
if len(q.Orders) > 0 {
switch q.Orders[0].(type) {
case dsq.OrderByKey, *dsq.OrderByKey:
qNaive.Orders = nil
case dsq.OrderByKeyDescending, *dsq.OrderByKeyDescending:
next = func() bool {
next = i.Prev
return i.Last()
}
qNaive.Orders = nil
default:
}
}
r := dsq.ResultsFromIterator(q, dsq.Iterator{
Next: func() (dsq.Result, bool) {
a.closeLk.RLock()
defer a.closeLk.RUnlock()
if !next() {
return dsq.Result{}, false
}
k := string(i.Key())
e := dsq.Entry{Key: k, Size: len(i.Value())}
if !q.KeysOnly {
buf := make([]byte, len(i.Value()))
copy(buf, i.Value())
e.Value = buf
}
return dsq.Result{Entry: e}, true
},
Close: func() error {
a.closeLk.RLock()
defer a.closeLk.RUnlock()
i.Release()
return nil
},
})
return dsq.NaiveQueryApply(qNaive, r), nil
}
// DiskUsage returns the current disk size used by this levelDB.
// For in-mem datastores, it will return 0.
func (d *Datastore) DiskUsage() (uint64, error) {
d.closeLk.RLock()
defer d.closeLk.RUnlock()
if d.path == "" { // in-mem
return 0, nil
}
var du uint64
err := filepath.Walk(d.path, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
du += uint64(info.Size())
return nil
})
if err != nil {
return 0, err
}
return du, nil
}
// LevelDB needs to be closed.
func (d *Datastore) Close() (err error) {
d.closeLk.Lock()
defer d.closeLk.Unlock()
return d.DB.Close()
}
type leveldbBatch struct {
b *leveldb.Batch
db *leveldb.DB
closeLk *sync.RWMutex
syncWrites bool
}
func (d *Datastore) Batch() (ds.Batch, error) {
return &leveldbBatch{
b: new(leveldb.Batch),
db: d.DB,
closeLk: d.closeLk,
syncWrites: d.syncWrites,
}, nil
}
func (b *leveldbBatch) Put(key ds.Key, value []byte) error {
b.b.Put(key.Bytes(), value)
return nil
}
func (b *leveldbBatch) Commit() error {
b.closeLk.RLock()
defer b.closeLk.RUnlock()
return b.db.Write(b.b, &opt.WriteOptions{Sync: b.syncWrites})
}
func (b *leveldbBatch) Delete(key ds.Key) error {
b.b.Delete(key.Bytes())
return nil
}
// A leveldb transaction embedding the accessor backed by the transaction.
type transaction struct {
*accessor
tx *leveldb.Transaction
}
func (t *transaction) Commit() error {
t.closeLk.RLock()
defer t.closeLk.RUnlock()
return t.tx.Commit()
}
func (t *transaction) Discard() {
t.closeLk.RLock()
defer t.closeLk.RUnlock()
t.tx.Discard()
}
func (d *Datastore) NewTransaction(readOnly bool) (ds.Txn, error) {
d.closeLk.RLock()
defer d.closeLk.RUnlock()
tx, err := d.DB.OpenTransaction()
if err != nil {
return nil, err
}
accessor := &accessor{ldb: tx, syncWrites: false, closeLk: d.closeLk}
return &transaction{accessor, tx}, nil
}