forked from Restream/reindexer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tx.go
404 lines (345 loc) · 10.3 KB
/
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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
package reindexer
import (
"context"
"sync"
"sync/atomic"
"github.com/restream/reindexer/bindings"
"github.com/restream/reindexer/cjson"
)
const maxAsyncRequests = 500
const asyncResponseQueueSize = 2 * maxAsyncRequests
const retriesOnInvalidStateCnt = 1
// Tx is transaction object. Transaction are performs atomic namespace update.
// There are synchronous and async transaction available. To start transaction method `db.BeginTx()` is used.
// This method creates transaction object
type Tx struct {
namespace string
started bool
db *reindexerImpl
ns *reindexerNamespace
asyncRspCnt uint32
ctx bindings.TxCtx
cmplCh chan modifyInfo
cmplCond *sync.Cond
lock sync.Mutex
asyncErr error
asyncErrLock sync.RWMutex
}
func newTx(db *reindexerImpl, namespace string, ctx context.Context) (tx *Tx, err error) {
tx = &Tx{db: db, namespace: namespace}
if tx.ns, err = tx.db.getNS(tx.namespace); err != nil {
return nil, err
}
if err = tx.startTxCtx(ctx); err != nil {
return nil, err
}
return tx, nil
}
func (tx *Tx) startTx() (err error) {
return tx.startTxCtx(context.Background())
}
func (tx *Tx) startTxCtx(ctx context.Context) (err error) {
if tx.started {
return nil
}
tx.asyncRspCnt = 0
tx.started = true
tx.ctx, err = tx.db.binding.BeginTx(ctx, tx.namespace)
if err != nil {
return err
}
tx.ctx.UserCtx = ctx
tx.cmplCh = nil
tx.cmplCond = nil
return nil
}
func (tx *Tx) startAsyncRoutines() (err error) {
if tx.cmplCh == nil {
tx.cmplCh = make(chan modifyInfo, asyncResponseQueueSize)
tx.cmplCond = sync.NewCond(&tx.lock)
go tx.cmplHandlingRoutine(tx.cmplCh)
}
tx.checkReqCount()
tx.asyncErrLock.RLock()
err = tx.asyncErr
tx.asyncErrLock.RUnlock()
return
}
func (tx *Tx) Insert(item interface{}, precepts ...string) error {
tx.startTx()
return tx.modifyInternal(item, nil, modeInsert, precepts...)
}
func (tx *Tx) Update(item interface{}, precepts ...string) error {
tx.startTx()
return tx.modifyInternal(item, nil, modeUpdate, precepts...)
}
// Upsert (Insert or Update) item to namespace
func (tx *Tx) Upsert(item interface{}, precepts ...string) error {
tx.startTx()
return tx.modifyInternal(item, nil, modeUpsert, precepts...)
}
// UpsertJSON (Insert or Update) item to namespace
func (tx *Tx) UpsertJSON(json []byte, precepts ...string) error {
tx.startTx()
return tx.modifyInternal(nil, json, modeUpsert, precepts...)
}
// Delete - remove item by id from namespace
func (tx *Tx) Delete(item interface{}, precepts ...string) error {
tx.startTx()
return tx.modifyInternal(item, nil, modeDelete, precepts...)
}
// DeleteJSON - remove item by id from namespace
func (tx *Tx) DeleteJSON(json []byte, precepts ...string) error {
tx.startTx()
return tx.modifyInternal(nil, json, modeDelete, precepts...)
}
// UpdateAsync Insert item to namespace. Calls completion on result
func (tx *Tx) InsertAsync(item interface{}, cmpl bindings.Completion, precepts ...string) error {
tx.startTx()
if err := tx.startAsyncRoutines(); err != nil {
return err
}
return tx.modifyInternalAsync(item, nil, modeInsert, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// UpdateAsync Update item to namespace. Calls completion on result
func (tx *Tx) UpdateAsync(item interface{}, cmpl bindings.Completion, precepts ...string) error {
tx.startTx()
if err := tx.startAsyncRoutines(); err != nil {
return err
}
return tx.modifyInternalAsync(item, nil, modeUpdate, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// UpsertAsync (Insert or Update) item to namespace. Calls completion on result
func (tx *Tx) UpsertAsync(item interface{}, cmpl bindings.Completion, precepts ...string) error {
tx.startTx()
if err := tx.startAsyncRoutines(); err != nil {
return err
}
return tx.modifyInternalAsync(item, nil, modeUpsert, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// UpsertJSONAsync (Insert or Update) item to index. Calls completion on result
func (tx *Tx) UpsertJSONAsync(json []byte, cmpl bindings.Completion, precepts ...string) error {
tx.startTx()
if err := tx.startAsyncRoutines(); err != nil {
return err
}
return tx.modifyInternalAsync(nil, json, modeUpsert, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// DeleteAsync - remove item by id from namespace. Calls completion on result
func (tx *Tx) DeleteAsync(item interface{}, cmpl bindings.Completion, precepts ...string) error {
tx.startTx()
if err := tx.startAsyncRoutines(); err != nil {
return err
}
return tx.modifyInternalAsync(item, nil, modeDelete, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// DeleteJSONAsync - remove item by id from namespace. Calls completion on result
func (tx *Tx) DeleteJSONAsync(json []byte, cmpl bindings.Completion, precepts ...string) error {
tx.startTx()
if err := tx.startAsyncRoutines(); err != nil {
return err
}
return tx.modifyInternalAsync(nil, json, modeDelete, cmpl, retriesOnInvalidStateCnt, precepts...)
}
// CommitWithCount apply changes, and return count of changed items
func (tx *Tx) CommitWithCount() (count int, err error) {
if !tx.started {
return 0, nil
}
if count, err = tx.commitInternal(); err != nil {
return
}
return
}
// Commit - apply changes. Commit also waits for all async operations done, and then apply changes.
// if any error occurred during prepare process, then tx.Commit should
// return an error. So it is enough, to check error returned by Commit - to be sure
// that all data has been successfully committed or not.
func (tx *Tx) Commit() error {
_, err := tx.CommitWithCount()
return err
}
// MustCommit apply changes and starts panic on errors
func (tx *Tx) MustCommit() int {
count, err := tx.CommitWithCount()
if err != nil {
panic(err)
}
return count
}
// AwaitResults awaits async requests completion
func (tx *Tx) AwaitResults() *Tx {
if tx.cmplCh != nil && atomic.LoadUint32(&tx.asyncRspCnt) > 0 {
tx.cmplCond.L.Lock()
for atomic.LoadUint32(&tx.asyncRspCnt) > 0 {
tx.cmplCond.Wait()
}
tx.cmplCond.L.Unlock()
}
return tx
}
// Query creates Query in transaction for Update or Delete or Read
// Read-committed isolation is available for read operations.
// Changes made in active transaction is invisible to current and another transactions.
func (tx *Tx) Query() *Query {
return tx.db.queryTx(tx.namespace, tx)
}
// finalize transaction
func (tx *Tx) finalize() {
if tx.cmplCh != nil {
close(tx.cmplCh)
tx.cmplCh = nil
}
if tx.ctx.Result != nil {
tx.ctx.Result.Free()
tx.ctx.Result = nil
}
}
func (tx *Tx) modifyInternal(item interface{}, json []byte, mode int, precepts ...string) (err error) {
for tryCount := 0; tryCount < 2; tryCount++ {
ser := cjson.NewPoolSerializer()
defer ser.Close()
format := 0
stateToken := 0
if format, stateToken, err = packItem(tx.ns, item, json, ser); err != nil {
return err
}
err := tx.db.binding.ModifyItemTx(&tx.ctx, format, ser.Bytes(), mode, precepts, stateToken)
if err != nil {
rerr, ok := err.(bindings.Error)
if ok && rerr.Code() == bindings.ErrStateInvalidated {
it := tx.db.query(tx.ns.name).Limit(0).ExecCtx(tx.ctx.UserCtx)
it.Close()
err = rerr
continue
}
return err
}
return nil
}
return nil
}
type modifyInfo struct {
err error
cmpl bindings.Completion
item interface{}
json []byte
mode int
precepts []string
retries uint32
}
func (tx *Tx) setAsyncError(err error) {
if err != nil {
tx.asyncErrLock.Lock()
if tx.asyncErr == nil {
tx.asyncErr = err
}
tx.asyncErrLock.Unlock()
}
}
func (tx *Tx) cmplHandlingRoutine(cmplCh chan modifyInfo) {
for {
if modifyRes, ok := <-cmplCh; ok {
err := modifyRes.err
if err != nil {
rerr, ok := err.(bindings.Error)
if ok && rerr.Code() == bindings.ErrStateInvalidated && modifyRes.retries > 0 {
it := tx.db.query(tx.ns.name).Limit(0).ExecCtx(tx.ctx.UserCtx)
err = it.Error()
it.Close()
}
}
if err == nil && modifyRes.retries > 0 {
tx.modifyInternalAsync(modifyRes.item, modifyRes.json, modifyRes.mode, modifyRes.cmpl, modifyRes.retries-1, modifyRes.precepts...)
continue
}
modifyRes.cmpl(err)
tx.setAsyncError(err)
tx.cmplCond.L.Lock()
atomic.AddUint32(&tx.asyncRspCnt, ^uint32(0))
tx.cmplCond.Broadcast()
tx.cmplCond.L.Unlock()
} else {
return
}
}
}
func (tx *Tx) modifyInternalAsync(item interface{}, json []byte, mode int, cmpl bindings.Completion, retriesRemain uint32, precepts ...string) (err error) {
internalCmpl := func(buf bindings.RawBuffer, err error) {
if buf != nil {
buf.Free()
}
if err != nil {
tx.cmplCh <- modifyInfo{err: err, cmpl: cmpl, item: item, json: json, mode: mode, precepts: precepts, retries: retriesRemain}
} else {
tx.cmplCh <- modifyInfo{err: nil, cmpl: cmpl}
}
}
ser := cjson.NewPoolSerializer()
defer ser.Close()
format := 0
stateToken := 0
if format, stateToken, err = packItem(tx.ns, item, json, ser); err != nil {
return err
}
tx.db.binding.ModifyItemTxAsync(&tx.ctx, format, ser.Bytes(), mode, precepts, stateToken, internalCmpl)
return nil
}
func (tx *Tx) checkReqCount() {
for {
asyncRspCnt := atomic.LoadUint32(&tx.asyncRspCnt)
if asyncRspCnt < maxAsyncRequests {
if atomic.CompareAndSwapUint32(&tx.asyncRspCnt, asyncRspCnt, asyncRspCnt+1) {
return
}
} else {
tx.cmplCond.L.Lock()
for atomic.LoadUint32(&tx.asyncRspCnt) == maxAsyncRequests {
tx.cmplCond.Wait()
}
tx.cmplCond.L.Unlock()
}
}
}
// Commit apply changes
func (tx *Tx) commitInternal() (count int, err error) {
count = 0
tx.AwaitResults()
defer tx.finalize()
if tx.asyncErr != nil {
asyncErr := tx.asyncErr
err = tx.db.binding.RollbackTx(&tx.ctx)
if err == nil {
err = asyncErr
}
return 0, err
}
out, err := tx.db.binding.CommitTx(&tx.ctx)
if err != nil {
return 0, err
}
defer out.Free()
rdSer := newSerializer(out.GetBuf())
rawQueryParams := rdSer.readRawQueryParams(func(nsid int) {
tx.ns.cjsonState.ReadPayloadType(&rdSer.Serializer)
})
if rawQueryParams.count == 0 {
return
}
tx.ns.cacheLock.Lock()
for i := 0; i < rawQueryParams.count; i++ {
count++
item := rdSer.readRawtItemParams()
delete(tx.ns.cacheItems, item.id)
}
tx.ns.cacheLock.Unlock()
return
}
// Rollback transaction.
// It is safe to call Rollback after Commit
func (tx *Tx) Rollback() error {
tx.AwaitResults()
tx.asyncErr = nil
defer tx.finalize()
return tx.db.binding.RollbackTx(&tx.ctx)
}