-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtypes.go
76 lines (60 loc) · 2.49 KB
/
types.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
package storage
import (
"io"
"github.com/gnolang/gno/tm2/pkg/bft/types"
)
// Storage represents the permanent storage abstraction
// for reading and writing operations
type Storage interface {
Reader
Writer
}
// Reader defines the transaction storage interface for read methods
type Reader interface {
io.Closer
// GetLatestHeight returns the latest block height from the storage
GetLatestHeight() (uint64, error)
// GetBlock fetches the block by its number
GetBlock(uint64) (*types.Block, error)
// GetTx fetches the tx using the block height and the transaction index
GetTx(blockNum uint64, index uint32) (*types.TxResult, error)
// GetTxByHash fetches the tx using the transaction hash
GetTxByHash(txHash string) (*types.TxResult, error)
// BlockIterator iterates over Blocks, limiting the results to be between the provided block numbers
BlockIterator(fromBlockNum, toBlockNum uint64) (Iterator[*types.Block], error)
// BlockReverseIterator iterates over Blocks in reverse order,
// limiting the results to be between the provided block numbers
BlockReverseIterator(fromBlockNum, toBlockNum uint64) (Iterator[*types.Block], error)
// TxIterator iterates over transactions, limiting the results to be between the provided block numbers
// and transaction indexes
TxIterator(fromBlockNum, toBlockNum uint64, fromTxIndex, toTxIndex uint32) (Iterator[*types.TxResult], error)
// TxReverseIterator iterates over transactions in reverse order,
// limiting the results to be between the provided block numbers and transaction indexes
TxReverseIterator(fromBlockNum, toBlockNum uint64, fromTxIndex, toTxIndex uint32) (Iterator[*types.TxResult], error)
}
type Iterator[T any] interface {
io.Closer
Next() bool
Error() error
Value() (T, error)
}
// Writer defines the transaction storage interface for write methods
type Writer interface {
io.Closer
// WriteBatch provides a batch intended to do a write action that
// can be cancelled or committed all at the same time
WriteBatch() Batch
}
type Batch interface {
// SetLatestHeight saves the latest block height to the storage
SetLatestHeight(uint64) error
// SetBlock saves the block to the permanent storage
SetBlock(block *types.Block) error
// SetTx saves the transaction to the permanent storage
SetTx(tx *types.TxResult) error
// Commit stores all the provided info on the storage and make
// it available for other storage readers
Commit() error
// Rollback rollbacks the operation not persisting the provided changes
Rollback() error
}