-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathevrops.go
309 lines (274 loc) · 6.06 KB
/
evrops.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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// Contributor:
// - Aaron Meihm [email protected]
package scribe
import (
"fmt"
"regexp"
"strconv"
"strings"
"unicode"
)
// This is a go version of the librpm rpmvercmp() function, that compares
// two version strings to determine which is newer. It has undergone a
// series of tests but there are likely to be some edge cases and certain
// scenarios it does not handle.
// EVR operation constants
const (
_ = iota
EvropLessThan
EvropGreaterThan
EvropEquals
EvropUnknown
)
type evr struct {
epoch string
version string
release string
}
func evrLookupOperation(s string) int {
switch s {
case "<":
return EvropLessThan
case ">":
return EvropGreaterThan
case "=":
return EvropEquals
}
return EvropUnknown
}
func evrOperationStr(val int) string {
switch val {
case EvropLessThan:
return "<"
case EvropEquals:
return "="
default:
return "?"
}
}
func evrIsDigit(c rune) bool {
return unicode.IsDigit(c)
}
func evrIsNumber(s string) bool {
_, err := strconv.Atoi(s)
if err != nil {
return false
}
return true
}
func evrExtract(s string) (evr, error) {
var ret evr
var idx int
for _, c := range s {
if !evrIsDigit(c) {
break
}
idx++
}
if idx >= len(s) {
// The entire version string is a digit; in this case just set the
// version value to s
ret.epoch = "0"
ret.version = s
ret.release = ""
return ret, nil
}
if s[idx] == ':' {
ret.epoch = s[:idx]
idx++
} else {
ret.epoch = "0"
idx = 0
}
if idx >= len(s) {
return ret, fmt.Errorf("evrExtract: only epoch")
}
remain := s[idx:]
rp0 := strings.LastIndex(remain, "-")
if rp0 != -1 {
ret.version = remain[:rp0]
rp0++
if rp0 >= len(remain) {
return ret, fmt.Errorf("evrExtract: ends in dash")
}
ret.release = remain[rp0:]
} else {
ret.version = remain
ret.release = ""
}
debugPrint("evrExtract(): epoch=%v, version=%v, revision=%v\n", ret.epoch, ret.version, ret.release)
return ret, nil
}
func evrRpmTokenizer(s string) []string {
re := regexp.MustCompile("[A-Za-z0-9]+")
buf := re.FindAllString(s, -1)
ret := make([]string, 0)
var isnum bool
var cmp string
for _, x := range buf {
cmp = ""
for _, c := range x {
if len(cmp) == 0 {
if evrIsDigit(c) {
isnum = true
} else {
isnum = false
}
cmp += string(c)
} else {
if isnum {
if !evrIsDigit(c) {
ret = append(ret, cmp)
cmp = string(c)
isnum = false
} else {
cmp += string(c)
}
} else {
if evrIsDigit(c) {
ret = append(ret, cmp)
cmp = string(c)
isnum = true
} else {
cmp += string(c)
}
}
}
}
ret = append(ret, cmp)
}
return ret
}
func evrTrimZeros(s string) string {
if len(s) == 1 {
return s
}
_, err := strconv.Atoi(s)
if err != nil {
return s
}
return strings.TrimLeft(s, "0")
}
func evrRpmVerCmp(actual string, check string) int {
if actual == check {
return 0
}
acttokens := evrRpmTokenizer(actual)
chktokens := evrRpmTokenizer(check)
for i := range chktokens {
if i >= len(acttokens) {
// There are more tokens in the check value, the
// check wins.
return 1
}
// If the values are pure numbers, trim any leading 0's.
acttest := evrTrimZeros(acttokens[i])
chktest := evrTrimZeros(chktokens[i])
// Numeric component will always win out over alpha.
if evrIsDigit(rune(acttest[0])) && !evrIsDigit(rune(chktest[0])) {
return -1
}
if evrIsDigit(rune(chktest[0])) && !evrIsDigit(rune(acttest[0])) {
return 1
}
// If both values are pure numeric values, convert and check here
if evrIsNumber(acttest) && evrIsNumber(chktest) {
na, err := strconv.Atoi(acttest)
if err != nil {
panic("IsNumber and failed actual conversion")
}
nc, err := strconv.Atoi(chktest)
if err != nil {
panic("IsNumber and failed check conversion")
}
if nc > na {
return 1
} else if nc < na {
return -1
} else {
continue
}
}
// Do a lexical string comparison here, this should work
// even with pure integer values.
if chktest > acttest {
return 1
} else if chktest < acttest {
return -1
}
}
// If we get this far, see if the actual value still has more tokens
// for comparison, if so actual wins.
if len(acttokens) > len(chktokens) {
return -1
}
return 0
}
func evrRpmCompare(actual evr, check evr) (int, error) {
aepoch, err := strconv.Atoi(actual.epoch)
if err != nil {
return 0, fmt.Errorf("evrRpmCompare: bad actual epoch")
}
cepoch, err := strconv.Atoi(check.epoch)
if err != nil {
return 0, fmt.Errorf("evrRpmCompare: bad check epoch")
}
if cepoch > aepoch {
return 1, nil
} else if cepoch < aepoch {
return -1, nil
}
ret := evrRpmVerCmp(actual.version, check.version)
if ret != 0 {
return ret, nil
}
ret = evrRpmVerCmp(actual.release, check.release)
if ret != 0 {
return ret, nil
}
return 0, nil
}
func evrCompare(op int, actual string, check string) (bool, error) {
debugPrint("evrCompare(): %v %v %v\n", actual, evrOperationStr(op), check)
evract, err := evrExtract(actual)
if err != nil {
return false, err
}
evrchk, err := evrExtract(check)
if err != nil {
return false, err
}
ret, err := evrRpmCompare(evract, evrchk)
if err != nil {
return false, err
}
switch op {
case EvropEquals:
if ret != 0 {
return false, nil
}
return true, nil
case EvropLessThan:
if ret == 1 {
return true, nil
}
return false, nil
case EvropGreaterThan:
if ret == -1 {
return true, nil
}
return false, nil
}
return false, fmt.Errorf("evrCompare: unknown operator")
}
// TestEvrCompare is an exported version of the EVR comparison operation. op is
// used to specify an EVR comparison operation (e.g., EvropLessThan). actual and
// check are the version strings to test. Returns status of test evaluation, or an error
// if an error occurs.
func TestEvrCompare(op int, actual string, check string) (bool, error) {
return evrCompare(op, actual, check)
}