-
Notifications
You must be signed in to change notification settings - Fork 179
/
transactions.go
71 lines (60 loc) · 1.96 KB
/
transactions.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
package badger
import (
"github.com/dgraph-io/badger/v2"
"github.com/onflow/flow-go/model/flow"
"github.com/onflow/flow-go/module"
"github.com/onflow/flow-go/module/metrics"
"github.com/onflow/flow-go/storage/badger/operation"
"github.com/onflow/flow-go/storage/badger/transaction"
)
// Transactions ...
type Transactions struct {
db *badger.DB
cache *Cache
}
// NewTransactions ...
func NewTransactions(cacheMetrics module.CacheMetrics, db *badger.DB) *Transactions {
store := func(key interface{}, val interface{}) func(*transaction.Tx) error {
txID := key.(flow.Identifier)
flowTx := val.(*flow.TransactionBody)
return transaction.WithTx(operation.SkipDuplicates(operation.InsertTransaction(txID, flowTx)))
}
retrieve := func(key interface{}) func(tx *badger.Txn) (interface{}, error) {
txID := key.(flow.Identifier)
var flowTx flow.TransactionBody
return func(tx *badger.Txn) (interface{}, error) {
err := operation.RetrieveTransaction(txID, &flowTx)(tx)
return &flowTx, err
}
}
t := &Transactions{
db: db,
cache: newCache(cacheMetrics, metrics.ResourceTransaction,
withLimit(flow.DefaultTransactionExpiry+100),
withStore(store),
withRetrieve(retrieve)),
}
return t
}
// Store ...
func (t *Transactions) Store(flowTx *flow.TransactionBody) error {
return operation.RetryOnConflictTx(t.db, transaction.Update, t.storeTx(flowTx))
}
// ByID ...
func (t *Transactions) ByID(txID flow.Identifier) (*flow.TransactionBody, error) {
tx := t.db.NewTransaction(false)
defer tx.Discard()
return t.retrieveTx(txID)(tx)
}
func (t *Transactions) storeTx(flowTx *flow.TransactionBody) func(*transaction.Tx) error {
return t.cache.PutTx(flowTx.ID(), flowTx)
}
func (t *Transactions) retrieveTx(txID flow.Identifier) func(*badger.Txn) (*flow.TransactionBody, error) {
return func(tx *badger.Txn) (*flow.TransactionBody, error) {
val, err := t.cache.Get(txID)(tx)
if err != nil {
return nil, err
}
return val.(*flow.TransactionBody), err
}
}