forked from centrifuge/go-substrate-rpc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uint.go
113 lines (95 loc) · 2.66 KB
/
uint.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
// Go Substrate RPC Client (GSRPC) provides APIs and types around Polkadot and any Substrate-based chain RPC calls
//
// Copyright 2019 Centrifuge GmbH
//
// 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 types
import (
"encoding/json"
)
// U8 is an unsigned 8-bit integer
type U8 uint8
// NewU8 creates a new U8 type
func NewU8(u uint8) U8 {
return U8(u)
}
// UnmarshalJSON fills u with the JSON encoded byte array given by b
func (u *U8) UnmarshalJSON(b []byte) error {
var tmp uint8
if err := json.Unmarshal(b, &tmp); err != nil {
return err
}
*u = U8(tmp)
return nil
}
// MarshalJSON returns a JSON encoded byte array of u
func (u *U8) MarshalJSON() ([]byte, error) {
return json.Marshal(uint8(*u))
}
// U16 is an unsigned 16-bit integer
type U16 uint16
// NewU16 creates a new U16 type
func NewU16(u uint16) U16 {
return U16(u)
}
// UnmarshalJSON fills u with the JSON encoded byte array given by b
func (u *U16) UnmarshalJSON(b []byte) error {
var tmp uint16
if err := json.Unmarshal(b, &tmp); err != nil {
return err
}
*u = U16(tmp)
return nil
}
// MarshalJSON returns a JSON encoded byte array of u
func (u *U16) MarshalJSON() ([]byte, error) {
return json.Marshal(uint16(*u))
}
// U32 is an unsigned 32-bit integer
type U32 uint32
// NewU32 creates a new U32 type
func NewU32(u uint32) U32 {
return U32(u)
}
// UnmarshalJSON fills u with the JSON encoded byte array given by b
func (u *U32) UnmarshalJSON(b []byte) error {
var tmp uint32
if err := json.Unmarshal(b, &tmp); err != nil {
return err
}
*u = U32(tmp)
return nil
}
// MarshalJSON returns a JSON encoded byte array of u
func (u *U32) MarshalJSON() ([]byte, error) {
return json.Marshal(uint32(*u))
}
// U64 is an unsigned 64-bit integer
type U64 uint64
// NewU64 creates a new U64 type
func NewU64(u uint64) U64 {
return U64(u)
}
// UnmarshalJSON fills u with the JSON encoded byte array given by b
func (u *U64) UnmarshalJSON(b []byte) error {
var tmp uint64
if err := json.Unmarshal(b, &tmp); err != nil {
return err
}
*u = U64(tmp)
return nil
}
// MarshalJSON returns a JSON encoded byte array of u
func (u *U64) MarshalJSON() ([]byte, error) {
return json.Marshal(uint64(*u))
}