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
|
package taskqueue
import (
"bytes"
"context"
"encoding/json"
"fmt"
"net/http"
"github.com/nsfisis/iosdc-japan-2024-albatross/backend/db"
)
type processor struct {
q *db.Queries
}
func newProcessor(q *db.Queries) processor {
return processor{
q: q,
}
}
func (p *processor) doProcessTaskCreateSubmissionRecord(
ctx context.Context,
payload *TaskPayloadCreateSubmissionRecord,
) (*TaskResultCreateSubmissionRecord, error) {
// TODO: upsert
submissionID, err := p.q.CreateSubmission(ctx, db.CreateSubmissionParams{
GameID: int32(payload.GameID()),
UserID: int32(payload.UserID()),
Code: payload.Code(),
CodeSize: int32(payload.CodeSize),
})
if err != nil {
return nil, err
}
return &TaskResultCreateSubmissionRecord{
TaskPayload: payload,
SubmissionID: int(submissionID),
}, nil
}
func (p *processor) doProcessTaskCompileSwiftToWasm(
_ context.Context,
payload *TaskPayloadCompileSwiftToWasm,
) (*TaskResultCompileSwiftToWasm, error) {
type swiftcRequestData struct {
MaxDuration int `json:"max_duration_ms"`
Code string `json:"code"`
}
type swiftcResponseData struct {
Status string `json:"status"`
Stdout string `json:"stdout"`
Stderr string `json:"stderr"`
}
reqData := swiftcRequestData{
MaxDuration: 5000,
Code: payload.Code(),
}
reqJSON, err := json.Marshal(reqData)
if err != nil {
return nil, fmt.Errorf("json.Marshal failed: %v", err)
}
res, err := http.Post("http://worker:80/api/swiftc", "application/json", bytes.NewBuffer(reqJSON))
if err != nil {
return nil, fmt.Errorf("http.Post failed: %v", err)
}
resData := swiftcResponseData{}
if err := json.NewDecoder(res.Body).Decode(&resData); err != nil {
return nil, fmt.Errorf("json.Decode failed: %v", err)
}
return &TaskResultCompileSwiftToWasm{
TaskPayload: payload,
Status: resData.Status,
Stdout: resData.Stdout,
Stderr: resData.Stderr,
}, nil
}
func (p *processor) doProcessTaskCompileWasmToNativeExecutable(
_ context.Context,
payload *TaskPayloadCompileWasmToNativeExecutable,
) (*TaskResultCompileWasmToNativeExecutable, error) {
type wasmcRequestData struct {
MaxDuration int `json:"max_duration_ms"`
Code string `json:"code"`
}
type wasmcResponseData struct {
Status string `json:"status"`
Stdout string `json:"stdout"`
Stderr string `json:"stderr"`
}
reqData := wasmcRequestData{
MaxDuration: 5000,
Code: payload.Code(),
}
reqJSON, err := json.Marshal(reqData)
if err != nil {
return nil, fmt.Errorf("json.Marshal failed: %v", err)
}
res, err := http.Post("http://worker:80/api/wasmc", "application/json", bytes.NewBuffer(reqJSON))
if err != nil {
return nil, fmt.Errorf("http.Post failed: %v", err)
}
resData := wasmcResponseData{}
if err := json.NewDecoder(res.Body).Decode(&resData); err != nil {
return nil, fmt.Errorf("json.Decode failed: %v", err)
}
return &TaskResultCompileWasmToNativeExecutable{
TaskPayload: payload,
Status: resData.Status,
Stdout: resData.Stdout,
Stderr: resData.Stderr,
}, nil
}
func (p *processor) doProcessTaskRunTestcase(
_ context.Context,
payload *TaskPayloadRunTestcase,
) (*TaskResultRunTestcase, error) {
type testrunRequestData struct {
MaxDuration int `json:"max_duration_ms"`
Code string `json:"code"`
Stdin string `json:"stdin"`
}
type testrunResponseData struct {
Status string `json:"status"`
Stdout string `json:"stdout"`
Stderr string `json:"stderr"`
}
reqData := testrunRequestData{
MaxDuration: 5000,
Code: payload.Code(),
Stdin: payload.Stdin,
}
reqJSON, err := json.Marshal(reqData)
if err != nil {
return nil, fmt.Errorf("json.Marshal failed: %v", err)
}
res, err := http.Post("http://worker:80/api/testrun", "application/json", bytes.NewBuffer(reqJSON))
if err != nil {
return nil, fmt.Errorf("http.Post failed: %v", err)
}
resData := testrunResponseData{}
if err := json.NewDecoder(res.Body).Decode(&resData); err != nil {
return nil, fmt.Errorf("json.Decode failed: %v", err)
}
return &TaskResultRunTestcase{
TaskPayload: payload,
Status: resData.Status,
Stdout: resData.Stdout,
Stderr: resData.Stderr,
}, nil
}
|