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
|
package refname
import "strings"
// Normalize collapses slashes according to what Git wants
// then validates the normalized name.
func Normalize(name string, options Options) (string, error) {
normalized := collapseSlashes(name)
err := validate(normalized, options.flags())
if err != nil {
return "", err
}
return normalized, nil
}
func normalizeRefPath(path string) (string, bool) {
components := make([]string, 0, strings.Count(path, "/")+1)
i := 0
for i < len(path) {
for i < len(path) && path[i] == '/' {
i++
}
if i == len(path) {
break
}
j := i
for j < len(path) && path[j] != '/' {
j++
}
component := path[i:j]
switch component {
case ".":
case "..":
if len(components) == 0 {
return "", false
}
components = components[:len(components)-1]
default:
components = append(components, component)
}
i = j
}
return strings.Join(components, "/"), true
}
|