Rainbond/builder/discover/discover.go

150 lines
4.2 KiB
Go
Raw Normal View History

2018-03-14 14:12:26 +08:00
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
2017-11-07 11:40:44 +08:00
// RAINBOND, Application Management Platform
2018-03-14 14:33:31 +08:00
2017-11-07 11:40:44 +08:00
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version. For any non-GPL usage of Rainbond,
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
// must be obtained first.
2018-03-14 14:33:31 +08:00
2017-11-07 11:40:44 +08:00
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
2018-03-14 14:33:31 +08:00
2017-11-07 11:40:44 +08:00
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package discover
import (
"context"
"os"
"time"
2018-12-04 13:43:15 +08:00
"github.com/Sirupsen/logrus"
"github.com/goodrain/rainbond/builder/exector"
2018-12-04 13:43:15 +08:00
"github.com/goodrain/rainbond/cmd/builder/option"
"github.com/goodrain/rainbond/mq/api/grpc/pb"
2018-12-04 13:43:15 +08:00
"github.com/goodrain/rainbond/mq/client"
2017-11-07 11:40:44 +08:00
grpc1 "google.golang.org/grpc"
)
//WTOPIC is builder
const WTOPIC string = "builder"
2018-12-04 13:43:15 +08:00
var healthStatus = make(map[string]string, 1)
2018-07-10 14:36:36 +08:00
2017-11-07 11:40:44 +08:00
//TaskManager task
type TaskManager struct {
ctx, discoverCtx context.Context
cancel, discoverCancel context.CancelFunc
config option.Config
client client.MQClient
exec exector.Manager
callbackChan chan *pb.TaskMessage
2017-11-07 11:40:44 +08:00
}
//NewTaskManager return *TaskManager
func NewTaskManager(c option.Config, client client.MQClient, exec exector.Manager) *TaskManager {
2017-11-07 11:40:44 +08:00
ctx, cancel := context.WithCancel(context.Background())
discoverCtx, discoverCancel := context.WithCancel(ctx)
2018-07-10 14:36:36 +08:00
healthStatus["status"] = "health"
2018-07-11 14:51:51 +08:00
healthStatus["info"] = "builder service health"
callbackChan := make(chan *pb.TaskMessage, 100)
taskManager := &TaskManager{
discoverCtx: discoverCtx,
discoverCancel: discoverCancel,
ctx: ctx,
cancel: cancel,
config: c,
client: client,
exec: exec,
callbackChan: callbackChan,
2017-11-07 11:40:44 +08:00
}
exec.SetReturnTaskChan(taskManager.callback)
return taskManager
2017-11-07 11:40:44 +08:00
}
//Start 启动
func (t *TaskManager) Start() error {
go t.Do()
logrus.Info("start discover success.")
return nil
}
func (t *TaskManager) callback(task *pb.TaskMessage) {
ctx, cancel := context.WithCancel(t.ctx)
defer cancel()
_, err := t.client.Enqueue(ctx, &pb.EnqueueRequest{
Topic: client.BuilderTopic,
Message: task,
})
if err != nil {
logrus.Errorf("callback task to mq failure %s", err.Error())
}
logrus.Infof("The build controller returns an indigestible task(%s) to the messaging system", task.TaskId)
}
2017-11-07 11:40:44 +08:00
//Do do
func (t *TaskManager) Do() {
hostName, _ := os.Hostname()
for {
select {
case <-t.discoverCtx.Done():
2017-11-07 11:40:44 +08:00
return
default:
ctx, cancel := context.WithCancel(t.discoverCtx)
2018-12-04 18:08:51 +08:00
data, err := t.client.Dequeue(ctx, &pb.DequeueRequest{Topic: t.config.Topic, ClientHost: hostName + "-builder"})
2018-01-31 14:24:09 +08:00
cancel()
2017-11-07 11:40:44 +08:00
if err != nil {
if grpc1.ErrorDesc(err) == context.DeadlineExceeded.Error() {
logrus.Warn(err.Error())
continue
}
if grpc1.ErrorDesc(err) == "context canceled" {
logrus.Warn("grpc dequeue context canceled")
2018-07-10 14:36:36 +08:00
healthStatus["status"] = "unusual"
healthStatus["info"] = "grpc dequeue context canceled"
2017-11-07 11:40:44 +08:00
return
}
if grpc1.ErrorDesc(err) == "context timeout" {
logrus.Warn(err.Error())
continue
}
logrus.Error(err.Error())
time.Sleep(time.Second * 2)
continue
}
err = t.exec.AddTask(data)
if err != nil {
t.callbackChan <- data
2017-11-07 11:40:44 +08:00
logrus.Error("add task error:", err.Error())
}
}
}
}
//Stop 停止
func (t *TaskManager) Stop() error {
t.discoverCancel()
if err := t.exec.Stop(); err != nil {
logrus.Errorf("stop task exec manager failure %s", err.Error())
}
for len(t.callbackChan) > 0 {
logrus.Infof("waiting callback chan empty")
time.Sleep(time.Second * 2)
}
2017-11-07 11:40:44 +08:00
logrus.Info("discover manager is stoping.")
t.cancel()
if t.client != nil {
t.client.Close()
}
return nil
2017-11-07 11:40:44 +08:00
}
2018-07-10 14:36:36 +08:00
// HealthCheck 组件的健康检查
2018-07-10 14:36:36 +08:00
func HealthCheck() map[string]string {
return healthStatus
}