mirror of
https://github.com/LBRYFoundation/lbcd.git
synced 2025-08-23 17:47:24 +00:00
wire: add getcftypes and cftypes messages
This commit is contained in:
parent
621c73dad1
commit
89d6696560
4 changed files with 146 additions and 0 deletions
|
@ -53,8 +53,10 @@ const (
|
||||||
CmdFeeFilter = "feefilter"
|
CmdFeeFilter = "feefilter"
|
||||||
CmdGetCFilter = "getcfilter"
|
CmdGetCFilter = "getcfilter"
|
||||||
CmdGetCFHeaders = "getcfheaders"
|
CmdGetCFHeaders = "getcfheaders"
|
||||||
|
CmdGetCFTypes = "getcftypes"
|
||||||
CmdCFilter = "cfilter"
|
CmdCFilter = "cfilter"
|
||||||
CmdCFHeaders = "cfheaders"
|
CmdCFHeaders = "cfheaders"
|
||||||
|
CmdCFTypes = "cftypes"
|
||||||
)
|
)
|
||||||
|
|
||||||
// MessageEncoding represents the wire message encoding format to be used.
|
// MessageEncoding represents the wire message encoding format to be used.
|
||||||
|
@ -166,12 +168,18 @@ func makeEmptyMessage(command string) (Message, error) {
|
||||||
case CmdGetCFHeaders:
|
case CmdGetCFHeaders:
|
||||||
msg = &MsgGetCFHeaders{}
|
msg = &MsgGetCFHeaders{}
|
||||||
|
|
||||||
|
case CmdGetCFTypes:
|
||||||
|
msg = &MsgGetCFTypes{}
|
||||||
|
|
||||||
case CmdCFilter:
|
case CmdCFilter:
|
||||||
msg = &MsgCFilter{}
|
msg = &MsgCFilter{}
|
||||||
|
|
||||||
case CmdCFHeaders:
|
case CmdCFHeaders:
|
||||||
msg = &MsgCFHeaders{}
|
msg = &MsgCFHeaders{}
|
||||||
|
|
||||||
|
case CmdCFTypes:
|
||||||
|
msg = &MsgCFTypes{}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return nil, fmt.Errorf("unhandled command [%s]", command)
|
return nil, fmt.Errorf("unhandled command [%s]", command)
|
||||||
}
|
}
|
||||||
|
|
|
@ -71,8 +71,10 @@ func TestMessage(t *testing.T) {
|
||||||
msgReject := NewMsgReject("block", RejectDuplicate, "duplicate block")
|
msgReject := NewMsgReject("block", RejectDuplicate, "duplicate block")
|
||||||
msgGetCFilter := NewMsgGetCFilter(&chainhash.Hash{}, 0)
|
msgGetCFilter := NewMsgGetCFilter(&chainhash.Hash{}, 0)
|
||||||
msgGetCFHeaders := NewMsgGetCFHeaders()
|
msgGetCFHeaders := NewMsgGetCFHeaders()
|
||||||
|
msgGetCFTypes := NewMsgGetCFTypes()
|
||||||
msgCFilter := NewMsgCFilter(&chainhash.Hash{}, 1, []byte("payload"))
|
msgCFilter := NewMsgCFilter(&chainhash.Hash{}, 1, []byte("payload"))
|
||||||
msgCFHeaders := NewMsgCFHeaders()
|
msgCFHeaders := NewMsgCFHeaders()
|
||||||
|
msgCFTypes := NewMsgCFTypes([]uint8{2})
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
in Message // Value to encode
|
in Message // Value to encode
|
||||||
|
@ -104,8 +106,10 @@ func TestMessage(t *testing.T) {
|
||||||
{msgReject, msgReject, pver, MainNet, 79},
|
{msgReject, msgReject, pver, MainNet, 79},
|
||||||
{msgGetCFilter, msgGetCFilter, pver, MainNet, 57},
|
{msgGetCFilter, msgGetCFilter, pver, MainNet, 57},
|
||||||
{msgGetCFHeaders, msgGetCFHeaders, pver, MainNet, 62},
|
{msgGetCFHeaders, msgGetCFHeaders, pver, MainNet, 62},
|
||||||
|
{msgGetCFTypes, msgGetCFTypes, pver, MainNet, 24},
|
||||||
{msgCFilter, msgCFilter, pver, MainNet, 65},
|
{msgCFilter, msgCFilter, pver, MainNet, 65},
|
||||||
{msgCFHeaders, msgCFHeaders, pver, MainNet, 58},
|
{msgCFHeaders, msgCFHeaders, pver, MainNet, 58},
|
||||||
|
{msgCFTypes, msgCFTypes, pver, MainNet, 26},
|
||||||
}
|
}
|
||||||
|
|
||||||
t.Logf("Running %d tests", len(tests))
|
t.Logf("Running %d tests", len(tests))
|
||||||
|
|
92
wire/msgcftypes.go
Normal file
92
wire/msgcftypes.go
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
// Copyright (c) 2017 The btcsuite developers
|
||||||
|
// Use of this source code is governed by an ISC
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package wire
|
||||||
|
|
||||||
|
import "io"
|
||||||
|
|
||||||
|
// MsgCFTypes is the cftypes message.
|
||||||
|
type MsgCFTypes struct {
|
||||||
|
NumFilters uint8
|
||||||
|
SupportedFilters []uint8
|
||||||
|
}
|
||||||
|
|
||||||
|
// BtcDecode decodes r using the bitcoin protocol encoding into the receiver.
|
||||||
|
// This is part of the Message interface implementation.
|
||||||
|
func (msg *MsgCFTypes) BtcDecode(r io.Reader, pver uint32, _ MessageEncoding) error {
|
||||||
|
// Read the number of filter types supported
|
||||||
|
err := readElement(r, &msg.NumFilters)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Read each filter type.
|
||||||
|
msg.SupportedFilters = make([]uint8, msg.NumFilters)
|
||||||
|
for i := uint8(0); i < msg.NumFilters; i++ {
|
||||||
|
err = readElement(r, &msg.SupportedFilters[i])
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// BtcEncode encodes the receiver to w using the bitcoin protocol encoding.
|
||||||
|
// This is part of the Message interface implementation.
|
||||||
|
func (msg *MsgCFTypes) BtcEncode(w io.Writer, pver uint32, _ MessageEncoding) error {
|
||||||
|
// Write length of supported filters slice; don't trust that the caller
|
||||||
|
// has set it correctly.
|
||||||
|
err := writeElement(w, uint8(len(msg.SupportedFilters)))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
for i := range msg.SupportedFilters {
|
||||||
|
err = writeElement(w, msg.SupportedFilters[i])
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deserialize decodes a filter from r into the receiver using a format that is
|
||||||
|
// suitable for long-term storage such as a database. This function differs
|
||||||
|
// from BtcDecode in that BtcDecode decodes from the bitcoin wire protocol as
|
||||||
|
// it was sent across the network. The wire encoding can technically differ
|
||||||
|
// depending on the protocol version and doesn't even really need to match the
|
||||||
|
// format of a stored filter at all. As of the time this comment was written,
|
||||||
|
// the encoded filter is the same in both instances, but there is a distinct
|
||||||
|
// difference and separating the two allows the API to be flexible enough to
|
||||||
|
// deal with changes.
|
||||||
|
func (msg *MsgCFTypes) Deserialize(r io.Reader) error {
|
||||||
|
// At the current time, there is no difference between the wire encoding
|
||||||
|
// and the stable long-term storage format. As a result, make use of
|
||||||
|
// BtcDecode.
|
||||||
|
return msg.BtcDecode(r, 0, BaseEncoding)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Command returns the protocol command string for the message. This is part
|
||||||
|
// of the Message interface implementation.
|
||||||
|
func (msg *MsgCFTypes) Command() string {
|
||||||
|
return CmdCFTypes
|
||||||
|
}
|
||||||
|
|
||||||
|
// MaxPayloadLength returns the maximum length the payload can be for the
|
||||||
|
// receiver. This is part of the Message interface implementation.
|
||||||
|
func (msg *MsgCFTypes) MaxPayloadLength(pver uint32) uint32 {
|
||||||
|
// 1 byte for NumFilters, and 1 byte for up to 255 filter types.
|
||||||
|
return 256
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewMsgCFTypes returns a new bitcoin cftypes message that conforms to the
|
||||||
|
// Message interface. See MsgCFTypes for details.
|
||||||
|
func NewMsgCFTypes(filterTypes []uint8) *MsgCFTypes {
|
||||||
|
return &MsgCFTypes{
|
||||||
|
NumFilters: uint8(len(filterTypes)),
|
||||||
|
SupportedFilters: filterTypes,
|
||||||
|
}
|
||||||
|
}
|
42
wire/msggetcftypes.go
Normal file
42
wire/msggetcftypes.go
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
// Copyright (c) 2017 The btcsuite developers
|
||||||
|
// Use of this source code is governed by an ISC
|
||||||
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package wire
|
||||||
|
|
||||||
|
import "io"
|
||||||
|
|
||||||
|
// MsgGetCFTypes is the getcftypes message.
|
||||||
|
type MsgGetCFTypes struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
// BtcDecode decodes the receiver from w using the bitcoin protocol encoding.
|
||||||
|
// This is part of the Message interface implementation.
|
||||||
|
func (msg *MsgGetCFTypes) BtcDecode(r io.Reader, pver uint32, _ MessageEncoding) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// BtcEncode encodes the receiver to w using the bitcoin protocol encoding.
|
||||||
|
// This is part of the Message interface implementation.
|
||||||
|
func (msg *MsgGetCFTypes) BtcEncode(w io.Writer, pver uint32, _ MessageEncoding) error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Command returns the protocol command string for the message. This is part
|
||||||
|
// of the Message interface implementation.
|
||||||
|
func (msg *MsgGetCFTypes) Command() string {
|
||||||
|
return CmdGetCFTypes
|
||||||
|
}
|
||||||
|
|
||||||
|
// MaxPayloadLength returns the maximum length the payload can be for the
|
||||||
|
// receiver. This is part of the Message interface implementation.
|
||||||
|
func (msg *MsgGetCFTypes) MaxPayloadLength(pver uint32) uint32 {
|
||||||
|
// Empty message.
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewMsgGetCFTypes returns a new bitcoin getcftypes message that conforms to
|
||||||
|
// the Message interface.
|
||||||
|
func NewMsgGetCFTypes() *MsgGetCFTypes {
|
||||||
|
return &MsgGetCFTypes{}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue