forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.go
79 lines (66 loc) · 1.6 KB
/
version.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
package common
import (
"fmt"
"strconv"
"strings"
)
type Version struct {
version string
Major int
Minor int
Bugfix int
Meta string
}
// NewVersion expects a string in the format:
// major.minor.bugfix(-meta)
func NewVersion(version string) (*Version, error) {
v := Version{
version: version,
}
// Check for meta info
if strings.Contains(version, "-") {
tmp := strings.Split(version, "-")
version = tmp[0]
v.Meta = tmp[1]
}
versions := strings.Split(version, ".")
if len(versions) != 3 {
return nil, fmt.Errorf("Passed version is not semver: %s", version)
}
var err error
v.Major, err = strconv.Atoi(versions[0])
if err != nil {
return nil, fmt.Errorf("Could not convert major to integer: %s", versions[0])
}
v.Minor, err = strconv.Atoi(versions[1])
if err != nil {
return nil, fmt.Errorf("Could not convert minor to integer: %s", versions[1])
}
v.Bugfix, err = strconv.Atoi(versions[2])
if err != nil {
return nil, fmt.Errorf("Could not convert bugfix to integer: %s", versions[2])
}
return &v, nil
}
func (v *Version) IsMajor(major int) bool {
return major == v.Major
}
// LessThan returns true if v is strictly smaller than v1. When comparing, the major,
// minor and bugfix numbers are compared in order. The meta part is not taken into account.
func (v *Version) LessThan(v1 *Version) bool {
if v.Major < v1.Major {
return true
} else if v.Major == v1.Major {
if v.Minor < v1.Minor {
return true
} else if v.Minor == v1.Minor {
if v.Bugfix < v1.Bugfix {
return true
}
}
}
return false
}
func (v *Version) String() string {
return v.version
}