plugin.go 3.76 KB
Newer Older
Lei Li's avatar
Lei Li committed
1
2
3
4
5
6
7
package plugin

import (
	"fmt"
	"sync"
	"time"

8
	"agent/cmd/agent/global"
Lei Li's avatar
Lei Li committed
9
10
11
	"agent/cmd/agent/option"
	"linkfog.com/pluginx/pluginmgr"
	"linkfog.com/pluginx/pluginrpc"
12
	"linkfog.com/public/lib/common"
Lei Li's avatar
Lei Li committed
13
14
15
	"linkfog.com/public/lib/l"
)

16
var defaultPluginCliConf = make(map[string]string)
Lei Li's avatar
Lei Li committed
17
18

type Plugin struct {
Lei Li's avatar
Lei Li committed
19
	signal     chan *global.Message
Lei Li's avatar
Lei Li committed
20
21
22
23
24
25
26
27
28
29
30
31
32
33
	signalSize int
	isRunning  bool
	plgServer  *pluginServer
	plgConf    map[string]*pluginmgr.PluginProcessConf
	processMgr *pluginmgr.PluginProcessMgr
	grpcServer *pluginrpc.PluginGrpcServer
	grpcClient *pluginrpc.PluginGrpcClient
	sync.Mutex
}

type PluginOpt func(*Plugin)

func New(opts ...PluginOpt) *Plugin {
	p := Plugin{
Lei Li's avatar
Lei Li committed
34
		signalSize: 512,
Lei Li's avatar
Lei Li committed
35
36
37
38
	}
	for _, opt := range opts {
		opt(&p)
	}
39
	setPluginSocketPath()
Lei Li's avatar
Lei Li committed
40
	p.signal = make(chan *global.Message, p.signalSize)
Lei Li's avatar
Lei Li committed
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61

	return &p
}

func (p *Plugin) Start() error {
	if p.IsRunning() {
		return nil
	}
	l.Info("init plugin module")

	//// 启动自身grpc服务
	//p.plgServer = newPluginServer()
	//var err error
	//p.grpcServer, err = pluginrpc.NewPluginGrpcServer(HadesPluginSocket, p.plgServer)
	//if err != nil {
	//	return fmt.Errorf("NewPluginGrpcServer err: %v", err)
	//}

	// 启动插件管理器,运行各插件进程
	pluginmgr.EnableValidatePluginMD5 = option.Opt.EnableValidatePluginMD5
	pluginmgr.InitDur = option.Opt.PluginStatusCheckDur
62
	plgCfgMap, err := pluginmgr.LoadPluginConfigWithFile(defaultPluginMgrConfFile)
Lei Li's avatar
Lei Li committed
63
	if err != nil {
64
65
		l.Warnf("load plugin config file failed, %v", err)
		plgCfgMap = make(map[string]*pluginmgr.PluginProcessConf)
Lei Li's avatar
Lei Li committed
66
	}
67

Lei Li's avatar
Lei Li committed
68
	for name, plg := range plgCfgMap {
69
70
71
72
73
74
		if name == PushStreamingPlugin {
			defaultPluginCliConf[name] = PushStreamingPluginSocket
		} else if name == ReportDCSInfoPlugin {
			defaultPluginCliConf[name] = ReportDCSInfoPluginSocket
		}

Lei Li's avatar
Lei Li committed
75
76
77
78
79
80
81
		l.Info("plugin config:", name, plg)
	}
	p.plgConf = plgCfgMap
	p.processMgr = pluginmgr.NewProcessMgr(p.plgConf)
	p.processMgr.Start()

	// 建立与各插件进程的grpc连接
82
	p.grpcClient, err = pluginrpc.New()
Lei Li's avatar
Lei Li committed
83
84
85
	if err != nil {
		return fmt.Errorf("NewGrpcClientHelper err: %v", err)
	}
86
87
88
89
90
91
92
	if len(defaultPluginCliConf) > 0 {
		err := p.grpcClient.NewPluginClient(defaultPluginCliConf)
		if err != nil {
			l.Error(err)
			return err
		}
	}
Lei Li's avatar
Lei Li committed
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108

	// 等待所有插件运行正常
	allIsRunning := false
	for i := 0; i < option.Opt.PluginStatusCheckTimes; i++ {
		if p.processMgr.AllPluginProcessIsRunning() {
			allIsRunning = true
			break
		}
		l.Info("all plugin process are init ...")
		time.Sleep(option.Opt.PluginStatusCheckDur)
	}
	if !allIsRunning {
		return fmt.Errorf("plugin processes init failed")
	}

	go func() {
Lei Li's avatar
Lei Li committed
109
		var sig *global.Message
Lei Li's avatar
Lei Li committed
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
		var ok bool
		for {
			select {
			case sig, ok = <-p.signal:
				if !ok {
					p.Stop()
					l.Info("module resources exit")
					return
				} else {
					p.dealWithSig(sig)
				}
			}
		}
	}()
	p.isRunning = true
	l.Info("init plugin module success")
	return nil
}

func (p *Plugin) Name() string {
	return global.PluginModuleName
}

func (p *Plugin) IsRunning() bool {
	return p.isRunning
}

func (p *Plugin) Stop() {
	if p.IsRunning() {
		if p.processMgr != nil {
			p.processMgr.Stop()
		}
		if p.grpcClient != nil {
			p.grpcClient.Close()
		}
		if p.grpcServer != nil {
			p.grpcServer.Close()
		}
		close(p.signal)
		p.isRunning = false
	}
}

Lei Li's avatar
Lei Li committed
153
func (p *Plugin) Receive(msg *global.Message) error {
Lei Li's avatar
Lei Li committed
154
	if len(p.signal) > (p.signalSize - 2) {
Lei Li's avatar
Lei Li committed
155
		return l.WrapError("plugin manager signal chan is full, drop msg:", msg.Key)
Lei Li's avatar
Lei Li committed
156
157
158
159
160
	}
	p.signal <- msg
	return nil
}

Lei Li's avatar
Lei Li committed
161
162
163
164
165
func (p *Plugin) dealWithSig(msg *global.Message) {
	defer common.TimeCost("deal sig finished, msgType:" + msg.Key)()

	switch msg.Key {
	case global.ConsumerTopicPluginUpgrade:
Lei Li's avatar
Lei Li committed
166

Lei Li's avatar
Lei Li committed
167
	case global.ConsumerTopicStartupPlugin:
Lei Li's avatar
Lei Li committed
168
		go chatWithPlugin(p.grpcClient, ReportDCSInfoPlugin, global.PublishTopicReportInfo)
Lei Li's avatar
Lei Li committed
169
170
	case global.ConsumerTopicStopPlugin:
	}
Lei Li's avatar
Lei Li committed
171
}