aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/trace
diff options
context:
space:
mode:
Diffstat (limited to 'binapi/trace')
-rw-r--r--binapi/trace/trace.ba.go291
-rw-r--r--binapi/trace/trace_rest.ba.go65
-rw-r--r--binapi/trace/trace_rpc.ba.go50
3 files changed, 406 insertions, 0 deletions
diff --git a/binapi/trace/trace.ba.go b/binapi/trace/trace.ba.go
new file mode 100644
index 0000000..25db789
--- /dev/null
+++ b/binapi/trace/trace.ba.go
@@ -0,0 +1,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),
+ }
+}
diff --git a/binapi/trace/trace_rest.ba.go b/binapi/trace/trace_rest.ba.go
new file mode 100644
index 0000000..d7d2244
--- /dev/null
+++ b/binapi/trace/trace_rest.ba.go
@@ -0,0 +1,65 @@
+// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
+
+package trace
+
+import (
+ "encoding/json"
+ "io/ioutil"
+ "net/http"
+)
+
+func RESTHandler(rpc RPCService) http.Handler {
+ mux := http.NewServeMux()
+ mux.HandleFunc("/trace_profile_add", func(w http.ResponseWriter, req *http.Request) {
+ var request = new(TraceProfileAdd)
+ b, err := ioutil.ReadAll(req.Body)
+ if err != nil {
+ http.Error(w, "read body failed", http.StatusBadRequest)
+ return
+ }
+ if err := json.Unmarshal(b, request); err != nil {
+ http.Error(w, "unmarshal data failed", http.StatusBadRequest)
+ return
+ }
+ reply, err := rpc.TraceProfileAdd(req.Context(), request)
+ if err != nil {
+ http.Error(w, "request failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ rep, err := json.MarshalIndent(reply, "", " ")
+ if err != nil {
+ http.Error(w, "marshal failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ w.Write(rep)
+ })
+ mux.HandleFunc("/trace_profile_del", func(w http.ResponseWriter, req *http.Request) {
+ var request = new(TraceProfileDel)
+ reply, err := rpc.TraceProfileDel(req.Context(), request)
+ if err != nil {
+ http.Error(w, "request failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ rep, err := json.MarshalIndent(reply, "", " ")
+ if err != nil {
+ http.Error(w, "marshal failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ w.Write(rep)
+ })
+ mux.HandleFunc("/trace_profile_show_config", func(w http.ResponseWriter, req *http.Request) {
+ var request = new(TraceProfileShowConfig)
+ reply, err := rpc.TraceProfileShowConfig(req.Context(), request)
+ if err != nil {
+ http.Error(w, "request failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ rep, err := json.MarshalIndent(reply, "", " ")
+ if err != nil {
+ http.Error(w, "marshal failed: "+err.Error(), http.StatusInternalServerError)
+ return
+ }
+ w.Write(rep)
+ })
+ return http.HandlerFunc(mux.ServeHTTP)
+}
diff --git a/binapi/trace/trace_rpc.ba.go b/binapi/trace/trace_rpc.ba.go
new file mode 100644
index 0000000..f0f2ca7
--- /dev/null
+++ b/binapi/trace/trace_rpc.ba.go
@@ -0,0 +1,50 @@
+// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
+
+package trace
+
+import (
+ "context"
+ api "git.fd.io/govpp.git/api"
+)
+
+// RPCService defines RPC service trace.
+type RPCService interface {
+ TraceProfileAdd(ctx context.Context, in *TraceProfileAdd) (*TraceProfileAddReply, error)
+ TraceProfileDel(ctx context.Context, in *TraceProfileDel) (*TraceProfileDelReply, error)
+ TraceProfileShowConfig(ctx context.Context, in *TraceProfileShowConfig) (*TraceProfileShowConfigReply, error)
+}
+
+type serviceClient struct {
+ conn api.Connection
+}
+
+func NewServiceClient(conn api.Connection) RPCService {
+ return &serviceClient{conn}
+}
+
+func (c *serviceClient) TraceProfileAdd(ctx context.Context, in *TraceProfileAdd) (*TraceProfileAddReply, error) {
+ out := new(TraceProfileAddReply)
+ err := c.conn.Invoke(ctx, in, out)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *serviceClient) TraceProfileDel(ctx context.Context, in *TraceProfileDel) (*TraceProfileDelReply, error) {
+ out := new(TraceProfileDelReply)
+ err := c.conn.Invoke(ctx, in, out)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
+func (c *serviceClient) TraceProfileShowConfig(ctx context.Context, in *TraceProfileShowConfig) (*TraceProfileShowConfigReply, error) {
+ out := new(TraceProfileShowConfigReply)
+ err := c.conn.Invoke(ctx, in, out)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}