-
Notifications
You must be signed in to change notification settings - Fork 24
/
edit-bestline.c
327 lines (299 loc) · 7.6 KB
/
edit-bestline.c
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
#include "rc.h"
#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <dirent.h>
#include <sys/stat.h>
#include <bestline.h>
#include "edit.h"
bool editing = 1;
struct cookie {
char *buffer;
};
/* Join two strings with a "/" between them, into a malloc string */
static char *dir_join(const char *a, const char *b) {
size_t l;
if (!a) a = "";
if (!b) b = "";
l = strlen(a);
return mprint("%s%s%s", a, l && a[l-1] != '/' ? "/" : "", b);
}
static char *quote(char *str) {
size_t quotecount = 0;
for (char *p = str; *p; p++)
if (*p == '\'') quotecount++;
size_t newlen = strlen(str) + quotecount + 2;
char *quoted = ealloc(newlen + 1);
quoted[0] = '\'';
char *q = quoted + 1;
for (char *p = str; *p; p++, q++) {
*q = *p;
if (*p == '\'')
*(++q) = '\'';
}
*q = '\'';
*(q+1) = '\0';
return quoted;
}
static void strip_quotes(char *str) {
bool quoted = 0;
for (char *p = str; *p; p++) {
if (*p == '\'') {
if (p[1] == '\'') {
if (quoted) {
// unescape single quote
memmove(p, p+1, strlen(p+1) + 1);
// don't decrement p -> step over the remaining quote
} else {
// ignore empty string
memmove(p, p+2, strlen(p+2) + 1);
p--;
}
} else {
// strip single quote (opening or closing)
memmove(p, p+1, strlen(p+1) + 1);
p--;
quoted = !quoted;
}
}
}
}
/* Decide if this directory entry is a completion candidate, either executable
* or a directory. "dname" is the absolute path of the directory, "name" is the
* current entry. "subdirs" is the name being completed up to and including the
* last slash (or NULL if there is no slash), "prefix" is the remainder of the
* name being completed, "len" is the length of "prefix".
*/
static char *entry(char *dname, char *name, char *subdirs,
char *prefix, size_t len) {
char *full;
struct stat st;
if (strncmp(name, prefix, len) != 0)
return NULL;
if (streq(name, ".") || streq(name, ".."))
return NULL;
full = dir_join(dname, name);
int exe = rc_access(full, FALSE, &st);
efree(full);
if (exe || S_ISDIR(st.st_mode))
return dir_join(subdirs, name);
return NULL;
}
/* Split a string "text" after the last "/" into "pre" and "post". If there is
* no "/", "pre" will be NULL. */
static void split_last_slash(const char *text, char **pre, char **post) {
char *last_slash = strrchr(text, '/');
if (last_slash) {
size_t l = last_slash + 1 - text;
*pre = ealloc(l + 1);
memcpy(*pre, text, l);
(*pre)[l] = '\0';
*post = last_slash + 1;
} else {
*pre = NULL;
*post = (char *)text;
}
}
static char *compl_extcmd(const char *text, int state) {
static char *dname, *prefix, *subdirs;
static DIR *d;
static List nil, *path;
static size_t len;
if (!state) {
split_last_slash(text, &subdirs, &prefix);
d = NULL;
if (subdirs && isabsolute(subdirs))
path = &nil;
else
path = varlookup("path");
len = strlen(prefix);
}
while (d || path) {
if (!d) {
dname = dir_join(path->w, subdirs);
d = opendir(dname);
path = path->n;
if (!d) efree(dname);
} else {
struct dirent *e;
while ((e = readdir(d))) {
char *x;
x = entry(dname, e->d_name, subdirs,
prefix, len);
if (x) return x;
}
closedir(d);
efree(dname);
d = NULL;
}
}
efree(subdirs);
return NULL;
}
static char *compl_filename(const char *text, int state) {
static char *textnoquotes, *dname, *prefix, *subdirs;
static DIR *d;
static size_t len;
if (!state) {
textnoquotes = strdup(text);
strip_quotes(textnoquotes);
text = textnoquotes;
split_last_slash(text, &subdirs, &prefix);
len = strlen(prefix);
d = opendir(subdirs ? subdirs : ".");
if (!d) {
efree(subdirs);
efree(textnoquotes);
return NULL;
}
}
struct dirent *e;
while ((e = readdir(d))) {
if (streq(e->d_name, ".") || streq(e->d_name, ".."))
continue;
dname = NULL;
if (strncmp(e->d_name, prefix, len) == 0) {
dname = subdirs ? dir_join(subdirs, e->d_name) : strdup(e->d_name);
if (strstr(dname, " ")) {
char *quoted = quote(dname);
efree(dname);
dname = quoted;
}
return dname;
}
}
closedir(d);
d = NULL;
efree(subdirs);
efree(dname);
efree(textnoquotes);
return NULL;
}
static char compl_prefix(const char *buf, int index) {
while (index-- > 0) {
char c = buf[index];
if (c != ' ' && c != '\t')
return c;
}
return ';';
}
static int findbeginningoftoken(const char *buf, int cursorpos) {
bool quoted = 0;
int beginning = 0;
for (const char *p = buf; *p && p < buf + cursorpos; p++) {
if (*p == '\'') {
quoted = !quoted;
} else if (!quoted && (*p == ' ' || *p == ';' || *p == '$')) {
beginning = p - buf + 1;
}
}
return beginning;
}
static int quotedstrcmp(const void *s1, const void *s2) {
char *c1 = *(char**)s1;
char *c2 = *(char**)s2;
for (; *c1 && *c2; c1++, c2++) {
while (*c1 == '\'') c1++;
while (*c2 == '\'') c2++;
if (*c1 != *c2) break;
}
return (int)(*c1 - *c2);
}
static void add_completions(const char *buf, int start, int end,
char* (*compl_func)(const char*, int), bestlineCompletions *lc) {
char *token = strndup(buf + start, end - start);
char *match = compl_func(token, 0);
while (match) {
size_t len = strlen(buf) - (end - start) + strlen(match) + 1;
char *completion = (char*)ealloc(len);
snprintf(completion, len, "%.*s%s%s", start, buf, match, &buf[end]);
bool duplicate = 0;
if (strcmp(buf, completion) == 0) {
duplicate = 1;
} else for (int i = 0; i < lc->len; ++i) {
if (strcmp(lc->cvec[i], completion) == 0
|| strcmp(buf, completion) == 0) {
duplicate = 1;
break;
}
}
if (!duplicate) {
bestlineAddCompletion(lc, completion);
}
efree(completion);
match = compl_func(token, 1);
}
efree(token);
if (lc->len > 1)
qsort(lc->cvec, lc->len, sizeof(char*), quotedstrcmp);
}
static void completion(const char *buf, int pos, bestlineCompletions *lc) {
int startindex = findbeginningoftoken(buf, pos);
char prefix = compl_prefix(buf, startindex);
switch (prefix) {
case '`': case '@': case '|': case '&':
case '(': case ')': case '{': case ';':
add_completions(buf, startindex, pos, &compl_builtin, lc);
add_completions(buf, startindex, pos, &compl_fn, lc);
add_completions(buf, startindex, pos, &compl_extcmd, lc);
return;
case '$':
add_completions(buf, startindex, pos, &compl_var, lc);
return;
}
// replace ~/ with $HOME/
char *expandedbuf = NULL;
if (buf[startindex] == '~' && buf[startindex + 1] == '/') {
const char* home = getenv("HOME");
if (home) {
size_t homelen = strlen(home);
expandedbuf = ealloc(strlen(buf) + homelen);
sprintf(expandedbuf, "%.*s%s%s", startindex, buf, home, buf + startindex + 1);
buf = expandedbuf;
pos += homelen - 1;
}
}
add_completions(buf, startindex, pos, &compl_filename, lc);
efree(expandedbuf);
}
void *edit_begin(int fd) {
List *hist;
struct cookie *c;
bestlineSetCompletionCallback(completion);
hist = varlookup("history");
if (hist != NULL)
if (bestlineHistoryLoad(hist->w) != 0 &&
errno != ENOENT) /* ignore if missing */
uerror(hist->w);
c = ealloc(sizeof *c);
c->buffer = NULL;
return c;
}
static char *prompt;
char *edit_alloc(void *cookie, size_t *count) {
struct cookie *c = cookie;
c->buffer = bestline(prompt);
if (c->buffer) {
*count = strlen(c->buffer);
if (*count)
bestlineHistoryAdd(c->buffer);
c->buffer[*count] = '\n';
++*count; /* include the \n */
}
return c->buffer;
}
void edit_prompt(void *cookie, char *pr) {
prompt = pr;
}
void edit_free(void *cookie) {
struct cookie *c = cookie;
efree(c->buffer);
c->buffer = NULL; /* allow "overfrees" */
}
void edit_end(void *cookie) {
struct cookie *c = cookie;
efree(c);
}
void edit_reset(void *cookie) {
// do nothing
}