-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarter.go
52 lines (46 loc) · 1.04 KB
/
starter.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
package judger
import (
"fmt"
"github.com/Rabbit-OJ/Rabbit-OJ-Judger/config"
"github.com/Rabbit-OJ/Rabbit-OJ-Judger/mq"
"github.com/Rabbit-OJ/Rabbit-OJ-Judger/protobuf"
"github.com/golang/protobuf/proto"
"strconv"
"time"
)
type StarterType struct {
Code []byte
IsContest bool
Sid uint32
Tid uint32
Version uint32
Language string
TimeLimit uint32
SpaceLimit uint32
CompMode string
}
func Starter(info *StarterType) error {
request := &protobuf.JudgeRequest{
Sid: info.Sid,
Tid: info.Tid,
Version: strconv.FormatUint(uint64(info.Version), 10),
Language: info.Language,
TimeLimit: info.TimeLimit,
SpaceLimit: info.SpaceLimit,
CompMode: info.CompMode,
Code: info.Code,
Time: time.Now().Unix(),
IsContest: info.IsContest,
}
pro, err := proto.Marshal(request)
if err != nil {
return err
}
if err := mq.PublishMessageSync(
config.JudgeRequestTopicName,
[]byte(fmt.Sprintf("%d%d", info.Sid, info.Tid)),
pro); err != nil {
return err
}
return nil
}