forked from coinbase/mesh-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
call.go
101 lines (90 loc) · 2.47 KB
/
call.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
// 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 fetcher
import (
"context"
"fmt"
"github.com/coinbase/rosetta-sdk-go/asserter"
"github.com/coinbase/rosetta-sdk-go/types"
)
// Call returns the validated response
// from the Call method.
func (f *Fetcher) Call(
ctx context.Context,
network *types.NetworkIdentifier,
method string,
parameters map[string]interface{},
) (map[string]interface{}, bool, *Error) {
if err := f.connectionSemaphore.Acquire(ctx, semaphoreRequestWeight); err != nil {
return nil, false, &Error{
Err: fmt.Errorf("%w: %s", ErrCouldNotAcquireSemaphore, err.Error()),
}
}
defer f.connectionSemaphore.Release(semaphoreRequestWeight)
response, clientErr, err := f.rosettaClient.CallAPI.Call(
ctx,
&types.CallRequest{
NetworkIdentifier: network,
Method: method,
Parameters: parameters,
},
)
if err != nil {
return nil, false, f.RequestFailedError(clientErr, err, "/call")
}
return response.Result, response.Idempotent, nil
}
// CallRetry invokes the /call endpoint with a specified
// number of retries and max elapsed time.
func (f *Fetcher) CallRetry(
ctx context.Context,
network *types.NetworkIdentifier,
method string,
parameters map[string]interface{},
) (map[string]interface{}, bool, *Error) {
backoffRetries := backoffRetries(
f.retryElapsedTime,
f.maxRetries,
)
for {
result, idempotent, err := f.Call(
ctx,
network,
method,
parameters,
)
if err == nil {
return result, idempotent, nil
}
if ctx.Err() != nil {
return nil, false, &Error{
Err: ctx.Err(),
}
}
if is, _ := asserter.Err(err.Err); is {
fetcherErr := &Error{
Err: fmt.Errorf("%w: /call not attempting retry", err.Err),
ClientErr: err.ClientErr,
}
return nil, false, fetcherErr
}
if err := tryAgain(
fmt.Sprintf("/call %s:%s", method, types.PrintStruct(parameters)),
backoffRetries,
err,
); err != nil {
return nil, false, err
}
}
}