Improve binapi generator
[govpp.git] / codec / codec.go
1 //  Copyright (c) 2020 Cisco and/or its affiliates.
2 //
3 //  Licensed under the Apache License, Version 2.0 (the "License");
4 //  you may not use this file except in compliance with the License.
5 //  You may obtain a copy of the License at:
6 //
7 //      http://www.apache.org/licenses/LICENSE-2.0
8 //
9 //  Unless required by applicable law or agreed to in writing, software
10 //  distributed under the License is distributed on an "AS IS" BASIS,
11 //  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 //  See the License for the specific language governing permissions and
13 //  limitations under the License.
14
15 package codec
16
17 import (
18         "bytes"
19         "encoding/binary"
20         "math"
21         "reflect"
22         "unsafe"
23 )
24
25 // Buffer provides buffer for encoding and decoding data on wire.
26 type Buffer struct {
27         buf []byte
28         pos int
29 }
30
31 func NewBuffer(b []byte) *Buffer {
32         return &Buffer{
33                 buf: b,
34         }
35 }
36
37 func (b *Buffer) Bytes() []byte {
38         return b.buf[:b.pos]
39 }
40
41 func (b *Buffer) EncodeBytes(v []byte, length int) {
42         if length == 0 {
43                 length = len(v)
44         }
45         copy(b.buf[b.pos:b.pos+length], v)
46         b.pos += length
47 }
48
49 func (b *Buffer) DecodeBytes(length int) []byte {
50         v := b.buf[b.pos : b.pos+length]
51         b.pos += length
52         return v
53 }
54
55 func (b *Buffer) EncodeBool(v bool) {
56         if v {
57                 b.buf[b.pos] = 1
58         } else {
59                 b.buf[b.pos] = 0
60         }
61         b.pos += 1
62 }
63
64 func (b *Buffer) DecodeBool() bool {
65         v := b.buf[b.pos] != 0
66         b.pos += 1
67         return v
68 }
69
70 func (b *Buffer) EncodeUint8(v uint8) {
71         b.buf[b.pos] = v
72         b.pos += 1
73 }
74
75 func (b *Buffer) DecodeUint8() uint8 {
76         v := b.buf[b.pos]
77         b.pos += 1
78         return v
79 }
80
81 func (b *Buffer) EncodeUint16(v uint16) {
82         binary.BigEndian.PutUint16(b.buf[b.pos:b.pos+2], v)
83         b.pos += 2
84 }
85
86 func (b *Buffer) DecodeUint16() uint16 {
87         v := binary.BigEndian.Uint16(b.buf[b.pos : b.pos+2])
88         b.pos += 2
89         return v
90 }
91
92 func (b *Buffer) EncodeUint32(v uint32) {
93         binary.BigEndian.PutUint32(b.buf[b.pos:b.pos+4], v)
94         b.pos += 4
95 }
96
97 func (b *Buffer) DecodeUint32() uint32 {
98         v := binary.BigEndian.Uint32(b.buf[b.pos : b.pos+4])
99         b.pos += 4
100         return v
101 }
102
103 func (b *Buffer) EncodeUint64(v uint64) {
104         binary.BigEndian.PutUint64(b.buf[b.pos:b.pos+8], v)
105         b.pos += 8
106 }
107
108 func (b *Buffer) DecodeUint64() uint64 {
109         v := binary.BigEndian.Uint64(b.buf[b.pos : b.pos+8])
110         b.pos += 8
111         return v
112 }
113
114 func (b *Buffer) EncodeFloat64(v float64) {
115         binary.BigEndian.PutUint64(b.buf[b.pos:b.pos+8], math.Float64bits(v))
116         b.pos += 8
117 }
118
119 func (b *Buffer) DecodeFloat64() float64 {
120         v := math.Float64frombits(binary.BigEndian.Uint64(b.buf[b.pos : b.pos+8]))
121         b.pos += 8
122         return v
123 }
124
125 func (b *Buffer) EncodeString(v string, length int) {
126         if length == 0 {
127                 b.EncodeUint32(uint32(len(v)))
128                 length = len(v)
129         }
130         copy(b.buf[b.pos:b.pos+length], v)
131         b.pos += length
132 }
133
134 func (b *Buffer) DecodeString(length int) string {
135         var v []byte
136         if length == 0 {
137                 length = int(b.DecodeUint32())
138                 v = b.buf[b.pos : b.pos+length]
139         } else {
140                 v = b.buf[b.pos : b.pos+length]
141                 if nul := bytes.Index(v, []byte{0x00}); nul >= 0 {
142                         v = v[:nul]
143                 }
144         }
145         b.pos += length
146         return string(v)
147 }
148
149 func BytesToString(b []byte) string {
150         sliceHeader := (*reflect.SliceHeader)(unsafe.Pointer(&b))
151         stringHeader := reflect.StringHeader{Data: sliceHeader.Data, Len: sliceHeader.Len}
152         return *(*string)(unsafe.Pointer(&stringHeader))
153 }
154
155 func DecodeString(b []byte) string {
156         return string(b)
157 }
158
159 func DecodeStringZero(b []byte) string {
160         nul := bytes.Index(b, []byte{0x00})
161         if nul >= 0 {
162                 b = b[:nul]
163         }
164         return string(b)
165 }