-
Notifications
You must be signed in to change notification settings - Fork 0
/
query.go
239 lines (208 loc) · 4.61 KB
/
query.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
package jsonrpc
import (
"encoding/json"
"fmt"
"strconv"
"strings"
"github.com/umbracle/ethgo"
)
// LogFilter is a filter for logs
type LogFilter struct {
BlockHash *ethgo.Hash
fromBlock BlockNumber
toBlock BlockNumber
Addresses []ethgo.Address
Topics [][]ethgo.Hash
}
// addTopicSet adds specific topics to the log filter topics
func (l *LogFilter) addTopicSet(set ...string) error {
if l.Topics == nil {
l.Topics = [][]ethgo.Hash{}
}
res := []ethgo.Hash{}
for _, i := range set {
item := ethgo.Hash{}
if err := item.UnmarshalText([]byte(i)); err != nil {
return err
}
res = append(res, item)
}
l.Topics = append(l.Topics, res)
return nil
}
// addAddress Adds the address to the log filter
func (l *LogFilter) addAddress(raw string) error {
if l.Addresses == nil {
l.Addresses = []ethgo.Address{}
}
addr := ethgo.Address{}
if err := addr.UnmarshalText([]byte(raw)); err != nil {
return err
}
l.Addresses = append(l.Addresses, addr)
return nil
}
// UnmarshalJSON decodes a json object
func (l *LogFilter) UnmarshalJSON(data []byte) error {
var obj struct {
BlockHash *ethgo.Hash `json:"blockHash"`
FromBlock string `json:"fromBlock"`
ToBlock string `json:"toBlock"`
Address interface{} `json:"address"`
Topics []interface{} `json:"topics"`
}
err := json.Unmarshal(data, &obj)
if err != nil {
return err
}
l.BlockHash = obj.BlockHash
if obj.FromBlock == "" {
l.fromBlock = LatestBlockNumber
} else {
if l.fromBlock, err = stringToBlockNumber(obj.FromBlock); err != nil {
return err
}
}
if obj.ToBlock == "" {
l.toBlock = LatestBlockNumber
} else {
if l.toBlock, err = stringToBlockNumber(obj.ToBlock); err != nil {
return err
}
}
if obj.Address != nil {
// decode address, either "" or [""]
switch raw := obj.Address.(type) {
case string:
// ""
if err := l.addAddress(raw); err != nil {
return err
}
case []interface{}:
// ["", ""]
for _, addr := range raw {
if item, ok := addr.(string); ok {
if err := l.addAddress(item); err != nil {
return err
}
} else {
return fmt.Errorf("address expected")
}
}
default:
return fmt.Errorf("failed to decode address. Expected either '' or ['', '']")
}
}
if obj.Topics != nil {
// decode topics, either "" or ["", ""] or null
for _, item := range obj.Topics {
switch raw := item.(type) {
case string:
// ""
if err := l.addTopicSet(raw); err != nil {
return err
}
case []interface{}:
// ["", ""]
res := []string{}
for _, i := range raw {
if item, ok := i.(string); ok {
res = append(res, item)
} else {
return fmt.Errorf("hash expected")
}
}
if err := l.addTopicSet(res...); err != nil {
return err
}
case nil:
// null
if err := l.addTopicSet(); err != nil {
return err
}
default:
return fmt.Errorf("failed to decode topics. Expected '' or [''] or null")
}
}
}
// decode topics
return nil
}
// Match returns whether the receipt includes topics for this filter
func (l *LogFilter) Match(log *ethgo.Log) bool {
// check addresses
if len(l.Addresses) > 0 {
match := false
for _, addr := range l.Addresses {
if addr == log.Address {
match = true
}
}
if !match {
return false
}
}
// check topics
if len(l.Topics) > len(log.Topics) {
return false
}
for i, sub := range l.Topics {
match := len(sub) == 0
for _, topic := range sub {
if log.Topics[i] == topic {
match = true
break
}
}
if !match {
return false
}
}
return true
}
const (
PendingBlockNumber = BlockNumber(-3)
LatestBlockNumber = BlockNumber(-2)
EarliestBlockNumber = BlockNumber(-1)
)
type BlockNumber int64
func stringToBlockNumber(str string) (BlockNumber, error) {
if str == "" {
return 0, fmt.Errorf("value is empty")
}
str = strings.Trim(str, "\"")
switch str {
case "pending":
return PendingBlockNumber, nil
case "latest":
return LatestBlockNumber, nil
case "earliest":
return EarliestBlockNumber, nil
}
n, err := parseUint64orHex(&str)
if err != nil {
return 0, err
}
return BlockNumber(n), nil
}
// UnmarshalJSON automatically decodes the user input for the block number, when a JSON RPC method is called
func (b *BlockNumber) UnmarshalJSON(buffer []byte) error {
num, err := stringToBlockNumber(string(buffer))
if err != nil {
return err
}
*b = num
return nil
}
func parseUint64orHex(val *string) (uint64, error) {
if val == nil {
return 0, nil
}
str := *val
base := 10
if strings.HasPrefix(str, "0x") {
str = str[2:]
base = 16
}
return strconv.ParseUint(str, base, 64)
}