-
Notifications
You must be signed in to change notification settings - Fork 3
/
text_parse_node.go
274 lines (245 loc) · 6.78 KB
/
text_parse_node.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
// Package textserialization is the default Kiota serialization implementation for text.
package textserialization
import (
"encoding/base64"
"errors"
"strconv"
"strings"
"time"
"github.com/google/uuid"
absser "github.com/microsoft/kiota-abstractions-go/serialization"
)
// TextParseNode is a ParseNode implementation for JSON.
type TextParseNode struct {
value string
onBeforeAssignFieldValues absser.ParsableAction
onAfterAssignFieldValues absser.ParsableAction
}
// NewTextParseNode creates a new TextParseNode.
func NewTextParseNode(content []byte) (*TextParseNode, error) {
if len(content) == 0 {
return nil, errors.New("content is empty")
}
value, err := loadTextTree(content)
return value, err
}
func loadTextTree(content []byte) (*TextParseNode, error) {
return &TextParseNode{
value: string(content),
}, nil
}
// GetChildNode returns a new parse node for the given identifier.
func (n *TextParseNode) GetChildNode(index string) (absser.ParseNode, error) {
return nil, NoStructuredDataError
}
// GetObjectValue returns the Parsable value from the node.
func (n *TextParseNode) GetObjectValue(ctor absser.ParsableFactory) (absser.Parsable, error) {
return nil, NoStructuredDataError
}
// GetCollectionOfObjectValues returns the collection of Parsable values from the node.
func (n *TextParseNode) GetCollectionOfObjectValues(ctor absser.ParsableFactory) ([]absser.Parsable, error) {
return nil, NoStructuredDataError
}
// GetCollectionOfPrimitiveValues returns the collection of primitive values from the node.
func (n *TextParseNode) GetCollectionOfPrimitiveValues(targetType string) ([]interface{}, error) {
return nil, NoStructuredDataError
}
// GetCollectionOfEnumValues returns the collection of Enum values from the node.
func (n *TextParseNode) GetCollectionOfEnumValues(parser absser.EnumFactory) ([]interface{}, error) {
return nil, NoStructuredDataError
}
// GetStringValue returns a String value from the nodes.
func (n *TextParseNode) GetStringValue() (*string, error) {
if n == nil {
return nil, nil
}
val := strings.Trim(n.value, "\"")
return &val, nil
}
// GetBoolValue returns a Bool value from the nodes.
func (n *TextParseNode) GetBoolValue() (*bool, error) {
if n == nil {
return nil, nil
}
val, err := strconv.ParseBool(n.value)
if err != nil {
return nil, err
}
return &val, nil
}
// GetInt8Value returns a int8 value from the nodes.
func (n *TextParseNode) GetInt8Value() (*int8, error) {
if n == nil {
return nil, nil
}
val, err := strconv.ParseInt(n.value, 0, 8)
if err != nil {
return nil, err
}
cast := int8(val)
return &cast, nil
}
// GetBoolValue returns a Bool value from the nodes.
func (n *TextParseNode) GetByteValue() (*byte, error) {
if n == nil {
return nil, nil
}
val, err := strconv.ParseInt(n.value, 0, 8)
if err != nil {
return nil, err
}
cast := uint8(val)
return &cast, nil
}
// GetFloat32Value returns a Float32 value from the nodes.
func (n *TextParseNode) GetFloat32Value() (*float32, error) {
v, err := n.GetFloat64Value()
if err != nil {
return nil, err
}
if v == nil {
return nil, nil
}
cast := float32(*v)
return &cast, nil
}
// GetFloat64Value returns a Float64 value from the nodes.
func (n *TextParseNode) GetFloat64Value() (*float64, error) {
if n == nil {
return nil, nil
}
val, err := strconv.ParseFloat(n.value, 0)
if err != nil {
return nil, err
}
cast := float64(val)
return &cast, nil
}
// GetInt32Value returns a Int32 value from the nodes.
func (n *TextParseNode) GetInt32Value() (*int32, error) {
v, err := n.GetFloat64Value()
if err != nil {
return nil, err
}
if v == nil {
return nil, nil
}
cast := int32(*v)
return &cast, nil
}
// GetInt64Value returns a Int64 value from the nodes.
func (n *TextParseNode) GetInt64Value() (*int64, error) {
v, err := n.GetFloat64Value()
if err != nil {
return nil, err
}
if v == nil {
return nil, nil
}
cast := int64(*v)
return &cast, nil
}
// GetTimeValue returns a Time value from the nodes.
func (n *TextParseNode) GetTimeValue() (*time.Time, error) {
v, err := n.GetStringValue()
if err != nil {
return nil, err
}
if v == nil {
return nil, nil
}
parsed, err := time.Parse(time.RFC3339, *v)
return &parsed, err
}
// GetISODurationValue returns a ISODuration value from the nodes.
func (n *TextParseNode) GetISODurationValue() (*absser.ISODuration, error) {
v, err := n.GetStringValue()
if err != nil {
return nil, err
}
if v == nil {
return nil, nil
}
return absser.ParseISODuration(*v)
}
// GetTimeOnlyValue returns a TimeOnly value from the nodes.
func (n *TextParseNode) GetTimeOnlyValue() (*absser.TimeOnly, error) {
v, err := n.GetStringValue()
if err != nil {
return nil, err
}
if v == nil {
return nil, nil
}
return absser.ParseTimeOnly(*v)
}
// GetDateOnlyValue returns a DateOnly value from the nodes.
func (n *TextParseNode) GetDateOnlyValue() (*absser.DateOnly, error) {
v, err := n.GetStringValue()
if err != nil {
return nil, err
}
if v == nil {
return nil, nil
}
return absser.ParseDateOnly(*v)
}
// GetUUIDValue returns a UUID value from the nodes.
func (n *TextParseNode) GetUUIDValue() (*uuid.UUID, error) {
v, err := n.GetStringValue()
if err != nil {
return nil, err
}
if v == nil {
return nil, nil
}
parsed, err := uuid.Parse(*v)
return &parsed, err
}
// GetEnumValue returns a Enum value from the nodes.
func (n *TextParseNode) GetEnumValue(parser absser.EnumFactory) (interface{}, error) {
if parser == nil {
return nil, errors.New("parser is nil")
}
s, err := n.GetStringValue()
if err != nil {
return nil, err
}
if s == nil {
return nil, nil
}
return parser(*s)
}
// GetByteArrayValue returns a ByteArray value from the nodes.
func (n *TextParseNode) GetByteArrayValue() ([]byte, error) {
s, err := n.GetStringValue()
if err != nil {
return nil, err
}
if s == nil {
return nil, nil
}
return base64.StdEncoding.DecodeString(*s)
}
// GetRawValue returns a ByteArray value from the nodes.
func (n *TextParseNode) GetRawValue() (interface{}, error) {
return n.value, nil
}
// GetOnBeforeAssignFieldValues returns a ByteArray value from the nodes.
func (n *TextParseNode) GetOnBeforeAssignFieldValues() absser.ParsableAction {
return n.onBeforeAssignFieldValues
}
// SetOnBeforeAssignFieldValues returns a ByteArray value from the nodes.
func (n *TextParseNode) SetOnBeforeAssignFieldValues(action absser.ParsableAction) error {
n.onBeforeAssignFieldValues = action
return nil
}
// GetOnAfterAssignFieldValues returns a ByteArray value from the nodes.
func (n *TextParseNode) GetOnAfterAssignFieldValues() absser.ParsableAction {
return n.onAfterAssignFieldValues
}
// SetOnAfterAssignFieldValues returns a ByteArray value from the nodes.
func (n *TextParseNode) SetOnAfterAssignFieldValues(action absser.ParsableAction) error {
n.onAfterAssignFieldValues = action
return nil
}