-
Notifications
You must be signed in to change notification settings - Fork 466
/
address.go
273 lines (239 loc) · 6.11 KB
/
address.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
package common
import (
"database/sql/driver"
"encoding/hex"
"encoding/json"
"fmt"
"reflect"
"io"
"math/big"
"github.com/dominant-strategies/go-quai/common/hexutil"
"github.com/dominant-strategies/go-quai/rlp"
"golang.org/x/crypto/sha3"
)
type Address struct {
inner AddressData
}
type AddressBytes [20]byte
type AddressData interface {
Bytes() []byte
Hash() Hash
Hex() string
String() string
checksumHex() []byte
Format(s fmt.State, c rune)
MarshalText() ([]byte, error)
UnmarshalText(input []byte) error
UnmarshalJSON(input []byte) error
Scan(src interface{}) error
Value() (driver.Value, error)
Location() *Location
setBytes(b []byte)
}
func (a Address) InternalAddress() (InternalAddress, error) {
if a.inner == nil {
return InternalAddress{}, nil
}
internal, ok := a.inner.(*InternalAddress)
if !ok {
return InternalAddress{}, ErrInvalidScope
}
return *internal, nil
}
func (a Address) Equal(b Address) bool {
if a.inner == nil && b.inner == nil {
return true
} else if a.inner == nil || b.inner == nil {
return false
}
return a.Hash() == b.Hash()
}
// BytesToAddress returns Address with value b.
// If b is larger than len(h), b will be cropped from the left.
func BytesToAddress(b []byte) Address {
if IsInChainScope(b) {
var i InternalAddress
i.setBytes(b)
return Address{&i}
} else {
var e ExternalAddress
e.setBytes(b)
return Address{&e}
}
}
func Bytes20ToAddress(b [20]byte) Address {
return BytesToAddress(b[:])
}
func NewAddressFromData(inner AddressData) Address {
return Address{inner: inner}
}
// EncodeRLP serializes b into the Quai RLP block format.
func (a Address) EncodeRLP(w io.Writer) error {
if a.inner == nil {
a.inner = &InternalAddress{}
}
return rlp.Encode(w, a.inner)
}
// DecodeRLP decodes the Quai
func (a *Address) DecodeRLP(s *rlp.Stream) error {
temp := make([]byte, 0, 20)
if err := s.Decode(&temp); err != nil {
return err
}
*a = BytesToAddress(temp)
return nil
}
// Bytes gets the string representation of the underlying address.
func (a Address) Bytes() []byte {
if a.inner == nil {
return []byte{}
}
return a.inner.Bytes()
}
// Bytes20 gets the bytes20 representation of the underlying address.
func (a Address) Bytes20() (addr AddressBytes) {
if a.inner == nil {
return AddressBytes{}
}
copy(addr[:], a.Bytes()[:]) // this is not very performant
return addr
}
// Hash converts an address to a hash by left-padding it with zeros.
func (a Address) Hash() Hash {
if a.inner == nil {
return Hash{}
}
return a.inner.Hash()
}
// Hex returns a hex string representation of the address.
func (a Address) Hex() string {
if a.inner == nil {
return string([]byte{})
}
return a.inner.Hex()
}
// String implements fmt.Stringer.
func (a Address) String() string {
if a.inner == nil {
return string([]byte{})
}
return a.inner.String()
}
// Format implements fmt.Formatter.
// Address supports the %v, %s, %v, %x, %X and %d format verbs.
func (a Address) Format(s fmt.State, c rune) {
if a.inner != nil {
a.inner.Format(s, c)
}
}
// MarshalText returns the hex representation of a.
func (a Address) MarshalText() ([]byte, error) {
if a.inner == nil {
return hexutil.Bytes(ZeroInternal[:]).MarshalText()
}
return a.inner.MarshalText()
}
// UnmarshalText parses a hash in hex syntax.
func (a *Address) UnmarshalText(input []byte) error {
var temp [AddressLength]byte
if err := hexutil.UnmarshalFixedText("Address", input, temp[:]); err != nil {
return err
}
a.inner = Bytes20ToAddress(temp).inner
return nil
}
// MarshalJSON marshals a subscription as its ID.
func (a *Address) MarshalJSON() ([]byte, error) {
if a.inner == nil {
return json.Marshal(ZeroAddr)
}
return json.Marshal(a.inner)
}
// UnmarshalJSON parses a hash in hex syntax.
func (a *Address) UnmarshalJSON(input []byte) error {
var temp [AddressLength]byte
if err := hexutil.UnmarshalFixedJSON(reflect.TypeOf(InternalAddress{}), input, temp[:]); err != nil {
if len(input) == 0 {
a.inner = Bytes20ToAddress(ZeroInternal).inner
return nil
}
return err
}
a.inner = Bytes20ToAddress(temp).inner
return nil
}
// Scan implements Scanner for database/sql.
func (a *Address) Scan(src interface{}) error {
var temp [20]byte
srcB, ok := src.([]byte)
if !ok {
return fmt.Errorf("can't scan %T into Address", src)
}
if len(srcB) != AddressLength {
return fmt.Errorf("can't scan []byte of len %d into Address, want %d", len(srcB), AddressLength)
}
copy(temp[:], srcB)
a.inner = Bytes20ToAddress(temp).inner
return nil
}
// Value implements valuer for database/sql.
func (a Address) Value() (driver.Value, error) {
if a.inner == nil {
return []byte{}, nil
}
return a.inner.Value()
}
// Location looks up the chain location which contains this address
func (a Address) Location() *Location {
if a.inner == nil {
return &NodeLocation
}
return a.inner.Location()
}
// BigToAddress returns Address with byte values of b.
// If b is larger than len(h), b will be cropped from the left.
func BigToAddress(b *big.Int) Address { return BytesToAddress(b.Bytes()) }
// HexToAddress returns Address with byte values of s.
// If s is larger than len(h), s will be cropped from the left.
func HexToAddress(s string) Address { return BytesToAddress(FromHex(s)) }
// IsHexAddress verifies whether a string can represent a valid hex-encoded
// Quai address or not.
func IsHexAddress(s string) bool {
if has0xPrefix(s) {
s = s[2:]
}
return len(s) == 2*AddressLength && isHex(s)
}
// Hex returns a hex string representation of the address.
func (a AddressBytes) Hex() string {
return string(a.checksumHex())
}
// String implements fmt.Stringer.
func (a AddressBytes) String() string {
return a.Hex()
}
func (a AddressBytes) checksumHex() []byte {
buf := a.hex()
// compute checksum
sha := sha3.NewLegacyKeccak256()
sha.Write(buf[2:])
hash := sha.Sum(nil)
for i := 2; i < len(buf); i++ {
hashByte := hash[(i-2)/2]
if i%2 == 0 {
hashByte = hashByte >> 4
} else {
hashByte &= 0xf
}
if buf[i] > '9' && hashByte > 7 {
buf[i] -= 32
}
}
return buf[:]
}
func (a AddressBytes) hex() []byte {
var buf [len(a)*2 + 2]byte
copy(buf[:2], "0x")
hex.Encode(buf[2:], a[:])
return buf[:]
}