gocron/models/task_log.go

63 lines
1.6 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 (
"time"
)
2017-03-10 09:24:06 +00:00
2017-03-23 05:31:16 +00:00
// 任务执行日志
2017-04-02 02:19:52 +00:00
type TaskLog struct {
Id int `xorm:"int pk autoincr"`
TaskId int `xorm:"int not null"` // 任务ID
StartTime time.Time `xorm:"datetime created"` // 开始执行时间
EndTime time.Time `xorm:"datetime updated"` // 执行完成(失败)时间
Status Status `xorm:"tinyint notnull default 1"` // 状态 1:执行中 2:执行完毕 0:执行失败
Result string `xorm:"varchar(65535) notnull defalut '' "` // 执行结果
Page int `xorm:"-"`
PageSize int `xorm:"-"`
}
func (taskLog *TaskLog) Create() (insertId int, err error) {
2017-03-10 09:24:06 +00:00
taskLog.Status = Running
2017-04-02 02:19:52 +00:00
_, err = Db.Insert(taskLog)
2017-03-24 09:55:44 +00:00
if err == nil {
insertId = taskLog.Id
}
return
2017-03-10 09:24:06 +00:00
}
// 更新
2017-04-02 02:19:52 +00:00
func (taskLog *TaskLog) Update(id int, data CommonMap) (int64, error) {
2017-03-10 09:24:06 +00:00
return Db.Table(taskLog).ID(id).Update(data)
}
2017-04-02 02:19:52 +00:00
func (taskLog *TaskLog) setStatus(id int, status Status) (int64, error) {
2017-03-10 09:24:06 +00:00
return taskLog.Update(id, CommonMap{"status": status})
}
2017-04-02 02:19:52 +00:00
func (taskLog *TaskLog) List() ([]TaskLog, error) {
2017-03-10 09:24:06 +00:00
taskLog.parsePageAndPageSize()
list := make([]TaskLog, 0)
err := Db.Desc("id").Limit(taskLog.PageSize, taskLog.pageLimitOffset()).Find(&list)
return list, err
}
2017-04-02 02:19:52 +00:00
func (task *Task) Total() (int64, error) {
2017-03-10 09:24:06 +00:00
return Db.Count(task)
}
2017-04-02 02:19:52 +00:00
func (task *Task) parsePageAndPageSize() {
if task.Page <= 0 {
2017-03-10 09:24:06 +00:00
task.Page = Page
}
2017-04-02 02:19:52 +00:00
if task.PageSize >= 0 || task.PageSize > MaxPageSize {
2017-03-10 09:24:06 +00:00
task.PageSize = PageSize
}
}
2017-04-02 02:19:52 +00:00
func (task *Task) pageLimitOffset() int {
2017-03-10 09:24:06 +00:00
return (task.Page - 1) * task.PageSize
2017-04-02 02:19:52 +00:00
}