-
Notifications
You must be signed in to change notification settings - Fork 672
/
message.go
63 lines (48 loc) · 1.36 KB
/
message.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright (C) 2019-2022, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package message
import (
"errors"
"github.com/ava-labs/avalanchego/ids"
)
var (
_ Message = (*Tx)(nil)
errUnexpectedCodecVersion = errors.New("unexpected codec version")
)
type Message interface {
// Handle this message with the correct message handler
Handle(handler Handler, nodeID ids.NodeID, requestID uint32) error
// initialize should be called whenever a message is built or parsed
initialize([]byte)
// Bytes returns the binary representation of this message
//
// Bytes should only be called after being initialized
Bytes() []byte
}
type message []byte
func (m *message) initialize(bytes []byte) { *m = bytes }
func (m *message) Bytes() []byte { return *m }
type Tx struct {
message
Tx []byte `serialize:"true"`
}
func (msg *Tx) Handle(handler Handler, nodeID ids.NodeID, requestID uint32) error {
return handler.HandleTx(nodeID, requestID, msg)
}
func Parse(bytes []byte) (Message, error) {
var msg Message
version, err := c.Unmarshal(bytes, &msg)
if err != nil {
return nil, err
}
if version != codecVersion {
return nil, errUnexpectedCodecVersion
}
msg.initialize(bytes)
return msg, nil
}
func Build(msg Message) ([]byte, error) {
bytes, err := c.Marshal(codecVersion, &msg)
msg.initialize(bytes)
return bytes, err
}