mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 13:38:35 +00:00
211 lines
5.3 KiB
Go
211 lines
5.3 KiB
Go
package state
|
|
|
|
import (
|
|
"crypto/elliptic"
|
|
"errors"
|
|
"math/big"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
|
)
|
|
|
|
// NEP5BalanceState represents balance state of a NEP5-token.
|
|
type NEP5BalanceState struct {
|
|
Balance big.Int
|
|
}
|
|
|
|
// NEOBalanceState represents balance state of a NEO-token.
|
|
type NEOBalanceState struct {
|
|
NEP5BalanceState
|
|
BalanceHeight uint32
|
|
VoteTo *keys.PublicKey
|
|
}
|
|
|
|
// GASIndexPair contains block index together with generated gas per block.
|
|
type GASIndexPair struct {
|
|
Index uint32
|
|
GASPerBlock big.Int
|
|
}
|
|
|
|
// GASRecord contains history of gas per block changes.
|
|
type GASRecord []GASIndexPair
|
|
|
|
// Bytes serializes g to []byte.
|
|
func (g *GASRecord) Bytes() []byte {
|
|
w := io.NewBufBinWriter()
|
|
g.EncodeBinary(w.BinWriter)
|
|
return w.Bytes()
|
|
}
|
|
|
|
// FromBytes deserializes g from data.
|
|
func (g *GASRecord) FromBytes(data []byte) error {
|
|
r := io.NewBinReaderFromBuf(data)
|
|
g.DecodeBinary(r)
|
|
return r.Err
|
|
}
|
|
|
|
// DecodeBinary implements io.Serializable.
|
|
func (g *GASRecord) DecodeBinary(r *io.BinReader) {
|
|
item := stackitem.DecodeBinaryStackItem(r)
|
|
if r.Err == nil {
|
|
r.Err = g.fromStackItem(item)
|
|
}
|
|
}
|
|
|
|
// EncodeBinary implements io.Serializable.
|
|
func (g *GASRecord) EncodeBinary(w *io.BinWriter) {
|
|
item := g.toStackItem()
|
|
stackitem.EncodeBinaryStackItem(item, w)
|
|
}
|
|
|
|
// toStackItem converts GASRecord to a stack item.
|
|
func (g *GASRecord) toStackItem() stackitem.Item {
|
|
items := make([]stackitem.Item, len(*g))
|
|
for i := range items {
|
|
items[i] = stackitem.NewStruct([]stackitem.Item{
|
|
stackitem.NewBigInteger(big.NewInt(int64((*g)[i].Index))),
|
|
stackitem.NewBigInteger(&(*g)[i].GASPerBlock),
|
|
})
|
|
}
|
|
return stackitem.NewArray(items)
|
|
}
|
|
|
|
var errInvalidFormat = errors.New("invalid item format")
|
|
|
|
// fromStackItem converts item to a GASRecord.
|
|
func (g *GASRecord) fromStackItem(item stackitem.Item) error {
|
|
arr, ok := item.Value().([]stackitem.Item)
|
|
if !ok {
|
|
return errInvalidFormat
|
|
}
|
|
for i := range arr {
|
|
s, ok := arr[i].Value().([]stackitem.Item)
|
|
if !ok || len(s) != 2 || s[0].Type() != stackitem.IntegerT || s[1].Type() != stackitem.IntegerT {
|
|
return errInvalidFormat
|
|
}
|
|
*g = append(*g, GASIndexPair{
|
|
Index: uint32(s[0].Value().(*big.Int).Uint64()),
|
|
GASPerBlock: *s[1].Value().(*big.Int),
|
|
})
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// NEP5BalanceStateFromBytes converts serialized NEP5BalanceState to structure.
|
|
func NEP5BalanceStateFromBytes(b []byte) (*NEP5BalanceState, error) {
|
|
balance := new(NEP5BalanceState)
|
|
if len(b) == 0 {
|
|
return balance, nil
|
|
}
|
|
r := io.NewBinReaderFromBuf(b)
|
|
balance.DecodeBinary(r)
|
|
if r.Err != nil {
|
|
return nil, r.Err
|
|
}
|
|
return balance, nil
|
|
}
|
|
|
|
// Bytes returns serialized NEP5BalanceState.
|
|
func (s *NEP5BalanceState) Bytes() []byte {
|
|
w := io.NewBufBinWriter()
|
|
s.EncodeBinary(w.BinWriter)
|
|
if w.Err != nil {
|
|
panic(w.Err)
|
|
}
|
|
return w.Bytes()
|
|
}
|
|
|
|
func (s *NEP5BalanceState) toStackItem() stackitem.Item {
|
|
return stackitem.NewStruct([]stackitem.Item{stackitem.NewBigInteger(&s.Balance)})
|
|
}
|
|
|
|
func (s *NEP5BalanceState) fromStackItem(item stackitem.Item) {
|
|
s.Balance = *item.(*stackitem.Struct).Value().([]stackitem.Item)[0].Value().(*big.Int)
|
|
}
|
|
|
|
// EncodeBinary implements io.Serializable interface.
|
|
func (s *NEP5BalanceState) EncodeBinary(w *io.BinWriter) {
|
|
si := s.toStackItem()
|
|
stackitem.EncodeBinaryStackItem(si, w)
|
|
}
|
|
|
|
// DecodeBinary implements io.Serializable interface.
|
|
func (s *NEP5BalanceState) DecodeBinary(r *io.BinReader) {
|
|
si := stackitem.DecodeBinaryStackItem(r)
|
|
if r.Err != nil {
|
|
return
|
|
}
|
|
s.fromStackItem(si)
|
|
}
|
|
|
|
// NEOBalanceStateFromBytes converts serialized NEOBalanceState to structure.
|
|
func NEOBalanceStateFromBytes(b []byte) (*NEOBalanceState, error) {
|
|
balance := new(NEOBalanceState)
|
|
if len(b) == 0 {
|
|
return balance, nil
|
|
}
|
|
r := io.NewBinReaderFromBuf(b)
|
|
balance.DecodeBinary(r)
|
|
|
|
if r.Err != nil {
|
|
return nil, r.Err
|
|
}
|
|
return balance, nil
|
|
}
|
|
|
|
// Bytes returns serialized NEOBalanceState.
|
|
func (s *NEOBalanceState) Bytes() []byte {
|
|
w := io.NewBufBinWriter()
|
|
s.EncodeBinary(w.BinWriter)
|
|
if w.Err != nil {
|
|
panic(w.Err)
|
|
}
|
|
return w.Bytes()
|
|
}
|
|
|
|
// EncodeBinary implements io.Serializable interface.
|
|
func (s *NEOBalanceState) EncodeBinary(w *io.BinWriter) {
|
|
si := s.toStackItem()
|
|
stackitem.EncodeBinaryStackItem(si, w)
|
|
}
|
|
|
|
// DecodeBinary implements io.Serializable interface.
|
|
func (s *NEOBalanceState) DecodeBinary(r *io.BinReader) {
|
|
si := stackitem.DecodeBinaryStackItem(r)
|
|
if r.Err != nil {
|
|
return
|
|
}
|
|
r.Err = s.fromStackItem(si)
|
|
}
|
|
|
|
func (s *NEOBalanceState) toStackItem() stackitem.Item {
|
|
result := s.NEP5BalanceState.toStackItem().(*stackitem.Struct)
|
|
result.Append(stackitem.NewBigInteger(big.NewInt(int64(s.BalanceHeight))))
|
|
if s.VoteTo != nil {
|
|
result.Append(stackitem.NewByteArray(s.VoteTo.Bytes()))
|
|
} else {
|
|
result.Append(stackitem.Null{})
|
|
}
|
|
return result
|
|
}
|
|
|
|
func (s *NEOBalanceState) fromStackItem(item stackitem.Item) error {
|
|
structItem := item.Value().([]stackitem.Item)
|
|
s.Balance = *structItem[0].Value().(*big.Int)
|
|
s.BalanceHeight = uint32(structItem[1].Value().(*big.Int).Int64())
|
|
if _, ok := structItem[2].(stackitem.Null); ok {
|
|
s.VoteTo = nil
|
|
return nil
|
|
}
|
|
bs, err := structItem[2].TryBytes()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pub, err := keys.NewPublicKeyFromBytes(bs, elliptic.P256())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
s.VoteTo = pub
|
|
return nil
|
|
}
|