-
Notifications
You must be signed in to change notification settings - Fork 152
/
registry.go
219 lines (186 loc) · 4.96 KB
/
registry.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
// Copyright 2024 The PipeCD Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package toolregistry installs and manages the needed tools
// such as kubectl, helm... for executing tasks in pipeline.
package toolregistry
import (
"context"
"fmt"
"os"
"path/filepath"
"sync"
"go.uber.org/zap"
"golang.org/x/sync/singleflight"
)
// Registry provides functions to get path to the needed tools.
type Registry interface {
Kubectl(ctx context.Context, version string) (string, bool, error)
Kustomize(ctx context.Context, version string) (string, bool, error)
Helm(ctx context.Context, version string) (string, bool, error)
Terraform(ctx context.Context, version string) (string, bool, error)
}
var defaultRegistry *registry
// DefaultRegistry returns the shared registry.
func DefaultRegistry() Registry {
return defaultRegistry
}
// InitDefaultRegistry initializes the default registry.
// This also preloads the pre-installed tools in the binDir.
func InitDefaultRegistry(binDir string, logger *zap.Logger) error {
logger = logger.Named("tool-registry")
if err := os.MkdirAll(binDir, os.ModePerm); err != nil {
return err
}
tools, err := loadPreinstalledTool(binDir)
if err != nil {
return err
}
logger.Info("successfully loaded the pre-installed tools", zap.Any("tools", tools))
defaultRegistry = ®istry{
binDir: binDir,
versions: tools,
installGroup: &singleflight.Group{},
logger: logger,
}
return nil
}
func loadPreinstalledTool(binDir string) (map[string]struct{}, error) {
tools := make(map[string]struct{})
err := filepath.Walk(binDir, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if path == binDir {
return nil
}
if info.IsDir() {
return filepath.SkipDir
}
if !info.Mode().IsRegular() {
return nil
}
name := filepath.Base(path)
tools[name] = struct{}{}
return nil
})
if err != nil {
return nil, err
}
return tools, nil
}
const (
kubectlPrefix = "kubectl"
kustomizePrefix = "kustomize"
helmPrefix = "helm"
terraformPrefix = "terraform"
)
type registry struct {
binDir string
versions map[string]struct{}
mu sync.RWMutex
installGroup *singleflight.Group
logger *zap.Logger
}
func (r *registry) Kubectl(ctx context.Context, version string) (string, bool, error) {
name := kubectlPrefix
if version != "" {
name = fmt.Sprintf("%s-%s", kubectlPrefix, version)
}
path := filepath.Join(r.binDir, name)
r.mu.RLock()
_, ok := r.versions[name]
r.mu.RUnlock()
if ok {
return path, false, nil
}
_, err, _ := r.installGroup.Do(name, func() (interface{}, error) {
return nil, r.installKubectl(ctx, version)
})
if err != nil {
return "", true, err
}
r.mu.Lock()
r.versions[name] = struct{}{}
r.mu.Unlock()
return path, true, nil
}
func (r *registry) Kustomize(ctx context.Context, version string) (string, bool, error) {
name := kustomizePrefix
if version != "" {
name = fmt.Sprintf("%s-%s", kustomizePrefix, version)
}
path := filepath.Join(r.binDir, name)
r.mu.RLock()
_, ok := r.versions[name]
r.mu.RUnlock()
if ok {
return path, false, nil
}
_, err, _ := r.installGroup.Do(name, func() (interface{}, error) {
return nil, r.installKustomize(ctx, version)
})
if err != nil {
return "", true, err
}
r.mu.Lock()
r.versions[name] = struct{}{}
r.mu.Unlock()
return path, true, nil
}
func (r *registry) Helm(ctx context.Context, version string) (string, bool, error) {
name := helmPrefix
if version != "" {
name = fmt.Sprintf("%s-%s", helmPrefix, version)
}
path := filepath.Join(r.binDir, name)
r.mu.RLock()
_, ok := r.versions[name]
r.mu.RUnlock()
if ok {
return path, false, nil
}
_, err, _ := r.installGroup.Do(name, func() (interface{}, error) {
return nil, r.installHelm(ctx, version)
})
if err != nil {
return "", true, err
}
r.mu.Lock()
r.versions[name] = struct{}{}
r.mu.Unlock()
return path, true, nil
}
func (r *registry) Terraform(ctx context.Context, version string) (string, bool, error) {
name := terraformPrefix
if version != "" {
name = fmt.Sprintf("%s-%s", terraformPrefix, version)
}
path := filepath.Join(r.binDir, name)
r.mu.RLock()
_, ok := r.versions[name]
r.mu.RUnlock()
if ok {
return path, false, nil
}
_, err, _ := r.installGroup.Do(name, func() (interface{}, error) {
return nil, r.installTerraform(ctx, version)
})
if err != nil {
return "", true, err
}
r.mu.Lock()
r.versions[name] = struct{}{}
r.mu.Unlock()
return path, true, nil
}