-
Notifications
You must be signed in to change notification settings - Fork 843
/
paths.go
91 lines (81 loc) · 2.71 KB
/
paths.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
// +build go1.9
// Copyright 2018 Microsoft Corporation and contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package model
import (
"fmt"
"path/filepath"
"regexp"
"strings"
)
const pkgPathRegex = `services[/\\](?P<prv>[\w\-\._/\\]+)[/\\](?P<ver>v?\d{4}-\d{2}-\d{2}[\w\.\-]*|v?\d+[\.\w\-]*)[/\\](?P<grp>[/\\\w\-\._]+)`
var (
validPackagePath = regexp.MustCompile(pkgPathRegex)
validPkgPathModVer = regexp.MustCompile(pkgPathRegex + `[/\\](?P<mod>v\d+)[/\\]?(?P<api>\w+api)?`)
apiPkgRegex = regexp.MustCompile(`[/\\]\w+api$`)
)
// PathInfo provides information about a package's path.
type PathInfo struct {
IsArm bool
Provider string
Version string
Group string
ModVer string
APIPkg string
}
// DeconstructPath takes a full package path and deconstructs it into its constituent parts.
func DeconstructPath(path string) (PathInfo, error) {
path = filepath.Clean(path)
// must check the module regex first, this is due to greedy regex and lack of negative look-aheads
matches := validPkgPathModVer.FindAllStringSubmatch(path, -1)
if matches == nil {
matches = validPackagePath.FindAllStringSubmatch(path, -1)
}
if matches == nil {
return PathInfo{}, fmt.Errorf("path '%s' does not resemble a known package path", path)
}
// matches[0][0] is the full match, we don't care about that
// matches[0][1] is <prv>, it might end with /mgmt due to greedy regex
// matches[0][2] is <ver>
// matches[0][3] is <grp>, it might end with /*api for non-module case due to greedy regex
prv := matches[0][1]
ver := matches[0][2]
grp := matches[0][3]
mod := ""
api := ""
if len(matches[0]) == 6 {
// this package contains a major version
// matches[0][4] is <mod>
// matches[0][5] is <api>
mod = matches[0][4]
api = matches[0][5]
} else if loc := apiPkgRegex.FindStringIndex(grp); loc != nil {
// for non-module case, if this is the *api package strip it off grp and place in api
api = grp[loc[0]+1:]
grp = grp[:loc[0]]
}
arm := false
if index := strings.LastIndex(prv, string(filepath.Separator)+armPathModifier); index > 0 {
prv = prv[:index]
arm = true
}
return PathInfo{
Provider: prv,
IsArm: arm,
Version: ver,
Group: grp,
ModVer: mod,
APIPkg: api,
}, nil
}