pat/schedule.go
Chris Keller e68850056e Fix some Go linter errors
* Replace(..., -1) with ReplaceAll
* Variable names hiding packages
* Error messages start with lowercase and no end punctuation
* Don't `defer` in a loop
* Etc.
2021-08-20 21:35:21 +02:00

43 lines
821 B
Go

// Copyright 2016 Martin Hebnes Pedersen (LA5NTA). All rights reserved.
// Use of this source code is governed by the MIT-license that can be
// found in the LICENSE file.
package main
import (
"log"
"time"
"github.com/gorhill/cronexpr"
)
type Job struct {
expr *cronexpr.Expression
cmd string
next time.Time
}
func scheduleLoop() {
jobs := make([]*Job, 0, len(config.Schedule))
for exprStr, cmd := range config.Schedule {
expr := cronexpr.MustParse(exprStr)
jobs = append(jobs, &Job{
expr,
cmd,
expr.Next(time.Now()),
})
}
go func() {
for range time.Tick(time.Second) {
for _, j := range jobs {
if time.Now().Before(j.next) {
continue
}
log.Printf("Executing scheduled command '%s'...", j.cmd)
execCmd(j.cmd)
j.next = j.expr.Next(time.Now())
}
}
}()
}