aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/containerd/containerd/platforms/compare.go
blob: 3ad22a10d0ce1029af8da032662c259c622bceca (plain)
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
/*
   Copyright The containerd 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 platforms

import specs "github.com/opencontainers/image-spec/specs-go/v1"

// MatchComparer is able to match and compare platforms to
// filter and sort platforms.
type MatchComparer interface {
	Matcher

	Less(specs.Platform, specs.Platform) bool
}

// Only returns a match comparer for a single platform
// using default resolution logic for the platform.
//
// For ARMv8, will also match ARMv7, ARMv6 and ARMv5 (for 32bit runtimes)
// For ARMv7, will also match ARMv6 and ARMv5
// For ARMv6, will also match ARMv5
func Only(platform specs.Platform) MatchComparer {
	platform = Normalize(platform)
	if platform.Architecture == "arm" {
		if platform.Variant == "v8" {
			return orderedPlatformComparer{
				matchers: []Matcher{
					&matcher{
						Platform: platform,
					},
					&matcher{
						Platform: specs.Platform{
							Architecture: platform.Architecture,
							OS:           platform.OS,
							OSVersion:    platform.OSVersion,
							OSFeatures:   platform.OSFeatures,
							Variant:      "v7",
						},
					},
					&matcher{
						Platform: specs.Platform{
							Architecture: platform.Architecture,
							OS:           platform.OS,
							OSVersion:    platform.OSVersion,
							OSFeatures:   platform.OSFeatures,
							Variant:      "v6",
						},
					},
					&matcher{
						Platform: specs.Platform{
							Architecture: platform.Architecture,
							OS:           platform.OS,
							OSVersion:    platform.OSVersion,
							OSFeatures:   platform.OSFeatures,
							Variant:      "v5",
						},
					},
				},
			}
		}
		if platform.Variant == "v7" {
			return orderedPlatformComparer{
				matchers: []Matcher{
					&matcher{
						Platform: platform,
					},
					&matcher{
						Platform: specs.Platform{
							Architecture: platform.Architecture,
							OS:           platform.OS,
							OSVersion:    platform.OSVersion,
							OSFeatures:   platform.OSFeatures,
							Variant:      "v6",
						},
					},
					&matcher{
						Platform: specs.Platform{
							Architecture: platform.Architecture,
							OS:           platform.OS,
							OSVersion:    platform.OSVersion,
							OSFeatures:   platform.OSFeatures,
							Variant:      "v5",
						},
					},
				},
			}
		}
		if platform.Variant == "v6" {
			return orderedPlatformComparer{
				matchers: []Matcher{
					&matcher{
						Platform: platform,
					},
					&matcher{
						Platform: specs.Platform{
							Architecture: platform.Architecture,
							OS:           platform.OS,
							OSVersion:    platform.OSVersion,
							OSFeatures:   platform.OSFeatures,
							Variant:      "v5",
						},
					},
				},
			}
		}
	}

	return singlePlatformComparer{
		Matcher: &matcher{
			Platform: platform,
		},
	}
}

// Ordered returns a platform MatchComparer which matches any of the platforms
// but orders them in order they are provided.
func Ordered(platforms ...specs.Platform) MatchComparer {
	matchers := make([]Matcher, len(platforms))
	for i := range platforms {
		matchers[i] = NewMatcher(platforms[i])
	}
	return orderedPlatformComparer{
		matchers: matchers,
	}
}

// Any returns a platform MatchComparer which matches any of the platforms
// with no preference for ordering.
func Any(platforms ...specs.Platform) MatchComparer {
	matchers := make([]Matcher, len(platforms))
	for i := range platforms {
		matchers[i] = NewMatcher(platforms[i])
	}
	return anyPlatformComparer{
		matchers: matchers,
	}
}

// All is a platform MatchComparer which matches all platforms
// with preference for ordering.
var All MatchComparer = allPlatformComparer{}

type singlePlatformComparer struct {
	Matcher
}

func (c singlePlatformComparer) Less(p1, p2 specs.Platform) bool {
	return c.Match(p1) && !c.Match(p2)
}

type orderedPlatformComparer struct {
	matchers []Matcher
}

func (c orderedPlatformComparer) Match(platform specs.Platform) bool {
	for _, m := range c.matchers {
		if m.Match(platform) {
			return true
		}
	}
	return false
}

func (c orderedPlatformComparer) Less(p1 specs.Platform, p2 specs.Platform) bool {
	for _, m := range c.matchers {
		p1m := m.Match(p1)
		p2m := m.Match(p2)
		if p1m && !p2m {
			return true
		}
		if p1m || p2m {
			return false
		}
	}
	return false
}

type anyPlatformComparer struct {
	matchers []Matcher
}

func (c anyPlatformComparer) Match(platform specs.Platform) bool {
	for _, m := range c.matchers {
		if m.Match(platform) {
			return true
		}
	}
	return false
}

func (c anyPlatformComparer) Less(p1, p2 specs.Platform) bool {
	var p1m, p2m bool
	for _, m := range c.matchers {
		if !p1m && m.Match(p1) {
			p1m = true
		}
		if !p2m && m.Match(p2) {
			p2m = true
		}
		if p1m && p2m {
			return false
		}
	}
	// If one matches, and the other does, sort match first
	return p1m && !p2m
}

type allPlatformComparer struct{}

func (allPlatformComparer) Match(specs.Platform) bool {
	return true
}

func (allPlatformComparer) Less(specs.Platform, specs.Platform) bool {
	return false
}