mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-09-13 21:10:12 +00:00
147 lines
3.8 KiB
Go
147 lines
3.8 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 := SerializeUTXOIntoWriter(w, entry, outpoint)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return w.Bytes(), nil
|
|
}
|
|
|
|
// SerializeUTXOIntoWriter serializes the byte-slice representation for given UTXOEntry-outpoint pair into the given writer
|
|
func SerializeUTXOIntoWriter(writer io.Writer, entry externalapi.UTXOEntry, outpoint *externalapi.DomainOutpoint) error {
|
|
err := serializeOutpoint(writer, outpoint)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return serializeUTXOEntry(writer, entry)
|
|
}
|
|
|
|
// 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)
|
|
return DeserializeUTXOOutOfReader(r)
|
|
}
|
|
|
|
// DeserializeUTXOOutOfReader deserializes a UTXOEntry-outpoint pair out of the given reader
|
|
func DeserializeUTXOOutOfReader(reader io.Reader) (entry externalapi.UTXOEntry, outpoint *externalapi.DomainOutpoint, err error) {
|
|
outpoint, err = deserializeOutpoint(reader)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
|
|
entry, err = deserializeUTXOEntry(reader)
|
|
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
|
|
}
|
|
err = serialization.WriteElement(w, entry.ScriptPublicKey().Version)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
count := uint64(len(entry.ScriptPublicKey().Script))
|
|
err = serialization.WriteElement(w, count)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = w.Write(entry.ScriptPublicKey().Script)
|
|
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 version uint16
|
|
err = serialization.ReadElement(r, &version)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var scriptPubKeyLen uint64
|
|
err = serialization.ReadElement(r, &scriptPubKeyLen)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
scriptPubKeyScript := make([]byte, scriptPubKeyLen)
|
|
_, err = io.ReadFull(r, scriptPubKeyScript)
|
|
if err != nil {
|
|
return nil, errors.WithStack(err)
|
|
}
|
|
scriptPubKey := externalapi.ScriptPublicKey{scriptPubKeyScript, version}
|
|
|
|
return NewUTXOEntry(amount, &scriptPubKey, isCoinbase, blockBlueScore), nil
|
|
}
|