feat: score & comment conf in result-status and dummy parser
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
张泊明518370910136 2024-09-15 08:26:33 -04:00
parent 92c35f92fc
commit 175685c074
GPG Key ID: D47306D7062CDA9D
5 changed files with 12 additions and 9 deletions

@ -1 +1 @@
Subproject commit af990327ab095c22a383448ad70d915f8d10490b
Subproject commit 4d0d2bfdf8d2998f77b105d9d376ad52f3279fff

@ -1 +1 @@
Subproject commit ac7a2fc912fb51af156cd4babb7e72148ebe1c14
Subproject commit ce71d96228ce42703278ff271356867994f6cb20

@ -1 +1 @@
Subproject commit 36bb5fb15f100078bd3af1027017825932f8c24b
Subproject commit d303867e62383755b963fb7a519631106e82924e

View File

@ -5,6 +5,7 @@ import (
)
type Conf struct {
Score int
Comment string
}
@ -19,7 +20,7 @@ func (*Dummy) Run(results []stage.ExecutorResult, confAny any) (
}
var res []stage.ParserResult
for range results {
res = append(res, stage.ParserResult{Score: 0, Comment: conf.Comment})
res = append(res, stage.ParserResult{Score: conf.Score, Comment: conf.Comment})
}
return res, false, nil
}

View File

@ -7,22 +7,24 @@ import (
"github.com/criyle/go-judge/envexec"
)
type Conf struct{}
type Conf struct {
Score int
Comment string
}
type ResultStatus struct{}
func (*ResultStatus) Run(results []stage.ExecutorResult, confAny any) (
[]stage.ParserResult, bool, error,
) {
// TODO: more conf options
_, err := stage.DecodeConf[Conf](confAny)
conf, err := stage.DecodeConf[Conf](confAny)
if err != nil {
return nil, true, err
}
forceQuit := false
var res []stage.ParserResult
for _, result := range results {
comment := ""
comment := conf.Comment
if result.Status != stage.Status(envexec.StatusAccepted) {
forceQuit = true
comment = fmt.Sprintf(
@ -30,7 +32,7 @@ func (*ResultStatus) Run(results []stage.ExecutorResult, confAny any) (
)
}
res = append(res, stage.ParserResult{
Score: 0,
Score: conf.Score,
Comment: comment,
})
}