-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathoptions.go
181 lines (148 loc) · 5.36 KB
/
options.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
// Copyright (c) 2016 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package etcd
import (
"errors"
"time"
"github.com/m3db/m3/src/cluster/services"
"github.com/m3db/m3x/instrument"
"github.com/m3db/m3x/retry"
)
var (
defaultRequestTimeout = 10 * time.Second
defaultWatchChanCheckInterval = 10 * time.Second
defaultWatchChanResetInterval = 10 * time.Second
defaultWatchChanInitTimeout = 10 * time.Second
defaultRetryOptions = retry.NewOptions().SetMaxRetries(3)
)
// Options are options for the client of the kv store
type Options interface {
// RequestTimeout is the timeout for etcd requests
RequestTimeout() time.Duration
// SetRequestTimeout sets the RequestTimeout
SetRequestTimeout(t time.Duration) Options
// InstrumentsOptions is the instrument options
InstrumentsOptions() instrument.Options
// SetInstrumentsOptions sets the InstrumentsOptions
SetInstrumentsOptions(iopts instrument.Options) Options
// RetryOptions is the retry options
RetryOptions() retry.Options
// SetRetryOptions sets the RetryOptions
SetRetryOptions(ropts retry.Options) Options
// WatchChanCheckInterval will be used to periodically check if a watch chan
// is no longer being subscribed and should be closed
WatchChanCheckInterval() time.Duration
// SetWatchChanCheckInterval sets the WatchChanCheckInterval
SetWatchChanCheckInterval(t time.Duration) Options
// WatchChanResetInterval is the delay before resetting the etcd watch chan
WatchChanResetInterval() time.Duration
// SetWatchChanResetInterval sets the WatchChanResetInterval
SetWatchChanResetInterval(t time.Duration) Options
// WatchChanInitTimeout is the timeout for a watchChan initialization
WatchChanInitTimeout() time.Duration
// SetWatchChanInitTimeout sets the WatchChanInitTimeout
SetWatchChanInitTimeout(t time.Duration) Options
// ServiceID returns the service the heartbeat store is managing heartbeats for.
ServiceID() services.ServiceID
// SetServiceID sets the service the heartbeat store is managing heartbeats for.
SetServiceID(sid services.ServiceID) Options
// Validate validates the Options
Validate() error
}
type options struct {
requestTimeout time.Duration
iopts instrument.Options
ropts retry.Options
watchChanCheckInterval time.Duration
watchChanResetInterval time.Duration
watchChanInitTimeout time.Duration
sid services.ServiceID
}
// NewOptions creates a sane default Option
func NewOptions() Options {
o := options{}
return o.SetRequestTimeout(defaultRequestTimeout).
SetInstrumentsOptions(instrument.NewOptions()).
SetRetryOptions(defaultRetryOptions).
SetWatchChanCheckInterval(defaultWatchChanCheckInterval).
SetWatchChanInitTimeout(defaultWatchChanInitTimeout).
SetWatchChanResetInterval(defaultWatchChanResetInterval)
}
func (o options) Validate() error {
if o.iopts == nil {
return errors.New("no instrument options")
}
if o.ropts == nil {
return errors.New("no retry options")
}
if o.watchChanCheckInterval <= 0 {
return errors.New("invalid watch channel check interval")
}
return nil
}
func (o options) RequestTimeout() time.Duration {
return o.requestTimeout
}
func (o options) SetRequestTimeout(t time.Duration) Options {
o.requestTimeout = t
return o
}
func (o options) InstrumentsOptions() instrument.Options {
return o.iopts
}
func (o options) SetInstrumentsOptions(iopts instrument.Options) Options {
o.iopts = iopts
return o
}
func (o options) RetryOptions() retry.Options {
return o.ropts
}
func (o options) SetRetryOptions(ropts retry.Options) Options {
o.ropts = ropts
return o
}
func (o options) WatchChanCheckInterval() time.Duration {
return o.watchChanCheckInterval
}
func (o options) SetWatchChanCheckInterval(t time.Duration) Options {
o.watchChanCheckInterval = t
return o
}
func (o options) WatchChanResetInterval() time.Duration {
return o.watchChanResetInterval
}
func (o options) SetWatchChanResetInterval(t time.Duration) Options {
o.watchChanResetInterval = t
return o
}
func (o options) WatchChanInitTimeout() time.Duration {
return o.watchChanInitTimeout
}
func (o options) SetWatchChanInitTimeout(t time.Duration) Options {
o.watchChanInitTimeout = t
return o
}
func (o options) ServiceID() services.ServiceID {
return o.sid
}
func (o options) SetServiceID(sid services.ServiceID) Options {
o.sid = sid
return o
}