Some checks failed
Build SimApp / build (amd64) (push) Waiting to run
Build SimApp / build (arm64) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Build & Push / build (push) Waiting to run
Run Gosec / Gosec (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Checks dependencies and mocks generation / Check go mod tidy (push) Waiting to run
Checks dependencies and mocks generation / Check up to date mocks (push) Waiting to run
System Tests / setup (push) Waiting to run
System Tests / test-system (push) Blocked by required conditions
System Tests / test-system-legacy (push) Blocked by required conditions
Tests / Code Coverage / split-test-files (push) Waiting to run
Tests / Code Coverage / tests (00) (push) Blocked by required conditions
Tests / Code Coverage / tests (01) (push) Blocked by required conditions
Tests / Code Coverage / tests (02) (push) Blocked by required conditions
Tests / Code Coverage / tests (03) (push) Blocked by required conditions
Tests / Code Coverage / test-integration (push) Waiting to run
Tests / Code Coverage / test-e2e (push) Waiting to run
Tests / Code Coverage / repo-analysis (push) Blocked by required conditions
Tests / Code Coverage / test-sim-nondeterminism (push) Waiting to run
Tests / Code Coverage / test-clientv2 (push) Waiting to run
Tests / Code Coverage / test-core (push) Waiting to run
Tests / Code Coverage / test-depinject (push) Waiting to run
Tests / Code Coverage / test-errors (push) Waiting to run
Tests / Code Coverage / test-math (push) Waiting to run
Tests / Code Coverage / test-schema (push) Waiting to run
Tests / Code Coverage / test-collections (push) Waiting to run
Tests / Code Coverage / test-cosmovisor (push) Waiting to run
Tests / Code Coverage / test-confix (push) Waiting to run
Tests / Code Coverage / test-store (push) Waiting to run
Tests / Code Coverage / test-log (push) Waiting to run
Tests / Code Coverage / test-x-tx (push) Waiting to run
Tests / Code Coverage / test-x-nft (push) Waiting to run
Tests / Code Coverage / test-x-circuit (push) Waiting to run
Tests / Code Coverage / test-x-feegrant (push) Waiting to run
Tests / Code Coverage / test-x-evidence (push) Waiting to run
Tests / Code Coverage / test-x-upgrade (push) Waiting to run
Tests / Code Coverage / test-tools-benchmark (push) Waiting to run
Build & Push SDK Proto Builder / build (push) Has been cancelled
83 lines
2.5 KiB
Go
83 lines
2.5 KiB
Go
package orm
|
|
|
|
import (
|
|
"encoding/binary"
|
|
|
|
errorsmod "cosmossdk.io/errors"
|
|
"cosmossdk.io/store/prefix"
|
|
storetypes "cosmossdk.io/store/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/x/group/errors"
|
|
)
|
|
|
|
// sequenceStorageKey is a fix key to read/ write data on the storage layer
|
|
var sequenceStorageKey = []byte{0x1}
|
|
|
|
// sequence is a persistent unique key generator based on a counter.
|
|
type Sequence struct {
|
|
prefix byte
|
|
}
|
|
|
|
func NewSequence(prefix byte) Sequence {
|
|
return Sequence{
|
|
prefix: prefix,
|
|
}
|
|
}
|
|
|
|
// NextVal increments and persists the counter by one and returns the value.
|
|
func (s Sequence) NextVal(store storetypes.KVStore) uint64 {
|
|
pStore := prefix.NewStore(store, []byte{s.prefix})
|
|
v := pStore.Get(sequenceStorageKey)
|
|
seq := DecodeSequence(v)
|
|
seq++
|
|
pStore.Set(sequenceStorageKey, EncodeSequence(seq))
|
|
return seq
|
|
}
|
|
|
|
// CurVal returns the last value used. 0 if none.
|
|
func (s Sequence) CurVal(store storetypes.KVStore) uint64 {
|
|
pStore := prefix.NewStore(store, []byte{s.prefix})
|
|
v := pStore.Get(sequenceStorageKey)
|
|
return DecodeSequence(v)
|
|
}
|
|
|
|
// PeekNextVal returns the CurVal + increment step. Not persistent.
|
|
func (s Sequence) PeekNextVal(store storetypes.KVStore) uint64 {
|
|
pStore := prefix.NewStore(store, []byte{s.prefix})
|
|
v := pStore.Get(sequenceStorageKey)
|
|
return DecodeSequence(v) + 1
|
|
}
|
|
|
|
// InitVal sets the start value for the sequence. It must be called only once on an empty DB.
|
|
// Otherwise an error is returned when the key exists. The given start value is stored as current
|
|
// value.
|
|
//
|
|
// It is recommended to call this method only for a sequence start value other than `1` as the
|
|
// method consumes unnecessary gas otherwise. A scenario would be an import from genesis.
|
|
func (s Sequence) InitVal(store storetypes.KVStore, seq uint64) error {
|
|
pStore := prefix.NewStore(store, []byte{s.prefix})
|
|
if pStore.Has(sequenceStorageKey) {
|
|
return errorsmod.Wrap(errors.ErrORMUniqueConstraint, "already initialized")
|
|
}
|
|
pStore.Set(sequenceStorageKey, EncodeSequence(seq))
|
|
return nil
|
|
}
|
|
|
|
// DecodeSequence converts the binary representation into an Uint64 value.
|
|
func DecodeSequence(bz []byte) uint64 {
|
|
if bz == nil {
|
|
return 0
|
|
}
|
|
val := binary.BigEndian.Uint64(bz)
|
|
return val
|
|
}
|
|
|
|
// EncodedSeqLength number of bytes used for the binary representation of a sequence value.
|
|
const EncodedSeqLength = 8
|
|
|
|
// EncodeSequence converts the sequence value into the binary representation.
|
|
func EncodeSequence(val uint64) []byte {
|
|
bz := make([]byte, EncodedSeqLength)
|
|
binary.BigEndian.PutUint64(bz, val)
|
|
return bz
|
|
}
|