-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.go
206 lines (176 loc) · 5.23 KB
/
plugin.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package kv
import (
"context"
"fmt"
"github.com/roadrunner-server/api/v4/plugins/v1/kv"
"github.com/roadrunner-server/endure/v2/dep"
"github.com/roadrunner-server/errors"
sdktrace "go.opentelemetry.io/otel/sdk/trace"
"go.uber.org/zap"
)
const (
// PluginName linked to the memory, boltdb, memcached, redis plugins. DO NOT change w/o sync.
PluginName string = "kv"
// driver is the mandatory field that should present in every storage
driver string = "driver"
// config key used to detect local configuration for the driver
cfg string = "config"
)
type Configurer interface {
// UnmarshalKey takes a single key and unmarshal it into a Struct.
UnmarshalKey(name string, out any) error
// Has checks if a config section exists.
Has(name string) bool
}
// Tracer represents opentelemetry tracer (OTEL plugin)
type Tracer interface {
Tracer() *sdktrace.TracerProvider
}
type Logger interface {
NamedLogger(name string) *zap.Logger
}
// Plugin for unified storage
type Plugin struct {
log *zap.Logger
// constructors contain general storage constructors, such as boltdb, memory, memcached, redis.
constructors map[string]kv.Constructor
// storages contain user-defined storages, such as boltdb-north, memcached-us and so on.
storages map[string]kv.Storage
// OTEL tracer
tracer *sdktrace.TracerProvider
// KV configuration
cfg Config
cfgPlugin Configurer
}
func (p *Plugin) Init(cfg Configurer, log Logger) error {
const op = errors.Op("kv_plugin_init")
if !cfg.Has(PluginName) {
return errors.E(errors.Disabled)
}
err := cfg.UnmarshalKey(PluginName, &p.cfg.Data)
if err != nil {
return errors.E(op, err)
}
p.constructors = make(map[string]kv.Constructor, 5)
p.storages = make(map[string]kv.Storage, 5)
p.log = log.NamedLogger(PluginName)
// NOOP tracer
p.tracer = sdktrace.NewTracerProvider()
p.cfgPlugin = cfg
return nil
}
func (p *Plugin) Serve() chan error {
errCh := make(chan error, 1)
const op = errors.Op("kv_plugin_serve")
// key - storage name in the config
// value - storage
// For this config we should have 3 constructors: memory, boltdb and memcached but 4 KVs: default, boltdb-south, boltdb-north and memcached
// when user requests, for example, boltdb-south, we should provide that particular pre-configured storage
for k, v := range p.cfg.Data {
// for example, if the key didn't properly format (yaml)
if v == nil {
continue
}
// check type of the v
// should be a map[string]any
switch t := v.(type) {
// correct type
case map[string]any:
if _, ok := t[driver]; !ok {
errCh <- errors.E(op, errors.Errorf("could not find mandatory driver field in the %s storage", k))
return errCh
}
default:
p.log.Warn("wrong type detected in the configuration, please, check yaml indentation")
continue
}
// config key for the particular sub-driver kv.memcached.config
configKey := fmt.Sprintf("%s.%s.%s", PluginName, k, cfg)
// at this point we know, that driver field present in the configuration
drName := v.(map[string]any)[driver]
// driver name should be a string
if drStr, ok := drName.(string); ok {
switch {
// local configuration section key
case p.cfgPlugin.Has(configKey):
if _, ok := p.constructors[drStr]; !ok {
p.log.Warn("no such constructor was registered", zap.String("requested", drStr), zap.Any("registered", p.constructors))
continue
}
storage, err := p.constructors[drStr].KvFromConfig(configKey)
if err != nil {
errCh <- errors.E(op, err)
return errCh
}
// save the storage
p.storages[k] = storage
// try global then
case p.cfgPlugin.Has(k):
if _, ok := p.constructors[drStr]; !ok {
p.log.Warn("no such constructor was registered", zap.String("requested", drStr), zap.Any("registered", p.constructors))
continue
}
// use only key for the driver registration, for example, rr-boltdb should be globally available
storage, err := p.constructors[drStr].KvFromConfig(k)
if err != nil {
errCh <- errors.E(op, err)
return errCh
}
// save the storage
p.storages[k] = storage
default:
p.log.Error("can't find local or global configuration, this section will be skipped", zap.String("local", configKey), zap.String("global", k))
continue
}
}
continue
}
return errCh
}
func (p *Plugin) Weight() uint {
return 10
}
func (p *Plugin) Stop(ctx context.Context) error {
stopCh := make(chan struct{}, 1)
go func() {
// stop all attached storages
for k := range p.storages {
p.storages[k].Stop()
}
for k := range p.storages {
delete(p.storages, k)
}
for k := range p.constructors {
delete(p.constructors, k)
}
stopCh <- struct{}{}
}()
select {
case <-ctx.Done():
return ctx.Err()
case <-stopCh:
return nil
}
}
// Collects will get all plugins that implement the Storage interface
func (p *Plugin) Collects() []*dep.In {
return []*dep.In{
dep.Fits(func(pp any) {
kvk := pp.(kv.Constructor)
p.constructors[kvk.Name()] = kvk
}, (*kv.Constructor)(nil)),
dep.Fits(func(pp any) {
p.tracer = pp.(Tracer).Tracer()
}, (*Tracer)(nil)),
}
}
func (p *Plugin) Name() string {
return PluginName
}
// RPC returns associated rpc service.
func (p *Plugin) RPC() any {
return &rpc{
storages: p.storages,
tracer: p.tracer,
}
}