forked from Nordstrom/choices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
121 lines (105 loc) · 3.3 KB
/
config.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
// Copyright 2016 Andrew O'Neill, Nordstrom
// 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 choices
import (
"context"
"fmt"
"time"
"github.com/pkg/errors"
)
// Config is the configuration struct used in an elwin server.
type Config struct {
ErrChan chan error
updateInterval time.Duration
maxUpdateFailTime time.Duration
storage *experimentStore
}
// IsHealthy returns an error if the time since the last successful
// update is longer than the max allowed time to fail. The interval
// for updates can be set by WithUpdateInterval. The time until
// failure can be set with WithMaxUpdateFailTime.
func (c *Config) IsHealthy() error {
if time.Duration(c.storage.failedUpdates)*c.updateInterval > c.maxUpdateFailTime {
return errors.Errorf("failed to update after %v", c.maxUpdateFailTime)
}
return nil
}
// ConfigOpt is a type that modifies Config. It is used when calling
// NewChoices to configure choices.
type ConfigOpt func(*Config) error
const (
defaultUpdateInterval time.Duration = 5 * time.Minute
)
// ErrUpdateStorage is an error type that is returned when storage
// fails to update.
type ErrUpdateStorage struct {
error
}
// Error is to implement the error interface
func (e ErrUpdateStorage) Error() string {
return fmt.Sprintf("could not update storage: %v", e.error)
}
// NewChoices sets the storage engine. It starts a ticker that will
// call s.Update() until the context is cancelled. To change the tick
// interval call SetUpdateInterval(d time.Duration). Must cancel the
// context before calling NewChoices again otherwise you will leak go
// routines.
func NewChoices(ctx context.Context, opts ...ConfigOpt) (*Config, error) {
e := &Config{
updateInterval: defaultUpdateInterval,
ErrChan: make(chan error, 1),
}
for _, opt := range opts {
err := opt(e)
if err != nil {
return nil, err
}
}
go func(e *Config) {
err := e.storage.update()
if err != nil {
e.ErrChan <- ErrUpdateStorage{error: err}
}
ticker := time.NewTicker(e.updateInterval)
for {
select {
case <-ticker.C:
if err := e.storage.update(); err != nil {
e.ErrChan <- ErrUpdateStorage{error: err}
e.storage.failedUpdates++
continue
}
e.storage.failedUpdates = 0
case <-ctx.Done():
ticker.Stop()
return
}
}
}(e)
return e, nil
}
// WithUpdateInterval changes the update interval for Storage. Must
// call SetStorage after this or cancel context of the current Storage
// and call SetStorage again.
func WithUpdateInterval(dur time.Duration) ConfigOpt {
return func(ec *Config) error {
ec.updateInterval = dur
return nil
}
}
// WithMaxUpdateFailTime changes the max duration allowed for failing
// updates.
func WithMaxUpdateFailTime(dur time.Duration) ConfigOpt {
return func(ec *Config) error {
ec.maxUpdateFailTime = dur
return nil
}
}