-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath.go
75 lines (65 loc) · 1.49 KB
/
path.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
package domain
import (
"regexp"
"strings"
)
type Path struct{ strings []string }
func NewPath(s string) (Path, error) {
if len(s) == 0 || s[0] != '/' {
s = "/" + s
}
ss := strings.Split(s, "/")
if s == "/" {
return Path{ss}, nil
}
if ok, _ := regexp.MatchString(`^(/[\w\s~+!'.-]+)+$`, s); ok {
return Path{ss}, nil
}
return Path{}, Errorf("`%s` must start from / character followed by alphanumerics and/or _ ' ! . - ", s)
}
func (d Path) Append(r Path) Path {
if r.IsZero() {
return d
}
if d.Trim(0).String() == "/" {
return r
}
return Path{append(d.strings, r.strings[1:]...)}
}
// Replace first n character from underlying dir string
func (d Path) Replace(old, new string, occurrences ...int) string {
if len(occurrences) == 0 {
occurrences = append(occurrences, 1)
}
return strings.Replace(d.String(), old, new, occurrences[0])
}
// Tail gives last part of dir, it might be directory or file with extension
func (d Path) Tail() string {
return d.strings[len(d.strings)-1]
}
// Trim ...
func (d Path) Trim(from int, to ...int) Path {
s := d.Size()
if s == 0 {
return Path{}
}
if s <= from {
return Path{}
}
ss := []string{""}
if l := len(to); l == 0 || to[0] == -1 {
ss = append(ss, d.strings[from+1:]...)
} else {
ss = append(ss, d.strings[from+1:to[0]+1]...)
}
return Path{ss}
}
func (d Path) Size() int {
return len(d.strings) - 1
}
func (d Path) IsZero() bool {
return d.Size() == 0
}
func (d Path) String() string {
return strings.Join(d.strings, "/")
}