-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathparameters.go
128 lines (111 loc) · 3.38 KB
/
parameters.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
// Copyright © 2022 Weald Technology Trading.
// 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 dirk
import (
"time"
"github.com/pkg/errors"
"github.com/rs/zerolog"
"google.golang.org/grpc/credentials"
)
type parameters struct {
logLevel zerolog.Level
monitor Metrics
timeout time.Duration
name string
credentials credentials.TransportCredentials
endpoints []*Endpoint
poolConnections int32
}
// Parameter is the interface for service parameters.
type Parameter interface {
apply(p *parameters)
}
type parameterFunc func(*parameters)
func (f parameterFunc) apply(p *parameters) {
f(p)
}
// WithLogLevel sets the log level for the module.
func WithLogLevel(logLevel zerolog.Level) Parameter {
return parameterFunc(func(p *parameters) {
p.logLevel = logLevel
})
}
// WithMonitor sets the monitor for the wallet.
func WithMonitor(monitor Metrics) Parameter {
return parameterFunc(func(p *parameters) {
p.monitor = monitor
})
}
// WithTimeout sets the timeout for wallet requests.
func WithTimeout(timeout time.Duration) Parameter {
return parameterFunc(func(p *parameters) {
p.timeout = timeout
})
}
// WithName sets the name for the wallet.
func WithName(name string) Parameter {
return parameterFunc(func(p *parameters) {
p.name = name
})
}
// WithCredentials sets the transport credentials for the wallet.
func WithCredentials(credentials credentials.TransportCredentials) Parameter {
return parameterFunc(func(p *parameters) {
p.credentials = credentials
})
}
// WithEndpoints sets the endpoints for the wallet.
func WithEndpoints(endpoints []*Endpoint) Parameter {
return parameterFunc(func(p *parameters) {
p.endpoints = endpoints
})
}
// WithPoolConnections sets the number of connections for the wallet connection pool.
func WithPoolConnections(connections int32) Parameter {
return parameterFunc(func(p *parameters) {
p.poolConnections = connections
})
}
// parseAndCheckParameters parses and checks parameters to ensure that mandatory parameters are present and correct.
func parseAndCheckParameters(params ...Parameter) (*parameters, error) {
parameters := parameters{
logLevel: zerolog.GlobalLevel(),
timeout: 30 * time.Second,
poolConnections: 128,
monitor: &nullMetrics{},
}
for _, p := range params {
if params != nil {
p.apply(¶meters)
}
}
if parameters.monitor == nil {
return nil, errors.New("no monitor specified")
}
if parameters.timeout == 0 {
return nil, errors.New("no timeout specified")
}
if parameters.name == "" {
return nil, errors.New("no name specified")
}
if parameters.credentials == nil {
return nil, errors.New("no credentials specified")
}
if len(parameters.endpoints) == 0 {
return nil, errors.New("no endpoints specified")
}
if parameters.poolConnections < 1 {
return nil, errors.New("no pool connections specified")
}
return ¶meters, nil
}