package cpplint import ( "fmt" "regexp" "strings" "github.com/joint-online-judge/JOJ3/internal/stage" "github.com/joint-online-judge/JOJ3/pkg/utils" ) type Match struct { Keywords []string Score int } type Conf struct { Score int Matches []Match Stdout string `default:"stdout"` Stderr string `default:"stderr"` ForceQuitOnDeduct bool `default:"false"` } type Cpplint struct{} func Parse(executorResult stage.ExecutorResult, conf Conf) stage.ParserResult { stderr := executorResult.Files[conf.Stderr] pattern := `(.+):(\d+): (.+) \[(.+)\] \[(\d)]\n` re := regexp.MustCompile(pattern) matches := re.FindAllStringSubmatch(stderr, -1) score := conf.Score comment := "### Test results summary\n\n" categoryCount := map[string]int{} for _, match := range matches { // fileName := match[1] // lineNum, err := strconv.Atoi(match[2]) // if err != nil { // slog.Error("parse lineNum", "error", err) // return stage.ParserResult{ // Score: 0, // Comment: fmt.Sprintf("Unexpected parser error: %s.", err), // } // } // message := match[3] category := match[4] // confidence, err := strconv.Atoi(match[5]) // if err != nil { // slog.Error("parse confidence", "error", err) // return stage.ParserResult{ // Score: 0, // Comment: fmt.Sprintf("Unexpected parser error: %s.", err), // } // } for _, match := range conf.Matches { for _, keyword := range match.Keywords { if strings.Contains(category, keyword) { score -= match.Score } } } parts := strings.Split(category, "/") if len(parts) > 0 { category := parts[0] categoryCount[category] += 1 } } sortedMap := utils.SortMap(categoryCount, func(i, j utils.Pair[string, int]) bool { if i.Value == j.Value { return i.Key < j.Key } return i.Value > j.Value }) for i, kv := range sortedMap { comment += fmt.Sprintf("%d. %s: %d\n", i+1, kv.Key, kv.Value) } return stage.ParserResult{ Score: score, Comment: comment, } } func (*Cpplint) Run(results []stage.ExecutorResult, confAny any) ( []stage.ParserResult, bool, error, ) { conf, err := stage.DecodeConf[Conf](confAny) if err != nil { return nil, true, err } var res []stage.ParserResult forceQuit := false for _, result := range results { parseRes := Parse(result, *conf) if conf.ForceQuitOnDeduct && parseRes.Score < conf.Score { forceQuit = true } res = append(res, parseRes) } return res, forceQuit, nil }