forked from mitchellh/gox
-
Notifications
You must be signed in to change notification settings - Fork 2
/
platform_flag.go
272 lines (234 loc) · 6.19 KB
/
platform_flag.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
package main
import (
"flag"
"fmt"
"strings"
)
// PlatformFlag is a flag.Value (and flag.Getter) implementation that
// is used to track the os/arch flags on the command-line.
type PlatformFlag struct {
OS []string
Arch []string
OSArch []Platform
}
// Platforms returns the list of platforms that were set by this flag.
// The default set of platforms must be passed in.
func (p *PlatformFlag) Platforms(supported []Platform) []Platform {
// NOTE: Reading this method alone is a bit hard to understand. It
// is much easier to understand this method if you pair this with the
// table of test cases it has.
// Build a list of OS and archs NOT to build
ignoreArch := make(map[string]struct{})
includeArch := make(map[string]struct{})
ignoreOS := make(map[string]struct{})
includeOS := make(map[string]struct{})
ignoreOSArch := make(map[string]Platform)
includeOSArch := make(map[string]Platform)
for _, v := range p.Arch {
if v[0] == '!' {
ignoreArch[v[1:]] = struct{}{}
} else {
includeArch[v] = struct{}{}
}
}
for _, v := range p.OS {
if v[0] == '!' {
ignoreOS[v[1:]] = struct{}{}
} else {
includeOS[v] = struct{}{}
}
}
for _, v := range p.OSArch {
if v.OS[0] == '!' {
v = Platform{
OS: v.OS[1:],
Arch: v.Arch,
}
ignoreOSArch[v.String()] = v
} else {
includeOSArch[v.String()] = v
}
}
// We're building a list of new platforms, so build the list
// based only on the configured OS/arch pairs.
var prefilter []Platform = nil
if len(includeOSArch) > 0 {
prefilter = make([]Platform, 0, len(p.Arch)*len(p.OS)+len(includeOSArch))
for _, v := range includeOSArch {
prefilter = append(prefilter, v)
}
}
if len(includeOS) > 0 && len(includeArch) > 0 {
// Build up the list of prefiltered by what is specified
if prefilter == nil {
prefilter = make([]Platform, 0, len(p.Arch)*len(p.OS))
}
for _, os := range p.OS {
if _, ok := includeOS[os]; !ok {
continue
}
for _, arch := range p.Arch {
if _, ok := includeArch[arch]; !ok {
continue
}
prefilter = append(prefilter, Platform{
OS: os,
Arch: arch,
})
}
}
} else if len(includeOS) > 0 {
// Build up the list of prefiltered by what is specified
if prefilter == nil {
prefilter = make([]Platform, 0, len(p.Arch)*len(p.OS))
}
for _, os := range p.OS {
for _, platform := range supported {
if platform.OS == os {
prefilter = append(prefilter, platform)
}
}
}
}
if prefilter != nil {
// Remove any that aren't supported
result := make([]Platform, 0, len(prefilter))
for _, pending := range prefilter {
found := false
for _, platform := range supported {
if pending.String() == platform.String() {
found = true
break
}
}
if found {
add := pending
add.Default = false
result = append(result, add)
}
}
prefilter = result
}
if prefilter == nil {
prefilter = make([]Platform, 0, len(supported))
for _, v := range supported {
if v.Default {
add := v
add.Default = false
prefilter = append(prefilter, add)
}
}
}
// Go through each default platform and filter out the bad ones
result := make([]Platform, 0, len(prefilter))
for _, platform := range prefilter {
if len(ignoreOSArch) > 0 {
if _, ok := ignoreOSArch[platform.String()]; ok {
continue
}
}
// We only want to check the components (OS and Arch) if we didn't
// specifically ask to include it via the osarch.
checkComponents := true
if len(includeOSArch) > 0 {
if _, ok := includeOSArch[platform.String()]; ok {
checkComponents = false
}
}
if checkComponents {
if len(ignoreArch) > 0 {
if _, ok := ignoreArch[platform.Arch]; ok {
continue
}
}
if len(ignoreOS) > 0 {
if _, ok := ignoreOS[platform.OS]; ok {
continue
}
}
if len(includeArch) > 0 {
if _, ok := includeArch[platform.Arch]; !ok {
continue
}
}
if len(includeOS) > 0 {
if _, ok := includeOS[platform.OS]; !ok {
continue
}
}
}
result = append(result, platform)
}
return result
}
// ArchFlagValue returns a flag.Value that can be used with the flag
// package to collect the arches for the flag.
func (p *PlatformFlag) ArchFlagValue() flag.Value {
return (*appendStringValue)(&p.Arch)
}
// OSFlagValue returns a flag.Value that can be used with the flag
// package to collect the operating systems for the flag.
func (p *PlatformFlag) OSFlagValue() flag.Value {
return (*appendStringValue)(&p.OS)
}
// OSArchFlagValue returns a flag.Value that can be used with the flag
// package to collect complete os and arch pairs for the flag.
func (p *PlatformFlag) OSArchFlagValue() flag.Value {
return (*appendPlatformValue)(&p.OSArch)
}
// appendPlatformValue is a flag.Value that appends a full platform (os/arch)
// to a list where the values from space-separated lines. This is used to
// satisfy the -osarch flag.
type appendPlatformValue []Platform
func (s *appendPlatformValue) String() string {
return ""
}
func (s *appendPlatformValue) Set(value string) error {
if value == "" {
return nil
}
for _, v := range strings.Split(value, " ") {
parts := strings.Split(v, "/")
if len(parts) != 2 {
return fmt.Errorf(
"Invalid platform syntax: %s should be os/arch", v)
}
platform := Platform{
OS: strings.ToLower(parts[0]),
Arch: strings.ToLower(parts[1]),
}
s.appendIfMissing(&platform)
}
return nil
}
func (s *appendPlatformValue) appendIfMissing(value *Platform) {
for _, existing := range *s {
if existing == *value {
return
}
}
*s = append(*s, *value)
}
// appendStringValue is a flag.Value that appends values to the list,
// where the values come from space-separated lines. This is used to
// satisfy the -os="windows linux" flag to become []string{"windows", "linux"}
type appendStringValue []string
func (s *appendStringValue) String() string {
return strings.Join(*s, " ")
}
func (s *appendStringValue) Set(value string) error {
for _, v := range strings.Split(value, " ") {
if v != "" {
s.appendIfMissing(strings.ToLower(v))
}
}
return nil
}
func (s *appendStringValue) appendIfMissing(value string) {
for _, existing := range *s {
if existing == value {
return
}
}
*s = append(*s, value)
}