54 lines
1.2 KiB
Go
54 lines
1.2 KiB
Go
package cpplint
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"strconv"
|
|
|
|
"github.com/joint-online-judge/JOJ3/internal/stage"
|
|
)
|
|
|
|
type Conf struct {
|
|
Score int
|
|
}
|
|
|
|
type Cpplint struct{}
|
|
|
|
func Parse(executorResult stage.ExecutorResult, conf Conf) stage.ParserResult {
|
|
stderr := executorResult.Files["stderr"]
|
|
pattern := `(.+):(\d+): (.+) \[(.+)\] \[(\d)]\n`
|
|
re := regexp.MustCompile(pattern)
|
|
matches := re.FindAllStringSubmatch(stderr, -1)
|
|
score := 0
|
|
comment := ""
|
|
for _, match := range matches {
|
|
fileName := match[1]
|
|
lineNum, _ := strconv.Atoi(match[2])
|
|
message := match[3]
|
|
category := match[4]
|
|
confidence, _ := strconv.Atoi(match[5])
|
|
score -= confidence
|
|
// TODO: add more detailed comment, just re-assemble for now
|
|
comment += fmt.Sprintf("%s:%d: %s [%s] [%d]\n",
|
|
fileName, lineNum, message, category, confidence)
|
|
}
|
|
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
|
|
for _, result := range results {
|
|
res = append(res, Parse(result, *conf))
|
|
}
|
|
return res, false, nil
|
|
}
|