-
Notifications
You must be signed in to change notification settings - Fork 202
/
plugin.go
351 lines (329 loc) · 9.09 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
package engine
import (
"context"
"errors"
"fmt"
"net/http"
"os"
"path/filepath"
"reflect"
"runtime"
"strings"
"sync"
"time"
"unsafe"
"github.com/mcuadros/go-defaults"
"go.uber.org/zap"
"gopkg.in/yaml.v3"
"m7s.live/engine/v4/config"
"m7s.live/engine/v4/log"
"m7s.live/engine/v4/util"
)
// InstallPlugin 安装插件,传入插件配置生成插件信息对象
func InstallPlugin(config config.Plugin, options ...any) *Plugin {
defaults.SetDefaults(config)
t := reflect.TypeOf(config).Elem()
name := strings.TrimSuffix(t.Name(), "Config")
plugin := &Plugin{
Name: name,
Config: config,
}
for _, v := range options {
switch v := v.(type) {
case DefaultYaml:
plugin.defaultYaml = v
case string:
name = v
plugin.Name = name
}
}
_, pluginFilePath, _, _ := runtime.Caller(1)
configDir := filepath.Dir(pluginFilePath)
if parts := strings.Split(configDir, "@"); len(parts) > 1 {
plugin.Version = util.LastElement(parts)
} else {
plugin.Version = pluginFilePath
}
if _, ok := Plugins[name]; ok {
return nil
}
switch v := config.(type) {
case *GlobalConfig:
v.InitDefaultHttp()
default:
Plugins[name] = plugin
plugins = append(plugins, plugin)
}
return plugin
}
type FirstConfig *config.Config
type UpdateConfig *config.Config
type DefaultYaml string
// Plugin 插件信息
type Plugin struct {
context.Context `json:"-" yaml:"-"`
context.CancelFunc `json:"-" yaml:"-"`
Name string //插件名称
Config config.Plugin `json:"-" yaml:"-"` //类型化的插件配置
Version string //插件版本
RawConfig config.Config //最终合并后的配置的map形式方便查询
defaultYaml DefaultYaml //默认配置
*log.Logger `json:"-" yaml:"-"`
saveTimer *time.Timer //用于保存的时候的延迟,防抖
Disabled bool
}
func (opt *Plugin) logHandler(pattern string, handler http.Handler) http.Handler {
return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
opt.Debug("visit", zap.String("path", r.URL.String()), zap.String("remote", r.RemoteAddr))
name := strings.ToLower(opt.Name)
r.URL.Path = strings.TrimPrefix(r.URL.Path, "/"+name)
handler.ServeHTTP(rw, r)
})
}
func (opt *Plugin) handle(pattern string, handler http.Handler) {
if opt == nil {
return
}
conf, ok := opt.Config.(config.HTTPConfig)
if !strings.HasPrefix(pattern, "/") {
pattern = "/" + pattern
}
if ok {
opt.Debug("http handle added", zap.String("pattern", pattern))
conf.Handle(pattern, opt.logHandler(pattern, handler))
}
if opt != Engine {
pattern = "/" + strings.ToLower(opt.Name) + pattern
opt.Debug("http handle added to engine", zap.String("pattern", pattern))
EngineConfig.Handle(pattern, opt.logHandler(pattern, handler))
}
apiList = append(apiList, pattern)
}
// 读取独立配置合并入总配置中
func (opt *Plugin) assign() {
f, err := os.Open(opt.settingPath())
defer f.Close()
if err == nil {
var modifyConfig map[string]any
err = yaml.NewDecoder(f).Decode(&modifyConfig)
if err != nil {
panic(err)
}
opt.RawConfig.ParseModifyFile(modifyConfig)
}
opt.registerHandler()
if opt != Engine {
opt.run()
}
}
func (opt *Plugin) run() {
opt.Context, opt.CancelFunc = context.WithCancel(Engine)
opt.Config.OnEvent(FirstConfig(&opt.RawConfig))
opt.Debug("config", zap.Any("config", opt.Config))
if conf, ok := opt.Config.(config.HTTPConfig); ok {
go conf.Listen(opt)
}
if conf, ok := opt.Config.(config.TCPConfig); ok {
go conf.ListenTCP(opt, opt.Config.(config.TCPPlugin))
}
}
// Update 热更新配置
func (opt *Plugin) Update(conf *config.Config) {
opt.Config.OnEvent(UpdateConfig(conf))
}
func (opt *Plugin) registerHandler() {
t := reflect.TypeOf(opt.Config)
v := reflect.ValueOf(opt.Config)
// 注册http响应
for i, j := 0, t.NumMethod(); i < j; i++ {
name := t.Method(i).Name
if name == "ServeHTTP" {
continue
}
switch handler := v.Method(i).Interface().(type) {
case func(http.ResponseWriter, *http.Request):
patten := strings.ToLower(strings.ReplaceAll(name, "_", "/"))
opt.handle(patten, http.HandlerFunc(handler))
}
}
if rootHandler, ok := opt.Config.(http.Handler); ok {
opt.handle("/", rootHandler)
}
}
func (opt *Plugin) settingPath() string {
return filepath.Join(SettingDir, strings.ToLower(opt.Name)+".yaml")
}
func (opt *Plugin) Save() error {
if opt.saveTimer == nil {
var lock sync.Mutex
opt.saveTimer = time.AfterFunc(time.Second, func() {
lock.Lock()
defer lock.Unlock()
if opt.RawConfig.Modify == nil {
os.Remove(opt.settingPath())
return
}
file, err := os.OpenFile(opt.settingPath(), os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0666)
if err == nil {
defer file.Close()
err = yaml.NewEncoder(file).Encode(opt.RawConfig.Modify)
}
if err == nil {
opt.Info("config saved")
}
})
} else {
opt.saveTimer.Reset(time.Second)
}
return nil
}
func (opt *Plugin) AssignPubConfig(puber *Publisher) {
if puber.Config == nil {
conf, ok := opt.Config.(config.PublishConfig)
if !ok {
conf = EngineConfig
}
copyConfig := conf.GetPublishConfig()
puber.Config = ©Config
}
}
func (opt *Plugin) Publish(streamPath string, pub IPublisher) error {
puber := pub.GetPublisher()
if puber == nil {
if EngineConfig.LogLang == "zh" {
return errors.New("不是发布者")
} else {
return errors.New("not publisher")
}
}
opt.AssignPubConfig(puber)
return pub.Publish(streamPath, pub)
}
var ErrStreamNotExist = errors.New("stream not exist")
// SubscribeExist 订阅已经存在的流
func (opt *Plugin) SubscribeExist(streamPath string, sub ISubscriber) error {
opt.Info("subscribe exsit", zap.String("path", streamPath))
path, _, _ := strings.Cut(streamPath, "?")
if !Streams.Has(path) {
opt.Warn("stream not exist", zap.String("path", streamPath))
return ErrStreamNotExist
}
return opt.Subscribe(streamPath, sub)
}
func (opt *Plugin) AssignSubConfig(suber *Subscriber) {
if suber.Config == nil {
conf, ok := opt.Config.(config.SubscribeConfig)
if !ok {
conf = EngineConfig
}
copyConfig := *conf.GetSubscribeConfig()
suber.Config = ©Config
}
if suber.ID == "" {
suber.ID = fmt.Sprintf("%d", uintptr(unsafe.Pointer(suber)))
}
}
// Subscribe 订阅一个流,如果流不存在则创建一个等待流
func (opt *Plugin) Subscribe(streamPath string, sub ISubscriber) error {
suber := sub.GetSubscriber()
if suber == nil {
if EngineConfig.LogLang == "zh" {
return errors.New("不是订阅者")
} else {
return errors.New("not subscriber")
}
}
opt.AssignSubConfig(suber)
return sub.Subscribe(streamPath, sub)
}
// SubscribeBlock 阻塞订阅一个流,直到订阅结束
func (opt *Plugin) SubscribeBlock(streamPath string, sub ISubscriber, t byte) (err error) {
if err = opt.Subscribe(streamPath, sub); err == nil {
sub.PlayBlock(t)
}
return
}
var ErrNoPullConfig = errors.New("no pull config")
var Pullers sync.Map
func (opt *Plugin) Pull(streamPath string, url string, puller IPuller, save int) (err error) {
conf, ok := opt.Config.(config.PullConfig)
if !ok {
return ErrNoPullConfig
}
pullConf := conf.GetPullConfig()
if save < 2 {
zurl := zap.String("url", url)
zpath := zap.String("stream", streamPath)
opt.Info("pull", zpath, zurl)
puller.init(streamPath, url, pullConf)
opt.AssignPubConfig(puller.GetPublisher())
puller.SetLogger(opt.Logger.With(zpath, zurl))
go puller.startPull(puller)
}
switch save {
case 1:
pullConf.PullOnStartLocker.Lock()
defer pullConf.PullOnStartLocker.Unlock()
m := map[string]string{streamPath: url}
for id := range pullConf.PullOnStart {
m[id] = pullConf.PullOnStart[id]
}
m[streamPath] = url
opt.RawConfig.ParseModifyFile(map[string]any{
"pull": map[string]any{
"pullonstart": m,
},
})
case 2:
pullConf.PullOnSubLocker.Lock()
defer pullConf.PullOnSubLocker.Unlock()
m := map[string]string{streamPath: url}
for id := range pullConf.PullOnSub {
m[id] = pullConf.PullOnSub[id]
}
m[streamPath] = url
if pullConf.PullOnSub == nil {
pullConf.PullOnSub = make(map[string]string)
}
pullConf.PullOnSub[streamPath] = url
opt.RawConfig.ParseModifyFile(map[string]any{
"pull": map[string]any{
"pullonsub": m,
},
})
}
if save > 0 {
if err = opt.Save(); err != nil {
opt.Error("save faild", zap.Error(err))
}
}
return
}
var ErrNoPushConfig = errors.New("no push config")
var Pushers sync.Map
func (opt *Plugin) Push(streamPath string, url string, pusher IPusher, save bool) (err error) {
zp, zu := zap.String("stream", streamPath), zap.String("url", url)
opt.Info("push", zp, zu)
defer func() {
if err != nil {
opt.Error("push faild", zap.Error(err))
}
}()
conf, ok := opt.Config.(config.PushConfig)
if !ok {
return ErrNoPushConfig
}
pushConfig := conf.GetPushConfig()
pusher.init(streamPath, url, pushConfig)
pusher.SetLogger(opt.Logger.With(zp, zu))
opt.AssignSubConfig(pusher.GetSubscriber())
go pusher.startPush(pusher)
if save {
pushConfig.AddPush(url, streamPath)
opt.RawConfig.Get("push").Get("pushlist").Modify = pushConfig.PushList
if err = opt.Save(); err != nil {
opt.Error("save faild", zap.Error(err))
}
}
return
}