This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
forked from cloudfoundry/bosh-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
job.go
100 lines (77 loc) · 2.57 KB
/
job.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
package job
import (
bosherr "github.com/cloudfoundry/bosh-utils/errors"
biproperty "github.com/cloudfoundry/bosh-utils/property"
boshsys "github.com/cloudfoundry/bosh-utils/system"
boshpkg "github.com/cloudfoundry/bosh-cli/release/pkg"
. "github.com/cloudfoundry/bosh-cli/release/resource"
)
type ByName []*Job
func (a ByName) Len() int { return len(a) }
func (a ByName) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func (a ByName) Less(i, j int) bool { return a[i].Name() < a[j].Name() }
type Job struct {
resource Resource
Templates map[string]string
PackageNames []string
Packages []boshpkg.Compilable
Properties map[string]PropertyDefinition
extractedPath string
fs boshsys.FileSystem
}
type PropertyDefinition struct {
Description string
Default biproperty.Property
}
func NewJob(resource Resource) *Job {
return &Job{resource: resource}
}
func NewExtractedJob(resource Resource, extractedPath string, fs boshsys.FileSystem) *Job {
return &Job{resource: resource, extractedPath: extractedPath, fs: fs}
}
func (j Job) Name() string { return j.resource.Name() }
func (j Job) Fingerprint() string { return j.resource.Fingerprint() }
func (j *Job) ArchivePath() string { return j.resource.ArchivePath() }
func (j *Job) ArchiveSHA1() string { return j.resource.ArchiveSHA1() }
func (j *Job) Build(dev, final ArchiveIndex) error { return j.resource.Build(dev, final) }
func (j *Job) Finalize(final ArchiveIndex) error { return j.resource.Finalize(final) }
func (j Job) FindTemplateByValue(value string) (string, bool) {
for template, templateTarget := range j.Templates {
if templateTarget == value {
return template, true
}
}
return "", false
}
// AttachPackages is left for testing convenience
func (j *Job) AttachPackages(packages []*boshpkg.Package) error {
var coms []boshpkg.Compilable
for _, pkg := range packages {
coms = append(coms, pkg)
}
return j.AttachCompilablePackages(coms)
}
func (j *Job) AttachCompilablePackages(packages []boshpkg.Compilable) error {
for _, pkgName := range j.PackageNames {
var found bool
for _, pkg := range packages {
if pkg.Name() == pkgName {
j.Packages = append(j.Packages, pkg)
found = true
break
}
}
if !found {
errMsg := "Expected to find package '%s' since it's a dependency of job '%s'"
return bosherr.Errorf(errMsg, pkgName, j.Name())
}
}
return nil
}
func (j Job) ExtractedPath() string { return j.extractedPath }
func (j Job) CleanUp() error {
if j.fs != nil && len(j.extractedPath) > 0 {
return j.fs.RemoveAll(j.extractedPath)
}
return nil
}