binapigen: fix union size
[govpp.git] / binapi / mdata / mdata.ba.go
1 // Code generated by GoVPP's binapi-generator. DO NOT EDIT.
2 // versions:
3 //  binapi-generator: v0.4.0-dev
4 //  VPP:              20.05-release
5 // source: /usr/share/vpp/api/plugins/mdata.api.json
6
7 // Package mdata contains generated bindings for API file mdata.api.
8 //
9 // Contents:
10 //   2 messages
11 //
12 package mdata
13
14 import (
15         api "git.fd.io/govpp.git/api"
16         _ "git.fd.io/govpp.git/binapi/interface_types"
17         codec "git.fd.io/govpp.git/codec"
18 )
19
20 // This is a compile-time assertion to ensure that this generated file
21 // is compatible with the GoVPP api package it is being compiled against.
22 // A compilation error at this line likely means your copy of the
23 // GoVPP api package needs to be updated.
24 const _ = api.GoVppAPIPackageIsVersion2
25
26 const (
27         APIFile    = "mdata"
28         APIVersion = "0.1.0"
29         VersionCrc = 0x3a1911dd
30 )
31
32 // MdataEnableDisable defines message 'mdata_enable_disable'.
33 type MdataEnableDisable struct {
34         EnableDisable bool `binapi:"bool,name=enable_disable" json:"enable_disable,omitempty"`
35 }
36
37 func (m *MdataEnableDisable) Reset()               { *m = MdataEnableDisable{} }
38 func (*MdataEnableDisable) GetMessageName() string { return "mdata_enable_disable" }
39 func (*MdataEnableDisable) GetCrcString() string   { return "2e7b47df" }
40 func (*MdataEnableDisable) GetMessageType() api.MessageType {
41         return api.RequestMessage
42 }
43
44 func (m *MdataEnableDisable) Size() (size int) {
45         if m == nil {
46                 return 0
47         }
48         size += 1 // m.EnableDisable
49         return size
50 }
51 func (m *MdataEnableDisable) Marshal(b []byte) ([]byte, error) {
52         if b == nil {
53                 b = make([]byte, m.Size())
54         }
55         buf := codec.NewBuffer(b)
56         buf.EncodeBool(m.EnableDisable)
57         return buf.Bytes(), nil
58 }
59 func (m *MdataEnableDisable) Unmarshal(b []byte) error {
60         buf := codec.NewBuffer(b)
61         m.EnableDisable = buf.DecodeBool()
62         return nil
63 }
64
65 // MdataEnableDisableReply defines message 'mdata_enable_disable_reply'.
66 type MdataEnableDisableReply struct {
67         Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
68 }
69
70 func (m *MdataEnableDisableReply) Reset()               { *m = MdataEnableDisableReply{} }
71 func (*MdataEnableDisableReply) GetMessageName() string { return "mdata_enable_disable_reply" }
72 func (*MdataEnableDisableReply) GetCrcString() string   { return "e8d4e804" }
73 func (*MdataEnableDisableReply) GetMessageType() api.MessageType {
74         return api.ReplyMessage
75 }
76
77 func (m *MdataEnableDisableReply) Size() (size int) {
78         if m == nil {
79                 return 0
80         }
81         size += 4 // m.Retval
82         return size
83 }
84 func (m *MdataEnableDisableReply) Marshal(b []byte) ([]byte, error) {
85         if b == nil {
86                 b = make([]byte, m.Size())
87         }
88         buf := codec.NewBuffer(b)
89         buf.EncodeInt32(m.Retval)
90         return buf.Bytes(), nil
91 }
92 func (m *MdataEnableDisableReply) Unmarshal(b []byte) error {
93         buf := codec.NewBuffer(b)
94         m.Retval = buf.DecodeInt32()
95         return nil
96 }
97
98 func init() { file_mdata_binapi_init() }
99 func file_mdata_binapi_init() {
100         api.RegisterMessage((*MdataEnableDisable)(nil), "mdata_enable_disable_2e7b47df")
101         api.RegisterMessage((*MdataEnableDisableReply)(nil), "mdata_enable_disable_reply_e8d4e804")
102 }
103
104 // Messages returns list of all messages in this module.
105 func AllMessages() []api.Message {
106         return []api.Message{
107                 (*MdataEnableDisable)(nil),
108                 (*MdataEnableDisableReply)(nil),
109         }
110 }