-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.go
170 lines (150 loc) · 4.6 KB
/
list.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
// Copyright 2013 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.
package tools
import (
"fmt"
"strings"
"github.com/juju/errors"
"github.com/juju/utils/set"
"github.com/juju/version"
)
// List holds tools available in an environment. The order of tools within
// a List is not significant.
type List []*Tools
var ErrNoMatches = errors.New("no matching tools available")
// String returns the versions of the tools in src, separated by semicolons.
func (src List) String() string {
names := make([]string, len(src))
for i, tools := range src {
names[i] = tools.Version.String()
}
return strings.Join(names, ";")
}
// AllSeries returns all series for which some tools in src were built.
func (src List) AllSeries() []string {
return src.collect(func(tools *Tools) string {
return tools.Version.Series
})
}
// OneSeries returns the single series for which all tools in src were built.
func (src List) OneSeries() string {
series := src.AllSeries()
if len(series) != 1 {
panic(fmt.Errorf("should have gotten tools for one series, got %v", series))
}
return series[0]
}
// Arches returns all architectures for which some tools in src were built.
func (src List) Arches() []string {
return src.collect(func(tools *Tools) string {
return tools.Version.Arch
})
}
// collect calls f on all values in src and returns an alphabetically
// ordered list of the returned results without duplicates.
func (src List) collect(f func(*Tools) string) []string {
seen := make(set.Strings)
for _, tools := range src {
seen.Add(f(tools))
}
return seen.SortedValues()
}
// URLs returns download URLs for the tools in src, keyed by binary
// version. Each version can have more than one URL.
func (src List) URLs() map[version.Binary][]string {
result := map[version.Binary][]string{}
for _, tools := range src {
result[tools.Version] = append(result[tools.Version], tools.URL)
}
return result
}
// Newest returns the greatest version in src, and the tools with that version.
func (src List) Newest() (version.Number, List) {
var result List
var best version.Number
for _, tools := range src {
if best.Compare(tools.Version.Number) < 0 {
// Found new best number; reset result list.
best = tools.Version.Number
result = append(result[:0], tools)
} else if tools.Version.Number == best {
result = append(result, tools)
}
}
return best, result
}
// NewestCompatible returns the most recent version compatible with
// base, i.e. with the same major and minor numbers and greater or
// equal patch and build numbers.
func (src List) NewestCompatible(base version.Number) (newest version.Number, found bool) {
newest = base
found = false
for _, tool := range src {
toolVersion := tool.Version.Number
if newest == toolVersion {
found = true
} else if newest.Compare(toolVersion) < 0 &&
toolVersion.Major == newest.Major &&
toolVersion.Minor == newest.Minor {
newest = toolVersion
found = true
}
}
return newest, found
}
// Exclude returns the tools in src that are not in excluded.
func (src List) Exclude(excluded List) List {
ignore := make(map[version.Binary]bool, len(excluded))
for _, tool := range excluded {
ignore[tool.Version] = true
}
var result List
for _, tool := range src {
if !ignore[tool.Version] {
result = append(result, tool)
}
}
return result
}
// Match returns a List, derived from src, containing only those tools that
// match the supplied Filter. If no tools match, it returns ErrNoMatches.
func (src List) Match(f Filter) (List, error) {
var result List
for _, tools := range src {
if f.match(tools) {
result = append(result, tools)
}
}
if len(result) == 0 {
return nil, ErrNoMatches
}
return result, nil
}
func (l List) Len() int { return len(l) }
func (l List) Swap(i, j int) { l[i], l[j] = l[j], l[i] }
func (l List) Less(i, j int) bool { return l[i].Version.String() < l[j].Version.String() }
// Filter holds criteria for choosing tools.
type Filter struct {
// Number, if non-zero, causes the filter to match only tools with
// that exact version number.
Number version.Number
// Series, if not empty, causes the filter to match only tools with
// that series.
Series string
// Arch, if not empty, causes the filter to match only tools with
// that architecture.
Arch string
}
// match returns true if the supplied tools match f.
func (f Filter) match(tools *Tools) bool {
if f.Number != version.Zero && tools.Version.Number != f.Number {
return false
}
if f.Series != "" && tools.Version.Series != f.Series {
return false
}
if f.Arch != "" && tools.Version.Arch != f.Arch {
return false
}
return true
}