-
Notifications
You must be signed in to change notification settings - Fork 0
/
option.go
83 lines (70 loc) · 2.07 KB
/
option.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
package raft
import (
"time"
"go.uber.org/zap/zapcore"
)
type serverOptions struct {
apiServerListenAddress string
apiExtensions []APIExtension
electionTimeout time.Duration
followerTimeout time.Duration
logLevel zapcore.Level
maxTimerRandomOffsetRatio float64
metricsExporter MetricsExporter
snapshotPolicy SnapshotPolicy
}
type ServerOption func(options *serverOptions)
func defaultServerOptions() *serverOptions {
return &serverOptions{
apiServerListenAddress: "",
apiExtensions: []APIExtension{},
electionTimeout: 1000 * time.Millisecond,
followerTimeout: 1000 * time.Millisecond,
logLevel: zapcore.InfoLevel,
maxTimerRandomOffsetRatio: 0.3,
metricsExporter: nil,
snapshotPolicy: SnapshotPolicy{Applies: 10, Interval: 1 * time.Second},
}
}
func applyServerOpts(opts ...ServerOption) *serverOptions {
options := defaultServerOptions()
for _, opt := range opts {
opt(options)
}
return options
}
func APIServerListenAddressOption(address string) ServerOption {
return func(options *serverOptions) {
options.apiServerListenAddress = address
}
}
func ElectionTimeoutOption(timeout time.Duration) ServerOption {
return func(options *serverOptions) {
options.electionTimeout = timeout
}
}
func FollowerTimeoutOption(timeout time.Duration) ServerOption {
return func(options *serverOptions) {
options.followerTimeout = timeout
}
}
func MetricsKeeperOption(exporter MetricsExporter) ServerOption {
return func(options *serverOptions) {
options.metricsExporter = exporter
}
}
func APIExtensionOption(extension APIExtension) ServerOption {
return func(options *serverOptions) {
options.apiExtensions = append(options.apiExtensions, extension)
}
}
func LogLevelOption(level zapcore.Level) ServerOption {
return func(options *serverOptions) {
options.logLevel = level
}
}
func SnapshotPolicyOption(policy SnapshotPolicy) ServerOption {
return func(options *serverOptions) {
options.snapshotPolicy = policy
}
}