79 lines
1.9 KiB
Go
79 lines
1.9 KiB
Go
// Package versioncmp provides functions for comparing version strings.
|
|
//
|
|
// Version strings are dot-separated integers with an optional
|
|
// pre-release suffix. A pre-release suffix is an arbitrary string with a
|
|
// leading dash character. All functions ignore these suffixes, so "1.2" and
|
|
// "1.2-rc" are considered equivalent.
|
|
package versioncmp
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
// compare compares two version strings. compare returns -1 if v1 < v2, 1 if v1
|
|
// > v2, 0 otherwise.
|
|
//
|
|
// Non-numeric segments in either argument are considered equal, so
|
|
// compare("1.a", "1.b") == 0, but compare("2.a", "1.b") == 1.
|
|
func compare(v1, v2 string) int {
|
|
if n := strings.IndexByte(v1, '-'); n != -1 {
|
|
v1 = v1[:n]
|
|
}
|
|
if n := strings.IndexByte(v2, '-'); n != -1 {
|
|
v2 = v2[:n]
|
|
}
|
|
var (
|
|
currTab = strings.Split(v1, ".")
|
|
otherTab = strings.Split(v2, ".")
|
|
)
|
|
|
|
max := len(currTab)
|
|
if len(otherTab) > max {
|
|
max = len(otherTab)
|
|
}
|
|
for i := 0; i < max; i++ {
|
|
var currInt, otherInt int
|
|
|
|
if len(currTab) > i {
|
|
currInt, _ = strconv.Atoi(currTab[i])
|
|
}
|
|
if len(otherTab) > i {
|
|
otherInt, _ = strconv.Atoi(otherTab[i])
|
|
}
|
|
if currInt > otherInt {
|
|
return 1
|
|
}
|
|
if otherInt > currInt {
|
|
return -1
|
|
}
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// LessThan checks if a version is less than another.
|
|
func LessThan(v, other string) bool {
|
|
return compare(v, other) == -1
|
|
}
|
|
|
|
// LessThanOrEqualTo checks if a version is less than or equal to another.
|
|
func LessThanOrEqualTo(v, other string) bool {
|
|
return compare(v, other) <= 0
|
|
}
|
|
|
|
// GreaterThan checks if a version is greater than another.
|
|
func GreaterThan(v, other string) bool {
|
|
return compare(v, other) == 1
|
|
}
|
|
|
|
// GreaterThanOrEqualTo checks if a version is greater than or equal to
|
|
// another.
|
|
func GreaterThanOrEqualTo(v, other string) bool {
|
|
return compare(v, other) >= 0
|
|
}
|
|
|
|
// Equal checks if a version is equal to another.
|
|
func Equal(v, other string) bool {
|
|
return compare(v, other) == 0
|
|
}
|