forked from gokcehan/lf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons.go
168 lines (135 loc) · 2.57 KB
/
icons.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
package main
import (
"log"
"os"
"path/filepath"
"strings"
)
type iconMap map[string]string
func parseIcons() iconMap {
im := make(iconMap)
defaultIcons := []string{
"ln=l",
"or=l",
"tw=t",
"ow=d",
"st=t",
"di=d",
"pi=p",
"so=s",
"bd=b",
"cd=c",
"su=u",
"sg=g",
"ex=x",
"fi=-",
}
im.parseEnv(strings.Join(defaultIcons, ":"))
if env := os.Getenv("LF_ICONS"); env != "" {
im.parseEnv(env)
}
for _, path := range gIconsPaths {
if _, err := os.Stat(path); !os.IsNotExist(err) {
im.parseFile(path)
}
}
return im
}
func (im iconMap) parseFile(path string) {
log.Printf("reading file: %s", path)
f, err := os.Open(path)
if err != nil {
log.Printf("opening icons file: %s", err)
return
}
defer f.Close()
pairs, err := readPairs(f)
if err != nil {
log.Printf("reading icons file: %s", err)
return
}
for _, pair := range pairs {
key, val := pair[0], pair[1]
key = replaceTilde(key)
if filepath.IsAbs(key) {
key = filepath.Clean(key)
}
im[key] = val
}
}
func (im iconMap) parseEnv(env string) {
for _, entry := range strings.Split(env, ":") {
if entry == "" {
continue
}
pair := strings.Split(entry, "=")
if len(pair) != 2 {
log.Printf("invalid $LF_ICONS entry: %s", entry)
return
}
key, val := pair[0], pair[1]
key = replaceTilde(key)
if filepath.IsAbs(key) {
key = filepath.Clean(key)
}
im[key] = val
}
}
func (im iconMap) get(f *file) string {
if val, ok := im[f.path]; ok {
return val
}
if f.IsDir() {
if val, ok := im[f.Name()+"/"]; ok {
return val
}
}
var key string
switch {
case f.linkState == working:
key = "ln"
case f.linkState == broken:
key = "or"
case f.IsDir() && f.Mode()&os.ModeSticky != 0 && f.Mode()&0002 != 0:
key = "tw"
case f.IsDir() && f.Mode()&0002 != 0:
key = "ow"
case f.IsDir() && f.Mode()&os.ModeSticky != 0:
key = "st"
case f.IsDir():
key = "di"
case f.Mode()&os.ModeNamedPipe != 0:
key = "pi"
case f.Mode()&os.ModeSocket != 0:
key = "so"
case f.Mode()&os.ModeCharDevice != 0:
key = "cd"
case f.Mode()&os.ModeDevice != 0:
key = "bd"
case f.Mode()&os.ModeSetuid != 0:
key = "su"
case f.Mode()&os.ModeSetgid != 0:
key = "sg"
case f.Mode()&0111 != 0:
key = "ex"
}
if val, ok := im[key]; ok {
return val
}
if val, ok := im[f.Name()+"*"]; ok {
return val
}
if val, ok := im["*"+f.Name()]; ok {
return val
}
if val, ok := im[filepath.Base(f.Name())+".*"]; ok {
return val
}
if val, ok := im["*"+strings.ToLower(f.ext)]; ok {
return val
}
if val, ok := im["fi"]; ok {
return val
}
return " "
}