1
0
mirror of https://github.com/nxshock/gron.git synced 2024-11-27 03:41:00 +05:00
gron/job.go

147 lines
3.6 KiB
Go
Raw Normal View History

2022-03-26 13:23:39 +05:00
package main
import (
2022-03-29 21:38:04 +05:00
"io"
2022-03-26 13:23:39 +05:00
"os"
"os/exec"
"path/filepath"
"strings"
"sync"
"time"
"github.com/BurntSushi/toml"
2022-03-29 21:38:04 +05:00
formatter "github.com/antonfisher/nested-logrus-formatter"
2022-03-26 13:23:39 +05:00
log "github.com/sirupsen/logrus"
)
2022-03-29 19:45:31 +05:00
// JobConfig is a TOML representation of job
2022-03-26 13:23:39 +05:00
type JobConfig struct {
2022-03-29 21:38:04 +05:00
Cron string // cron decription
Command string // command for execution
Description string // job description
NumberOfRestartAttemts int
RestartSec int // the time to sleep before restarting a job (seconds)
RestartRule RestartRule // Configures whether the job shall be restarted when the job process exits
2022-03-26 13:23:39 +05:00
}
2022-03-28 19:55:43 +05:00
type Job struct {
Name string // from filename
2022-03-29 21:38:04 +05:00
JobConfig JobConfig
2022-03-28 19:55:43 +05:00
// Fields for stats
CurrentRunningCount int
LastStartTime string
LastEndTime string
LastExecutionDuration string
LastError string
NextLaunch string
}
2022-03-26 20:38:39 +05:00
var globalMutex sync.RWMutex
2022-03-26 13:23:39 +05:00
func readJob(filePath string) (*Job, error) {
var jobConfig JobConfig
_, err := toml.DecodeFile(filePath, &jobConfig)
if err != nil {
return nil, err
}
job := &Job{
2022-03-29 19:45:31 +05:00
Name: strings.TrimSuffix(filepath.Base(filePath), filepath.Ext(filePath)),
JobConfig: jobConfig}
2022-03-26 13:23:39 +05:00
return job, nil
}
2022-03-29 21:38:04 +05:00
func (j *Job) commandAndParams() (command string, params []string) {
2022-03-29 19:45:31 +05:00
quoted := false
items := strings.FieldsFunc(j.JobConfig.Command, func(r rune) bool {
if r == '"' {
quoted = !quoted
}
return !quoted && r == ' '
})
for i := range items {
items[i] = strings.Trim(items[i], `"`)
}
return items[0], items[1:]
}
2022-03-26 13:23:39 +05:00
func (j *Job) Run() {
2022-03-29 21:38:04 +05:00
jobLogFile, _ := os.OpenFile(filepath.Join(config.LogFilesPath, j.Name+".log"), os.O_CREATE|os.O_APPEND|os.O_WRONLY, 0644)
jobLogFile.WriteString("\n")
2022-03-26 13:23:39 +05:00
2022-03-29 21:38:04 +05:00
logWriter := io.MultiWriter(logFile, jobLogFile)
2022-03-26 13:23:39 +05:00
2022-03-29 21:38:04 +05:00
log := log.New()
log.SetFormatter(&formatter.Formatter{
TimestampFormat: config.TimeFormat,
HideKeys: true,
NoColors: true,
TrimMessages: true})
log.SetOutput(logWriter)
logEntry := log.WithField("job", j.Name)
2022-03-26 13:23:39 +05:00
2022-03-29 21:38:04 +05:00
for i := 0; i < j.JobConfig.NumberOfRestartAttemts+1; i++ {
logEntry.Info("Started.")
startTime := time.Now()
2022-03-26 13:23:39 +05:00
2022-03-29 21:38:04 +05:00
globalMutex.Lock()
j.CurrentRunningCount++
j.LastStartTime = startTime.Format(config.TimeFormat)
globalMutex.Unlock()
2022-03-26 13:23:39 +05:00
2022-03-29 21:38:04 +05:00
/**/
command, params := j.commandAndParams()
2022-03-29 19:45:31 +05:00
2022-03-29 21:38:04 +05:00
cmd := exec.Command(command, params...)
cmd.Stdout = jobLogFile
cmd.Stderr = jobLogFile
2022-03-26 13:23:39 +05:00
2022-03-29 21:38:04 +05:00
err := cmd.Run()
if err != nil {
logEntry.Error(err.Error())
globalMutex.Lock()
j.LastError = err.Error()
globalMutex.Unlock()
} else {
globalMutex.Lock()
j.LastError = ""
globalMutex.Unlock()
}
endTime := time.Now()
logEntry.Infof("Finished (%s).", endTime.Sub(startTime).Truncate(time.Second).String())
2022-03-26 13:23:39 +05:00
2022-03-26 20:38:39 +05:00
globalMutex.Lock()
2022-03-29 21:38:04 +05:00
j.CurrentRunningCount--
j.LastEndTime = endTime.Format(config.TimeFormat)
j.LastExecutionDuration = endTime.Sub(startTime).Truncate(time.Second).String()
2022-03-26 20:38:39 +05:00
globalMutex.Unlock()
2022-03-26 13:23:39 +05:00
2022-03-29 21:38:04 +05:00
if err == nil {
break
}
if j.JobConfig.RestartRule == No || j.JobConfig.NumberOfRestartAttemts == 0 {
break
}
2022-03-26 13:23:39 +05:00
2022-03-29 21:38:04 +05:00
if i == 0 {
logEntry.Printf("Job failed, restarting in %d seconds.", j.JobConfig.RestartSec)
} else if i+1 < j.JobConfig.NumberOfRestartAttemts {
logEntry.Printf("Retry attempt №%d of %d failed, restarting in %d seconds.", i, j.JobConfig.NumberOfRestartAttemts, j.JobConfig.RestartSec)
} else {
logEntry.Printf("Retry attempt №%d of %d failed.", i, j.JobConfig.NumberOfRestartAttemts)
}
time.Sleep(time.Duration(j.JobConfig.RestartSec) * time.Second)
}
jobLogFile.Close()
2022-03-26 13:23:39 +05:00
}