This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
forked from linxGnu/grocksdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transactiondb.go
466 lines (383 loc) · 11.7 KB
/
transactiondb.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
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
package grocksdb
// #include <stdlib.h>
// #include "rocksdb/c.h"
import "C"
import (
"fmt"
"unsafe"
)
// TransactionDB is a reusable handle to a RocksDB transactional database on disk, created by OpenTransactionDb.
type TransactionDB struct {
c *C.rocksdb_transactiondb_t
name string
opts *Options
transactionDBOpts *TransactionDBOptions
}
// OpenTransactionDb opens a database with the specified options.
func OpenTransactionDb(
opts *Options,
transactionDBOpts *TransactionDBOptions,
name string,
) (tdb *TransactionDB, err error) {
var (
cErr *C.char
cName = C.CString(name)
)
db := C.rocksdb_transactiondb_open(
opts.c, transactionDBOpts.c, cName, &cErr)
if err = fromCError(cErr); err == nil {
tdb = &TransactionDB{
name: name,
c: db,
opts: opts,
transactionDBOpts: transactionDBOpts,
}
}
C.free(unsafe.Pointer(cName))
return
}
// OpenTransactionDbColumnFamilies opens a database with the specified column families.
func OpenTransactionDbColumnFamilies(
opts *Options,
transactionDBOpts *TransactionDBOptions,
name string,
cfNames []string,
cfOpts []*Options,
) (db *TransactionDB, cfHandles []*ColumnFamilyHandle, err error) {
numColumnFamilies := len(cfNames)
if numColumnFamilies != len(cfOpts) {
err = ErrColumnFamilyMustMatch
return
}
cName := C.CString(name)
cNames := make([]*C.char, numColumnFamilies)
for i, s := range cfNames {
cNames[i] = C.CString(s)
}
cOpts := make([]*C.rocksdb_options_t, numColumnFamilies)
for i, o := range cfOpts {
cOpts[i] = o.c
}
cHandles := make([]*C.rocksdb_column_family_handle_t, numColumnFamilies)
var cErr *C.char
_db := C.rocksdb_transactiondb_open_column_families(
opts.c,
transactionDBOpts.c,
cName,
C.int(numColumnFamilies),
&cNames[0],
&cOpts[0],
&cHandles[0],
&cErr,
)
if err = fromCError(cErr); err == nil {
db = &TransactionDB{
name: name,
c: _db,
opts: opts,
transactionDBOpts: transactionDBOpts,
}
cfHandles = make([]*ColumnFamilyHandle, numColumnFamilies)
for i, c := range cHandles {
cfHandles[i] = newNativeColumnFamilyHandle(c)
}
}
C.free(unsafe.Pointer(cName))
for _, s := range cNames {
C.free(unsafe.Pointer(s))
}
return
}
// NewSnapshot creates a new snapshot of the database.
func (db *TransactionDB) NewSnapshot() *Snapshot {
return newNativeSnapshot(C.rocksdb_transactiondb_create_snapshot(db.c))
}
// ReleaseSnapshot releases the snapshot and its resources.
func (db *TransactionDB) ReleaseSnapshot(snapshot *Snapshot) {
C.rocksdb_transactiondb_release_snapshot(db.c, snapshot.c)
snapshot.c = nil
}
// TransactionBegin begins a new transaction
// with the WriteOptions and TransactionOptions given.
func (db *TransactionDB) TransactionBegin(
opts *WriteOptions,
transactionOpts *TransactionOptions,
oldTransaction *Transaction,
) *Transaction {
if oldTransaction != nil {
cTx := C.rocksdb_transaction_begin(
db.c,
opts.c,
transactionOpts.c,
oldTransaction.c,
)
return newNativeTransaction(cTx)
}
cTx := C.rocksdb_transaction_begin(db.c, opts.c, transactionOpts.c, nil)
return newNativeTransaction(cTx)
}
// Get returns the data associated with the key from the database.
func (db *TransactionDB) Get(opts *ReadOptions, key []byte) (slice *Slice, err error) {
var (
cErr *C.char
cValLen C.size_t
cKey = byteToChar(key)
)
cValue := C.rocksdb_transactiondb_get(
db.c, opts.c, cKey, C.size_t(len(key)), &cValLen, &cErr,
)
if err = fromCError(cErr); err == nil {
slice = NewSlice(cValue, cValLen)
}
return
}
// GetPinned returns the data associated with the key from the database.
func (db *TransactionDB) GetPinned(opts *ReadOptions, key []byte) (handle *PinnableSliceHandle, err error) {
var (
cErr *C.char
cKey = byteToChar(key)
)
cHandle := C.rocksdb_transactiondb_get_pinned(db.c, opts.c, cKey, C.size_t(len(key)), &cErr)
if err = fromCError(cErr); err == nil {
handle = newNativePinnableSliceHandle(cHandle)
}
return
}
// GetCF returns the data associated with the key from the database, from column family.
func (db *TransactionDB) GetCF(opts *ReadOptions, cf *ColumnFamilyHandle, key []byte) (slice *Slice, err error) {
var (
cErr *C.char
cValLen C.size_t
cKey = byteToChar(key)
)
cValue := C.rocksdb_transactiondb_get_cf(
db.c, opts.c, cf.c, cKey, C.size_t(len(key)), &cValLen, &cErr,
)
if err = fromCError(cErr); err == nil {
slice = NewSlice(cValue, cValLen)
}
return
}
// GetPinnedWithCF returns the data associated with the key from the database.
func (db *TransactionDB) GetPinnedWithCF(opts *ReadOptions, cf *ColumnFamilyHandle, key []byte) (handle *PinnableSliceHandle, err error) {
var (
cErr *C.char
cKey = byteToChar(key)
)
cHandle := C.rocksdb_transactiondb_get_pinned_cf(db.c, opts.c, cf.c, cKey, C.size_t(len(key)), &cErr)
if err = fromCError(cErr); err == nil {
handle = newNativePinnableSliceHandle(cHandle)
}
return
}
// MultiGet returns the data associated with the passed keys from the database.
func (db *TransactionDB) MultiGet(opts *ReadOptions, keys ...[]byte) (Slices, error) {
// will destroy `cKeys` before return
cKeys, cKeySizes := byteSlicesToCSlices(keys)
vals := make(charsSlice, len(keys))
valSizes := make(sizeTSlice, len(keys))
rocksErrs := make(charsSlice, len(keys))
C.rocksdb_transactiondb_multi_get(
db.c,
opts.c,
C.size_t(len(keys)),
cKeys.c(),
cKeySizes.c(),
vals.c(),
valSizes.c(),
rocksErrs.c(),
)
var errs []error
for i, rocksErr := range rocksErrs {
if err := fromCError(rocksErr); err != nil {
errs = append(errs, fmt.Errorf("getting %q failed: %v", string(keys[i]), err.Error()))
}
}
if len(errs) > 0 {
cKeys.Destroy()
return nil, fmt.Errorf("failed to get %d keys, first error: %v", len(errs), errs[0])
}
slices := make(Slices, len(keys))
for i, val := range vals {
slices[i] = NewSlice(val, valSizes[i])
}
cKeys.Destroy()
return slices, nil
}
// MultiGetWithCF returns the data associated with the passed keys from the database.
func (db *TransactionDB) MultiGetWithCF(opts *ReadOptions, cf *ColumnFamilyHandle, keys ...[]byte) (Slices, error) {
// will destroy `cKeys` before return
cKeys, cKeySizes := byteSlicesToCSlices(keys)
vals := make(charsSlice, len(keys))
valSizes := make(sizeTSlice, len(keys))
rocksErrs := make(charsSlice, len(keys))
C.rocksdb_transactiondb_multi_get_cf(
db.c,
opts.c,
&cf.c,
C.size_t(len(keys)),
cKeys.c(),
cKeySizes.c(),
vals.c(),
valSizes.c(),
rocksErrs.c(),
)
var errs []error
for i, rocksErr := range rocksErrs {
if err := fromCError(rocksErr); err != nil {
errs = append(errs, fmt.Errorf("getting %q failed: %v", string(keys[i]), err.Error()))
}
}
if len(errs) > 0 {
cKeys.Destroy()
return nil, fmt.Errorf("failed to get %d keys, first error: %v", len(errs), errs[0])
}
slices := make(Slices, len(keys))
for i, val := range vals {
slices[i] = NewSlice(val, valSizes[i])
}
cKeys.Destroy()
return slices, nil
}
// Put writes data associated with a key to the database.
func (db *TransactionDB) Put(opts *WriteOptions, key, value []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
cValue = byteToChar(value)
)
C.rocksdb_transactiondb_put(
db.c, opts.c, cKey, C.size_t(len(key)), cValue, C.size_t(len(value)), &cErr,
)
err = fromCError(cErr)
return
}
// PutCF writes data associated with a key to the database on specific column family.
func (db *TransactionDB) PutCF(opts *WriteOptions, cf *ColumnFamilyHandle, key, value []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
cValue = byteToChar(value)
)
C.rocksdb_transactiondb_put_cf(
db.c, opts.c, cf.c, cKey, C.size_t(len(key)), cValue, C.size_t(len(value)), &cErr,
)
err = fromCError(cErr)
return
}
// Merge writes data associated with a key to the database.
func (db *TransactionDB) Merge(opts *WriteOptions, key, value []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
cValue = byteToChar(value)
)
C.rocksdb_transactiondb_merge(
db.c, opts.c, cKey, C.size_t(len(key)), cValue, C.size_t(len(value)), &cErr,
)
err = fromCError(cErr)
return
}
// MergeCF writes data associated with a key to the database on specific column family.
func (db *TransactionDB) MergeCF(opts *WriteOptions, cf *ColumnFamilyHandle, key, value []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
cValue = byteToChar(value)
)
C.rocksdb_transactiondb_merge_cf(
db.c, opts.c, cf.c, cKey, C.size_t(len(key)), cValue, C.size_t(len(value)), &cErr,
)
err = fromCError(cErr)
return
}
// Delete removes the data associated with the key from the database.
func (db *TransactionDB) Delete(opts *WriteOptions, key []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
)
C.rocksdb_transactiondb_delete(db.c, opts.c, cKey, C.size_t(len(key)), &cErr)
err = fromCError(cErr)
return
}
// DeleteCF removes the data associated with the key from the database on specific column family.
func (db *TransactionDB) DeleteCF(opts *WriteOptions, cf *ColumnFamilyHandle, key []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
)
C.rocksdb_transactiondb_delete_cf(db.c, opts.c, cf.c, cKey, C.size_t(len(key)), &cErr)
err = fromCError(cErr)
return
}
// NewCheckpoint creates a new Checkpoint for this db.
func (db *TransactionDB) NewCheckpoint() (cp *Checkpoint, err error) {
var cErr *C.char
cCheckpoint := C.rocksdb_transactiondb_checkpoint_object_create(
db.c, &cErr,
)
if err = fromCError(cErr); err == nil {
cp = newNativeCheckpoint(cCheckpoint)
}
return
}
// CreateColumnFamily create a new column family.
func (db *TransactionDB) CreateColumnFamily(opts *Options, name string) (handle *ColumnFamilyHandle, err error) {
var (
cErr *C.char
cName = C.CString(name)
)
cHandle := C.rocksdb_transactiondb_create_column_family(db.c, opts.c, cName, &cErr)
if err = fromCError(cErr); err == nil {
handle = newNativeColumnFamilyHandle(cHandle)
}
C.free(unsafe.Pointer(cName))
return
}
// Write writes a WriteBatch to the database.
func (db *TransactionDB) Write(opts *WriteOptions, batch *WriteBatch) (err error) {
var cErr *C.char
C.rocksdb_transactiondb_write(db.c, opts.c, batch.c, &cErr)
err = fromCError(cErr)
return
}
// Flush triggers a manual flush for the database.
func (db *TransactionDB) Flush(opts *FlushOptions) (err error) {
var cErr *C.char
C.rocksdb_transactiondb_flush(db.c, opts.c, &cErr)
err = fromCError(cErr)
return
}
// FlushCF triggers a manual flush for the database on specific column family.
func (db *TransactionDB) FlushCF(cf *ColumnFamilyHandle, opts *FlushOptions) (err error) {
var cErr *C.char
C.rocksdb_transactiondb_flush_cf(db.c, opts.c, cf.c, &cErr)
err = fromCError(cErr)
return
}
// FlushWAL flushes the WAL memory buffer to the file. If sync is true, it calls SyncWAL
// afterwards.
func (db *TransactionDB) FlushWAL(sync bool) (err error) {
var cErr *C.char
C.rocksdb_transactiondb_flush_wal(db.c, boolToChar(sync), &cErr)
err = fromCError(cErr)
return
}
// NewIterator returns an Iterator over the the database that uses the
// ReadOptions given.
func (db *TransactionDB) NewIterator(opts *ReadOptions) *Iterator {
cIter := C.rocksdb_transactiondb_create_iterator(db.c, opts.c)
return newNativeIterator(cIter)
}
// NewIteratorCF returns an Iterator over the the database and column family
// that uses the ReadOptions given.
func (db *TransactionDB) NewIteratorCF(opts *ReadOptions, cf *ColumnFamilyHandle) *Iterator {
cIter := C.rocksdb_transactiondb_create_iterator_cf(db.c, opts.c, cf.c)
return newNativeIterator(cIter)
}
// Close closes the database.
func (db *TransactionDB) Close() {
C.rocksdb_transactiondb_close(db.c)
db.c = nil
}