-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.go
159 lines (133 loc) · 3.03 KB
/
main.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
package main
import (
"bytes"
"encoding/json"
"errors"
"net/http"
"os"
"github.com/go-playground/validator"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/sirupsen/logrus"
)
type (
CustomValidator struct {
validator *validator.Validate
}
runReq struct {
ID string `json:"id" validate:"required"`
Code string `json:"code" validate:"required"`
Language string `json:"language" validate:"required"`
Variant string `json:"variant" validate:"required"`
}
runCRes struct {
Message string `json:"message"`
Error string `json:"error"`
Stdout string `json:"stdout"`
Stderr string `json:"stderr"`
ExecDuration int64 `json:"exec_duration"`
MemUsage int64 `json:"mem_usage"`
}
)
type Language int
const (
Python = iota + 1
C
Cpp
Golang
)
func (s Language) String() string {
return toString[s]
}
var toString = map[Language]string{
Python: "python",
C: "c",
Cpp: "cpp",
Golang: "go",
}
var toID = map[string]Language{
"python": Python,
"c": C,
"cpp": Cpp,
"go": Golang,
}
// MarshalJSON marshals the enum as a quoted json string
func (s Language) MarshalJSON() ([]byte, error) {
buffer := bytes.NewBufferString(`"`)
buffer.WriteString(toString[s])
buffer.WriteString(`"`)
return buffer.Bytes(), nil
}
// UnmarshalJSON unmashals a quoted json string to the enum value
func (s *Language) UnmarshalJSON(b []byte) error {
var j string
err := json.Unmarshal(b, &j)
if err != nil {
return err
}
if toID[j] == 0 {
return errors.New("invalid language")
}
*s = toID[j]
return nil
}
func main() {
e := echo.New()
e.Validator = &CustomValidator{validator: validator.New()}
e.Use(middleware.Logger())
e.Use(middleware.Recover())
e.POST("/run", handleCodeRun)
e.GET("/health", health)
e.Logger.Fatal(e.Start(":8080"))
}
func (cv *CustomValidator) Validate(i interface{}) error {
if err := cv.validator.Struct(i); err != nil {
return echo.NewHTTPError(http.StatusBadRequest, err.Error())
}
return nil
}
func health(c echo.Context) error {
return c.String(http.StatusOK, "OK")
}
func handleCodeRun(c echo.Context) error {
req := new(runReq)
err := c.Bind(req)
if err != nil {
return err
}
err = c.Validate(req)
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, err.Error())
}
// Write code to file
f, err := os.Create("/tmp/" + req.ID)
if err != nil {
logrus.WithError(err).Error()
return c.JSON(http.StatusInternalServerError, runCRes{
Stdout: "",
Stderr: err.Error(),
})
}
defer f.Close()
_, err = f.WriteString(req.Code)
if err != nil {
logrus.WithError(err).Error()
return c.JSON(http.StatusInternalServerError, runCRes{
Stdout: "",
Stderr: err.Error(),
})
}
// Call language handler
switch toID[req.Language] {
case Python:
return pythonHandler(c, req)
case C:
return cHandler(c, req)
case Cpp:
return cppHandler(c, req)
case Golang:
return golangHandler(c, req)
default:
return echo.NewHTTPError(http.StatusBadRequest, "Invalid language")
}
}