2021-12-16 04:11:33 +00:00
|
|
|
package task
|
|
|
|
|
|
|
|
import (
|
2021-12-18 13:32:46 +00:00
|
|
|
"sync"
|
2021-12-16 04:11:33 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
cron "github.com/robfig/cron/v3"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Reporter chan *Report
|
2021-12-18 13:32:46 +00:00
|
|
|
var started chan struct{}
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
var quit chan struct{}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Reporter = make(chan *Report)
|
|
|
|
started = make(chan struct{}, 1)
|
|
|
|
quit = make(chan struct{}, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
type Receiver func(*Report)
|
|
|
|
|
|
|
|
var ReportReceiver Receiver = func(r *Report) {}
|
2021-12-16 04:11:33 +00:00
|
|
|
|
|
|
|
type Report struct {
|
|
|
|
// Entry
|
|
|
|
Next time.Time `json:"next"`
|
|
|
|
Prev time.Time `json:"prev"`
|
|
|
|
Entry cron.EntryID `json:"entry_id"`
|
|
|
|
|
|
|
|
// Task
|
|
|
|
Name string `json:"name"`
|
|
|
|
ID string `json:"id"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
Group string `json:"grp"`
|
|
|
|
|
|
|
|
// _task
|
|
|
|
Spec string `json:"spec"`
|
|
|
|
Once bool `json:"once"`
|
|
|
|
Args []interface{} `json:"args"`
|
|
|
|
Carry interface{} `json:"carry"`
|
|
|
|
|
|
|
|
// Report
|
|
|
|
Error error `json:"error,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Profile struct {
|
|
|
|
Scheduled []*Report `json:"scheduled"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetProfile() *Profile {
|
2021-12-17 09:27:56 +00:00
|
|
|
p := &Profile{}
|
2021-12-16 04:11:33 +00:00
|
|
|
entries := c.Entries()
|
|
|
|
for i := 0; i < len(entries); i++ {
|
|
|
|
t, ok := entries[i].Job.(*_task)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
r := &Report{
|
|
|
|
Next: entries[i].Next,
|
|
|
|
Prev: entries[i].Prev,
|
|
|
|
Entry: entries[i].ID,
|
|
|
|
Name: t.Task.Name,
|
|
|
|
ID: t.Task.ID,
|
|
|
|
Description: t.Task.Description,
|
|
|
|
Group: t.Task.Group,
|
|
|
|
Spec: t.spec,
|
|
|
|
Once: t.once,
|
|
|
|
Args: t.args,
|
|
|
|
Carry: t.carry,
|
|
|
|
}
|
|
|
|
p.Scheduled = append(p.Scheduled, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
return p
|
|
|
|
}
|