-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.go
295 lines (289 loc) · 7.33 KB
/
build.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
package main
import (
"context"
"fmt"
"os"
"os/exec"
"strings"
"sync"
"time"
"github.com/ory/dockertest/v3"
)
const (
statusRunning = "Running"
statusCompleted = "Completed"
statusFailed = "Failed"
)
var (
argsMutex sync.Mutex
envMutex sync.Mutex
workerPoolOnce sync.Once
)
type BuildInfo struct {
ID string
Status string
StartTime time.Time
EndTime time.Time
WorkerNode string
}
type WorkerNode struct {
ID string
Jobs chan Job
quit chan struct{}
}
type Instruction struct {
Directive string
Args string
}
type Job struct {
BuildID string
FileName string
ResultChan chan<- string
BuildInfoChan chan<- BuildInfo
WorkerNode string
Context context.Context
}
func initializeGlobalWorkerPool(numWorkers int) {
workerPoolOnce.Do(func() {
createWorkerPool(numWorkers)
})
}
func createWorkerPool(numWorkers int) []*WorkerNode {
workers := make([]*WorkerNode, numWorkers)
for i := 0; i < numWorkers; i++ {
workers[i] = NewWorkerNode(fmt.Sprintf("worker-%d", i+1))
workers[i].Start()
}
return workers
}
func NewWorkerNode(id string) *WorkerNode {
return &WorkerNode{
ID: id,
Jobs: make(chan Job),
quit: make(chan struct{}),
}
}
func (w *WorkerNode) Start() {
go func() {
for {
select {
case job := <-w.Jobs:
_ = job
case <-w.quit:
return
}
}
}()
}
func (w *WorkerNode) Stop() {
close(w.quit)
}
func listActiveBuilds(buildInfoChan <-chan BuildInfo, outputChan chan<- map[string]BuildInfo, done <-chan struct{}) {
activeBuilds := make(map[string]BuildInfo)
var mutex sync.Mutex
for {
select {
case buildInfo, ok := <-buildInfoChan:
if !ok {
return
}
mutex.Lock()
switch buildInfo.Status {
case statusRunning:
activeBuilds[buildInfo.ID] = buildInfo
case statusCompleted, statusFailed:
delete(activeBuilds, buildInfo.ID)
}
outputChan <- activeBuilds
mutex.Unlock()
case <-done:
return
}
}
}
func processBuild(job Job) {
defer close(job.ResultChan)
defer close(job.BuildInfoChan)
if job.Context == nil {
job.ResultChan <- "Error: job context is nil"
return
}
buildInfo := BuildInfo{
ID: job.BuildID,
Status: statusRunning,
StartTime: time.Now(),
WorkerNode: job.WorkerNode,
}
job.BuildInfoChan <- buildInfo
select {
case <-job.Context.Done():
job.ResultChan <- "Build cancelled"
buildInfo.Status = statusFailed
job.BuildInfoChan <- buildInfo
return
default:
}
if job.FileName == "" {
job.ResultChan <- "Error: please provide a file name"
buildInfo.Status = statusFailed
job.BuildInfoChan <- buildInfo
return
}
instructions, err := parseFile(job.FileName)
if err != nil {
job.ResultChan <- fmt.Sprintf("Error parsing file: %v", err)
buildInfo.Status = statusFailed
job.BuildInfoChan <- buildInfo
return
}
args := make(map[string]string)
env := make(map[string]string)
var wg sync.WaitGroup
totalInstructions := len(instructions)
currentInstruction := 0
var cmdInstruction *Instruction
var concurrentErrors []error
for _, inst := range instructions {
select {
case <-job.Context.Done():
job.ResultChan <- "Build cancelled"
buildInfo.Status = statusFailed
job.BuildInfoChan <- buildInfo
return
default:
currentInstruction++
if inst.Directive == "CMD" {
if cmdInstruction != nil {
job.ResultChan <- fmt.Sprintf("(%d/%d) Error: multiple CMD directives are not allowed", currentInstruction, totalInstructions)
buildInfo.Status = statusFailed
job.BuildInfoChan <- buildInfo
return
}
cmdInstruction = &inst
continue
}
}
if strings.HasPrefix(inst.Directive, "*") {
wg.Add(1)
go func(instruction Instruction, count int) {
defer wg.Done()
err := executeInstructionConcurrent(instruction, args, job.ResultChan)
if err != nil {
job.ResultChan <- fmt.Sprintf("(%d/%d) Error: executing instruction: %v", count, totalInstructions, err)
concurrentErrors = append(concurrentErrors, err)
}
}(inst, currentInstruction)
} else {
err := executeInstruction(inst, args, job.ResultChan)
if err != nil {
job.ResultChan <- fmt.Sprintf("(%d/%d) Error: executing instruction: %v", currentInstruction, totalInstructions, err)
buildInfo.Status = statusFailed
job.BuildInfoChan <- buildInfo
return
}
}
}
wg.Wait()
if len(concurrentErrors) > 0 {
job.ResultChan <- fmt.Sprintf("Errors occurred during concurrent execution: %v", concurrentErrors)
buildInfo.Status = statusFailed
job.BuildInfoChan <- buildInfo
return
}
if cmdInstruction != nil {
err := executeCMD(*cmdInstruction, env, job.ResultChan)
if err != nil {
job.ResultChan <- fmt.Sprintf("(%d/%d) Error: executing CMD instruction: %v", totalInstructions, totalInstructions, err)
buildInfo.Status = statusFailed
} else {
buildInfo.Status = statusCompleted
}
} else {
buildInfo.Status = statusCompleted
}
job.BuildInfoChan <- buildInfo
}
func build(fileName string, buildID string, workerNode string, resultChan chan<- string, buildInfoChan chan<- BuildInfo) {
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute)
defer cancel()
done := make(chan struct{})
job := Job{
BuildID: buildID,
FileName: fileName,
ResultChan: resultChan,
BuildInfoChan: buildInfoChan,
WorkerNode: workerNode,
Context: ctx,
}
go func() {
processBuild(job)
close(done)
}()
select {
case <-ctx.Done():
resultChan <- "Build timed out or was cancelled"
buildInfoChan <- BuildInfo{
ID: buildID,
Status: statusFailed,
EndTime: time.Now(),
WorkerNode: workerNode,
}
case <-done:
}
}
func executeCMD(inst Instruction, env map[string]string, resultChan chan<- string) error {
cmd := exec.Command("sh", "-c", inst.Args)
cmd.Env = os.Environ()
for k, v := range env {
cmd.Env = append(cmd.Env, fmt.Sprintf("%s=%s", k, v))
}
output, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("cmd execution failed: %v", err)
}
resultChan <- fmt.Sprintf("Done: %s\n", string(output))
return nil
}
func execInContainer(inst Instruction, env map[string]string, resultChan chan<- string, containerID *string, repository string, tag string, containerName string) error {
pool, err := dockertest.NewPool("")
if err != nil {
return fmt.Errorf("could not connect to docker: %v", err)
}
var resource *dockertest.Resource
if *containerID == "" {
resource, err = pool.RunWithOptions(&dockertest.RunOptions{
Repository: repository,
Tag: tag,
Name: containerName,
Cmd: []string{"tail", "-f", "/dev/null"},
Env: formatEnv(env),
})
if err != nil {
return fmt.Errorf("could not start resource: %v", err)
}
*containerID = resource.Container.ID
} else {
container, err := pool.Client.InspectContainer(*containerID)
if err != nil {
return fmt.Errorf("could not inspect container: %v", err)
}
resource = &dockertest.Resource{Container: container}
}
execCmd := []string{"/bin/sh", "-c", inst.Args}
output, err := resource.Exec(execCmd, dockertest.ExecOptions{
StdOut: os.Stdout,
StdErr: os.Stderr,
})
if err != nil {
return fmt.Errorf("command execution failed: %v", err)
}
resultChan <- fmt.Sprintf("Done: %v\n", output)
return nil
}
func formatEnv(env map[string]string) []string {
var envSlice []string
for k, v := range env {
envSlice = append(envSlice, fmt.Sprintf("%s=%s", k, v))
}
return envSlice
}