forked from justjanne/powerline-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
segment-cwd.go
213 lines (183 loc) · 5.17 KB
/
segment-cwd.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
package main
import (
"os"
"strings"
)
const ellipsis = "\u2026"
type pathSegment struct {
path string
home bool
root bool
ellipsis bool
alias bool
}
func maybeAliasPathSegments(p *powerline, pathSegments []pathSegment) []pathSegment {
if p.pathAliases == nil {
return pathSegments
}
Aliases:
for p, alias := range p.pathAliases {
// This turns a string like "foo/bar/baz" into an array of strings.
path := strings.Split(p, "/")
// If the path has 3 elements, we know we should look at pathSegments
// in 3-element chunks.
size := len(path)
// If there aren't that many segments in our path we can skip to the
// next alias.
if size > len(pathSegments) {
continue Aliases
}
Segments:
// We want to see if that array of strings exists in pathSegments.
for i, _ := range pathSegments {
// This is the upper index that we would look at. So if i is 0,
// then we'd look at pathSegments[0,1,2], then [1,2,3], etc.. If i
// is 2, we'd look at pathSegments[2,3,4] and so on.
max := (i + size) - 1
// But if the upper index is out of bounds we can short-circuit
// and move on to the next alias.
if max > (len(pathSegments)-i)-1 {
continue Aliases
}
// Then we loop over the indices in path and compare the
// elements. If any element doesn't match we can move on to the
// next index in pathSegments.
for j, _ := range path {
if path[j] != pathSegments[i+j].path {
continue Segments
}
}
// They all matched! That means we can replace this slice with our
// alias and skip to the next alias.
pathSegments = append(
pathSegments[:i],
append(
[]pathSegment{{
path: alias,
alias: true,
}},
pathSegments[max+1:]...,
)...,
)
continue Aliases
}
}
return pathSegments
}
func toString(ps []pathSegment) string {
b := make([]string, 0)
for _, s := range ps {
b = append(b, s.path)
}
return strings.Join(b, " > ")
}
func cwdToPathSegments(p *powerline, cwd string) []pathSegment {
pathSegments := make([]pathSegment, 0)
home, _ := os.LookupEnv("HOME")
if strings.HasPrefix(cwd, home) {
pathSegments = append(pathSegments, pathSegment{
path: "~",
home: true,
})
cwd = cwd[len(home):]
} else if cwd == "/" {
pathSegments = append(pathSegments, pathSegment{
path: "/",
root: true,
})
}
cwd = strings.Trim(cwd, "/")
names := strings.Split(cwd, "/")
if names[0] == "" {
names = names[1:]
}
for _, name := range names {
pathSegments = append(pathSegments, pathSegment{
path: name,
})
}
return maybeAliasPathSegments(p, pathSegments)
}
func maybeShortenName(p *powerline, pathSegment string) string {
if *p.args.CwdMaxDirSize > 0 && len(pathSegment) > *p.args.CwdMaxDirSize {
return pathSegment[:*p.args.CwdMaxDirSize]
} else {
return pathSegment
}
}
func escapeVariables(p *powerline, pathSegment string) string {
pathSegment = strings.Replace(pathSegment, `\`, p.shellInfo.escapedBackslash, -1)
pathSegment = strings.Replace(pathSegment, "`", p.shellInfo.escapedBacktick, -1)
pathSegment = strings.Replace(pathSegment, `$`, p.shellInfo.escapedDollar, -1)
return pathSegment
}
func getColor(p *powerline, pathSegment pathSegment, isLastDir bool) (uint8, uint8) {
if pathSegment.home && p.theme.HomeSpecialDisplay {
return p.theme.HomeFg, p.theme.HomeBg
} else if isLastDir {
return p.theme.CwdFg, p.theme.PathBg
} else {
return p.theme.PathFg, p.theme.PathBg
}
}
func segmentCwd(p *powerline) {
cwd := p.cwd
if cwd == "" {
cwd, _ = os.LookupEnv("PWD")
}
if *p.args.CwdMode == "plain" {
home, _ := os.LookupEnv("HOME")
if strings.HasPrefix(cwd, home) {
cwd = "~" + cwd[len(home):]
}
p.appendSegment("cwd", segment{
content: cwd,
foreground: p.theme.CwdFg,
background: p.theme.PathBg,
})
} else {
pathSegments := cwdToPathSegments(p, cwd)
if *p.args.CwdMode == "dironly" {
pathSegments = pathSegments[len(pathSegments)-1:]
} else {
maxDepth := *p.args.CwdMaxDepth
if maxDepth <= 0 {
warn("Ignoring -cwd-max-depth argument since it's smaller than or equal to 0")
} else if len(pathSegments) > maxDepth {
var nBefore int
if maxDepth > 2 {
nBefore = 2
} else {
nBefore = maxDepth - 1
}
firstPart := pathSegments[:nBefore]
secondPart := pathSegments[len(pathSegments)+nBefore-maxDepth:]
pathSegments = make([]pathSegment, 0)
pathSegments = append(pathSegments, firstPart...)
pathSegments = append(pathSegments, pathSegment{
path: ellipsis,
ellipsis: true,
})
pathSegments = append(pathSegments, secondPart...)
}
}
for idx, pathSegment := range pathSegments {
isLastDir := idx == len(pathSegments)-1
foreground, background := getColor(p, pathSegment, isLastDir)
segment := segment{
content: escapeVariables(p, maybeShortenName(p, pathSegment.path)),
foreground: foreground,
background: background,
}
if !(pathSegment.home && p.theme.HomeSpecialDisplay) && !isLastDir {
segment.separator = p.symbolTemplates.SeparatorThin
segment.separatorForeground = p.theme.SeparatorFg
}
origin := "cwd-path"
if isLastDir {
origin = "cwd"
}
p.appendSegment(origin, segment)
}
}
}