mirror of https://github.com/shunfei/cronsun
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
2.4 KiB
155 lines
2.4 KiB
package node
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strconv"
|
|
"time"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
client "github.com/coreos/etcd/clientv3"
|
|
|
|
"sunteng/commons/log"
|
|
"sunteng/commons/util"
|
|
"sunteng/cronsun/conf"
|
|
"sunteng/cronsun/models"
|
|
"sunteng/cronsun/node/cron"
|
|
)
|
|
|
|
// Node 执行 cron 命令服务的结构体
|
|
type Node struct {
|
|
*models.Client
|
|
*models.Node
|
|
*cron.Cron
|
|
|
|
jobs Job
|
|
groups Group
|
|
|
|
ttl int64
|
|
|
|
lID client.LeaseID // lease id
|
|
lch <-chan *client.LeaseKeepAliveResponse
|
|
|
|
done chan struct{}
|
|
}
|
|
|
|
func NewNode(cfg *conf.Conf) (n *Node, err error) {
|
|
ip, err := util.GetLocalIP()
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
n = &Node{
|
|
Client: models.DefalutClient,
|
|
Node: &models.Node{
|
|
ID: ip.String(),
|
|
PID: strconv.Itoa(os.Getpid()),
|
|
},
|
|
Cron: cron.New(),
|
|
|
|
ttl: cfg.Ttl,
|
|
done: make(chan struct{}),
|
|
}
|
|
return
|
|
}
|
|
|
|
// 注册到 /cronsun/proc/xx
|
|
func (n *Node) Register() (err error) {
|
|
pid, err := n.Node.Exist()
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
if pid != -1 {
|
|
return fmt.Errorf("node[%s] pid[%d] exist", n.Node.ID, pid)
|
|
}
|
|
|
|
resp, err := n.Client.Grant(context.TODO(), n.ttl)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
if _, err = n.Node.Put(client.WithLease(resp.ID)); err != nil {
|
|
return
|
|
}
|
|
|
|
ch, err := n.Client.KeepAlive(context.TODO(), resp.ID)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
n.lID, n.lch = resp.ID, ch
|
|
return
|
|
}
|
|
|
|
func (n *Node) addJobs() {
|
|
for _, job := range n.jobs {
|
|
schs, ok := job.Schedule(n.ID)
|
|
if !ok {
|
|
log.Warnf("job[%s] has no schedules, will skip", job.ID)
|
|
continue
|
|
}
|
|
|
|
for _, sch := range schs {
|
|
if err := n.Cron.AddJob(sch, job); err != nil {
|
|
log.Warnf("job[%s] timer[%s] parse err: %s", job.ID, sch)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// 启动服务
|
|
func (n *Node) Run() (err error) {
|
|
go n.keepAlive()
|
|
|
|
defer func() {
|
|
if err != nil {
|
|
n.Stop(nil)
|
|
}
|
|
}()
|
|
|
|
if n.groups, err = models.GetGroups(); err != nil {
|
|
return
|
|
}
|
|
if n.jobs, err = newJob(n.ID, n.groups); err != nil {
|
|
return
|
|
}
|
|
|
|
n.addJobs()
|
|
// TODO add&del job
|
|
n.Cron.Start()
|
|
return
|
|
}
|
|
|
|
// 断网掉线重新注册
|
|
func (n *Node) keepAlive() {
|
|
for {
|
|
for _ = range n.lch {
|
|
}
|
|
|
|
select {
|
|
case <-n.done:
|
|
return
|
|
default:
|
|
}
|
|
time.Sleep(time.Duration(n.ttl+1) * time.Second)
|
|
|
|
log.Noticef("%s has dropped, try to reconnect...", n.String())
|
|
if err := n.Register(); err != nil {
|
|
log.Warn(err.Error())
|
|
} else {
|
|
log.Noticef("%s reconnected", n.String())
|
|
}
|
|
}
|
|
}
|
|
|
|
// 启动服务
|
|
func (n *Node) Stop(i interface{}) {
|
|
close(n.done)
|
|
n.Node.Del()
|
|
n.Client.Close()
|
|
n.Cron.Stop()
|
|
}
|