The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
woop/proto/identity/identity.go

62 lines
1.5 KiB

6 years ago
package identity
import (
"bytes"
6 years ago
"errors"
"github.com/simple-rules/harmony-benchmark/proto"
6 years ago
)
// the number of bytes consensus message type occupies
const IDENTITY_MESSAGE_TYPE_BYTES = 1
type IdentityMessageType byte
const (
IDENTITY IdentityMessageType = iota
// TODO: add more types
)
6 years ago
type MessageType int
const (
REGISTER MessageType = iota
)
// Returns string name for the MessageType enum
func (msgType MessageType) String() string {
names := [...]string{
"REGISTER",
}
if msgType < REGISTER || msgType > REGISTER {
return "Unknown"
}
return names[msgType]
}
// GetIdentityMessageType Get the consensus message type from the identity message
func GetIdentityMessageType(message []byte) (MessageType, error) {
if len(message) < 1 {
return 0, errors.New("Failed to get identity message type: no data available.")
6 years ago
}
return MessageType(message[0]), nil
}
// GetIdentityMessagePayload message payload from the identity message
func GetIdentityMessagePayload(message []byte) ([]byte, error) {
if len(message) < 2 {
return []byte{}, errors.New("Failed to get identity message payload: no data available.")
6 years ago
}
return message[IDENTITY_MESSAGE_TYPE_BYTES:], nil
}
// Concatenate msgType as one byte with payload, and return the whole byte array
func ConstructIdentityMessage(identityMessageType MessageType, payload []byte) []byte {
byteBuffer := bytes.NewBuffer([]byte{byte(proto.IDENTITY)})
byteBuffer.WriteByte(byte(IDENTITY))
byteBuffer.WriteByte(byte(identityMessageType))
byteBuffer.Write(payload)
return byteBuffer.Bytes()
}