-
Notifications
You must be signed in to change notification settings - Fork 402
/
BrowseResponse.go
397 lines (349 loc) · 13.9 KB
/
BrowseResponse.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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* https://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 model
import (
"context"
"fmt"
"github.com/apache/plc4x/plc4go/spi/utils"
"github.com/pkg/errors"
"github.com/rs/zerolog"
)
// Code generated by code-generation. DO NOT EDIT.
// BrowseResponse is the corresponding interface of BrowseResponse
type BrowseResponse interface {
fmt.Stringer
utils.LengthAware
utils.Serializable
ExtensionObjectDefinition
// GetResponseHeader returns ResponseHeader (property field)
GetResponseHeader() ExtensionObjectDefinition
// GetNoOfResults returns NoOfResults (property field)
GetNoOfResults() int32
// GetResults returns Results (property field)
GetResults() []ExtensionObjectDefinition
// GetNoOfDiagnosticInfos returns NoOfDiagnosticInfos (property field)
GetNoOfDiagnosticInfos() int32
// GetDiagnosticInfos returns DiagnosticInfos (property field)
GetDiagnosticInfos() []DiagnosticInfo
}
// BrowseResponseExactly can be used when we want exactly this type and not a type which fulfills BrowseResponse.
// This is useful for switch cases.
type BrowseResponseExactly interface {
BrowseResponse
isBrowseResponse() bool
}
// _BrowseResponse is the data-structure of this message
type _BrowseResponse struct {
*_ExtensionObjectDefinition
ResponseHeader ExtensionObjectDefinition
NoOfResults int32
Results []ExtensionObjectDefinition
NoOfDiagnosticInfos int32
DiagnosticInfos []DiagnosticInfo
}
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
/////////////////////// Accessors for discriminator values.
///////////////////////
func (m *_BrowseResponse) GetIdentifier() string {
return "530"
}
///////////////////////
///////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
func (m *_BrowseResponse) InitializeParent(parent ExtensionObjectDefinition) {}
func (m *_BrowseResponse) GetParent() ExtensionObjectDefinition {
return m._ExtensionObjectDefinition
}
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
/////////////////////// Accessors for property fields.
///////////////////////
func (m *_BrowseResponse) GetResponseHeader() ExtensionObjectDefinition {
return m.ResponseHeader
}
func (m *_BrowseResponse) GetNoOfResults() int32 {
return m.NoOfResults
}
func (m *_BrowseResponse) GetResults() []ExtensionObjectDefinition {
return m.Results
}
func (m *_BrowseResponse) GetNoOfDiagnosticInfos() int32 {
return m.NoOfDiagnosticInfos
}
func (m *_BrowseResponse) GetDiagnosticInfos() []DiagnosticInfo {
return m.DiagnosticInfos
}
///////////////////////
///////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
// NewBrowseResponse factory function for _BrowseResponse
func NewBrowseResponse(responseHeader ExtensionObjectDefinition, noOfResults int32, results []ExtensionObjectDefinition, noOfDiagnosticInfos int32, diagnosticInfos []DiagnosticInfo) *_BrowseResponse {
_result := &_BrowseResponse{
ResponseHeader: responseHeader,
NoOfResults: noOfResults,
Results: results,
NoOfDiagnosticInfos: noOfDiagnosticInfos,
DiagnosticInfos: diagnosticInfos,
_ExtensionObjectDefinition: NewExtensionObjectDefinition(),
}
_result._ExtensionObjectDefinition._ExtensionObjectDefinitionChildRequirements = _result
return _result
}
// Deprecated: use the interface for direct cast
func CastBrowseResponse(structType any) BrowseResponse {
if casted, ok := structType.(BrowseResponse); ok {
return casted
}
if casted, ok := structType.(*BrowseResponse); ok {
return *casted
}
return nil
}
func (m *_BrowseResponse) GetTypeName() string {
return "BrowseResponse"
}
func (m *_BrowseResponse) GetLengthInBits(ctx context.Context) uint16 {
lengthInBits := uint16(m.GetParentLengthInBits(ctx))
// Simple field (responseHeader)
lengthInBits += m.ResponseHeader.GetLengthInBits(ctx)
// Simple field (noOfResults)
lengthInBits += 32
// Array field
if len(m.Results) > 0 {
for _curItem, element := range m.Results {
arrayCtx := utils.CreateArrayContext(ctx, len(m.Results), _curItem)
_ = arrayCtx
_ = _curItem
lengthInBits += element.(interface{ GetLengthInBits(context.Context) uint16 }).GetLengthInBits(arrayCtx)
}
}
// Simple field (noOfDiagnosticInfos)
lengthInBits += 32
// Array field
if len(m.DiagnosticInfos) > 0 {
for _curItem, element := range m.DiagnosticInfos {
arrayCtx := utils.CreateArrayContext(ctx, len(m.DiagnosticInfos), _curItem)
_ = arrayCtx
_ = _curItem
lengthInBits += element.(interface{ GetLengthInBits(context.Context) uint16 }).GetLengthInBits(arrayCtx)
}
}
return lengthInBits
}
func (m *_BrowseResponse) GetLengthInBytes(ctx context.Context) uint16 {
return m.GetLengthInBits(ctx) / 8
}
func BrowseResponseParse(ctx context.Context, theBytes []byte, identifier string) (BrowseResponse, error) {
return BrowseResponseParseWithBuffer(ctx, utils.NewReadBufferByteBased(theBytes), identifier)
}
func BrowseResponseParseWithBuffer(ctx context.Context, readBuffer utils.ReadBuffer, identifier string) (BrowseResponse, error) {
positionAware := readBuffer
_ = positionAware
log := zerolog.Ctx(ctx)
_ = log
if pullErr := readBuffer.PullContext("BrowseResponse"); pullErr != nil {
return nil, errors.Wrap(pullErr, "Error pulling for BrowseResponse")
}
currentPos := positionAware.GetPos()
_ = currentPos
// Simple Field (responseHeader)
if pullErr := readBuffer.PullContext("responseHeader"); pullErr != nil {
return nil, errors.Wrap(pullErr, "Error pulling for responseHeader")
}
_responseHeader, _responseHeaderErr := ExtensionObjectDefinitionParseWithBuffer(ctx, readBuffer, string("394"))
if _responseHeaderErr != nil {
return nil, errors.Wrap(_responseHeaderErr, "Error parsing 'responseHeader' field of BrowseResponse")
}
responseHeader := _responseHeader.(ExtensionObjectDefinition)
if closeErr := readBuffer.CloseContext("responseHeader"); closeErr != nil {
return nil, errors.Wrap(closeErr, "Error closing for responseHeader")
}
// Simple Field (noOfResults)
_noOfResults, _noOfResultsErr := readBuffer.ReadInt32("noOfResults", 32)
if _noOfResultsErr != nil {
return nil, errors.Wrap(_noOfResultsErr, "Error parsing 'noOfResults' field of BrowseResponse")
}
noOfResults := _noOfResults
// Array field (results)
if pullErr := readBuffer.PullContext("results", utils.WithRenderAsList(true)); pullErr != nil {
return nil, errors.Wrap(pullErr, "Error pulling for results")
}
// Count array
results := make([]ExtensionObjectDefinition, utils.Max(noOfResults, 0))
// This happens when the size is set conditional to 0
if len(results) == 0 {
results = nil
}
{
_numItems := uint16(utils.Max(noOfResults, 0))
for _curItem := uint16(0); _curItem < _numItems; _curItem++ {
arrayCtx := utils.CreateArrayContext(ctx, int(_numItems), int(_curItem))
_ = arrayCtx
_ = _curItem
_item, _err := ExtensionObjectDefinitionParseWithBuffer(arrayCtx, readBuffer, "524")
if _err != nil {
return nil, errors.Wrap(_err, "Error parsing 'results' field of BrowseResponse")
}
results[_curItem] = _item.(ExtensionObjectDefinition)
}
}
if closeErr := readBuffer.CloseContext("results", utils.WithRenderAsList(true)); closeErr != nil {
return nil, errors.Wrap(closeErr, "Error closing for results")
}
// Simple Field (noOfDiagnosticInfos)
_noOfDiagnosticInfos, _noOfDiagnosticInfosErr := readBuffer.ReadInt32("noOfDiagnosticInfos", 32)
if _noOfDiagnosticInfosErr != nil {
return nil, errors.Wrap(_noOfDiagnosticInfosErr, "Error parsing 'noOfDiagnosticInfos' field of BrowseResponse")
}
noOfDiagnosticInfos := _noOfDiagnosticInfos
// Array field (diagnosticInfos)
if pullErr := readBuffer.PullContext("diagnosticInfos", utils.WithRenderAsList(true)); pullErr != nil {
return nil, errors.Wrap(pullErr, "Error pulling for diagnosticInfos")
}
// Count array
diagnosticInfos := make([]DiagnosticInfo, utils.Max(noOfDiagnosticInfos, 0))
// This happens when the size is set conditional to 0
if len(diagnosticInfos) == 0 {
diagnosticInfos = nil
}
{
_numItems := uint16(utils.Max(noOfDiagnosticInfos, 0))
for _curItem := uint16(0); _curItem < _numItems; _curItem++ {
arrayCtx := utils.CreateArrayContext(ctx, int(_numItems), int(_curItem))
_ = arrayCtx
_ = _curItem
_item, _err := DiagnosticInfoParseWithBuffer(arrayCtx, readBuffer)
if _err != nil {
return nil, errors.Wrap(_err, "Error parsing 'diagnosticInfos' field of BrowseResponse")
}
diagnosticInfos[_curItem] = _item.(DiagnosticInfo)
}
}
if closeErr := readBuffer.CloseContext("diagnosticInfos", utils.WithRenderAsList(true)); closeErr != nil {
return nil, errors.Wrap(closeErr, "Error closing for diagnosticInfos")
}
if closeErr := readBuffer.CloseContext("BrowseResponse"); closeErr != nil {
return nil, errors.Wrap(closeErr, "Error closing for BrowseResponse")
}
// Create a partially initialized instance
_child := &_BrowseResponse{
_ExtensionObjectDefinition: &_ExtensionObjectDefinition{},
ResponseHeader: responseHeader,
NoOfResults: noOfResults,
Results: results,
NoOfDiagnosticInfos: noOfDiagnosticInfos,
DiagnosticInfos: diagnosticInfos,
}
_child._ExtensionObjectDefinition._ExtensionObjectDefinitionChildRequirements = _child
return _child, nil
}
func (m *_BrowseResponse) Serialize() ([]byte, error) {
wb := utils.NewWriteBufferByteBased(utils.WithInitialSizeForByteBasedBuffer(int(m.GetLengthInBytes(context.Background()))))
if err := m.SerializeWithWriteBuffer(context.Background(), wb); err != nil {
return nil, err
}
return wb.GetBytes(), nil
}
func (m *_BrowseResponse) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error {
positionAware := writeBuffer
_ = positionAware
log := zerolog.Ctx(ctx)
_ = log
ser := func() error {
if pushErr := writeBuffer.PushContext("BrowseResponse"); pushErr != nil {
return errors.Wrap(pushErr, "Error pushing for BrowseResponse")
}
// Simple Field (responseHeader)
if pushErr := writeBuffer.PushContext("responseHeader"); pushErr != nil {
return errors.Wrap(pushErr, "Error pushing for responseHeader")
}
_responseHeaderErr := writeBuffer.WriteSerializable(ctx, m.GetResponseHeader())
if popErr := writeBuffer.PopContext("responseHeader"); popErr != nil {
return errors.Wrap(popErr, "Error popping for responseHeader")
}
if _responseHeaderErr != nil {
return errors.Wrap(_responseHeaderErr, "Error serializing 'responseHeader' field")
}
// Simple Field (noOfResults)
noOfResults := int32(m.GetNoOfResults())
_noOfResultsErr := writeBuffer.WriteInt32("noOfResults", 32, int32((noOfResults)))
if _noOfResultsErr != nil {
return errors.Wrap(_noOfResultsErr, "Error serializing 'noOfResults' field")
}
// Array Field (results)
if pushErr := writeBuffer.PushContext("results", utils.WithRenderAsList(true)); pushErr != nil {
return errors.Wrap(pushErr, "Error pushing for results")
}
for _curItem, _element := range m.GetResults() {
_ = _curItem
arrayCtx := utils.CreateArrayContext(ctx, len(m.GetResults()), _curItem)
_ = arrayCtx
_elementErr := writeBuffer.WriteSerializable(arrayCtx, _element)
if _elementErr != nil {
return errors.Wrap(_elementErr, "Error serializing 'results' field")
}
}
if popErr := writeBuffer.PopContext("results", utils.WithRenderAsList(true)); popErr != nil {
return errors.Wrap(popErr, "Error popping for results")
}
// Simple Field (noOfDiagnosticInfos)
noOfDiagnosticInfos := int32(m.GetNoOfDiagnosticInfos())
_noOfDiagnosticInfosErr := writeBuffer.WriteInt32("noOfDiagnosticInfos", 32, int32((noOfDiagnosticInfos)))
if _noOfDiagnosticInfosErr != nil {
return errors.Wrap(_noOfDiagnosticInfosErr, "Error serializing 'noOfDiagnosticInfos' field")
}
// Array Field (diagnosticInfos)
if pushErr := writeBuffer.PushContext("diagnosticInfos", utils.WithRenderAsList(true)); pushErr != nil {
return errors.Wrap(pushErr, "Error pushing for diagnosticInfos")
}
for _curItem, _element := range m.GetDiagnosticInfos() {
_ = _curItem
arrayCtx := utils.CreateArrayContext(ctx, len(m.GetDiagnosticInfos()), _curItem)
_ = arrayCtx
_elementErr := writeBuffer.WriteSerializable(arrayCtx, _element)
if _elementErr != nil {
return errors.Wrap(_elementErr, "Error serializing 'diagnosticInfos' field")
}
}
if popErr := writeBuffer.PopContext("diagnosticInfos", utils.WithRenderAsList(true)); popErr != nil {
return errors.Wrap(popErr, "Error popping for diagnosticInfos")
}
if popErr := writeBuffer.PopContext("BrowseResponse"); popErr != nil {
return errors.Wrap(popErr, "Error popping for BrowseResponse")
}
return nil
}
return m.SerializeParent(ctx, writeBuffer, m, ser)
}
func (m *_BrowseResponse) isBrowseResponse() bool {
return true
}
func (m *_BrowseResponse) String() string {
if m == nil {
return "<nil>"
}
writeBuffer := utils.NewWriteBufferBoxBasedWithOptions(true, true)
if err := writeBuffer.WriteSerializable(context.Background(), m); err != nil {
return err.Error()
}
return writeBuffer.GetBox().String()
}