-
Notifications
You must be signed in to change notification settings - Fork 1
/
raw_message.go
163 lines (148 loc) · 3.33 KB
/
raw_message.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package traversal
import (
"encoding/json"
"github.com/pkg/errors"
)
// GetStringFromRawMessage returns a string from a JSON string
//
// given:
//
// \"value\" (with quotes)
//
// expecting:
//
// value
//
func GetStringFromRawMessage(r json.RawMessage) (string, error) {
b, err := r.MarshalJSON()
if err != nil {
return "", errors.Wrapf(err, "MarshalJSON(%s) failed: %s", r, err)
}
var s string
if err = json.Unmarshal(b, &s); err != nil {
return "", errors.Wrapf(err, "json.Unmarshal(%s failed: %s", b, err)
}
return s, nil
}
// GetBoolFromRawMessage returns a boolean from a JSON string
//
// given:
//
// true (string)
//
// expecting:
//
// true (boolean)
//
func GetBoolFromRawMessage(r json.RawMessage) (bool, error) {
b, err := r.MarshalJSON()
if err != nil {
return false, errors.Wrapf(err, "MarshalJSON(%s) failed: %s", r, err)
}
var i bool
if err = json.Unmarshal(b, &i); err != nil {
return false, errors.Wrapf(err, "json.Unmarshal(%s failed: %s", b, err)
}
return i, nil
}
// GetInt32FromRawMessage returns a number from a JSON string
//
// given:
//
// 42 (string)
//
// expecting:
//
// 42 (int32)
//
func GetInt32FromRawMessage(r json.RawMessage) (int32, error) {
b, err := r.MarshalJSON()
if err != nil {
return -1, errors.Wrapf(err, "MarshalJSON(%s) failed: %s", r, err)
}
var i int32
if err = json.Unmarshal(b, &i); err != nil {
return -1, errors.Wrapf(err, "json.Unmarshal(%s failed: %s", b, err)
}
return i, nil
}
// GetSliceFromRawMessage returns a slice of json.RawMessage from a JSON RawMessage
//
// given:
//
// [
// "a": "a1",
// "b": "b1"
// ]
//
// expecting:
//
// []json.RawMessage{
// json.RawMessage{"a": "a1"},
// json.RawMessage{"b": "b1"}
// }
//
func GetSliceFromRawMessage(r json.RawMessage) ([]json.RawMessage, error) {
b, err := r.MarshalJSON()
if err != nil {
return nil, errors.Wrapf(err, "MarshalJSON(%s) failed: %s", r, err)
}
var m []json.RawMessage
if err = json.Unmarshal(b, &m); err != nil {
return nil, errors.Wrapf(err, "json.Unmarshal(%s) failed: %s", b, err)
}
return m, nil
}
// GetMapFromRawMessage returns a map[string]json.RawMessage from a JSON RawMessage
//
// given:
//
// {
// "a": "a1",
// "b": "b1"
// }
//
// expecting:
//
// map[string]json.RawMessage{
// "a": json.RawMessage{"a1"},
// "b": json.RawMessage{"b1"}
// }
//
func GetMapFromRawMessage(r json.RawMessage) (map[string]json.RawMessage, error) {
b, err := r.MarshalJSON()
if err != nil {
return nil, errors.Wrapf(err, "MarshalJSON(%s) failed: %s", r, err)
}
var m map[string]json.RawMessage
if err = json.Unmarshal(b, &m); err != nil {
return nil, errors.Wrapf(err, "json.Unmarshal(%s failed: %s", b, err)
}
return m, nil
}
// GetMsgFromRawMessage returns the json.RawMessage at next step of indention in a JSON structure
// given:
//
// {
// "a": "a1",
// "b": "b1"
// }
//
// expecting:
//
// []json.RawMessage{
// json.RawMessage{"a": "a1"},
// json.RawMessage{"b": "b1"}
// }
//
func GetMsgFromRawMessage(r json.RawMessage) (json.RawMessage, error) {
b, err := r.MarshalJSON()
if err != nil {
return nil, errors.Wrapf(err, "MarshalJSON(%s) failed: %s", r, err)
}
var m json.RawMessage
if err = json.Unmarshal(b, &m); err != nil {
return nil, errors.Wrapf(err, "json.Unmarshal(%s) failed %s", b, err)
}
return m, nil
}