mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-20 13:56:45 +00:00

* Increase size of reachability cache * Change DomainHash to struct with unexported hashArray * Fixing compilation errors stemming from new DomainHash structure * Remove obsolete Read/WriteElement methods in appmessage * Fix all tests * Fix all tests * Add comments * A few renamings * go mod tidy
127 lines
2.9 KiB
Go
127 lines
2.9 KiB
Go
package utxo
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
|
|
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
"github.com/kaspanet/kaspad/domain/consensus/utils/serialization"
|
|
"github.com/kaspanet/kaspad/domain/consensus/utils/transactionid"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// SerializeUTXO returns the byte-slice representation for given UTXOEntry-outpoint pair
|
|
func SerializeUTXO(entry externalapi.UTXOEntry, outpoint *externalapi.DomainOutpoint) ([]byte, error) {
|
|
w := &bytes.Buffer{}
|
|
|
|
err := serializeOutpoint(w, outpoint)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = serializeUTXOEntry(w, entry)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return w.Bytes(), nil
|
|
}
|
|
|
|
// DeserializeUTXO deserializes the given byte slice to UTXOEntry-outpoint pair
|
|
func DeserializeUTXO(utxoBytes []byte) (entry externalapi.UTXOEntry, outpoint *externalapi.DomainOutpoint, err error) {
|
|
r := bytes.NewReader(utxoBytes)
|
|
outpoint, err = deserializeOutpoint(r)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
entry, err = deserializeUTXOEntry(r)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
return entry, outpoint, nil
|
|
}
|
|
|
|
func serializeOutpoint(w io.Writer, outpoint *externalapi.DomainOutpoint) error {
|
|
_, err := w.Write(outpoint.TransactionID.ByteSlice())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = serialization.WriteElement(w, outpoint.Index)
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func deserializeOutpoint(r io.Reader) (*externalapi.DomainOutpoint, error) {
|
|
transactionIDBytes := make([]byte, externalapi.DomainHashSize)
|
|
_, err := io.ReadFull(r, transactionIDBytes)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
transactionID, err := transactionid.FromBytes(transactionIDBytes)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var index uint32
|
|
err = serialization.ReadElement(r, &index)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &externalapi.DomainOutpoint{
|
|
TransactionID: *transactionID,
|
|
Index: index,
|
|
}, nil
|
|
}
|
|
|
|
func serializeUTXOEntry(w io.Writer, entry externalapi.UTXOEntry) error {
|
|
err := serialization.WriteElements(w, entry.BlockBlueScore(), entry.Amount(), entry.IsCoinbase())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
count := uint64(len(entry.ScriptPublicKey()))
|
|
err = serialization.WriteElement(w, count)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = w.Write(entry.ScriptPublicKey())
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func deserializeUTXOEntry(r io.Reader) (externalapi.UTXOEntry, error) {
|
|
var blockBlueScore uint64
|
|
var amount uint64
|
|
var isCoinbase bool
|
|
err := serialization.ReadElements(r, &blockBlueScore, &amount, &isCoinbase)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var scriptPubKeyLen uint64
|
|
err = serialization.ReadElement(r, &scriptPubKeyLen)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
scriptPubKey := make([]byte, scriptPubKeyLen)
|
|
_, err = io.ReadFull(r, scriptPubKey)
|
|
if err != nil {
|
|
return nil, errors.WithStack(err)
|
|
}
|
|
|
|
return NewUTXOEntry(amount, scriptPubKey, isCoinbase, blockBlueScore), nil
|
|
}
|