forked from eoscanada/eos-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abiencoder.go
358 lines (319 loc) · 9.81 KB
/
abiencoder.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
package eos
import (
"bytes"
"encoding/hex"
"encoding/json"
"fmt"
"io"
"strconv"
"strings"
"time"
"github.com/eoscanada/eos-go/ecc"
"go.uber.org/zap"
"github.com/tidwall/gjson"
)
type ABIEncoder struct {
abiReader io.Reader
eosEncoder *Encoder
abi *ABI
pos int
}
func (a *ABI) EncodeAction(actionName ActionName, json []byte) ([]byte, error) {
action := a.ActionForName(actionName)
if action == nil {
return nil, fmt.Errorf("encode action: action %s not found in abi", actionName)
}
var buffer bytes.Buffer
encoder := NewEncoder(&buffer)
err := a.encode(encoder, action.Type, json)
if err != nil {
return nil, fmt.Errorf("encode action: %s", err)
}
return buffer.Bytes(), nil
}
func (a *ABI) encode(binaryEncoder *Encoder, structureName string, json []byte) error {
abiEncoderLog.Debug("abi encode struct", zap.String("name", structureName))
structure := a.StructForName(structureName)
if structure == nil {
return fmt.Errorf("encode struct [%s] not found in abi", structureName)
}
if structure.Base != "" {
abiEncoderLog.Debug("struct has base struct", zap.String("struct", structureName), zap.String("base", structure.Base))
err := a.encode(binaryEncoder, structure.Base, json)
if err != nil {
return fmt.Errorf("encode base [%s]: %s", structureName, err)
}
}
err := a.encodeFields(binaryEncoder, structure.Fields, json)
return err
}
func (a *ABI) encodeFields(binaryEncoder *Encoder, fields []FieldDef, json []byte) error {
defer func(prev *zap.Logger) { abiEncoderLog = prev }(abiEncoderLog)
abiEncoderLog = encoderLog.Named("fields")
defer func(prev *zap.Logger) { encoderLog = prev }(encoderLog)
encoderLog = encoderLog.Named("fields")
for _, field := range fields {
abiEncoderLog.Debug("encode field", zap.String("name", field.Name), zap.String("type", field.Type))
fieldType, isOptional, isArray := analyzeFieldType(field.Type)
typeName := a.TypeNameForNewTypeName(fieldType)
fieldName := field.Name
if typeName != field.Type {
abiEncoderLog.Debug("type is an alias", zap.String("from", field.Type), zap.String("to", typeName))
}
err := a.encodeField(binaryEncoder, fieldName, typeName, isOptional, isArray, json)
if err != nil {
return fmt.Errorf("encoding fields: %s", err)
}
}
return nil
}
func (a *ABI) encodeField(binaryEncoder *Encoder, fieldName string, fieldType string, isOptional bool, isArray bool, json []byte) (err error) {
abiEncoderLog.Debug("encode field json", zap.ByteString("json", json))
value := gjson.GetBytes(json, fieldName)
if isOptional {
if value.Exists() {
abiEncoderLog.Debug("field is optional and present", zap.String("name", fieldName), zap.String("type", fieldType))
if e := binaryEncoder.writeByte(1); e != nil {
return e
}
} else {
abiEncoderLog.Debug("field is optional and *not* present", zap.String("name", fieldName), zap.String("type", fieldType))
return binaryEncoder.writeByte(0)
}
} else if !value.Exists() {
return fmt.Errorf("encode field: none optional field [%s] as a nil value", fieldName)
}
if isArray {
abiEncoderLog.Debug("field is an array", zap.String("name", fieldName), zap.String("type", fieldType))
if !value.IsArray() {
return fmt.Errorf("encode field: expected array for field [%s] got [%s]", fieldName, value.Type.String())
}
results := value.Array()
binaryEncoder.writeUVarInt(len(results))
for _, r := range results {
a.writeField(binaryEncoder, fieldName, fieldType, r)
}
return nil
}
return a.writeField(binaryEncoder, fieldName, fieldType, value)
}
func (a *ABI) writeField(binaryEncoder *Encoder, fieldName string, fieldType string, value gjson.Result) error {
abiEncoderLog.Debug("write field", zap.String("name", fieldName), zap.String("type", fieldType), zap.String("json", value.Raw))
structure := a.StructForName(fieldType)
if structure != nil {
abiEncoderLog.Debug("field is a struct", zap.String("name", fieldName))
err := a.encodeFields(binaryEncoder, structure.Fields, []byte(value.Raw))
if err != nil {
return err
}
return nil
}
var object interface{}
switch fieldType {
case "int8":
i, err := valueToInt(fieldName, value, 8)
if err != nil {
return err
}
object = int8(i)
case "uint8":
i, err := valueToUint(fieldName, value, 8)
if err != nil {
return err
}
object = uint8(i)
case "int16":
i, err := valueToInt(fieldName, value, 16)
if err != nil {
return err
}
object = int16(i)
case "uint16":
i, err := valueToUint(fieldName, value, 16)
if err != nil {
return err
}
object = uint16(i)
case "int32", "varint32":
i, err := valueToInt(fieldName, value, 32)
if err != nil {
return err
}
object = int32(i)
case "uint32", "varuint32":
i, err := valueToUint(fieldName, value, 32)
if err != nil {
return err
}
object = uint32(i)
case "int64":
var in Int64
if err := json.Unmarshal([]byte(value.Raw), &in); err != nil {
return fmt.Errorf("encoding int64: %s", err)
}
object = in
case "uint64":
var in Uint64
if err := json.Unmarshal([]byte(value.Raw), &in); err != nil {
return fmt.Errorf("encoding uint64: %s", err)
}
object = in
case "int128":
var in Int128
if err := json.Unmarshal([]byte(value.Raw), &in); err != nil {
return err
}
object = in
case "uint128":
var in Uint128
if err := json.Unmarshal([]byte(value.Raw), &in); err != nil {
return err
}
object = in
case "float32":
f, err := valueToFloat(fieldName, value, 32)
if err != nil {
return err
}
object = float32(f)
case "float64":
f, err := valueToFloat(fieldName, value, 64)
if err != nil {
return err
}
object = f
case "float128":
var in Float128
if err := json.Unmarshal([]byte(value.Raw), &in); err != nil {
return err
}
object = in
case "bool":
object = value.Bool()
case "time_point_sec":
t, err := time.Parse("2006-01-02T15:04:05", value.Str)
if err != nil {
return fmt.Errorf("writing field: time_point_sec: %s", err)
}
object = TimePointSec(t.UTC().Second())
case "time_point":
t, err := time.Parse("2006-01-02T15:04:05.999", value.Str)
if err != nil {
return fmt.Errorf("writing field: time_point: %s", err)
}
object = TimePoint(t.UTC().Nanosecond() / int(time.Millisecond))
case "block_timestamp_type":
t, err := time.Parse("2006-01-02T15:04:05.999999-07:00", value.Str)
if err != nil {
return fmt.Errorf("writing field: block_timestamp_type: %s", err)
}
object = BlockTimestamp{
Time: t,
}
case "name":
if len(value.Str) > 12 {
return fmt.Errorf("writing field: name: %s is to long. expected length of max 12 characters", value.Str)
}
object = Name(value.Str)
case "bytes":
data, err := hex.DecodeString(value.String())
if err != nil {
return fmt.Errorf("writing field: bytes: %s", err)
}
object = data
case "string":
object = value.String()
case "checksum160":
if len(value.Str) != 40 {
return fmt.Errorf("writing field: checksum160: expected length of 40 got %d for value %s", len(value.Str), value.String())
}
data, err := hex.DecodeString(value.Str)
if err != nil {
return fmt.Errorf("writing field: checksum160: %s", err)
}
object = Checksum160(data)
case "checksum256":
if len(value.Str) != 64 {
return fmt.Errorf("writing field: checksum256: expected length of 64 got %d for value %s", len(value.Str), value.String())
}
data, err := hex.DecodeString(value.Str)
if err != nil {
return fmt.Errorf("writing field: checksum256: %s", err)
}
object = Checksum256(data)
case "checksum512":
if len(value.Str) != 128 {
return fmt.Errorf("writing field: checksum512: expected length of 128 got %d for value %s", len(value.Str), value.String())
}
data, err := hex.DecodeString(value.String())
if err != nil {
return fmt.Errorf("writing field: checksum512: %s", err)
}
object = Checksum512(data)
case "public_key":
pk, err := ecc.NewPublicKey(value.String())
if err != nil {
return fmt.Errorf("writing field: public_key: %s", err)
}
object = pk
case "signature":
signature, err := ecc.NewSignature(value.String())
if err != nil {
return fmt.Errorf("writing field: public_key: %s", err)
}
object = signature
case "symbol":
parts := strings.Split(value.Str, ",")
if len(parts) != 2 {
return fmt.Errorf("writing field: symbol: symbol should be of format '4,EOS'")
}
i, err := strconv.ParseUint(parts[0], 10, 8)
if err != nil {
return fmt.Errorf("writing field: symbol: %s", err)
}
object = Symbol{
Precision: uint8(i),
Symbol: parts[1],
}
case "symbol_code":
object = SymbolCode(value.Uint())
case "asset":
asset, err := NewAsset(value.String())
if err != nil {
return fmt.Errorf("writing field: asset: %s", err)
}
object = asset
case "extended_asset":
var extendedAsset ExtendedAsset
err := json.Unmarshal([]byte(value.Raw), &extendedAsset)
if err != nil {
return fmt.Errorf("writing field: extended_asset: %s", err)
}
object = extendedAsset
default:
return fmt.Errorf("writing field of type [%s]: unknown type", fieldType)
}
abiEncoderLog.Debug("write object", zap.Reflect("value", object))
return binaryEncoder.Encode(object)
}
func valueToInt(fieldName string, value gjson.Result, bitSize int) (int64, error) {
i, err := strconv.ParseInt(value.Raw, 10, bitSize)
if err != nil {
return i, fmt.Errorf("writing field: [%s] type int%d : %s", fieldName, bitSize, err)
}
return i, nil
}
func valueToUint(fieldName string, value gjson.Result, bitSize int) (uint64, error) {
i, err := strconv.ParseUint(value.Raw, 10, bitSize)
if err != nil {
return i, fmt.Errorf("writing field: [%s] type uint%d : %s", fieldName, bitSize, err)
}
return i, nil
}
func valueToFloat(fieldName string, value gjson.Result, bitSize int) (float64, error) {
f, err := strconv.ParseFloat(value.Raw, bitSize)
if err != nil {
return f, fmt.Errorf("writing field: [%s] type float%d : %s", fieldName, bitSize, err)
}
return f, nil
}