This repository has been archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apid.go
194 lines (164 loc) · 4.96 KB
/
apid.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
// Copyright 2017 Google Inc.
//
// 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 apid
import (
"errors"
"github.com/apid/apid-core/util"
"os"
"time"
)
const (
SystemEventsSelector EventSelector = "system event"
ShutdownEventSelector EventSelector = "shutdown event"
ShutdownTimeout time.Duration = 10 * time.Second
configfwdProxyURL = "configfwdproxy_url"
configfwdProxyProt = "configfwdproxy_prot"
configfwdProxyUser = "configfwdproxy_user"
configfwdProxyPasswd = "configfwdproxy_passwd"
configfwdProxyPort = "configfwdproxy_port"
)
var (
APIDInitializedEvent = systemEvent{"apid initialized"}
APIListeningEvent = systemEvent{"api listening"}
PluginVersionTracker []PluginData
pluginInitFuncs []PluginInitFunc
services Services
)
type Services interface {
API() APIService
Config() ConfigService
Data() DataService
Events() EventsService
Log() LogService
}
func setFwdProxyConfig(config ConfigService) {
var pURL string
config.SetDefault(configfwdProxyProt, "https")
fwdPrxy := config.GetString(configfwdProxyURL)
fwdprxyProt := config.GetString(configfwdProxyProt)
fwdPrxyUser := config.GetString(configfwdProxyUser)
fwdPrxyPass := config.GetString(configfwdProxyPasswd)
fwdPrxyPort := config.GetString(configfwdProxyPort)
if fwdPrxy != "" && fwdPrxyUser != "" && fwdPrxyPort != "" {
pURL = fwdprxyProt + "://" + fwdPrxyUser + ":" + fwdPrxyPass + "@" + fwdPrxy + ":" + fwdPrxyPort
} else if fwdPrxy != "" && fwdPrxyPort != "" {
pURL = fwdprxyProt + "://" + fwdPrxy + ":" + fwdPrxyPort
}
config.Set(util.ConfigfwdProxyPortURL, pURL)
}
type PluginInitFunc func(Services) (PluginData, error)
// passed Services can be a factory - makes copies and maintains returned references
// eg. apid.Initialize(factory.DefaultServicesFactory())
func Initialize(s Services) {
ss := &servicesSet{}
services = ss
// order is important
ss.config = s.Config()
ss.log = s.Log()
// ensure storage path exists
lsp := ss.config.GetString("local_storage_path")
if err := os.MkdirAll(lsp, 0700); err != nil {
ss.log.Panicf("can't create local storage path %s: %v", lsp, err)
}
setFwdProxyConfig(ss.config)
ss.events = s.Events()
ss.api = s.API()
ss.data = s.Data()
ss.events.Emit(SystemEventsSelector, APIDInitializedEvent)
}
func RegisterPlugin(plugin PluginInitFunc, pluginData PluginData) {
pluginInitFuncs = append(pluginInitFuncs, plugin)
PluginVersionTracker = append(PluginVersionTracker, pluginData)
}
func InitializePlugins(versionNumber string) {
log := Log()
log.Debugf("Initializing %d plugins...", len(pluginInitFuncs))
pie := PluginsInitializedEvent{
Description: "plugins initialized",
ApidVersion: versionNumber,
}
for _, pif := range pluginInitFuncs {
pluginData, err := pif(services)
if err != nil {
log.Panicf("Error initializing plugin: %s", err)
}
pie.Plugins = append(pie.Plugins, pluginData)
}
pluginInitFuncs = nil
Events().Emit(SystemEventsSelector, pie)
log.Debugf("done initializing plugins")
}
// Shutdown all the plugins that have registered for ShutdownEventSelector.
// This call will block until either all required plugins shutdown, or a timeout occurred.
func ShutdownPluginsAndWait() error {
shutdownEvent := ShutdownEvent{"apid is going to shutdown"}
eventChan := Events().Emit(ShutdownEventSelector, shutdownEvent)
select {
case event := <-eventChan:
if e, ok := event.(ShutdownEvent); ok {
if e == shutdownEvent {
return nil
}
}
return errors.New("Emit() problem: wrong event delivered")
case <-time.After(ShutdownTimeout):
return errors.New("Shutdown timeout")
}
}
func AllServices() Services {
return services
}
func Log() LogService {
return services.Log()
}
func API() APIService {
return services.API()
}
func Config() ConfigService {
return services.Config()
}
func Data() DataService {
return services.Data()
}
func Events() EventsService {
return services.Events()
}
type servicesSet struct {
config ConfigService
log LogService
api APIService
data DataService
events EventsService
}
func (s *servicesSet) API() APIService {
return s.api
}
func (s *servicesSet) Config() ConfigService {
return s.config
}
func (s *servicesSet) Data() DataService {
return s.data
}
func (s *servicesSet) Events() EventsService {
return s.events
}
func (s *servicesSet) Log() LogService {
return s.log
}
type systemEvent struct {
description string
}
type ShutdownEvent struct {
Description string
}