io: implement ReadBytes()

This commit is contained in:
Evgenii Stratonikov 2019-12-06 18:37:46 +03:00
parent 838050f8b5
commit fccb008594
22 changed files with 72 additions and 38 deletions

View file

@ -23,7 +23,7 @@ func (c *commit) EncodeBinary(w *io.BinWriter) {
// DecodeBinary implements io.Serializable interface. // DecodeBinary implements io.Serializable interface.
func (c *commit) DecodeBinary(r *io.BinReader) { func (c *commit) DecodeBinary(r *io.BinReader) {
r.ReadBE(&c.signature) r.ReadBytes(c.signature[:])
} }
// Signature implements payload.Commit interface. // Signature implements payload.Commit interface.

View file

@ -212,7 +212,7 @@ func (p *Payload) Verify() bool {
// DecodeBinaryUnsigned reads payload from w excluding signature. // DecodeBinaryUnsigned reads payload from w excluding signature.
func (p *Payload) DecodeBinaryUnsigned(r *io.BinReader) { func (p *Payload) DecodeBinaryUnsigned(r *io.BinReader) {
r.ReadLE(&p.version) r.ReadLE(&p.version)
r.ReadBE(p.prevHash[:]) r.ReadBytes(p.prevHash[:])
r.ReadLE(&p.height) r.ReadLE(&p.height)
r.ReadLE(&p.validatorIndex) r.ReadLE(&p.validatorIndex)
r.ReadLE(&p.timestamp) r.ReadLE(&p.timestamp)

View file

@ -31,7 +31,7 @@ func (p *prepareRequest) EncodeBinary(w *io.BinWriter) {
func (p *prepareRequest) DecodeBinary(r *io.BinReader) { func (p *prepareRequest) DecodeBinary(r *io.BinReader) {
r.ReadLE(&p.timestamp) r.ReadLE(&p.timestamp)
r.ReadLE(&p.nonce) r.ReadLE(&p.nonce)
r.ReadBE(p.nextConsensus[:]) r.ReadBytes(p.nextConsensus[:])
r.ReadArray(&p.transactionHashes) r.ReadArray(&p.transactionHashes)
p.minerTx.DecodeBinary(r) p.minerTx.DecodeBinary(r)
} }

View file

@ -20,7 +20,7 @@ func (p *prepareResponse) EncodeBinary(w *io.BinWriter) {
// DecodeBinary implements io.Serializable interface. // DecodeBinary implements io.Serializable interface.
func (p *prepareResponse) DecodeBinary(r *io.BinReader) { func (p *prepareResponse) DecodeBinary(r *io.BinReader) {
r.ReadBE(p.preparationHash[:]) r.ReadBytes(p.preparationHash[:])
} }
// PreparationHash implements payload.PrepareResponse interface. // PreparationHash implements payload.PrepareResponse interface.

View file

@ -54,7 +54,7 @@ func (m *recoveryMessage) DecodeBinary(r *io.BinReader) {
if l != 0 { if l != 0 {
if l == util.Uint256Size { if l == util.Uint256Size {
m.preparationHash = new(util.Uint256) m.preparationHash = new(util.Uint256)
r.ReadBE(m.preparationHash[:]) r.ReadBytes(m.preparationHash[:])
} else { } else {
r.Err = errors.New("invalid data") r.Err = errors.New("invalid data")
} }
@ -108,7 +108,7 @@ func (p *changeViewCompact) EncodeBinary(w *io.BinWriter) {
func (p *commitCompact) DecodeBinary(r *io.BinReader) { func (p *commitCompact) DecodeBinary(r *io.BinReader) {
r.ReadLE(&p.ViewNumber) r.ReadLE(&p.ViewNumber)
r.ReadLE(&p.ValidatorIndex) r.ReadLE(&p.ValidatorIndex)
r.ReadBE(p.Signature[:]) r.ReadBytes(p.Signature[:])
p.InvocationScript = r.ReadVarBytes() p.InvocationScript = r.ReadVarBytes()
} }

View file

@ -103,7 +103,7 @@ func NewAccountState(scriptHash util.Uint160) *AccountState {
// DecodeBinary decodes AccountState from the given BinReader. // DecodeBinary decodes AccountState from the given BinReader.
func (s *AccountState) DecodeBinary(br *io.BinReader) { func (s *AccountState) DecodeBinary(br *io.BinReader) {
br.ReadLE(&s.Version) br.ReadLE(&s.Version)
br.ReadLE(&s.ScriptHash) br.ReadBytes(s.ScriptHash[:])
br.ReadLE(&s.IsFrozen) br.ReadLE(&s.IsFrozen)
br.ReadArray(&s.Votes) br.ReadArray(&s.Votes)
@ -111,7 +111,7 @@ func (s *AccountState) DecodeBinary(br *io.BinReader) {
lenBalances := br.ReadVarUint() lenBalances := br.ReadVarUint()
for i := 0; i < int(lenBalances); i++ { for i := 0; i < int(lenBalances); i++ {
key := util.Uint256{} key := util.Uint256{}
br.ReadLE(&key) br.ReadBytes(key[:])
ubs := make([]UnspentBalance, 0) ubs := make([]UnspentBalance, 0)
br.ReadArray(&ubs) br.ReadArray(&ubs)
s.Balances[key] = ubs s.Balances[key] = ubs

View file

@ -52,7 +52,7 @@ type AssetState struct {
// DecodeBinary implements Serializable interface. // DecodeBinary implements Serializable interface.
func (a *AssetState) DecodeBinary(br *io.BinReader) { func (a *AssetState) DecodeBinary(br *io.BinReader) {
br.ReadLE(&a.ID) br.ReadBytes(a.ID[:])
br.ReadLE(&a.AssetType) br.ReadLE(&a.AssetType)
a.Name = br.ReadString() a.Name = br.ReadString()
@ -61,12 +61,12 @@ func (a *AssetState) DecodeBinary(br *io.BinReader) {
br.ReadLE(&a.Available) br.ReadLE(&a.Available)
br.ReadLE(&a.Precision) br.ReadLE(&a.Precision)
br.ReadLE(&a.FeeMode) br.ReadLE(&a.FeeMode)
br.ReadLE(&a.FeeAddress) br.ReadBytes(a.FeeAddress[:])
a.Owner = &keys.PublicKey{} a.Owner = &keys.PublicKey{}
a.Owner.DecodeBinary(br) a.Owner.DecodeBinary(br)
br.ReadLE(&a.Admin) br.ReadBytes(a.Admin[:])
br.ReadLE(&a.Issuer) br.ReadBytes(a.Issuer[:])
br.ReadLE(&a.Expiration) br.ReadLE(&a.Expiration)
br.ReadLE(&a.IsFrozen) br.ReadLE(&a.IsFrozen)
} }

View file

@ -73,9 +73,9 @@ func (b *BlockBase) VerificationHash() util.Uint256 {
func (b *BlockBase) DecodeBinary(br *io.BinReader) { func (b *BlockBase) DecodeBinary(br *io.BinReader) {
b.decodeHashableFields(br) b.decodeHashableFields(br)
var padding uint8 padding := []byte{0}
br.ReadLE(&padding) br.ReadBytes(padding)
if padding != 1 { if padding[0] != 1 {
br.Err = fmt.Errorf("format error: padding must equal 1 got %d", padding) br.Err = fmt.Errorf("format error: padding must equal 1 got %d", padding)
return return
} }
@ -128,12 +128,12 @@ func (b *BlockBase) encodeHashableFields(bw *io.BinWriter) {
// see Hash() for more information about the fields. // see Hash() for more information about the fields.
func (b *BlockBase) decodeHashableFields(br *io.BinReader) { func (b *BlockBase) decodeHashableFields(br *io.BinReader) {
br.ReadLE(&b.Version) br.ReadLE(&b.Version)
br.ReadLE(&b.PrevHash) br.ReadBytes(b.PrevHash[:])
br.ReadLE(&b.MerkleRoot) br.ReadBytes(b.MerkleRoot[:])
br.ReadLE(&b.Timestamp) br.ReadLE(&b.Timestamp)
br.ReadLE(&b.Index) br.ReadLE(&b.Index)
br.ReadLE(&b.ConsensusData) br.ReadLE(&b.ConsensusData)
br.ReadLE(&b.NextConsensus) br.ReadBytes(b.NextConsensus[:])
// Make the hash of the block here so we dont need to do this // Make the hash of the block here so we dont need to do this
// again. // again.

View file

@ -18,10 +18,10 @@ type Header struct {
func (h *Header) DecodeBinary(r *io.BinReader) { func (h *Header) DecodeBinary(r *io.BinReader) {
h.BlockBase.DecodeBinary(r) h.BlockBase.DecodeBinary(r)
var padding uint8 padding := []byte{0}
r.ReadLE(&padding) r.ReadBytes(padding)
if padding != 0 { if padding[0] != 0 {
r.Err = fmt.Errorf("format error: padding must equal 0 got %d", padding) r.Err = fmt.Errorf("format error: padding must equal 0 got %d", padding)
} }
} }

View file

@ -63,7 +63,7 @@ func (ne NotificationEvent) EncodeBinary(w *io.BinWriter) {
// DecodeBinary implements the Serializable interface. // DecodeBinary implements the Serializable interface.
func (ne *NotificationEvent) DecodeBinary(r *io.BinReader) { func (ne *NotificationEvent) DecodeBinary(r *io.BinReader) {
r.ReadLE(&ne.ScriptHash) r.ReadBytes(ne.ScriptHash[:])
ne.Item = vm.DecodeBinaryStackItem(r) ne.Item = vm.DecodeBinaryStackItem(r)
} }
@ -75,6 +75,6 @@ func (aer *AppExecResult) EncodeBinary(w *io.BinWriter) {
// DecodeBinary implements the Serializable interface. // DecodeBinary implements the Serializable interface.
func (aer *AppExecResult) DecodeBinary(r *io.BinReader) { func (aer *AppExecResult) DecodeBinary(r *io.BinReader) {
r.ReadLE(&aer.TxHash) r.ReadBytes(aer.TxHash[:])
r.ReadArray(&aer.Events) r.ReadArray(&aer.Events)
} }

View file

@ -75,7 +75,7 @@ func NewSpentCoinState(hash util.Uint256, height uint32) *SpentCoinState {
// DecodeBinary implements Serializable interface. // DecodeBinary implements Serializable interface.
func (s *SpentCoinState) DecodeBinary(br *io.BinReader) { func (s *SpentCoinState) DecodeBinary(br *io.BinReader) {
br.ReadLE(&s.txHash) br.ReadBytes(s.txHash[:])
br.ReadLE(&s.txHeight) br.ReadLE(&s.txHeight)
s.items = make(map[uint16]uint32) s.items = make(map[uint16]uint32)

View file

@ -22,7 +22,7 @@ func (attr *Attribute) DecodeBinary(br *io.BinReader) {
if attr.Usage == ECDH02 || attr.Usage == ECDH03 { if attr.Usage == ECDH02 || attr.Usage == ECDH03 {
attr.Data = make([]byte, 33) attr.Data = make([]byte, 33)
attr.Data[0] = byte(attr.Usage) attr.Data[0] = byte(attr.Usage)
br.ReadLE(attr.Data[1:]) br.ReadBytes(attr.Data[1:])
return return
} }
var datasize uint64 var datasize uint64
@ -47,7 +47,7 @@ func (attr *Attribute) DecodeBinary(br *io.BinReader) {
return return
} }
attr.Data = make([]byte, datasize) attr.Data = make([]byte, datasize)
br.ReadLE(attr.Data) br.ReadBytes(attr.Data)
} }
// EncodeBinary implements Serializable interface. // EncodeBinary implements Serializable interface.

View file

@ -16,7 +16,7 @@ type Input struct {
// DecodeBinary implements Serializable interface. // DecodeBinary implements Serializable interface.
func (in *Input) DecodeBinary(br *io.BinReader) { func (in *Input) DecodeBinary(br *io.BinReader) {
br.ReadLE(&in.PrevHash) br.ReadBytes(in.PrevHash[:])
br.ReadLE(&in.PrevIndex) br.ReadLE(&in.PrevIndex)
} }

View file

@ -35,9 +35,9 @@ func NewOutput(assetID util.Uint256, amount util.Fixed8, scriptHash util.Uint160
// DecodeBinary implements Serializable interface. // DecodeBinary implements Serializable interface.
func (out *Output) DecodeBinary(br *io.BinReader) { func (out *Output) DecodeBinary(br *io.BinReader) {
br.ReadLE(&out.AssetID) br.ReadBytes(out.AssetID[:])
br.ReadLE(&out.Amount) br.ReadLE(&out.Amount)
br.ReadLE(&out.ScriptHash) br.ReadBytes(out.ScriptHash[:])
} }
// EncodeBinary implements Serializable interface. // EncodeBinary implements Serializable interface.

View file

@ -40,7 +40,7 @@ func (tx *RegisterTX) DecodeBinary(br *io.BinReader) {
tx.Owner = &keys.PublicKey{} tx.Owner = &keys.PublicKey{}
tx.Owner.DecodeBinary(br) tx.Owner.DecodeBinary(br)
br.ReadLE(&tx.Admin) br.ReadBytes(tx.Admin[:])
} }
// EncodeBinary implements Serializable interface. // EncodeBinary implements Serializable interface.

View file

@ -181,7 +181,7 @@ func (p *PublicKey) DecodeBinary(r *io.BinReader) {
case 0x02, 0x03: case 0x02, 0x03:
// Compressed public keys // Compressed public keys
xbytes := make([]byte, 32) xbytes := make([]byte, 32)
r.ReadLE(xbytes) r.ReadBytes(xbytes)
if r.Err != nil { if r.Err != nil {
return return
} }
@ -194,8 +194,8 @@ func (p *PublicKey) DecodeBinary(r *io.BinReader) {
case 0x04: case 0x04:
xbytes := make([]byte, 32) xbytes := make([]byte, 32)
ybytes := make([]byte, 32) ybytes := make([]byte, 32)
r.ReadLE(xbytes) r.ReadBytes(xbytes)
r.ReadLE(ybytes) r.ReadBytes(ybytes)
if r.Err != nil { if r.Err != nil {
return return
} }

View file

@ -132,10 +132,19 @@ func (r *BinReader) ReadVarUint() uint64 {
func (r *BinReader) ReadVarBytes() []byte { func (r *BinReader) ReadVarBytes() []byte {
n := r.ReadVarUint() n := r.ReadVarUint()
b := make([]byte, n) b := make([]byte, n)
r.ReadLE(b) r.ReadBytes(b)
return b return b
} }
// ReadBytes copies fixed-size buffer from the reader to provided slice.
func (r *BinReader) ReadBytes(buf []byte) {
if r.Err != nil {
return
}
_, r.Err = io.ReadFull(r.r, buf)
}
// ReadString calls ReadVarBytes and casts the results as a string. // ReadString calls ReadVarBytes and casts the results as a string.
func (r *BinReader) ReadString() string { func (r *BinReader) ReadString() string {
b := r.ReadVarBytes() b := r.ReadVarBytes()

View file

@ -332,3 +332,28 @@ func TestBinReader_ReadArray(t *testing.T) {
r.Err = errors.New("error") r.Err = errors.New("error")
require.Panics(t, func() { r.ReadArray(1) }) require.Panics(t, func() { r.ReadArray(1) })
} }
func TestBinReader_ReadBytes(t *testing.T) {
data := []byte{0, 1, 2, 3, 4, 5, 6, 7}
r := NewBinReaderFromBuf(data)
buf := make([]byte, 4)
r.ReadBytes(buf)
require.NoError(t, r.Err)
require.Equal(t, data[:4], buf)
r.ReadBytes([]byte{})
require.NoError(t, r.Err)
buf = make([]byte, 3)
r.ReadBytes(buf)
require.NoError(t, r.Err)
require.Equal(t, data[4:7], buf)
buf = make([]byte, 2)
r.ReadBytes(buf)
require.Error(t, r.Err)
r.ReadBytes([]byte{})
require.Error(t, r.Err)
}

View file

@ -150,7 +150,7 @@ func (m *Message) CommandType() CommandType {
// Decode decodes a Message from the given reader. // Decode decodes a Message from the given reader.
func (m *Message) Decode(br *io.BinReader) error { func (m *Message) Decode(br *io.BinReader) error {
br.ReadLE(&m.Magic) br.ReadLE(&m.Magic)
br.ReadLE(&m.Command) br.ReadBytes(m.Command[:])
br.ReadLE(&m.Length) br.ReadLE(&m.Length)
br.ReadLE(&m.Checksum) br.ReadLE(&m.Checksum)
if br.Err != nil { if br.Err != nil {

View file

@ -31,7 +31,7 @@ func NewAddressAndTime(e *net.TCPAddr, t time.Time) *AddressAndTime {
func (p *AddressAndTime) DecodeBinary(br *io.BinReader) { func (p *AddressAndTime) DecodeBinary(br *io.BinReader) {
br.ReadLE(&p.Timestamp) br.ReadLE(&p.Timestamp)
br.ReadLE(&p.Services) br.ReadLE(&p.Services)
br.ReadBE(&p.IP) br.ReadBytes(p.IP[:])
br.ReadBE(&p.Port) br.ReadBE(&p.Port)
} }

View file

@ -24,7 +24,7 @@ func NewGetBlocks(start []util.Uint256, stop util.Uint256) *GetBlocks {
// DecodeBinary implements Serializable interface. // DecodeBinary implements Serializable interface.
func (p *GetBlocks) DecodeBinary(br *io.BinReader) { func (p *GetBlocks) DecodeBinary(br *io.BinReader) {
br.ReadArray(&p.HashStart) br.ReadArray(&p.HashStart)
br.ReadLE(&p.HashStop) br.ReadBytes(p.HashStop[:])
} }
// EncodeBinary implements Serializable interface. // EncodeBinary implements Serializable interface.

View file

@ -123,5 +123,5 @@ func (u Uint256) EncodeBinary(w *io.BinWriter) {
// DecodeBinary implements io.Serializable interface. // DecodeBinary implements io.Serializable interface.
func (u *Uint256) DecodeBinary(r *io.BinReader) { func (u *Uint256) DecodeBinary(r *io.BinReader) {
r.ReadBE(u[:]) r.ReadBytes(u[:])
} }