-
Notifications
You must be signed in to change notification settings - Fork 310
/
ttnpb.go
105 lines (94 loc) · 2.71 KB
/
ttnpb.go
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
// Copyright © 2019 The Things Network Foundation, The Things Industries B.V.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package ttnpb
import (
"encoding/json"
"math"
"strconv"
"github.com/gogo/protobuf/jsonpb"
"go.thethings.network/lorawan-stack/v3/pkg/util/byteutil"
)
func marshalBinaryEnum(v int32) []byte {
switch v := uint32(v); {
case v <= 255:
return []byte{byte(v)}
case v <= math.MaxUint16:
return byteutil.AppendUint16(make([]byte, 2), uint16(v), 2)
case v <= byteutil.MaxUint24:
return byteutil.AppendUint32(make([]byte, 3), v, 3)
default:
return byteutil.AppendUint32(make([]byte, 4), v, 4)
}
}
func marshalJSONEnum(names map[int32]string, v int32) ([]byte, error) {
s, ok := names[v]
if ok {
return json.Marshal(s)
}
return json.Marshal(v)
}
func marshalJSONPBEnum(m *jsonpb.Marshaler, names map[int32]string, v int32) ([]byte, error) {
if m.EnumsAsInts {
return json.Marshal(strconv.Itoa(int(v)))
}
return json.Marshal(names[v])
}
func unmarshalJSONString(b []byte) ([]byte, bool) {
if len(b) >= 2 && b[0] == '"' && b[len(b)-1] == '"' {
return b[1 : len(b)-1], true
}
return b, false
}
func unmarshalEnumFromBinary(typName string, names map[int32]string, b []byte) (int32, error) {
if len(b) > 4 {
return 0, errCouldNotParse(typName)(string(b))
}
i := int32(byteutil.ParseUint32(b))
if _, ok := names[i]; !ok {
return 0, errCouldNotParse(typName)(string(b))
}
return i, nil
}
func unmarshalEnumFromNumber(typName string, names map[int32]string, b []byte) (int32, error) {
s := string(b)
i64, err := strconv.ParseInt(s, 10, 32)
if err != nil {
return 0, errCouldNotParse(typName)(s).WithCause(err)
}
i := int32(i64)
if _, ok := names[i]; !ok {
return 0, errCouldNotParse(typName)(s)
}
return i, nil
}
func unmarshalEnumFromText(typName string, values map[string]int32, b []byte) (int32, error) {
s := string(b)
i, ok := values[s]
if !ok {
return 0, errCouldNotParse(typName)(s)
}
return i, nil
}
func unmarshalEnumFromTextPrefix(typName string, values map[string]int32, prefix string, b []byte) (int32, error) {
s := string(b)
i, ok := values[s]
if ok {
return i, nil
}
i, ok = values[prefix+s]
if ok {
return i, nil
}
return 0, errCouldNotParse(typName)(s)
}