-
Notifications
You must be signed in to change notification settings - Fork 82
/
binapi.go
85 lines (72 loc) · 2.93 KB
/
binapi.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright (c) 2017 Cisco and/or its affiliates.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package api
import (
"path"
"reflect"
)
// GoVppAPIPackageIsVersionX is referenced from generated binapi files
// to assert that that code is compatible with this version of the GoVPP api package.
const (
GoVppAPIPackageIsVersion1 = true
GoVppAPIPackageIsVersion2 = true
)
// MessageType represents the type of a VPP message derived from message header fields.
type MessageType int
const (
// RequestMessage represents a VPP request message
RequestMessage MessageType = iota
// ReplyMessage represents a VPP reply message
ReplyMessage
// EventMessage represents a VPP event message
EventMessage
// OtherMessage represents other VPP message
OtherMessage
)
// Message is an interface that is implemented by all VPP Binary API messages generated by the binapigenerator.
type Message interface {
// GetMessageName returns the original VPP name of the message, as defined in the VPP API.
GetMessageName() string
// GetCrcString returns the string with CRC checksum of the message definition (the string represents a hexadecimal number).
GetCrcString() string
// GetMessageType returns the type of the VPP message.
GetMessageType() MessageType
}
// DataType is an interface that is implemented by all VPP Binary API data types by the binapi_generator.
type DataType interface {
// GetTypeName returns the original VPP name of the data type, as defined in the VPP API.
GetTypeName() string
}
var (
registeredMessages = make(map[string]map[string]Message)
registeredMessageTypes = make(map[string]map[reflect.Type]string)
)
// RegisterMessage is called from generated code to register message.
func RegisterMessage(x Message, name string) {
binapiPath := path.Dir(reflect.TypeOf(x).Elem().PkgPath())
if _, ok := registeredMessages[binapiPath]; !ok {
registeredMessages[binapiPath] = make(map[string]Message)
registeredMessageTypes[binapiPath] = make(map[reflect.Type]string)
}
registeredMessages[binapiPath][x.GetMessageName()+"_"+x.GetCrcString()] = x
registeredMessageTypes[binapiPath][reflect.TypeOf(x)] = name
}
// GetRegisteredMessages returns list of all registered messages.
func GetRegisteredMessages() map[string]map[string]Message {
return registeredMessages
}
// GetRegisteredMessageTypes returns list of all registered message types.
func GetRegisteredMessageTypes() map[string]map[reflect.Type]string {
return registeredMessageTypes
}