-
Notifications
You must be signed in to change notification settings - Fork 402
/
CloseSessionRequest.go
284 lines (245 loc) · 9.6 KB
/
CloseSessionRequest.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
/*
* 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.
// CloseSessionRequest is the corresponding interface of CloseSessionRequest
type CloseSessionRequest interface {
fmt.Stringer
utils.LengthAware
utils.Serializable
ExtensionObjectDefinition
// GetRequestHeader returns RequestHeader (property field)
GetRequestHeader() ExtensionObjectDefinition
// GetDeleteSubscriptions returns DeleteSubscriptions (property field)
GetDeleteSubscriptions() bool
}
// CloseSessionRequestExactly can be used when we want exactly this type and not a type which fulfills CloseSessionRequest.
// This is useful for switch cases.
type CloseSessionRequestExactly interface {
CloseSessionRequest
isCloseSessionRequest() bool
}
// _CloseSessionRequest is the data-structure of this message
type _CloseSessionRequest struct {
*_ExtensionObjectDefinition
RequestHeader ExtensionObjectDefinition
DeleteSubscriptions bool
// Reserved Fields
reservedField0 *uint8
}
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
/////////////////////// Accessors for discriminator values.
///////////////////////
func (m *_CloseSessionRequest) GetIdentifier() string {
return "473"
}
///////////////////////
///////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
func (m *_CloseSessionRequest) InitializeParent(parent ExtensionObjectDefinition) {}
func (m *_CloseSessionRequest) GetParent() ExtensionObjectDefinition {
return m._ExtensionObjectDefinition
}
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
/////////////////////// Accessors for property fields.
///////////////////////
func (m *_CloseSessionRequest) GetRequestHeader() ExtensionObjectDefinition {
return m.RequestHeader
}
func (m *_CloseSessionRequest) GetDeleteSubscriptions() bool {
return m.DeleteSubscriptions
}
///////////////////////
///////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
// NewCloseSessionRequest factory function for _CloseSessionRequest
func NewCloseSessionRequest(requestHeader ExtensionObjectDefinition, deleteSubscriptions bool) *_CloseSessionRequest {
_result := &_CloseSessionRequest{
RequestHeader: requestHeader,
DeleteSubscriptions: deleteSubscriptions,
_ExtensionObjectDefinition: NewExtensionObjectDefinition(),
}
_result._ExtensionObjectDefinition._ExtensionObjectDefinitionChildRequirements = _result
return _result
}
// Deprecated: use the interface for direct cast
func CastCloseSessionRequest(structType any) CloseSessionRequest {
if casted, ok := structType.(CloseSessionRequest); ok {
return casted
}
if casted, ok := structType.(*CloseSessionRequest); ok {
return *casted
}
return nil
}
func (m *_CloseSessionRequest) GetTypeName() string {
return "CloseSessionRequest"
}
func (m *_CloseSessionRequest) GetLengthInBits(ctx context.Context) uint16 {
lengthInBits := uint16(m.GetParentLengthInBits(ctx))
// Simple field (requestHeader)
lengthInBits += m.RequestHeader.GetLengthInBits(ctx)
// Reserved Field (reserved)
lengthInBits += 7
// Simple field (deleteSubscriptions)
lengthInBits += 1
return lengthInBits
}
func (m *_CloseSessionRequest) GetLengthInBytes(ctx context.Context) uint16 {
return m.GetLengthInBits(ctx) / 8
}
func CloseSessionRequestParse(ctx context.Context, theBytes []byte, identifier string) (CloseSessionRequest, error) {
return CloseSessionRequestParseWithBuffer(ctx, utils.NewReadBufferByteBased(theBytes), identifier)
}
func CloseSessionRequestParseWithBuffer(ctx context.Context, readBuffer utils.ReadBuffer, identifier string) (CloseSessionRequest, error) {
positionAware := readBuffer
_ = positionAware
log := zerolog.Ctx(ctx)
_ = log
if pullErr := readBuffer.PullContext("CloseSessionRequest"); pullErr != nil {
return nil, errors.Wrap(pullErr, "Error pulling for CloseSessionRequest")
}
currentPos := positionAware.GetPos()
_ = currentPos
// Simple Field (requestHeader)
if pullErr := readBuffer.PullContext("requestHeader"); pullErr != nil {
return nil, errors.Wrap(pullErr, "Error pulling for requestHeader")
}
_requestHeader, _requestHeaderErr := ExtensionObjectDefinitionParseWithBuffer(ctx, readBuffer, string("391"))
if _requestHeaderErr != nil {
return nil, errors.Wrap(_requestHeaderErr, "Error parsing 'requestHeader' field of CloseSessionRequest")
}
requestHeader := _requestHeader.(ExtensionObjectDefinition)
if closeErr := readBuffer.CloseContext("requestHeader"); closeErr != nil {
return nil, errors.Wrap(closeErr, "Error closing for requestHeader")
}
var reservedField0 *uint8
// Reserved Field (Compartmentalized so the "reserved" variable can't leak)
{
reserved, _err := readBuffer.ReadUint8("reserved", 7)
if _err != nil {
return nil, errors.Wrap(_err, "Error parsing 'reserved' field of CloseSessionRequest")
}
if reserved != uint8(0x00) {
log.Info().Fields(map[string]any{
"expected value": uint8(0x00),
"got value": reserved,
}).Msg("Got unexpected response for reserved field.")
// We save the value, so it can be re-serialized
reservedField0 = &reserved
}
}
// Simple Field (deleteSubscriptions)
_deleteSubscriptions, _deleteSubscriptionsErr := readBuffer.ReadBit("deleteSubscriptions")
if _deleteSubscriptionsErr != nil {
return nil, errors.Wrap(_deleteSubscriptionsErr, "Error parsing 'deleteSubscriptions' field of CloseSessionRequest")
}
deleteSubscriptions := _deleteSubscriptions
if closeErr := readBuffer.CloseContext("CloseSessionRequest"); closeErr != nil {
return nil, errors.Wrap(closeErr, "Error closing for CloseSessionRequest")
}
// Create a partially initialized instance
_child := &_CloseSessionRequest{
_ExtensionObjectDefinition: &_ExtensionObjectDefinition{},
RequestHeader: requestHeader,
DeleteSubscriptions: deleteSubscriptions,
reservedField0: reservedField0,
}
_child._ExtensionObjectDefinition._ExtensionObjectDefinitionChildRequirements = _child
return _child, nil
}
func (m *_CloseSessionRequest) 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 *_CloseSessionRequest) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error {
positionAware := writeBuffer
_ = positionAware
log := zerolog.Ctx(ctx)
_ = log
ser := func() error {
if pushErr := writeBuffer.PushContext("CloseSessionRequest"); pushErr != nil {
return errors.Wrap(pushErr, "Error pushing for CloseSessionRequest")
}
// Simple Field (requestHeader)
if pushErr := writeBuffer.PushContext("requestHeader"); pushErr != nil {
return errors.Wrap(pushErr, "Error pushing for requestHeader")
}
_requestHeaderErr := writeBuffer.WriteSerializable(ctx, m.GetRequestHeader())
if popErr := writeBuffer.PopContext("requestHeader"); popErr != nil {
return errors.Wrap(popErr, "Error popping for requestHeader")
}
if _requestHeaderErr != nil {
return errors.Wrap(_requestHeaderErr, "Error serializing 'requestHeader' field")
}
// Reserved Field (reserved)
{
var reserved uint8 = uint8(0x00)
if m.reservedField0 != nil {
log.Info().Fields(map[string]any{
"expected value": uint8(0x00),
"got value": reserved,
}).Msg("Overriding reserved field with unexpected value.")
reserved = *m.reservedField0
}
_err := writeBuffer.WriteUint8("reserved", 7, uint8(reserved))
if _err != nil {
return errors.Wrap(_err, "Error serializing 'reserved' field")
}
}
// Simple Field (deleteSubscriptions)
deleteSubscriptions := bool(m.GetDeleteSubscriptions())
_deleteSubscriptionsErr := writeBuffer.WriteBit("deleteSubscriptions", (deleteSubscriptions))
if _deleteSubscriptionsErr != nil {
return errors.Wrap(_deleteSubscriptionsErr, "Error serializing 'deleteSubscriptions' field")
}
if popErr := writeBuffer.PopContext("CloseSessionRequest"); popErr != nil {
return errors.Wrap(popErr, "Error popping for CloseSessionRequest")
}
return nil
}
return m.SerializeParent(ctx, writeBuffer, m, ser)
}
func (m *_CloseSessionRequest) isCloseSessionRequest() bool {
return true
}
func (m *_CloseSessionRequest) 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()
}