-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathexecution.go
105 lines (81 loc) · 1.91 KB
/
execution.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
// Copyright 2014 The Cactus Authors. All rights reserved.
package data
import (
"database/sql"
"time"
"labix.org/v2/mgo/bson"
)
type Execution struct {
Id int64 `json:"id"`
SubmissionId int64 `json:"submissionId"`
Status int `json:"status"`
Build struct {
Error string `json:"error"`
Usages struct {
Cpu float64 `json:"cpu"`
Memory int `json:"memory"`
} `json:"usages"`
} `json:"build"`
Verdict Verdict `json:"verdict"`
Tests []struct {
OutputKey string `json:"outputKey"`
Difference int `json:"difference"`
Verdict Verdict `json:"verdict"`
Usages struct {
Cpu float64 `json:"cpu"`
Memory int `json:"memory"`
} `json:"usages"`
Points int `json:"points"`
} `json:"tests"`
Apply bool `json:"apply"`
Created time.Time `json:"created"`
Modified time.Time `json:"modified"`
}
func GetExecution(id int64) (*Execution, error) {
b := []byte{}
err := db.QueryRow("SELECT struct FROM executions WHERE id=?", id).
Scan(&b)
if err == sql.ErrNoRows {
return nil, nil
}
if err != nil {
return nil, err
}
e := &Execution{}
err = bson.Unmarshal(b, e)
if err != nil {
return nil, err
}
e.Id = id
return e, nil
}
func (e *Execution) Submission() (*Submission, error) {
return GetSubmission(e.SubmissionId)
}
func (e *Execution) Put() error {
e.Modified = time.Now()
if e.Id == 0 {
e.Created = e.Modified
b, err := bson.Marshal(e)
if err != nil {
return err
}
res, err := db.Exec("INSERT INTO executions(struct, created, modified) VALUES(?, ?, ?)", b, e.Created, e.Modified)
if err != nil {
return err
}
e.Id, err = res.LastInsertId()
return err
} else {
b, err := bson.Marshal(e)
if err != nil {
return err
}
_, err = db.Exec("UPDATE executions SET struct=?, modified=? WHERE id=?", b, e.Modified, e.Id)
return err
}
}
func (e *Execution) Del() error {
_, err := db.Exec("DELETE FROM executions WHERE id=?", e.Id)
return err
}