-
Notifications
You must be signed in to change notification settings - Fork 402
/
GuidValue.go
275 lines (234 loc) · 7.51 KB
/
GuidValue.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
/*
* 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.
// GuidValue is the corresponding interface of GuidValue
type GuidValue interface {
fmt.Stringer
utils.LengthAware
utils.Serializable
// GetData1 returns Data1 (property field)
GetData1() uint32
// GetData2 returns Data2 (property field)
GetData2() uint16
// GetData3 returns Data3 (property field)
GetData3() uint16
// GetData4 returns Data4 (property field)
GetData4() []byte
// GetData5 returns Data5 (property field)
GetData5() []byte
}
// GuidValueExactly can be used when we want exactly this type and not a type which fulfills GuidValue.
// This is useful for switch cases.
type GuidValueExactly interface {
GuidValue
isGuidValue() bool
}
// _GuidValue is the data-structure of this message
type _GuidValue struct {
Data1 uint32
Data2 uint16
Data3 uint16
Data4 []byte
Data5 []byte
}
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
/////////////////////// Accessors for property fields.
///////////////////////
func (m *_GuidValue) GetData1() uint32 {
return m.Data1
}
func (m *_GuidValue) GetData2() uint16 {
return m.Data2
}
func (m *_GuidValue) GetData3() uint16 {
return m.Data3
}
func (m *_GuidValue) GetData4() []byte {
return m.Data4
}
func (m *_GuidValue) GetData5() []byte {
return m.Data5
}
///////////////////////
///////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
// NewGuidValue factory function for _GuidValue
func NewGuidValue(data1 uint32, data2 uint16, data3 uint16, data4 []byte, data5 []byte) *_GuidValue {
return &_GuidValue{Data1: data1, Data2: data2, Data3: data3, Data4: data4, Data5: data5}
}
// Deprecated: use the interface for direct cast
func CastGuidValue(structType any) GuidValue {
if casted, ok := structType.(GuidValue); ok {
return casted
}
if casted, ok := structType.(*GuidValue); ok {
return *casted
}
return nil
}
func (m *_GuidValue) GetTypeName() string {
return "GuidValue"
}
func (m *_GuidValue) GetLengthInBits(ctx context.Context) uint16 {
lengthInBits := uint16(0)
// Simple field (data1)
lengthInBits += 32
// Simple field (data2)
lengthInBits += 16
// Simple field (data3)
lengthInBits += 16
// Array field
if len(m.Data4) > 0 {
lengthInBits += 8 * uint16(len(m.Data4))
}
// Array field
if len(m.Data5) > 0 {
lengthInBits += 8 * uint16(len(m.Data5))
}
return lengthInBits
}
func (m *_GuidValue) GetLengthInBytes(ctx context.Context) uint16 {
return m.GetLengthInBits(ctx) / 8
}
func GuidValueParse(ctx context.Context, theBytes []byte) (GuidValue, error) {
return GuidValueParseWithBuffer(ctx, utils.NewReadBufferByteBased(theBytes))
}
func GuidValueParseWithBuffer(ctx context.Context, readBuffer utils.ReadBuffer) (GuidValue, error) {
positionAware := readBuffer
_ = positionAware
log := zerolog.Ctx(ctx)
_ = log
if pullErr := readBuffer.PullContext("GuidValue"); pullErr != nil {
return nil, errors.Wrap(pullErr, "Error pulling for GuidValue")
}
currentPos := positionAware.GetPos()
_ = currentPos
// Simple Field (data1)
_data1, _data1Err := readBuffer.ReadUint32("data1", 32)
if _data1Err != nil {
return nil, errors.Wrap(_data1Err, "Error parsing 'data1' field of GuidValue")
}
data1 := _data1
// Simple Field (data2)
_data2, _data2Err := readBuffer.ReadUint16("data2", 16)
if _data2Err != nil {
return nil, errors.Wrap(_data2Err, "Error parsing 'data2' field of GuidValue")
}
data2 := _data2
// Simple Field (data3)
_data3, _data3Err := readBuffer.ReadUint16("data3", 16)
if _data3Err != nil {
return nil, errors.Wrap(_data3Err, "Error parsing 'data3' field of GuidValue")
}
data3 := _data3
// Byte Array field (data4)
numberOfBytesdata4 := int(uint16(2))
data4, _readArrayErr := readBuffer.ReadByteArray("data4", numberOfBytesdata4)
if _readArrayErr != nil {
return nil, errors.Wrap(_readArrayErr, "Error parsing 'data4' field of GuidValue")
}
// Byte Array field (data5)
numberOfBytesdata5 := int(uint16(6))
data5, _readArrayErr := readBuffer.ReadByteArray("data5", numberOfBytesdata5)
if _readArrayErr != nil {
return nil, errors.Wrap(_readArrayErr, "Error parsing 'data5' field of GuidValue")
}
if closeErr := readBuffer.CloseContext("GuidValue"); closeErr != nil {
return nil, errors.Wrap(closeErr, "Error closing for GuidValue")
}
// Create the instance
return &_GuidValue{
Data1: data1,
Data2: data2,
Data3: data3,
Data4: data4,
Data5: data5,
}, nil
}
func (m *_GuidValue) 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 *_GuidValue) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error {
positionAware := writeBuffer
_ = positionAware
log := zerolog.Ctx(ctx)
_ = log
if pushErr := writeBuffer.PushContext("GuidValue"); pushErr != nil {
return errors.Wrap(pushErr, "Error pushing for GuidValue")
}
// Simple Field (data1)
data1 := uint32(m.GetData1())
_data1Err := writeBuffer.WriteUint32("data1", 32, uint32((data1)))
if _data1Err != nil {
return errors.Wrap(_data1Err, "Error serializing 'data1' field")
}
// Simple Field (data2)
data2 := uint16(m.GetData2())
_data2Err := writeBuffer.WriteUint16("data2", 16, uint16((data2)))
if _data2Err != nil {
return errors.Wrap(_data2Err, "Error serializing 'data2' field")
}
// Simple Field (data3)
data3 := uint16(m.GetData3())
_data3Err := writeBuffer.WriteUint16("data3", 16, uint16((data3)))
if _data3Err != nil {
return errors.Wrap(_data3Err, "Error serializing 'data3' field")
}
// Array Field (data4)
// Byte Array field (data4)
if err := writeBuffer.WriteByteArray("data4", m.GetData4()); err != nil {
return errors.Wrap(err, "Error serializing 'data4' field")
}
// Array Field (data5)
// Byte Array field (data5)
if err := writeBuffer.WriteByteArray("data5", m.GetData5()); err != nil {
return errors.Wrap(err, "Error serializing 'data5' field")
}
if popErr := writeBuffer.PopContext("GuidValue"); popErr != nil {
return errors.Wrap(popErr, "Error popping for GuidValue")
}
return nil
}
func (m *_GuidValue) isGuidValue() bool {
return true
}
func (m *_GuidValue) 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()
}