aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/trace/trace.ba.go
blob: 25db789d918ac81765d3c43eb32cfe025f73a1f8 (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
// versions:
//  binapi-generator: v0.4.0-dev
//  VPP:              20.05-release
// source: /usr/share/vpp/api/plugins/trace.api.json

// Package trace contains generated bindings for API file trace.api.
//
// Contents:
//   6 messages
//
package trace

import (
	api "git.fd.io/govpp.git/api"
	codec "git.fd.io/govpp.git/codec"
)

// This is a compile-time assertion to ensure that this generated file
// is compatible with the GoVPP api package it is being compiled against.
// A compilation error at this line likely means your copy of the
// GoVPP api package needs to be updated.
const _ = api.GoVppAPIPackageIsVersion2

const (
	APIFile    = "trace"
	APIVersion = "1.0.0"
	VersionCrc = 0x397cbf90
)

// TraceProfileAdd defines message 'trace_profile_add'.
type TraceProfileAdd struct {
	TraceType uint8  `binapi:"u8,name=trace_type" json:"trace_type,omitempty"`
	NumElts   uint8  `binapi:"u8,name=num_elts" json:"num_elts,omitempty"`
	TraceTsp  uint8  `binapi:"u8,name=trace_tsp" json:"trace_tsp,omitempty"`
	NodeID    uint32 `binapi:"u32,name=node_id" json:"node_id,omitempty"`
	AppData   uint32 `binapi:"u32,name=app_data" json:"app_data,omitempty"`
}

func (m *TraceProfileAdd) Reset()               { *m = TraceProfileAdd{} }
func (*TraceProfileAdd) GetMessageName() string { return "trace_profile_add" }
func (*TraceProfileAdd) GetCrcString() string   { return "de08aa6d" }
func (*TraceProfileAdd) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *TraceProfileAdd) Size() int {
	if m == nil {
		return 0
	}
	var size int
	size += 1 // m.TraceType
	size += 1 // m.NumElts
	size += 1 // m.TraceTsp
	size += 4 // m.NodeID
	size += 4 // m.AppData
	return size
}
func (m *TraceProfileAdd) Marshal(b []byte) ([]byte, error) {
	var buf *codec.Buffer
	if b == nil {
		buf = codec.NewBuffer(make([]byte, m.Size()))
	} else {
		buf = codec.NewBuffer(b)
	}
	buf.EncodeUint8(uint8(m.TraceType))
	buf.EncodeUint8(uint8(m.NumElts))
	buf.EncodeUint8(uint8(m.TraceTsp))
	buf.EncodeUint32(uint32(m.NodeID))
	buf.EncodeUint32(uint32(m.AppData))
	return buf.Bytes(), nil
}
func (m *TraceProfileAdd) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.TraceType = buf.DecodeUint8()
	m.NumElts = buf.DecodeUint8()
	m.TraceTsp = buf.DecodeUint8()
	m.NodeID = buf.DecodeUint32()
	m.AppData = buf.DecodeUint32()
	return nil
}

// TraceProfileAddReply defines message 'trace_profile_add_reply'.
type TraceProfileAddReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

func (m *TraceProfileAddReply) Reset()               { *m = TraceProfileAddReply{} }
func (*TraceProfileAddReply) GetMessageName() string { return "trace_profile_add_reply" }
func (*TraceProfileAddReply) GetCrcString() string   { return "e8d4e804" }
func (*TraceProfileAddReply) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *TraceProfileAddReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	size += 4 // m.Retval
	return size
}
func (m *TraceProfileAddReply) Marshal(b []byte) ([]byte, error) {
	var buf *codec.Buffer
	if b == nil {
		buf = codec.NewBuffer(make([]byte, m.Size()))
	} else {
		buf = codec.NewBuffer(b)
	}
	buf.EncodeUint32(uint32(m.Retval))
	return buf.Bytes(), nil
}
func (m *TraceProfileAddReply) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.Retval = int32(buf.DecodeUint32())
	return nil
}

// TraceProfileDel defines message 'trace_profile_del'.
type TraceProfileDel struct{}

func (m *TraceProfileDel) Reset()               { *m = TraceProfileDel{} }
func (*TraceProfileDel) GetMessageName() string { return "trace_profile_del" }
func (*TraceProfileDel) GetCrcString() string   { return "51077d14" }
func (*TraceProfileDel) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *TraceProfileDel) Size() int {
	if m == nil {
		return 0
	}
	var size int
	return size
}
func (m *TraceProfileDel) Marshal(b []byte) ([]byte, error) {
	var buf *codec.Buffer
	if b == nil {
		buf = codec.NewBuffer(make([]byte, m.Size()))
	} else {
		buf = codec.NewBuffer(b)
	}
	return buf.Bytes(), nil
}
func (m *TraceProfileDel) Unmarshal(b []byte) error {
	return nil
}

// TraceProfileDelReply defines message 'trace_profile_del_reply'.
type TraceProfileDelReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

func (m *TraceProfileDelReply) Reset()               { *m = TraceProfileDelReply{} }
func (*TraceProfileDelReply) GetMessageName() string { return "trace_profile_del_reply" }
func (*TraceProfileDelReply) GetCrcString() string   { return "e8d4e804" }
func (*TraceProfileDelReply) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *TraceProfileDelReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	size += 4 // m.Retval
	return size
}
func (m *TraceProfileDelReply) Marshal(b []byte) ([]byte, error) {
	var buf *codec.Buffer
	if b == nil {
		buf = codec.NewBuffer(make([]byte, m.Size()))
	} else {
		buf = codec.NewBuffer(b)
	}
	buf.EncodeUint32(uint32(m.Retval))
	return buf.Bytes(), nil
}
func (m *TraceProfileDelReply) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.Retval = int32(buf.DecodeUint32())
	return nil
}

// TraceProfileShowConfig defines message 'trace_profile_show_config'.
type TraceProfileShowConfig struct{}

func (m *TraceProfileShowConfig) Reset()               { *m = TraceProfileShowConfig{} }
func (*TraceProfileShowConfig) GetMessageName() string { return "trace_profile_show_config" }
func (*TraceProfileShowConfig) GetCrcString() string   { return "51077d14" }
func (*TraceProfileShowConfig) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *TraceProfileShowConfig) Size() int {
	if m == nil {
		return 0
	}
	var size int
	return size
}
func (m *TraceProfileShowConfig) Marshal(b []byte) ([]byte, error) {
	var buf *codec.Buffer
	if b == nil {
		buf = codec.NewBuffer(make([]byte, m.Size()))
	} else {
		buf = codec.NewBuffer(b)
	}
	return buf.Bytes(), nil
}
func (m *TraceProfileShowConfig) Unmarshal(b []byte) error {
	return nil
}

// TraceProfileShowConfigReply defines message 'trace_profile_show_config_reply'.
type TraceProfileShowConfigReply struct {
	Retval    int32  `binapi:"i32,name=retval" json:"retval,omitempty"`
	TraceType uint8  `binapi:"u8,name=trace_type" json:"trace_type,omitempty"`
	NumElts   uint8  `binapi:"u8,name=num_elts" json:"num_elts,omitempty"`
	TraceTsp  uint8  `binapi:"u8,name=trace_tsp" json:"trace_tsp,omitempty"`
	NodeID    uint32 `binapi:"u32,name=node_id" json:"node_id,omitempty"`
	AppData   uint32 `binapi:"u32,name=app_data" json:"app_data,omitempty"`
}

func (m *TraceProfileShowConfigReply) Reset()               { *m = TraceProfileShowConfigReply{} }
func (*TraceProfileShowConfigReply) GetMessageName() string { return "trace_profile_show_config_reply" }
func (*TraceProfileShowConfigReply) GetCrcString() string   { return "0f1d374c" }
func (*TraceProfileShowConfigReply) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *TraceProfileShowConfigReply) Size() int {
	if m == nil {
		return 0
	}
	var size int
	size += 4 // m.Retval
	size += 1 // m.TraceType
	size += 1 // m.NumElts
	size += 1 // m.TraceTsp
	size += 4 // m.NodeID
	size += 4 // m.AppData
	return size
}
func (m *TraceProfileShowConfigReply) Marshal(b []byte) ([]byte, error) {
	var buf *codec.Buffer
	if b == nil {
		buf = codec.NewBuffer(make([]byte, m.Size()))
	} else {
		buf = codec.NewBuffer(b)
	}
	buf.EncodeUint32(uint32(m.Retval))
	buf.EncodeUint8(uint8(m.TraceType))
	buf.EncodeUint8(uint8(m.NumElts))
	buf.EncodeUint8(uint8(m.TraceTsp))
	buf.EncodeUint32(uint32(m.NodeID))
	buf.EncodeUint32(uint32(m.AppData))
	return buf.Bytes(), nil
}
func (m *TraceProfileShowConfigReply) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.Retval = int32(buf.DecodeUint32())
	m.TraceType = buf.DecodeUint8()
	m.NumElts = buf.DecodeUint8()
	m.TraceTsp = buf.DecodeUint8()
	m.NodeID = buf.DecodeUint32()
	m.AppData = buf.DecodeUint32()
	return nil
}

func init() { file_trace_binapi_init() }
func file_trace_binapi_init() {
	api.RegisterMessage((*TraceProfileAdd)(nil), "trace_profile_add_de08aa6d")
	api.RegisterMessage((*TraceProfileAddReply)(nil), "trace_profile_add_reply_e8d4e804")
	api.RegisterMessage((*TraceProfileDel)(nil), "trace_profile_del_51077d14")
	api.RegisterMessage((*TraceProfileDelReply)(nil), "trace_profile_del_reply_e8d4e804")
	api.RegisterMessage((*TraceProfileShowConfig)(nil), "trace_profile_show_config_51077d14")
	api.RegisterMessage((*TraceProfileShowConfigReply)(nil), "trace_profile_show_config_reply_0f1d374c")
}

// Messages returns list of all messages in this module.
func AllMessages() []api.Message {
	return []api.Message{
		(*TraceProfileAdd)(nil),
		(*TraceProfileAddReply)(nil),
		(*TraceProfileDel)(nil),
		(*TraceProfileDelReply)(nil),
		(*TraceProfileShowConfig)(nil),
		(*TraceProfileShowConfigReply)(nil),
	}
}