forked from goat-systems/go-tezos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgotezos.go
248 lines (211 loc) · 6.24 KB
/
gotezos.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
package gotezos
import (
"fmt"
"log"
"math/rand"
"os"
"sync"
"time"
"strings"
"github.com/patrickmn/go-cache"
)
// NewGoTezos is a constructor that returns a GoTezos object
func NewGoTezos() *GoTezos {
a := GoTezos{}
a.UseBalancerStrategyFailover()
a.rand = rand.New(rand.NewSource(time.Now().Unix()))
go func(a *GoTezos) {
for {
time.Sleep(15 * time.Second)
a.checkUnhealthyClients()
}
}(&a)
// TTL Cache
// 5s default cache, 5m garbage collection
a.cache = cache.New(5*time.Second, 5*time.Minute)
// Default logger
a.logger = log.New(os.Stderr, "", log.LstdFlags)
return &a
}
// SetLogger sets the logging functionality
func (gt *GoTezos) SetLogger(log *log.Logger) {
gt.logger = log
}
// Debug puts go-tezos into debug mode for logging
func (gt *GoTezos) Debug(d bool) {
gt.debug = d
}
// AddNewClient adds an RPC Client to query the tezos network
func (gt *GoTezos) AddNewClient(client *TezosRPCClient) {
gt.clientLock.Lock()
gt.RPCClients = append(gt.RPCClients, &TezClientWrapper{true, client})
gt.clientLock.Unlock()
var err error
gt.Constants, err = gt.GetNetworkConstants()
if err != nil {
fmt.Println("Could not get network constants, library will fail. Exiting .... ")
os.Exit(0)
}
gt.Versions, err = gt.GetNetworkVersions()
if err != nil {
fmt.Println("Could not get network version, library will fail. Exiting .... ")
os.Exit(0)
}
}
// IsMainnet checks whether the current network used is the Mainnet
func (gt *GoTezos) IsMainnet() bool {
if len(gt.Versions) > 0 {
return gt.Versions[0].Network == "BETANET"
}
return false
}
// IsAlphanet checks whether the current network used is the IsAlphanet
func (gt *GoTezos) IsAlphanet() bool {
if len(gt.Versions) > 0 {
return gt.Versions[0].Network == "ALPHANET"
}
return false
}
// IsZeronet checks whether the current network used is the IsZeronet
func (gt *GoTezos) IsZeronet() bool {
if len(gt.Versions) > 0 {
return gt.Versions[0].Network == "ZERONET"
}
return false
}
// UseBalancerStrategyFailover tells the client side failover to use the balancer strategy
func (gt *GoTezos) UseBalancerStrategyFailover() {
gt.balancerStrategy = "failover"
}
// UseBalancerStrategyRandom tells the client side failover to use the balancer random strategy
func (gt *GoTezos) UseBalancerStrategyRandom() {
gt.balancerStrategy = "random"
}
func (gt *GoTezos) checkHealthStatus() {
gt.clientLock.Lock()
wg := sync.WaitGroup{}
for _, a := range gt.RPCClients {
wg.Add(1)
go func(wg *sync.WaitGroup, client *TezClientWrapper) {
res := client.client.Healthcheck()
if client.healthy && res == false {
gt.logger.Println("Client state switched to unhealthy", gt.ActiveRPCCient.client.Host+gt.ActiveRPCCient.client.Port)
}
if !client.healthy && res {
gt.logger.Println("Client state switched to healthy", gt.ActiveRPCCient.client.Host+gt.ActiveRPCCient.client.Port)
}
client.healthy = res
wg.Done()
}(&wg, a)
}
wg.Wait()
gt.clientLock.Unlock()
}
func (gt *GoTezos) checkUnhealthyClients() {
gt.clientLock.Lock()
wg := sync.WaitGroup{}
for _, a := range gt.RPCClients {
wg.Add(1)
go func(wg *sync.WaitGroup, client *TezClientWrapper) {
if client.healthy == false {
res := client.client.Healthcheck()
if !client.healthy && res {
gt.logger.Println("Client state switched to healthy", gt.ActiveRPCCient.client.Host+gt.ActiveRPCCient.client.Port)
}
client.healthy = res
}
wg.Done()
}(&wg, a)
}
wg.Wait()
gt.clientLock.Unlock()
}
func (gt *GoTezos) getFirstHealthyClient() *TezClientWrapper {
gt.clientLock.Lock()
defer gt.clientLock.Unlock()
for _, a := range gt.RPCClients {
if a.healthy == true {
return a
}
}
return nil
}
func (gt *GoTezos) getRandomHealthyClient() *TezClientWrapper {
gt.clientLock.Lock()
defer gt.clientLock.Unlock()
clients := []int{}
for i := range gt.RPCClients {
clients = append(clients, i)
}
for _, i := range gt.rand.Perm(len(clients)) {
return gt.RPCClients[i]
}
return nil
}
func (gt *GoTezos) setActiveclient() error {
if gt.balancerStrategy == "failover" {
c := gt.getFirstHealthyClient()
if c == nil {
gt.checkHealthStatus()
c = gt.getFirstHealthyClient()
if c == nil {
return NoClientError{}
}
}
gt.ActiveRPCCient = c
}
if gt.balancerStrategy == "random" {
c := gt.getRandomHealthyClient()
if c == nil {
gt.checkHealthStatus()
c = gt.getRandomHealthyClient()
if c == nil {
return NoClientError{}
}
gt.ActiveRPCCient = c
}
gt.ActiveRPCCient = c
}
return nil
}
// GetResponse takes path endpoint and any arguments and returns the raw response of the query
func (gt *GoTezos) GetResponse(path string, args string) (ResponseRaw, error) {
return gt.HandleResponse("GET", path, args)
}
// PostResponse takes path endpoint and any arguments and returns the raw response of the POST query
func (gt *GoTezos) PostResponse(path string, args string) (ResponseRaw, error) {
return gt.HandleResponse("POST", path, args)
}
// HandleResponse takes the method (GET/POST ... etc), the query path, any arguments, and returns the raw response of the query
func (gt *GoTezos) HandleResponse(method string, path string, args string) (ResponseRaw, error) {
e := gt.setActiveclient()
if e != nil {
gt.logger.Println("goTezos", "Could not find any healthy clients")
return ResponseRaw{}, e
}
r, err := gt.ActiveRPCCient.client.GetResponse(method, path, args)
if err != nil {
gt.ActiveRPCCient.healthy = false
gt.logger.Println(gt.ActiveRPCCient.client.Host+gt.ActiveRPCCient.client.Port, "Client state switched to unhealthy")
// recurse call self, which will pick a new ActiveClient if defined
return gt.HandleResponse(method, path, args)
}
// Received a HTTP 200 OK response, but payload could contain error message
if strings.Contains(string(r.Bytes), "\"error\":") {
rpcErrors := RPCGenericErrors{}
rpcErrors, err := rpcErrors.UnmarshalJSON(r.Bytes)
if err != nil {
return r, err
}
// Just return the first error for now
// TODO: Return all errors
return r, fmt.Errorf("RPC Error (%s): %s", rpcErrors[0].Kind, rpcErrors[0].Error)
}
return r, nil
}
// NoClientError is a helper structure for error handling
type NoClientError struct {
}
func (gt NoClientError) Error() string {
return "GoTezos did not find any healthy Tezos Node"
}