-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell_fish.go
98 lines (82 loc) · 1.55 KB
/
shell_fish.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
package main
import (
"fmt"
"strings"
)
type fish int
var FISH fish
const FISH_HOOK = `
function __direnv_export_eval --on-event fish_prompt;
eval (direnv export fish);
end
`
func (f fish) Hook() (string, error) {
return FISH_HOOK, nil
}
func (f fish) Export(e ShellExport) (out string) {
for key, value := range e {
if value == nil {
out += f.unset(key)
} else {
out += f.export(key, *value)
}
}
return out
}
func (f fish) export(key, value string) string {
if key == "PATH" {
command := "set -x -g PATH"
for _, path := range strings.Split(value, ":") {
command += " " + f.escape(path)
}
return command + ";"
}
return "set -x -g " + f.escape(key) + " " + f.escape(value) + ";"
}
func (f fish) unset(key string) string {
return "set -e -g " + f.escape(key) + ";"
}
func (f fish) escape(str string) string {
in := []byte(str)
out := "'"
i := 0
l := len(in)
hex := func(char byte) {
out += fmt.Sprintf("'\\x%02x'", char)
}
backslash := func(char byte) {
out += string([]byte{BACKSLASH, char})
}
escaped := func(str string) {
out += "'" + str + "'"
}
literal := func(char byte) {
out += string([]byte{char})
}
for i < l {
char := in[i]
switch {
case char == TAB:
escaped(`\t`)
case char == LF:
escaped(`\n`)
case char == CR:
escaped(`\r`)
case char <= US:
hex(char)
case char == SINGLE_QUOTE:
backslash(char)
case char == BACKSLASH:
backslash(char)
case char <= TILDA:
literal(char)
case char == DEL:
hex(char)
default:
hex(char)
}
i += 1
}
out += "'"
return out
}