forked from direnv/direnv
-
Notifications
You must be signed in to change notification settings - Fork 2
/
shell_bash.go
165 lines (145 loc) · 2.99 KB
/
shell_bash.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
package main
import "fmt"
type bash int
var BASH bash
const BASH_HOOK = `
_direnv_hook() {
local previous_exit_status=$?;
eval "$("{{.SelfPath}}" export bash)";
return $previous_exit_status;
};
if ! [[ "$PROMPT_COMMAND" =~ _direnv_hook ]]; then
PROMPT_COMMAND="_direnv_hook;$PROMPT_COMMAND"
fi
`
func (b bash) Hook() (string, error) {
return BASH_HOOK, nil
}
func (b bash) Export(e ShellExport) (out string) {
for key, value := range e {
if value == nil {
out += b.unset(key)
} else {
out += b.export(key, *value)
}
}
return out
}
func (b bash) export(key, value string) string {
return "export " + b.escape(key) + "=" + b.escape(value) + ";"
}
func (b bash) unset(key string) string {
return "unset " + b.escape(key) + ";"
}
func (b bash) escape(str string) string {
return BashEscape(str)
}
/*
* Escaping
*/
const (
ACK = 6
TAB = 9
LF = 10
CR = 13
US = 31
SPACE = 32
AMPERSTAND = 38
SINGLE_QUOTE = 39
PLUS = 43
NINE = 57
QUESTION = 63
LOWERCASE_Z = 90
OPEN_BRACKET = 91
BACKSLASH = 92
UNDERSCORE = 95
CLOSE_BRACKET = 93
BACKTICK = 96
TILDA = 126
DEL = 127
)
// https://github.com/solidsnack/shell-escape/blob/master/Text/ShellEscape/Bash.hs
/*
A Bash escaped string. The strings are wrapped in @$\'...\'@ if any
bytes within them must be escaped; otherwise, they are left as is.
Newlines and other control characters are represented as ANSI escape
sequences. High bytes are represented as hex codes. Thus Bash escaped
strings will always fit on one line and never contain non-ASCII bytes.
*/
func BashEscape(str string) string {
if str == "" {
return "''"
}
in := []byte(str)
out := ""
i := 0
l := len(in)
escape := false
hex := func(char byte) {
escape = true
out += fmt.Sprintf("\\x%02x", char)
}
backslash := func(char byte) {
escape = true
out += string([]byte{BACKSLASH, char})
}
escaped := func(str string) {
escape = true
out += str
}
quoted := func(char byte) {
escape = true
out += string([]byte{char})
}
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 <= AMPERSTAND:
quoted(char)
case char == SINGLE_QUOTE:
backslash(char)
case char <= PLUS:
quoted(char)
case char <= NINE:
literal(char)
case char <= QUESTION:
quoted(char)
case char <= LOWERCASE_Z:
literal(char)
case char == OPEN_BRACKET:
quoted(char)
case char == BACKSLASH:
backslash(char)
case char <= CLOSE_BRACKET:
quoted(char)
case char == UNDERSCORE:
literal(char)
case char <= BACKTICK:
quoted(char)
case char <= LOWERCASE_Z:
literal(char)
case char <= TILDA:
quoted(char)
case char == DEL:
hex(char)
default:
hex(char)
}
i += 1
}
if escape {
out = "$'" + out + "'"
}
return out
}