122 lines
3.3 KiB
Go
122 lines
3.3 KiB
Go
// Package main provides a joj3 executable, which runs various stages based on
|
|
// configuration files and commit message. The output is a JSON file.
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"log/slog"
|
|
"os"
|
|
"strings"
|
|
|
|
joj3Conf "github.com/joint-online-judge/JOJ3/cmd/joj3/conf"
|
|
"github.com/joint-online-judge/JOJ3/cmd/joj3/env"
|
|
"github.com/joint-online-judge/JOJ3/cmd/joj3/stage"
|
|
internalStage "github.com/joint-online-judge/JOJ3/internal/stage"
|
|
)
|
|
|
|
var (
|
|
confFileRoot string
|
|
confFileName string
|
|
fallbackConfFileName string
|
|
tag string
|
|
printVersion *bool
|
|
Version string = "debug"
|
|
)
|
|
|
|
func init() {
|
|
flag.StringVar(&confFileRoot, "conf-root", ".", "root path for all config files")
|
|
flag.StringVar(&confFileName, "conf-name", "conf.json", "filename for config files")
|
|
flag.StringVar(&fallbackConfFileName, "fallback-conf-name", "", "filename for the fallback config file in conf-root, leave empty to use conf-name")
|
|
flag.StringVar(&tag, "tag", "", "tag to trigger the running, when non-empty, should equal to the scope in msg")
|
|
printVersion = flag.Bool("version", false, "print current version")
|
|
}
|
|
|
|
func mainImpl() (err error) {
|
|
conf := new(joj3Conf.Conf)
|
|
|
|
logger := slog.New(slog.NewTextHandler(os.Stderr, nil))
|
|
slog.SetDefault(logger)
|
|
|
|
// parse flag & conf file
|
|
flag.Parse()
|
|
if *printVersion {
|
|
fmt.Println(Version)
|
|
return nil
|
|
}
|
|
if fallbackConfFileName == "" {
|
|
fallbackConfFileName = confFileName
|
|
}
|
|
slog.Info("start joj3", "version", Version)
|
|
commitMsg, err := joj3Conf.GetCommitMsg()
|
|
if err != nil {
|
|
slog.Error("get commit msg", "error", err)
|
|
return err
|
|
}
|
|
env.Attr.CommitMsg = commitMsg
|
|
confPath, confStat, conventionalCommit, err := joj3Conf.GetConfPath(
|
|
confFileRoot, confFileName, fallbackConfFileName, commitMsg, tag,
|
|
)
|
|
if err != nil {
|
|
slog.Error("get conf path", "error", err)
|
|
return err
|
|
}
|
|
slog.Info("try to load conf", "path", confPath)
|
|
conf, err = joj3Conf.ParseConfFile(confPath)
|
|
if err != nil {
|
|
slog.Error("parse conf", "error", err)
|
|
return err
|
|
}
|
|
env.Attr.ConfName = conf.Name
|
|
env.Attr.OutputPath = conf.Stage.OutputPath
|
|
slog.Debug("conf loaded", "conf", conf, "joj3 version", Version)
|
|
if err := setupSlog(conf); err != nil {
|
|
slog.Error("setup slog", "error", err)
|
|
return err
|
|
}
|
|
|
|
// log conf file info
|
|
confSHA256, err := joj3Conf.GetSHA256(confPath)
|
|
if err != nil {
|
|
slog.Error("get sha256", "error", err)
|
|
return err
|
|
}
|
|
slog.Info("conf info", "sha256", confSHA256, "modTime", confStat.ModTime(),
|
|
"size", confStat.Size())
|
|
if err := joj3Conf.CheckExpire(conf); err != nil {
|
|
slog.Error("conf check expire", "error", err)
|
|
return err
|
|
}
|
|
|
|
// run stages
|
|
groups := joj3Conf.MatchGroups(conf, conventionalCommit)
|
|
env.Attr.Groups = strings.Join(groups, ",")
|
|
env.Set()
|
|
_, forceQuitStageName, err := stage.Run(
|
|
conf,
|
|
groups,
|
|
func(
|
|
stageResults []internalStage.StageResult,
|
|
forceQuitStageName string,
|
|
) {
|
|
env.Attr.ForceQuitStageName = forceQuitStageName
|
|
env.Set()
|
|
},
|
|
)
|
|
if err != nil {
|
|
slog.Error("stage run", "error", err)
|
|
}
|
|
if forceQuitStageName != "" {
|
|
slog.Info("stage force quit", "name", forceQuitStageName)
|
|
return fmt.Errorf("stage force quit with name %s", forceQuitStageName)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
if err := mainImpl(); err != nil {
|
|
slog.Error("main exit", "error", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|