This repository was archived by the owner on Mar 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrange.go
232 lines (204 loc) · 5.58 KB
/
range.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
// Copyright 2014 The Semver Package Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package semver
import (
"bytes"
)
// Range is a subset of the universe of Versions: It can have a lower and upper boundary.
// For example, "1.2–2.0" is such a Range, with two boundaries.
type Range struct {
lower Version
upper Version
hasLower bool
equalsLower bool
hasUpper bool
equalsUpper bool
}
// NewRange translates into a Range.
func NewRange(str []byte) (Range, error) {
if len(str) == 0 || (len(str) == 1 && (str[0] == '*' || str[0] == 'x')) {
// An empty Range contains everything.
return Range{}, nil
}
isNaturalRange := true
if bytes.HasSuffix(str, []byte(".x")) || bytes.HasSuffix(str, []byte(".*")) {
str = bytes.TrimRight(str, ".x*")
isNaturalRange = false
}
if str[0] == '^' || str[0] == '~' {
return newRangeByShortcut(str)
}
var upperBound, lowerBound bool = true, true
if len(str) >= 2 {
lowerBound = !(str[0] == '<' || str[1] == '<')
upperBound = !(str[0] == '>' || str[1] == '>')
}
var leftEnd, rightStart int
if idx := bytes.IndexByte(str, byte(' ')); idx > 1 {
leftEnd = idx
} else if idx = bytes.IndexByte(str, byte(',')); idx > 1 {
leftEnd = idx
} else {
leftEnd = len(str)
rightStart = leftEnd
}
if rightStart == 0 {
rightStart = bytes.LastIndexByte(str, byte(' ')) + 1
if rightStart <= 0 {
rightStart = bytes.LastIndexByte(str, byte(',')) + 1
}
}
isNaturalRange = isNaturalRange && leftEnd != rightStart && (len(str)-rightStart) > 0
if !isNaturalRange {
leftDotCount := bytes.Count(str[:leftEnd], []byte{'.'})
switch leftDotCount {
case 1:
return newRangeByShortcut(append([]byte{'~'}, str...))
case 0:
return newRangeByShortcut(append([]byte{'^'}, str...))
}
}
vr := Range{}
if leftEnd == rightStart {
err := vr.setBound(str, lowerBound, upperBound)
return vr, err
}
if err := vr.setBound(str[:leftEnd], true, false); err != nil {
return vr, err
}
if err := vr.setBound(str[rightStart:], false, true); err != nil {
return vr, err
}
return vr, nil
}
func (r *Range) setBound(str []byte, isLower, isUpper bool) error {
var versionStartIdx int
for ; versionStartIdx < len(str); versionStartIdx++ {
if isNumeric(str[versionStartIdx]) {
goto startFound
}
}
return errInvalidVersionString
startFound:
var err error
equalOk := versionStartIdx == 0 || bytes.IndexByte(str[:versionStartIdx], '=') > 0
if isUpper {
r.equalsUpper, r.hasUpper = equalOk, true
err = r.upper.unmarshalText(str[versionStartIdx:])
}
if isLower {
r.equalsLower, r.hasLower = equalOk, true
if isUpper {
r.lower = r.upper
} else {
err = r.lower.unmarshalText(str[versionStartIdx:])
}
}
return err
}
// newRangeByShortcut covers the special case of Ranges whose boundaries
// are declared using prefixes.
func newRangeByShortcut(str []byte) (Range, error) {
t := bytes.TrimLeft(str, "~^")
num, err := NewVersion(t)
if err != nil {
return Range{}, err
}
if bytes.HasPrefix(t, []byte("0.0.")) {
return NewRange(t)
}
r := Range{lower: num, hasLower: true, equalsLower: true, hasUpper: true, upper: Version{}}
switch {
case bytes.HasPrefix(t, []byte("0.")):
r.upper.version[0] = r.lower.version[0]
r.upper.version[1] = r.lower.version[1] + 1
case str[0] == '^' || bytes.IndexByte(t, '.') <= -1:
r.upper.version[0] = r.lower.version[0] + 1
case str[0] == '~':
r.upper.version[0] = r.lower.version[0]
r.upper.version[1] = r.lower.version[1] + 1
}
return r, nil
}
// GetLowerBoundary gets you the lower (left) boundary.
func (r Range) GetLowerBoundary() *Version {
if !r.hasLower {
return nil
}
return &r.lower
}
// GetUpperBoundary gets you the high (right) boundary.
func (r Range) GetUpperBoundary() *Version {
if !r.hasUpper {
return nil
}
return &r.upper
}
// Contains returns true if a Version is inside this Range.
//
// If in doubt use IsSatisfiedBy.
func (r Range) Contains(v Version) bool {
if r.upper == r.lower {
return r.lower.LimitedEqual(v)
}
return r.satisfiesLowerBound(v) && r.satisfiesUpperBound(v)
}
// IsSatisfiedBy works like Contains,
// but rejects pre-releases if neither of the bounds is a pre-release.
//
// Use this in the context of pulling in packages because it follows the spirit of §9 SemVer.
// Also see https://github.com/npm/node-semver/issues/64
func (r Range) IsSatisfiedBy(v Version) bool {
if !r.Contains(v) {
return false
}
if v.IsAPreRelease() {
if r.hasLower && r.lower.IsAPreRelease() && r.lower.sharesPrefixWith(v) {
return true
}
if r.hasUpper && r.upper.IsAPreRelease() && r.upper.sharesPrefixWith(v) {
return true
}
return false
}
return true
}
func (r Range) satisfiesLowerBound(v Version) bool {
if !r.hasLower {
return true
}
equal := r.lower.LimitedEqual(v)
if r.equalsLower && equal {
return true
}
return r.lower.limitedLess(v) && !equal
}
func (r Range) satisfiesUpperBound(v Version) bool {
if !r.hasUpper {
return true
}
equal := r.upper.LimitedEqual(v)
if r.equalsUpper && equal {
return true
}
if !r.equalsUpper && r.upper.version[idxReleaseType] == common {
equal = r.upper.sharesPrefixWith(v)
}
return v.limitedLess(r.upper) && !equal
}
// Satisfies is a convenience function for former NodeJS developers,
// and works on two strings.
//
// Please see Range's IsSatisfiedBy for details.
func Satisfies(aVersion, aRange string) (bool, error) {
v, err := NewVersion([]byte(aVersion))
if err != nil {
return false, err
}
r, err := NewRange([]byte(aRange))
if err != nil {
return false, err
}
return r.IsSatisfiedBy(v), nil
}