forked from ava-labs/avalanchego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.go
58 lines (47 loc) · 1.33 KB
/
parser.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
// Copyright (C) 2019-2024, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package version
import (
"errors"
"fmt"
"strconv"
"strings"
)
var (
errMissingVersionPrefix = errors.New("missing required version prefix")
errMissingVersions = errors.New("missing version numbers")
)
func Parse(s string) (*Semantic, error) {
if !strings.HasPrefix(s, "v") {
return nil, fmt.Errorf("%w: %q", errMissingVersionPrefix, s)
}
s = s[1:]
major, minor, patch, err := parseVersions(s)
if err != nil {
return nil, err
}
return &Semantic{
Major: major,
Minor: minor,
Patch: patch,
}, nil
}
func parseVersions(s string) (int, int, int, error) {
splitVersion := strings.SplitN(s, ".", 3)
if numSeperators := len(splitVersion); numSeperators != 3 {
return 0, 0, 0, fmt.Errorf("%w: expected 3 only got %d", errMissingVersions, numSeperators)
}
major, err := strconv.Atoi(splitVersion[0])
if err != nil {
return 0, 0, 0, fmt.Errorf("failed to parse %s as a version: %w", s, err)
}
minor, err := strconv.Atoi(splitVersion[1])
if err != nil {
return 0, 0, 0, fmt.Errorf("failed to parse %s as a version: %w", s, err)
}
patch, err := strconv.Atoi(splitVersion[2])
if err != nil {
return 0, 0, 0, fmt.Errorf("failed to parse %s as a version: %w", s, err)
}
return major, minor, patch, nil
}