forked from coinbase/mesh-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
128 lines (111 loc) · 4.77 KB
/
errors.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
// Copyright 2020 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 (
"errors"
utils "github.com/coinbase/rosetta-sdk-go/errors"
)
// Intent Errors
var (
ErrExpectedOperationAccountMismatch = errors.New(
"intended account did not match observed account",
)
ErrExpectedOperationAmountMismatch = errors.New(
"intended amount did not match observed amount",
)
ErrExpectedOperationTypeMismatch = errors.New(
"intended type did not match observed type",
)
ErrExpectedOperationsExtraOperation = errors.New("found extra operation")
ErrExpectedSignerUnexpectedSigner = errors.New("found unexpected signers")
ErrExpectedSignerMissing = errors.New("missing expected signer")
IntentErrs = []error{
ErrExpectedOperationAccountMismatch,
ErrExpectedOperationAmountMismatch,
ErrExpectedOperationTypeMismatch,
ErrExpectedOperationsExtraOperation,
ErrExpectedSignerUnexpectedSigner,
ErrExpectedSignerMissing,
}
)
// Match Operations Errors
var (
ErrAccountMatchAccountMissing = errors.New("account is missing")
ErrAccountMatchSubAccountMissing = errors.New("SubAccountIdentifier.Address is missing")
ErrAccountMatchSubAccountPopulated = errors.New("SubAccount is populated")
ErrAccountMatchUnexpectedSubAccountAddr = errors.New("unexpected SubAccountIdentifier.Address")
ErrMetadataMatchKeyNotFound = errors.New("key is not present in metadata")
ErrMetadataMatchKeyValueMismatch = errors.New("unexpected value associated with key")
ErrAmountMatchAmountMissing = errors.New("amount is missing")
ErrAmountMatchAmountPopulated = errors.New("amount is populated")
ErrAmountMatchUnexpectedSign = errors.New("unexpected amount sign")
ErrAmountMatchUnexpectedCurrency = errors.New("unexpected currency")
ErrCoinActionMatchCoinChangeIsNil = errors.New("coin change is nil")
ErrCoinActionMatchUnexpectedCoinAction = errors.New("unexpected coin action")
ErrEqualAmountsNoOperations = errors.New("cannot check equality of 0 operations")
ErrEqualAmountsNotEqual = errors.New("amounts are not equal")
ErrOppositeAmountsSameSign = errors.New("operations have the same sign")
ErrOppositeAmountsAbsValMismatch = errors.New("operation absolute values are not equal")
ErrEqualAddressesTooFewOperations = errors.New("cannot check equality of <= 1 operations")
ErrEqualAddressesAccountIsNil = errors.New("account is nil")
ErrEqualAddressesAddrMismatch = errors.New("addresses do not match")
ErrMatchIndexValidIndexOutOfRange = errors.New("match index out of range")
ErrMatchIndexValidIndexIsNil = errors.New("match index is nil")
ErrMatchOperationsNoOperations = errors.New("unable to match anything to 0 operations")
ErrMatchOperationsDescriptionsMissing = errors.New("no descriptions to match")
ErrMatchOperationsMatchNotFound = errors.New("unable to find match for operation")
ErrMatchOperationsDescriptionNotMatched = errors.New("could not find match for description")
MatchOpsErrs = []error{
ErrAccountMatchAccountMissing,
ErrAccountMatchSubAccountMissing,
ErrAccountMatchSubAccountPopulated,
ErrAccountMatchUnexpectedSubAccountAddr,
ErrMetadataMatchKeyNotFound,
ErrMetadataMatchKeyValueMismatch,
ErrAmountMatchAmountMissing,
ErrAmountMatchAmountPopulated,
ErrAmountMatchUnexpectedSign,
ErrAmountMatchUnexpectedCurrency,
ErrCoinActionMatchCoinChangeIsNil,
ErrCoinActionMatchUnexpectedCoinAction,
ErrEqualAmountsNoOperations,
ErrEqualAmountsNotEqual,
ErrOppositeAmountsSameSign,
ErrOppositeAmountsAbsValMismatch,
ErrEqualAddressesTooFewOperations,
ErrEqualAddressesAccountIsNil,
ErrEqualAddressesAddrMismatch,
ErrMatchIndexValidIndexOutOfRange,
ErrMatchIndexValidIndexIsNil,
ErrMatchOperationsNoOperations,
ErrMatchOperationsDescriptionsMissing,
ErrMatchOperationsMatchNotFound,
ErrMatchOperationsDescriptionNotMatched,
}
)
// Err takes an error as an argument and returns
// whether or not the error is one thrown by the parser
// along with the specific source of the error
func Err(err error) (bool, string) {
parserErrs := map[string][]error{
"intent error": IntentErrs,
"match operations error": MatchOpsErrs,
}
for key, val := range parserErrs {
if utils.FindError(val, err) {
return true, key
}
}
return false, ""
}