-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.go
398 lines (322 loc) · 7.81 KB
/
variables.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
398
package m1
import (
"fmt"
"reflect"
"github.com/ysmilda/m1-go/pkg/buffer"
)
type Variable struct {
Name string
Error error
Address uint64
Format uint16 // TODO: We need to parse this to a Go type.
Length uint16
initialized bool
}
// NewVariable creates a new variable with the given module and name.
// By default it contains no error and is not initialized. Initialisation is done via the VHD module on the target.
func NewVariable(module, name string) *Variable {
return &Variable{
Name: fmt.Sprintf("%s/%s", module, name),
}
}
func (s Variable) IsInitialized() bool {
return s.initialized
}
func (s Variable) IsBlock() bool {
return s.Format&_FormatBlock != 0
}
func (s Variable) GetArrayLength() int {
if !s.IsBlock() {
return 1
}
return int(s.Length) / s.getDataTypeLength()
}
func (s Variable) IsReadable() bool {
return s.Format&_FormatOut != 0
}
func (s Variable) IsWritable() bool {
return s.Format&_FormatIn != 0
}
func (s Variable) GetGoDataType() any { //nolint:gocyclo
if s.IsBlock() {
switch s.Format & _FormatElementaryTypeMask {
case _FormatUint1, _FormatBool:
return []bool{}
case _FormatSint8:
return []int8{}
case _FormatUint16:
return []uint16{}
case _FormatSint16:
return []int16{}
case _FormatUint32:
return []uint32{}
case _FormatSint32:
return []int32{}
case _FormatReal32:
return []float32{}
case _FormatUint64:
return []uint64{}
case _FormatSint64:
return []int64{}
case _FormatReal64:
return []float64{}
case _FormatUint8:
return []byte{}
case _FormatChar8, _FormatChar16:
return string("")
case _FormatMixed:
return []byte{}
default:
return nil
}
}
switch s.Format & _FormatElementaryTypeMask {
case _FormatUint1, _FormatBool:
return bool(false)
case _FormatSint8:
return int8(0)
case _FormatUint16:
return uint16(0)
case _FormatSint16:
return int16(0)
case _FormatUint32:
return uint32(0)
case _FormatSint32:
return int32(0)
case _FormatReal32:
return float32(0)
case _FormatUint64:
return uint64(0)
case _FormatSint64:
return int64(0)
case _FormatReal64:
return float64(0)
case _FormatUint8:
return byte(0)
case _FormatChar8, _FormatChar16:
return string("")
case _FormatMixed:
return []byte{}
default:
return nil
}
}
func (s Variable) String() string {
t := s.GetGoDataType()
if s.IsBlock() {
return fmt.Sprintf("%s: %T (%d)", s.Name, t, s.GetArrayLength())
}
return fmt.Sprintf("%s: %T", s.Name, t)
}
func (s Variable) getBufferLength() int {
return int(s.Length) + 3&_Align
}
func (s *Variable) getDataTypeLength() int {
switch s.Format & _FormatTypeMask {
case _FormatUint1, _FormatUint8, _FormatSint8, _FormatChar8,
_FormatBool, _FormatMixed, _FormatString, _FormatStringListBase:
return 1
case _FormatUint16, _FormatSint16, _FormatChar16, _FormatUnicodeStringListBase:
return 2
case _FormatUint32, _FormatSint32, _FormatReal32:
return 4
case _FormatUint64, _FormatSint64, _FormatReal64:
return 8
default:
return 1
}
}
func (s *Variable) infoFromBuffer(buf *buffer.Buffer) {
s.Address, _ = buf.LittleEndian.ReadUint64()
s.Format, _ = buf.LittleEndian.ReadUint16()
s.Length, _ = buf.LittleEndian.ReadUint16()
}
// valueToBuffer writes the given value to the buffer. The type and length of the value must match the format of the
// variable. Otherwise an error is returned.
func (s *Variable) valueToBuffer(value any) ([]byte, error) { //nolint:gocyclo
buf := buffer.NewBuffer(nil)
// Check if the type of the given value matches the format.
t := s.GetGoDataType()
if reflect.TypeOf(value) != reflect.TypeOf(t) {
return nil, fmt.Errorf("expected %T, got %T", t, value)
}
// If it is a slice or string, check if the length matches the length of the variable.
vt := reflect.TypeOf(value)
switch vt.Kind() {
case reflect.Slice:
if vt.Len() != s.GetArrayLength() {
return nil, fmt.Errorf("expected %d values, got %d", s.Length, vt.Len())
}
case reflect.String:
if len(value.(string)) != int(s.Length) {
return nil, fmt.Errorf("expected string with length %d, got %d", s.Length, len(value.(string)))
}
}
// Write the value to the buffer.
switch val := value.(type) {
case []bool:
for _, v := range val {
_ = buf.WriteBool(v)
}
case []int8:
for _, v := range val {
_ = buf.WriteByte(byte(v))
}
case []uint16:
for _, v := range val {
buf.LittleEndian.WriteUint16(v)
}
case []int16:
for _, v := range val {
buf.LittleEndian.WriteInt16(v)
}
case []uint32:
for _, v := range val {
buf.LittleEndian.WriteUint32(v)
}
case []int32:
for _, v := range val {
buf.LittleEndian.WriteInt32(v)
}
case []float32:
for _, v := range val {
buf.LittleEndian.WriteFloat32(v)
}
case []uint64:
for _, v := range val {
buf.LittleEndian.WriteUint64(v)
}
case []int64:
for _, v := range val {
buf.LittleEndian.WriteInt64(v)
}
case []float64:
for _, v := range val {
buf.LittleEndian.WriteFloat64(v)
}
case []byte:
_, _ = buf.Write(val)
case string:
_, _ = buf.WriteString(val)
case bool:
_ = buf.WriteBool(val)
case int8:
_ = buf.WriteByte(byte(val))
case uint16:
buf.LittleEndian.WriteUint16(val)
case int16:
buf.LittleEndian.WriteInt16(val)
case uint32:
buf.LittleEndian.WriteUint32(val)
case int32:
buf.LittleEndian.WriteInt32(val)
case float32:
buf.LittleEndian.WriteFloat32(val)
case uint64:
buf.LittleEndian.WriteUint64(val)
case int64:
buf.LittleEndian.WriteInt64(val)
case float64:
buf.LittleEndian.WriteFloat64(val)
case byte:
_ = buf.WriteByte(val)
}
return buf.Bytes(), nil
}
func (s *Variable) valueFromBuffer(in *buffer.Buffer) any { //nolint:gocyclo
// Read the value from the buffer. And create an intermediate buffer for reading the value.
// Depending on the type of the variable, we may use one or the other.
temp, _ := in.ReadBytes(int(s.Length))
buffer := buffer.NewBuffer(temp)
value := s.GetGoDataType()
switch val := value.(type) {
case []bool:
for i, v := range temp {
val[i] = v == 1
}
return val
case []int8:
for i, v := range temp {
val[i] = int8(v)
}
return val
case []uint16:
for i := range s.GetArrayLength() {
val[i], _ = buffer.LittleEndian.ReadUint16()
}
return val
case []int16:
for i := range s.GetArrayLength() {
val[i], _ = buffer.LittleEndian.ReadInt16()
}
return val
case []uint32:
for i := range s.GetArrayLength() {
val[i], _ = buffer.LittleEndian.ReadUint32()
}
return val
case []int32:
for i := range s.GetArrayLength() {
val[i], _ = buffer.LittleEndian.ReadInt32()
}
return val
case []float32:
for i := range s.GetArrayLength() {
val[i], _ = buffer.LittleEndian.ReadFloat32()
}
return val
case []uint64:
for i := range s.GetArrayLength() {
val[i], _ = buffer.LittleEndian.ReadUint64()
}
return val
case []int64:
for i := range s.GetArrayLength() {
val[i], _ = buffer.LittleEndian.ReadInt64()
}
return val
case []float64:
for i := range s.GetArrayLength() {
val[i], _ = buffer.LittleEndian.ReadFloat64()
}
return val
case []byte:
copy(val, temp)
return val
case string:
return string(temp)
case bool:
return temp[0] == 1
case int8:
return int8(temp[0])
case uint16:
val, _ = buffer.LittleEndian.ReadUint16()
return val
case int16:
val, _ = buffer.LittleEndian.ReadInt16()
return val
case uint32:
val, _ = buffer.LittleEndian.ReadUint32()
return val
case int32:
val, _ = buffer.LittleEndian.ReadInt32()
return val
case float32:
val, _ = buffer.LittleEndian.ReadFloat32()
return val
case uint64:
val, _ = buffer.LittleEndian.ReadUint64()
return val
case int64:
val, _ = buffer.LittleEndian.ReadInt64()
return val
case float64:
val, _ = buffer.LittleEndian.ReadFloat64()
return val
case byte:
return temp[0]
default:
s.Error = fmt.Errorf("unknown format: %d", s.Format)
}
return value
}