2020-03-25 10:00:11 +00:00
|
|
|
package state
|
|
|
|
|
|
|
|
import (
|
2020-08-03 12:00:27 +00:00
|
|
|
"crypto/elliptic"
|
2020-03-25 10:00:11 +00:00
|
|
|
"math/big"
|
|
|
|
|
2020-04-26 11:00:17 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
2020-03-25 10:00:11 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
2020-06-05 16:12:10 +00:00
|
|
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
2020-03-25 10:00:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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
|
2020-08-03 12:00:27 +00:00
|
|
|
VoteTo *keys.PublicKey
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 18:28:37 +00:00
|
|
|
// 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()
|
|
|
|
}
|
|
|
|
|
2020-06-05 16:12:10 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-03-25 10:00:11 +00:00
|
|
|
// EncodeBinary implements io.Serializable interface.
|
|
|
|
func (s *NEP5BalanceState) EncodeBinary(w *io.BinWriter) {
|
2020-06-05 16:12:10 +00:00
|
|
|
si := s.toStackItem()
|
|
|
|
stackitem.EncodeBinaryStackItem(si, w)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DecodeBinary implements io.Serializable interface.
|
|
|
|
func (s *NEP5BalanceState) DecodeBinary(r *io.BinReader) {
|
2020-06-05 16:12:10 +00:00
|
|
|
si := stackitem.DecodeBinaryStackItem(r)
|
2020-03-25 10:00:11 +00:00
|
|
|
if r.Err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-06-05 16:12:10 +00:00
|
|
|
s.fromStackItem(si)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-04-23 18:28:37 +00:00
|
|
|
// 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()
|
|
|
|
}
|
|
|
|
|
2020-03-25 10:00:11 +00:00
|
|
|
// EncodeBinary implements io.Serializable interface.
|
|
|
|
func (s *NEOBalanceState) EncodeBinary(w *io.BinWriter) {
|
2020-06-05 16:12:10 +00:00
|
|
|
si := s.toStackItem()
|
|
|
|
stackitem.EncodeBinaryStackItem(si, w)
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DecodeBinary implements io.Serializable interface.
|
|
|
|
func (s *NEOBalanceState) DecodeBinary(r *io.BinReader) {
|
2020-06-05 16:12:10 +00:00
|
|
|
si := stackitem.DecodeBinaryStackItem(r)
|
|
|
|
if r.Err != nil {
|
|
|
|
return
|
|
|
|
}
|
2020-06-23 14:38:19 +00:00
|
|
|
r.Err = s.fromStackItem(si)
|
2020-06-05 16:12:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *NEOBalanceState) toStackItem() stackitem.Item {
|
|
|
|
result := s.NEP5BalanceState.toStackItem().(*stackitem.Struct)
|
|
|
|
result.Append(stackitem.NewBigInteger(big.NewInt(int64(s.BalanceHeight))))
|
2020-08-03 12:00:27 +00:00
|
|
|
if s.VoteTo != nil {
|
|
|
|
result.Append(stackitem.NewByteArray(s.VoteTo.Bytes()))
|
|
|
|
} else {
|
|
|
|
result.Append(stackitem.Null{})
|
|
|
|
}
|
2020-06-05 16:12:10 +00:00
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2020-06-23 14:38:19 +00:00
|
|
|
func (s *NEOBalanceState) fromStackItem(item stackitem.Item) error {
|
2020-06-05 16:12:10 +00:00
|
|
|
structItem := item.Value().([]stackitem.Item)
|
|
|
|
s.Balance = *structItem[0].Value().(*big.Int)
|
|
|
|
s.BalanceHeight = uint32(structItem[1].Value().(*big.Int).Int64())
|
2020-08-03 12:00:27 +00:00
|
|
|
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
|
2020-03-25 10:00:11 +00:00
|
|
|
}
|