binapigen: fix union size
[govpp.git] / binapi / oddbuf / oddbuf.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/oddbuf.api.json
6
7 // Package oddbuf contains generated bindings for API file oddbuf.api.
8 //
9 // Contents:
10 //   2 messages
11 //
12 package oddbuf
13
14 import (
15         api "git.fd.io/govpp.git/api"
16         interface_types "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    = "oddbuf"
28         APIVersion = "0.1.0"
29         VersionCrc = 0x95757869
30 )
31
32 // OddbufEnableDisable defines message 'oddbuf_enable_disable'.
33 type OddbufEnableDisable struct {
34         EnableDisable bool                           `binapi:"bool,name=enable_disable" json:"enable_disable,omitempty"`
35         SwIfIndex     interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
36 }
37
38 func (m *OddbufEnableDisable) Reset()               { *m = OddbufEnableDisable{} }
39 func (*OddbufEnableDisable) GetMessageName() string { return "oddbuf_enable_disable" }
40 func (*OddbufEnableDisable) GetCrcString() string   { return "3865946c" }
41 func (*OddbufEnableDisable) GetMessageType() api.MessageType {
42         return api.RequestMessage
43 }
44
45 func (m *OddbufEnableDisable) Size() (size int) {
46         if m == nil {
47                 return 0
48         }
49         size += 1 // m.EnableDisable
50         size += 4 // m.SwIfIndex
51         return size
52 }
53 func (m *OddbufEnableDisable) Marshal(b []byte) ([]byte, error) {
54         if b == nil {
55                 b = make([]byte, m.Size())
56         }
57         buf := codec.NewBuffer(b)
58         buf.EncodeBool(m.EnableDisable)
59         buf.EncodeUint32(uint32(m.SwIfIndex))
60         return buf.Bytes(), nil
61 }
62 func (m *OddbufEnableDisable) Unmarshal(b []byte) error {
63         buf := codec.NewBuffer(b)
64         m.EnableDisable = buf.DecodeBool()
65         m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
66         return nil
67 }
68
69 // OddbufEnableDisableReply defines message 'oddbuf_enable_disable_reply'.
70 type OddbufEnableDisableReply struct {
71         Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
72 }
73
74 func (m *OddbufEnableDisableReply) Reset()               { *m = OddbufEnableDisableReply{} }
75 func (*OddbufEnableDisableReply) GetMessageName() string { return "oddbuf_enable_disable_reply" }
76 func (*OddbufEnableDisableReply) GetCrcString() string   { return "e8d4e804" }
77 func (*OddbufEnableDisableReply) GetMessageType() api.MessageType {
78         return api.ReplyMessage
79 }
80
81 func (m *OddbufEnableDisableReply) Size() (size int) {
82         if m == nil {
83                 return 0
84         }
85         size += 4 // m.Retval
86         return size
87 }
88 func (m *OddbufEnableDisableReply) Marshal(b []byte) ([]byte, error) {
89         if b == nil {
90                 b = make([]byte, m.Size())
91         }
92         buf := codec.NewBuffer(b)
93         buf.EncodeInt32(m.Retval)
94         return buf.Bytes(), nil
95 }
96 func (m *OddbufEnableDisableReply) Unmarshal(b []byte) error {
97         buf := codec.NewBuffer(b)
98         m.Retval = buf.DecodeInt32()
99         return nil
100 }
101
102 func init() { file_oddbuf_binapi_init() }
103 func file_oddbuf_binapi_init() {
104         api.RegisterMessage((*OddbufEnableDisable)(nil), "oddbuf_enable_disable_3865946c")
105         api.RegisterMessage((*OddbufEnableDisableReply)(nil), "oddbuf_enable_disable_reply_e8d4e804")
106 }
107
108 // Messages returns list of all messages in this module.
109 func AllMessages() []api.Message {
110         return []api.Message{
111                 (*OddbufEnableDisable)(nil),
112                 (*OddbufEnableDisableReply)(nil),
113         }
114 }