Files
2026-01-10 02:00:48 -08:00

101 lines
2.5 KiB
Go

// Copyright (C) 2019-2025, Lux Industries, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package utxo
import (
"bytes"
"cmp"
"errors"
"fmt"
"strconv"
"strings"
"github.com/luxfi/ids"
"github.com/luxfi/vm/components/verify"
)
var (
errNilUTXOID = errors.New("nil utxo ID is not valid")
errMalformedUTXOIDString = errors.New("unexpected number of tokens in string")
errFailedDecodingUTXOIDTxID = errors.New("failed decoding UTXOID TxID")
errFailedDecodingUTXOIDIndex = errors.New("failed decoding UTXOID index")
_ verify.Verifiable = (*UTXOID)(nil)
_ interface{ Compare(*UTXOID) int } = (*UTXOID)(nil)
)
type UTXOID struct {
// Serialized:
TxID ids.ID `serialize:"true" json:"txID"`
OutputIndex uint32 `serialize:"true" json:"outputIndex"`
// Symbol is false if the UTXO should be part of the DB
Symbol bool `serialize:"-" json:"-"`
// id is the unique ID of a UTXO, it is calculated from TxID and OutputIndex
id ids.ID
}
// InputSource returns the source of the UTXO that this input is spending
func (utxo *UTXOID) InputSource() (ids.ID, uint32) {
return utxo.TxID, utxo.OutputIndex
}
// InputID returns a unique ID of the UTXO that this input is spending
func (utxo *UTXOID) InputID() ids.ID {
if utxo.id == ids.Empty {
utxo.id = utxo.TxID.Prefix(uint64(utxo.OutputIndex))
}
return utxo.id
}
// Symbolic returns if this is the ID of a UTXO in the DB, or if it is a
// symbolic input
func (utxo *UTXOID) Symbolic() bool {
return utxo.Symbol
}
func (utxo *UTXOID) String() string {
return fmt.Sprintf("%s:%d", utxo.TxID, utxo.OutputIndex)
}
// UTXOIDFromString attempts to parse a string into a UTXOID
func UTXOIDFromString(s string) (*UTXOID, error) {
ss := strings.Split(s, ":")
if len(ss) != 2 {
return nil, errMalformedUTXOIDString
}
txID, err := ids.FromString(ss[0])
if err != nil {
return nil, fmt.Errorf("%w: %w", errFailedDecodingUTXOIDTxID, err)
}
idx, err := strconv.ParseUint(ss[1], 10, 32)
if err != nil {
return nil, fmt.Errorf("%w: %w", errFailedDecodingUTXOIDIndex, err)
}
return &UTXOID{
TxID: txID,
OutputIndex: uint32(idx),
}, nil
}
func (utxo *UTXOID) Verify() error {
if utxo == nil {
return errNilUTXOID
}
return nil
}
func (utxo *UTXOID) Compare(other *UTXOID) int {
utxoID, utxoIndex := utxo.InputSource()
otherID, otherIndex := other.InputSource()
if txIDComp := bytes.Compare(utxoID[:], otherID[:]); txIDComp != 0 {
return txIDComp
}
return cmp.Compare(utxoIndex, otherIndex)
}