gocron/models/task_log.go

99 lines
3.3 KiB
Go
Raw Normal View History

2017-03-10 09:24:06 +00:00
package models
2017-03-14 06:31:46 +00:00
import (
2017-04-02 02:38:49 +00:00
"time"
"github.com/go-xorm/xorm"
2017-03-14 06:31:46 +00:00
)
2017-03-10 09:24:06 +00:00
2017-04-14 10:05:34 +00:00
type TaskType int8
2017-03-23 05:31:16 +00:00
// 任务执行日志
2017-04-02 02:19:52 +00:00
type TaskLog struct {
2017-04-13 09:35:59 +00:00
Id int64 `xorm:"bigint pk autoincr"`
2017-04-14 10:05:34 +00:00
TaskId int `xorm:"int notnull index default 0"` // 任务id
2017-04-25 11:05:24 +00:00
Name string `xorm:"varchar(32) notnull"` // 任务名称
2017-04-07 01:13:36 +00:00
Spec string `xorm:"varchar(64) notnull"` // crontab
2017-05-29 13:32:22 +00:00
Protocol TaskProtocol `xorm:"tinyint notnull index"` // 协议 1:http 2:RPC
2017-04-25 11:05:24 +00:00
Command string `xorm:"varchar(256) notnull"` // URL地址或shell命令
2017-04-07 01:13:36 +00:00
Timeout int `xorm:"mediumint notnull default 0"` // 任务执行超时时间(单位秒),0不限制
RetryTimes int8 `xorm:"tinyint notnull default 0"` // 任务重试次数
2017-05-26 10:09:07 +00:00
Hostname string `xorm:"varchar(128) notnull defalut '' "` // RPC主机名逗号分隔
2017-04-02 02:38:49 +00:00
StartTime time.Time `xorm:"datetime created"` // 开始执行时间
EndTime time.Time `xorm:"datetime updated"` // 执行完成(失败)时间
2017-05-29 13:32:22 +00:00
Status Status `xorm:"tinyint notnull index default 1"` // 状态 0:执行失败 1:执行中 2:执行完毕 3:任务取消(上次任务未执行完成) 4:异步执行
2017-04-28 03:54:46 +00:00
Result string `xorm:"mediumtext notnull defalut '' "` // 执行结果
2017-04-21 05:36:45 +00:00
TotalTime int `xorm:"-"` // 执行总时长
2017-04-23 06:11:53 +00:00
BaseModel `xorm:"-"`
2017-04-02 02:19:52 +00:00
}
2017-04-13 09:35:59 +00:00
func (taskLog *TaskLog) Create() (insertId int64, err error) {
2017-04-02 02:38:49 +00:00
_, err = Db.Insert(taskLog)
if err == nil {
insertId = taskLog.Id
}
2017-03-24 09:55:44 +00:00
2017-04-02 02:38:49 +00:00
return
2017-03-10 09:24:06 +00:00
}
// 更新
2017-04-13 09:35:59 +00:00
func (taskLog *TaskLog) Update(id int64, data CommonMap) (int64, error) {
2017-04-02 02:38:49 +00:00
return Db.Table(taskLog).ID(id).Update(data)
2017-03-10 09:24:06 +00:00
}
func (taskLog *TaskLog) List(params CommonMap) ([]TaskLog, error) {
2017-04-23 06:11:53 +00:00
taskLog.parsePageAndPageSize(params)
2017-04-02 02:38:49 +00:00
list := make([]TaskLog, 0)
session := Db.Desc("id")
taskLog.parseWhere(session, params)
err := session.Limit(taskLog.PageSize, taskLog.pageLimitOffset()).Find(&list)
2017-04-21 05:36:45 +00:00
if len(list) > 0 {
for i, item := range list {
endTime := item.EndTime
if item.Status == Running {
endTime = time.Now()
}
execSeconds := endTime.Sub(item.StartTime).Seconds()
list[i].TotalTime = int(execSeconds)
}
}
2017-03-10 09:24:06 +00:00
2017-04-02 02:38:49 +00:00
return list, err
2017-03-10 09:24:06 +00:00
}
2017-04-13 09:35:59 +00:00
// 清空表
func (taskLog *TaskLog) Clear() (int64, error) {
return Db.Where("1=1").Delete(taskLog);
}
// 删除N个月前的日志
func (taskLog *TaskLog) Remove(id int) (int64, error) {
t := time.Now().AddDate(0, -id, 0)
return Db.Where("start_time <= ?", t.Format(DefaultTimeFormat)).Delete(taskLog)
2017-03-10 09:24:06 +00:00
}
2017-04-23 06:11:53 +00:00
func (taskLog *TaskLog) Total(params CommonMap) (int64, error) {
session := Db.NewSession()
defer session.Close()
2017-04-23 06:11:53 +00:00
taskLog.parseWhere(session, params)
return session.Count(taskLog)
}
// 解析where
func (taskLog *TaskLog) parseWhere(session *xorm.Session, params CommonMap) {
if len(params) == 0 {
return
}
taskId, ok := params["TaskId"]
if ok && taskId.(int) > 0 {
session.And("task_id = ?", taskId)
}
protocol, ok := params["Protocol"]
if ok && protocol.(int) > 0 {
session.And("protocol = ?", protocol)
}
status, ok := params["Status"]
if ok && status.(int) > -1 {
session.And("status = ?", status)
}
2017-04-13 09:35:59 +00:00
}