-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcompiler.go
83 lines (72 loc) · 2.19 KB
/
compiler.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package compiler
import (
"errors"
"fmt"
"io/ioutil"
"log"
"os"
"path/filepath"
"strings"
"github.com/MarkLux/JudgeServer/config"
"github.com/MarkLux/Judger_GO"
)
/*
* compile the program in the judger sandbox.
* return the executable file path
*/
func Compile(compileConfig config.CompileConfig, srcPath string, outputDir string) (string, error) {
exePath := filepath.Join(outputDir, compileConfig.ExeName)
// replace param then build the real compile command.
replacements := map[string]string{
"{src_path}": srcPath,
"{exe_dir}": outputDir,
"{exe_path}": exePath,
}
command := compileConfig.CompileCommand.FillWith(replacements)
// log.Println("compile command: ", command)
// file compiler.out contains the ouput of compile progarm's output (rewrite).
compilerOut := filepath.Join(outputDir, "compiler.out")
// split the command into execute path and args.
args := strings.Split(command, " ")
//parse args
result, err := judger.JudgerRun(judger.Config{
MaxCpuTime: compileConfig.MaxCpuTime,
MaxRealTime: compileConfig.MaxRealTime,
MaxMemory: compileConfig.MaxMemory,
MaxStack: 128 * 1024 * 1024,
MaxOutPutSize: judger.UNLIMITED,
MaxProcessNumber: judger.UNLIMITED,
ExePath: args[0],
InputPath: srcPath,
OutputPath: compilerOut,
ErrorPath: compilerOut,
Args: args[1:], // suit new Judger,ignore the exepath
Env: []string{"PATH=" + os.Getenv("PATH")},
LogPath: config.COMPILER_LOG_PATH,
SecCompRuleName: "none",
Uid: config.COMPILER_USER_UID,
Gid: config.COMPILER_GROUP_UID,
})
// debug output
if err != nil {
return "", err
}
if result.Result != judger.SUCCESS {
// log.Printf("Compile Result\n")
// log.Printf("%#v\n", result)
// read the compiler output and
_, err := os.Stat(compilerOut)
var errOut string
if err == nil {
errByte, _ := ioutil.ReadFile(compilerOut)
errOut = string(errByte[:])
log.Println(errOut)
//os.Remove(compilerOut)
} else {
errOut = fmt.Sprintf("Compiler Runtime Error , info %#v", result)
}
return exePath, errors.New(errOut)
}
// os.Remove(compilerOut)
return exePath, nil
}