forked from coinbase/mesh-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
match_operations.go
744 lines (625 loc) · 18.9 KB
/
match_operations.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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
// Copyright 2022 Coinbase, Inc.
//
// Licensed 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
//
// http://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 parser
import (
"fmt"
"math/big"
"reflect"
"github.com/coinbase/rosetta-sdk-go/types"
)
// AmountSign is used to represent possible signedness
// of an amount.
type AmountSign int
const (
// AnyAmountSign is a positive or negative amount.
AnyAmountSign = 0
// NegativeAmountSign is a negative amount.
NegativeAmountSign = 1
// PositiveAmountSign is a positive amount.
PositiveAmountSign = 2
// PositiveOrZeroAmountSign is a positive or zero amount.
PositiveOrZeroAmountSign = 3
// NegativeOrZeroAmountSign is a positive or zero amount.
NegativeOrZeroAmountSign = 4
// oppositesLength is the only allowed number of
// operations to compare as opposites.
oppositesLength = 2
)
// Match returns a boolean indicating if a *types.Amount
// has an AmountSign.
func (s AmountSign) Match(amount *types.Amount) bool {
if s == AnyAmountSign {
return true
}
numeric, err := types.AmountValue(amount)
if err != nil {
return false
}
if s == NegativeAmountSign && numeric.Sign() == -1 {
return true
}
if s == PositiveAmountSign && numeric.Sign() == 1 {
return true
}
if s == PositiveOrZeroAmountSign && (numeric.Sign() == 1 || len(numeric.Bits()) == 0) {
return true
}
if s == NegativeOrZeroAmountSign && (numeric.Sign() == -1 || len(numeric.Bits()) == 0) {
return true
}
return false
}
// String returns a description of an AmountSign.
func (s AmountSign) String() string {
switch s {
case AnyAmountSign:
return "any"
case NegativeAmountSign:
return "negative"
case PositiveAmountSign:
return "positive"
case PositiveOrZeroAmountSign:
return "positive or zero"
case NegativeOrZeroAmountSign:
return "negative or zero"
default:
return "invalid"
}
}
// MetadataDescription is used to check if a map[string]interface{}
// has certain keys and values of a certain kind.
type MetadataDescription struct {
Key string
ValueKind reflect.Kind // ex: reflect.String
}
// AccountDescription is used to describe a *types.AccountIdentifier.
type AccountDescription struct {
Exists bool
// SubAccountOptional If this is true then SubAccountExists, SubAccountAddress,
// SubAccountMetadataKeys matching is ignored
SubAccountOptional bool
SubAccountExists bool
SubAccountAddress string
SubAccountMetadataKeys []*MetadataDescription
}
// AmountDescription is used to describe a *types.Amount.
type AmountDescription struct {
Exists bool
Sign AmountSign
Currency *types.Currency
}
// OperationDescription is used to describe a *types.Operation.
type OperationDescription struct {
Account *AccountDescription
Amount *AmountDescription
Metadata []*MetadataDescription
// Type is the operation.Type that must match. If this is left empty,
// any type is considered a match.
Type string
// AllowRepeats indicates that multiple operations can be matched
// to a particular description.
AllowRepeats bool
// Optional indicates that not finding any operations that meet
// the description should not trigger an error.
Optional bool
// CoinAction indicates that an operation should have a CoinChange
// and that it should have the CoinAction. If this is not populated,
// CoinChange is not checked.
CoinAction types.CoinAction
}
// Descriptions contains a slice of OperationDescriptions and
// high-level requirements enforced across multiple *types.Operations.
type Descriptions struct {
OperationDescriptions []*OperationDescription
// EqualAmounts are specified using the operation indices of
// OperationDescriptions to handle out of order matches. MatchOperations
// will error if all groups of operations aren't equal.
EqualAmounts [][]int
// OppositeAmounts are specified using the operation indices of
// OperationDescriptions to handle out of order matches. MatchOperations
// will error if all groups of operations aren't opposites.
OppositeAmounts [][]int
// OppositeZeroAmounts are specified using the operation indices of
// OperationDescriptions to handle out of order matches. MatchOperations
// will error if all groups of operations aren't 0 or opposites.
OppositeOrZeroAmounts [][]int
// EqualAddresses are specified using the operation indices of
// OperationDescriptions to handle out of order matches. MatchOperations
// will error if all groups of operations addresses aren't equal.
EqualAddresses [][]int
// ErrUnmatched indicates that an error should be returned
// if all operations cannot be matched to a description.
ErrUnmatched bool
}
// metadataMatch returns an error if a map[string]interface does not meet
// a slice of *MetadataDescription.
func metadataMatch(reqs []*MetadataDescription, metadata map[string]interface{}) error {
if len(reqs) == 0 {
return nil
}
for _, req := range reqs {
val, ok := metadata[req.Key]
if !ok {
return fmt.Errorf("key %s is invalid: %w", req.Key, ErrMetadataMatchKeyNotFound)
}
if reflect.TypeOf(val).Kind() != req.ValueKind {
return fmt.Errorf(
"value of %s is not of type %s: %w",
req.Key,
req.ValueKind,
ErrMetadataMatchKeyValueMismatch,
)
}
}
return nil
}
// accountMatch returns an error if a *types.AccountIdentifier does not meet
// an *AccountDescription.
func accountMatch(req *AccountDescription, account *types.AccountIdentifier) error {
if req == nil { // anything is ok
return nil
}
if account == nil {
if req.Exists {
return ErrAccountMatchAccountMissing
}
return nil
}
if req.SubAccountOptional {
// Optionally can require a certain subaccount address if subaccount is present
if account.SubAccount != nil {
if err := verifySubAccountAddress(req.SubAccountAddress, account.SubAccount); err != nil {
return fmt.Errorf(
"failed to verify sub account address %s: %w",
req.SubAccountAddress,
err,
)
}
}
return nil
}
if account.SubAccount == nil {
if req.SubAccountExists {
return ErrAccountMatchSubAccountMissing
}
return nil
}
if !req.SubAccountExists {
return ErrAccountMatchSubAccountPopulated
}
// Optionally can require a certain subaccount address
if err := verifySubAccountAddress(req.SubAccountAddress, account.SubAccount); err != nil {
return fmt.Errorf("failed to verify sub account address %s: %w", req.SubAccountAddress, err)
}
if err := metadataMatch(req.SubAccountMetadataKeys, account.SubAccount.Metadata); err != nil {
return fmt.Errorf("account metadata keys mismatch: %w", err)
}
return nil
}
// verifySubAccountAddress verifies the sub-account address if
// sub-account is present.
func verifySubAccountAddress(
subAccountAddress string,
subAccount *types.SubAccountIdentifier,
) error {
if len(subAccountAddress) > 0 && subAccount.Address != subAccountAddress {
return fmt.Errorf(
"expected sub account address %s but got %s: %w",
subAccountAddress,
subAccount.Address,
ErrAccountMatchUnexpectedSubAccountAddr,
)
}
return nil
}
// amountMatch returns an error if a *types.Amount does not meet an
// *AmountDescription.
func amountMatch(req *AmountDescription, amount *types.Amount) error {
if req == nil { // anything is ok
return nil
}
if amount == nil {
if req.Exists {
return ErrAmountMatchAmountMissing
}
return nil
}
if !req.Exists {
return ErrAmountMatchAmountPopulated
}
if !req.Sign.Match(amount) {
return fmt.Errorf(
"expected amount sign of amount %s is %s: %w",
types.PrintStruct(amount),
req.Sign.String(),
ErrAmountMatchUnexpectedSign,
)
}
// If no currency is provided, anything is ok.
if req.Currency == nil {
return nil
}
if amount.Currency == nil || types.Hash(amount.Currency) != types.Hash(req.Currency) {
return fmt.Errorf(
"expected currency %s but got %s: %w",
types.PrintStruct(req.Currency),
types.PrintStruct(amount.Currency),
ErrAmountMatchUnexpectedCurrency,
)
}
return nil
}
func coinActionMatch(requiredAction types.CoinAction, coinChange *types.CoinChange) error {
if len(requiredAction) == 0 {
return nil
}
if coinChange == nil {
return fmt.Errorf(
"coin change of coin action %s is invalid: %w",
requiredAction,
ErrCoinActionMatchCoinChangeIsNil,
)
}
if coinChange.CoinAction != requiredAction {
return fmt.Errorf(
"expected coin action %s but got %s: %w",
requiredAction,
coinChange.CoinAction,
ErrCoinActionMatchUnexpectedCoinAction,
)
}
return nil
}
// operationMatch returns an error if a *types.Operation does not match a
// *OperationDescription.
func operationMatch(
operation *types.Operation,
descriptions []*OperationDescription,
matches []*Match,
) bool {
for i, des := range descriptions {
if matches[i] != nil && !des.AllowRepeats { // already matched
continue
}
if len(des.Type) > 0 && des.Type != operation.Type {
continue
}
if err := accountMatch(des.Account, operation.Account); err != nil {
continue
}
if err := amountMatch(des.Amount, operation.Amount); err != nil {
continue
}
if err := metadataMatch(des.Metadata, operation.Metadata); err != nil {
continue
}
if err := coinActionMatch(des.CoinAction, operation.CoinChange); err != nil {
continue
}
if matches[i] == nil {
matches[i] = &Match{
Operations: []*types.Operation{},
Amounts: []*big.Int{},
}
}
if operation.Amount != nil {
val, err := types.AmountValue(operation.Amount)
if err != nil {
continue
}
matches[i].Amounts = append(matches[i].Amounts, val)
} else {
matches[i].Amounts = append(matches[i].Amounts, nil)
}
// Wait to add operation to matches in case that we "continue" when
// parsing operation.Amount.
matches[i].Operations = append(matches[i].Operations, operation)
return true
}
return false
}
// equalAmounts returns an error if a slice of operations do not have
// equal amounts.
func equalAmounts(ops []*types.Operation) error {
if len(ops) == 0 {
return ErrEqualAmountsNoOperations
}
val, err := types.AmountValue(ops[0].Amount)
if err != nil {
return fmt.Errorf(
"failed to return big int representation of %s: %w",
types.PrintStruct(ops[0].Amount),
err,
)
}
for _, op := range ops {
otherVal, err := types.AmountValue(op.Amount)
if err != nil {
return fmt.Errorf(
"failed to return big int representation of %s: %w",
types.PrintStruct(op.Amount),
err,
)
}
if val.Cmp(otherVal) != 0 {
return fmt.Errorf(
"operation amount %s is not equal to operation amount %s in %s: %w",
types.PrintStruct(ops),
val.String(),
otherVal.String(),
ErrEqualAmountsNotEqual,
)
}
}
return nil
}
// oppositeAmounts returns an error if two operations do not have opposite
// amounts.
func oppositeAmounts(a *types.Operation, b *types.Operation) error {
aVal, err := types.AmountValue(a.Amount)
if err != nil {
return fmt.Errorf(
"failed to return big int representation of %s: %w",
types.PrintStruct(a.Amount),
err,
)
}
bVal, err := types.AmountValue(b.Amount)
if err != nil {
return fmt.Errorf(
"failed to return big int representation of %s: %w",
types.PrintStruct(b.Amount),
err,
)
}
if aVal.Sign() == bVal.Sign() {
return fmt.Errorf(
"%s and %s have the same sign: %w",
aVal.String(),
bVal.String(),
ErrOppositeAmountsSameSign,
)
}
if aVal.CmpAbs(bVal) != 0 {
return fmt.Errorf(
"the absolute value of %s and %s is not same: %w",
aVal.String(),
bVal.String(),
ErrOppositeAmountsAbsValMismatch,
)
}
return nil
}
// oppositeOrZeroAmounts returns an error if two operations do not have opposite
// amounts and both amounts are not zero.
func oppositeOrZeroAmounts(a *types.Operation, b *types.Operation) error {
aVal, err := types.AmountValue(a.Amount)
if err != nil {
return fmt.Errorf(
"failed to return big int representation of %s: %w",
types.PrintStruct(a.Amount),
err,
)
}
bVal, err := types.AmountValue(b.Amount)
if err != nil {
return fmt.Errorf(
"failed to return big int representation of %s: %w",
types.PrintStruct(b.Amount),
err,
)
}
zero := big.NewInt(0)
if aVal.Cmp(zero) == 0 && bVal.Cmp(zero) == 0 {
return nil
}
if aVal.Sign() == bVal.Sign() {
return fmt.Errorf(
"%s and %s have the same sign: %w",
aVal.String(),
bVal.String(),
ErrOppositeAmountsSameSign,
)
}
if aVal.CmpAbs(bVal) != 0 {
return fmt.Errorf(
"the absolute value of %s and %s is not same: %w",
aVal.String(),
bVal.String(),
ErrOppositeAmountsAbsValMismatch,
)
}
return nil
}
// equalAddresses returns an error if a slice of operations do not have
// equal addresses.
func equalAddresses(ops []*types.Operation) error {
if len(ops) <= 1 {
return fmt.Errorf("got %d operations: %w", len(ops), ErrEqualAddressesTooFewOperations)
}
base := ""
for _, op := range ops {
if op.Account == nil {
return ErrEqualAddressesAccountIsNil
}
if len(base) == 0 {
base = op.Account.Address
continue
}
if base != op.Account.Address {
return fmt.Errorf(
"operation address %s is not equal to operation address %s in operation list %s: %w",
types.PrintStruct(ops),
base,
op.Account.Address,
ErrEqualAddressesAddrMismatch,
)
}
}
return nil
}
func matchIndexValid(matches []*Match, index int) error {
if index >= len(matches) {
return ErrMatchIndexValidIndexOutOfRange
}
if matches[index] == nil {
return ErrMatchIndexValidIndexIsNil
}
return nil
}
func checkOps(requests [][]int, matches []*Match, valid func([]*types.Operation) error) error {
for _, batch := range requests {
ops := []*types.Operation{}
for _, reqIndex := range batch {
if err := matchIndexValid(matches, reqIndex); err != nil {
return fmt.Errorf("index %d is invalid: %w", reqIndex, err)
}
ops = append(ops, matches[reqIndex].Operations...)
}
if err := valid(ops); err != nil {
return fmt.Errorf("operations %s are invalid: %w", types.PrintStruct(ops), err)
}
}
return nil
}
// compareOppositeMatches ensures collections of *types.Operation
// that may have opposite amounts contain valid matching amounts
func compareOppositeMatches(
amountPairs [][]int,
matches []*Match,
amountChecker func(*types.Operation, *types.Operation) error,
) error {
for _, amountMatch := range amountPairs {
if len(amountMatch) != oppositesLength { // cannot have opposites without exactly 2
return fmt.Errorf("cannot check opposites of %d operations", len(amountMatch))
}
// compare all possible pairs
if err := matchIndexValid(matches, amountMatch[0]); err != nil {
return fmt.Errorf("match index %d is invalid: %w", amountMatch[0], err)
}
if err := matchIndexValid(matches, amountMatch[1]); err != nil {
return fmt.Errorf("match index %d is invalid: %w", amountMatch[1], err)
}
match0Ops := matches[amountMatch[0]].Operations
match1Ops := matches[amountMatch[1]].Operations
if err := equalAmounts(match0Ops); err != nil {
return fmt.Errorf(
"operation amounts are not equal for match index %d: %w",
amountMatch[0],
err,
)
}
if err := equalAmounts(match1Ops); err != nil {
return fmt.Errorf(
"operation amounts are not equal for match index %d: %w",
amountMatch[1],
err,
)
}
// only need to check amount for the very first operation from each
// matched operations group since we made sure all amounts within the same
// matched operation group are the same
if err := amountChecker(
match0Ops[0],
match1Ops[0],
); err != nil {
return fmt.Errorf("amounts do not match the amountChecker function: %w", err)
}
}
return nil
}
// comparisonMatch ensures collections of *types.Operation
// have either equal or opposite amounts.
func comparisonMatch(
descriptions *Descriptions,
matches []*Match,
) error {
if err := checkOps(descriptions.EqualAmounts, matches, equalAmounts); err != nil {
return fmt.Errorf("operation amounts are not equal: %w", err)
}
if err := checkOps(descriptions.EqualAddresses, matches, equalAddresses); err != nil {
return fmt.Errorf("operation addresses are not equal: %w", err)
}
if err := compareOppositeMatches(descriptions.OppositeAmounts, matches, oppositeAmounts); err != nil {
return fmt.Errorf("operation amounts are not opposite: %w", err)
}
if err := compareOppositeMatches(descriptions.OppositeOrZeroAmounts, matches, oppositeOrZeroAmounts); err != nil {
return fmt.Errorf("both operation amounts not opposite and not zero: %w", err)
}
return nil
}
// Match contains all *types.Operation matching a given OperationDescription and
// their parsed *big.Int amounts (if populated).
type Match struct {
Operations []*types.Operation
// Amounts has the same length as Operations. If an operation has
// a populate Amount, its corresponding *big.Int will be non-nil.
Amounts []*big.Int
}
// First is a convenience method that returns the first matched operation
// and amount (if they exist). This is used when parsing matches when
// AllowRepeats is set to false.
func (m *Match) First() (*types.Operation, *big.Int) {
if m == nil {
return nil, nil
}
if len(m.Operations) > 0 {
return m.Operations[0], m.Amounts[0]
}
return nil, nil
}
// MatchOperations attempts to match a slice of operations with a slice of
// OperationDescriptions (high-level descriptions of what operations are
// desired). If matching succeeds, a slice of matching operations in the
// mapped to the order of the descriptions is returned.
func MatchOperations(
descriptions *Descriptions,
operations []*types.Operation,
) ([]*Match, error) {
if len(operations) == 0 {
return nil, ErrMatchOperationsNoOperations
}
if len(descriptions.OperationDescriptions) == 0 {
return nil, ErrMatchOperationsDescriptionsMissing
}
operationDescriptions := descriptions.OperationDescriptions
matches := make([]*Match, len(operationDescriptions))
// Match a *types.Operation to each *OperationDescription
for i, op := range operations {
matchFound := operationMatch(op, operationDescriptions, matches)
if !matchFound && descriptions.ErrUnmatched {
return nil, fmt.Errorf(
"at index %d: %w",
i,
ErrMatchOperationsMatchNotFound,
)
}
}
// Error if any *OperationDescription is not matched
for i := 0; i < len(matches); i++ {
if matches[i] == nil && !descriptions.OperationDescriptions[i].Optional {
return nil, fmt.Errorf(
"%d operation description is invalid: %w",
i,
ErrMatchOperationsDescriptionNotMatched,
)
}
}
// Once matches are found, assert high-level descriptions between
// *types.Operations
if err := comparisonMatch(descriptions, matches); err != nil {
return nil, fmt.Errorf("group descriptions not met: %w", err)
}
return matches, nil
}