forked from linxGnu/grocksdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transaction.go
484 lines (404 loc) · 14.3 KB
/
transaction.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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
package grocksdb
// #include <stdlib.h>
// #include "rocksdb/c.h"
import "C"
import (
"fmt"
)
// Transaction is used with TransactionDB for transaction support.
type Transaction struct {
c *C.rocksdb_transaction_t
}
// NewNativeTransaction creates a Transaction object.
func newNativeTransaction(c *C.rocksdb_transaction_t) *Transaction {
return &Transaction{c: c}
}
// SetName of transaction.
func (transaction *Transaction) SetName(name string) (err error) {
var (
cErr *C.char
name_ = byteToChar([]byte(name))
)
C.rocksdb_transaction_set_name(transaction.c, name_, C.size_t(len(name)), &cErr)
err = fromCError(cErr)
return
}
// GetName of transaction.
func (transaction *Transaction) GetName() string {
var len C.size_t
cValue := C.rocksdb_transaction_get_name(transaction.c, &len)
return toString(cValue, C.int(len))
}
// Prepare transaction.
func (transaction *Transaction) Prepare() (err error) {
var cErr *C.char
C.rocksdb_transaction_prepare(transaction.c, &cErr)
err = fromCError(cErr)
return
}
// Commit commits the transaction to the database.
func (transaction *Transaction) Commit() (err error) {
var cErr *C.char
C.rocksdb_transaction_commit(transaction.c, &cErr)
err = fromCError(cErr)
return
}
// Rollback performs a rollback on the transaction.
func (transaction *Transaction) Rollback() (err error) {
var cErr *C.char
C.rocksdb_transaction_rollback(transaction.c, &cErr)
err = fromCError(cErr)
return
}
// Get returns the data associated with the key from the database given this transaction.
func (transaction *Transaction) Get(opts *ReadOptions, key []byte) (slice *Slice, err error) {
var (
cErr *C.char
cValLen C.size_t
cKey = byteToChar(key)
)
cValue := C.rocksdb_transaction_get(
transaction.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 transaction.
func (transaction *Transaction) GetPinned(opts *ReadOptions, key []byte) (handle *PinnableSliceHandle, err error) {
var (
cErr *C.char
cKey = byteToChar(key)
)
cHandle := C.rocksdb_transaction_get_pinned(transaction.c, opts.c, cKey, C.size_t(len(key)), &cErr)
if err = fromCError(cErr); err == nil {
handle = newNativePinnableSliceHandle(cHandle)
}
return
}
// GetWithCF returns the data associated with the key from the database, with column family, given this transaction.
func (transaction *Transaction) GetWithCF(opts *ReadOptions, cf *ColumnFamilyHandle, key []byte) (slice *Slice, err error) {
var (
cErr *C.char
cValLen C.size_t
cKey = byteToChar(key)
)
cValue := C.rocksdb_transaction_get_cf(
transaction.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 transaction.
func (transaction *Transaction) GetPinnedWithCF(opts *ReadOptions, cf *ColumnFamilyHandle, key []byte) (handle *PinnableSliceHandle, err error) {
var (
cErr *C.char
cKey = byteToChar(key)
)
cHandle := C.rocksdb_transaction_get_pinned_cf(transaction.c, opts.c, cf.c, cKey, C.size_t(len(key)), &cErr)
if err = fromCError(cErr); err == nil {
handle = newNativePinnableSliceHandle(cHandle)
}
return
}
// GetForUpdate returns the data associated with the key and puts an exclusive lock on the key
// from the database given this transaction.
func (transaction *Transaction) GetForUpdate(opts *ReadOptions, key []byte) (slice *Slice, err error) {
var (
cErr *C.char
cValLen C.size_t
cKey = byteToChar(key)
)
cValue := C.rocksdb_transaction_get_for_update(
transaction.c, opts.c, cKey, C.size_t(len(key)), &cValLen, C.uchar(byte(1)) /*exclusive*/, &cErr,
)
if err = fromCError(cErr); err == nil {
slice = NewSlice(cValue, cValLen)
}
return
}
// GetPinnedForUpdate returns the data associated with the key and puts an exclusive lock on the key
// from the database given this transaction.
func (transaction *Transaction) GetPinnedForUpdate(opts *ReadOptions, key []byte) (handle *PinnableSliceHandle, err error) {
var (
cErr *C.char
cKey = byteToChar(key)
)
cHandle := C.rocksdb_transaction_get_pinned_for_update(
transaction.c, opts.c, cKey, C.size_t(len(key)),
C.uchar(byte(1)), /*exclusive*/
&cErr)
if err = fromCError(cErr); err == nil {
handle = newNativePinnableSliceHandle(cHandle)
}
return
}
// GetForUpdateWithCF queries the data associated with the key and puts an exclusive lock on the key
// from the database, with column family, given this transaction.
func (transaction *Transaction) GetForUpdateWithCF(opts *ReadOptions, cf *ColumnFamilyHandle, key []byte) (slice *Slice, err error) {
var (
cErr *C.char
cValLen C.size_t
cKey = byteToChar(key)
)
cValue := C.rocksdb_transaction_get_for_update_cf(
transaction.c, opts.c, cf.c, cKey, C.size_t(len(key)), &cValLen, C.uchar(byte(1)) /*exclusive*/, &cErr,
)
if err = fromCError(cErr); err == nil {
slice = NewSlice(cValue, cValLen)
}
return
}
// GetPinnedForUpdateWithCF returns the data associated with the key and puts an exclusive lock on the key
// from the database given this transaction.
func (transaction *Transaction) GetPinnedForUpdateWithCF(opts *ReadOptions, cf *ColumnFamilyHandle, key []byte) (handle *PinnableSliceHandle, err error) {
var (
cErr *C.char
cKey = byteToChar(key)
)
cHandle := C.rocksdb_transaction_get_pinned_for_update_cf(
transaction.c, opts.c, cf.c, cKey, C.size_t(len(key)),
C.uchar(byte(1)), /*exclusive*/
&cErr)
if err = fromCError(cErr); err == nil {
handle = newNativePinnableSliceHandle(cHandle)
}
return
}
// MultiGet returns the data associated with the passed keys from the transaction.
func (transaction *Transaction) 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_transaction_multi_get(
transaction.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 transaction.
func (transaction *Transaction) 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_transaction_multi_get_cf(
transaction.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 transaction.
func (transaction *Transaction) Put(key, value []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
cValue = byteToChar(value)
)
C.rocksdb_transaction_put(
transaction.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 transaction. Key belongs to column family.
func (transaction *Transaction) PutCF(cf *ColumnFamilyHandle, key, value []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
cValue = byteToChar(value)
)
C.rocksdb_transaction_put_cf(
transaction.c, cf.c, cKey, C.size_t(len(key)), cValue, C.size_t(len(value)), &cErr,
)
err = fromCError(cErr)
return
}
// Merge key, value to the transaction.
func (transaction *Transaction) Merge(key, value []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
cValue = byteToChar(value)
)
C.rocksdb_transaction_merge(
transaction.c, cKey, C.size_t(len(key)), cValue, C.size_t(len(value)), &cErr,
)
err = fromCError(cErr)
return
}
// MergeCF key, value to the transaction on specific column family.
func (transaction *Transaction) MergeCF(cf *ColumnFamilyHandle, key, value []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
cValue = byteToChar(value)
)
C.rocksdb_transaction_merge_cf(
transaction.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 transaction.
func (transaction *Transaction) Delete(key []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
)
C.rocksdb_transaction_delete(transaction.c, cKey, C.size_t(len(key)), &cErr)
err = fromCError(cErr)
return
}
// DeleteCF removes the data associated with the key (belongs to specific column family) from the transaction.
func (transaction *Transaction) DeleteCF(cf *ColumnFamilyHandle, key []byte) (err error) {
var (
cErr *C.char
cKey = byteToChar(key)
)
C.rocksdb_transaction_delete_cf(transaction.c, cf.c, cKey, C.size_t(len(key)), &cErr)
err = fromCError(cErr)
return
}
// NewIterator returns an iterator that will iterate on all keys in the default
// column family including both keys in the DB and uncommitted keys in this
// transaction.
//
// Setting read_options.snapshot will affect what is read from the
// DB but will NOT change which keys are read from this transaction (the keys
// in this transaction do not yet belong to any snapshot and will be fetched
// regardless).
//
// Caller is responsible for deleting the returned Iterator.
func (transaction *Transaction) NewIterator(opts *ReadOptions) *Iterator {
return newNativeIterator(C.rocksdb_transaction_create_iterator(transaction.c, opts.c))
}
// NewIteratorCF returns an iterator that will iterate on all keys in the specific
// column family including both keys in the DB and uncommitted keys in this
// transaction.
//
// Setting read_options.snapshot will affect what is read from the
// DB but will NOT change which keys are read from this transaction (the keys
// in this transaction do not yet belong to any snapshot and will be fetched
// regardless).
//
// Caller is responsible for deleting the returned Iterator.
func (transaction *Transaction) NewIteratorCF(opts *ReadOptions, cf *ColumnFamilyHandle) *Iterator {
return newNativeIterator(C.rocksdb_transaction_create_iterator_cf(transaction.c, opts.c, cf.c))
}
// SetSavePoint records the state of the transaction for future calls to
// RollbackToSavePoint(). May be called multiple times to set multiple save
// points.
func (transaction *Transaction) SetSavePoint() {
C.rocksdb_transaction_set_savepoint(transaction.c)
}
// RollbackToSavePoint undo all operations in this transaction (Put, Merge, Delete, PutLogData)
// since the most recent call to SetSavePoint() and removes the most recent
// SetSavePoint().
func (transaction *Transaction) RollbackToSavePoint() (err error) {
var cErr *C.char
C.rocksdb_transaction_rollback_to_savepoint(transaction.c, &cErr)
err = fromCError(cErr)
return
}
// GetSnapshot returns the Snapshot created by the last call to SetSnapshot().
func (transaction *Transaction) GetSnapshot() *Snapshot {
return newNativeSnapshot(C.rocksdb_transaction_get_snapshot(transaction.c))
}
// Destroy deallocates the transaction object.
func (transaction *Transaction) Destroy() {
C.rocksdb_transaction_destroy(transaction.c)
transaction.c = nil
}
// GetWriteBatchWI returns underlying write batch wi.
func (transaction *Transaction) GetWriteBatchWI() *WriteBatchWI {
wi := C.rocksdb_transaction_get_writebatch_wi(transaction.c)
return newNativeWriteBatchWI(wi)
}
// RebuildFromWriteBatch rebuilds transaction from write_batch.
// Note: If no error, write_batch will be destroyed. It's move-op (see also: C++ Move)
func (transaction *Transaction) RebuildFromWriteBatch(wb *WriteBatch) (err error) {
var cErr *C.char
C.rocksdb_transaction_rebuild_from_writebatch(transaction.c, wb.c, &cErr)
err = fromCError(cErr)
if err == nil {
wb.Destroy()
}
return
}
// RebuildFromWriteBatchWI rebuilds transaction from write_batch.
// Note: If no error, write_batch will be destroyed. It's move-op (see also: C++ Move)
func (transaction *Transaction) RebuildFromWriteBatchWI(wb *WriteBatchWI) (err error) {
var cErr *C.char
C.rocksdb_transaction_rebuild_from_writebatch_wi(transaction.c, wb.c, &cErr)
err = fromCError(cErr)
if err == nil {
wb.Destroy()
}
return
}
// SetCommitTimestamp sets the commit timestamp for the transaction.
// If a transaction's write batch includes at least one key for a column family that enables user-defined timestamp,
// then the transaction must be assigned a commit timestamp in order to commit.
// SetCommitTimestamp should be called before transaction commits.
// If two-phase commit (2PC) is enabled, then SetCommitTimestamp should be called after Transaction Prepare succeeds.
func (transaction *Transaction) SetCommitTimestamp(ts uint64) {
C.rocksdb_transaction_set_commit_timestamp(transaction.c, C.uint64_t(ts))
}
// SetReadTimestampForValidation sets the read timestamp for the transaction.
// Each transaction can have a read timestamp.
// The transaction will use this timestamp to read data from the database.
// Any data with timestamp after this read timestamp should be considered invisible to this transaction.
// The same read timestamp is also used for validation.
func (transaction *Transaction) SetReadTimestampForValidation(ts uint64) {
C.rocksdb_transaction_set_read_timestamp_for_validation(transaction.c, C.uint64_t(ts))
}