-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathedit-readline.c
358 lines (310 loc) · 8.34 KB
/
edit-readline.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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#include "rc.h"
#include <errno.h>
#include <stdio.h>
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <readline/readline.h>
#include <readline/history.h>
#include <readline/rltypedefs.h>
#include "edit.h"
bool editing = 1;
static const char *quote_chars = "\t\n !#$&'()*;<=>?@[\\]^`{|}~";
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);
}
char *quote(char *p, int open) {
if (strpbrk(p, quote_chars)) {
char *r = mprint("%#S", p);
if (open)
r[strlen(r)-1] = '\0';
efree(p);
return r;
}
return p;
}
static char *unquote(const char *text) {
int quoted = 0;
char *p, *r;
p = r = ealloc(strlen(text) + 1);
while ((*p = *text++)) {
if (*p == '\'' && (!quoted || *text != '\''))
quoted = !quoted;
else
p++;
}
return r;
}
/* 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 (S_ISDIR(st.st_mode))
rl_completion_append_character = '/';
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. */
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 rl_compentry_func_t *const compl_cmd_funcs[] = {
compl_builtin,
compl_fn,
compl_extcmd
};
static char *compl_command(const char *text, int state) {
static size_t i;
static int s;
char *name = NULL;
if (!state) {
i = 0;
s = 0;
}
while (name == NULL && i < arraysize(compl_cmd_funcs)) {
name = compl_cmd_funcs[i](text, s);
if (name != NULL) {
s = 1;
} else {
i++;
s = 0;
}
}
return name;
}
static char *compl_filename(const char *text, int state) {
char *name = rl_filename_completion_function(text, state);
struct stat st;
if (name != NULL && stat(name, &st) == 0 && S_ISDIR(st.st_mode))
rl_completion_append_character = '/';
return name;
}
static rl_compentry_func_t *compl_func(char prefix) {
switch (prefix) {
case '`': case '@': case '|': case '&':
case '(': case ')': case '{': case ';':
return compl_command;
case '$':
return compl_var;
}
return compl_filename;
}
static char compl_prefix(int index) {
while (index-- > 0) {
char c = rl_line_buffer[index];
if (c != ' ' && c != '\t')
return c;
}
return ';';
}
/* Find the start of the word to complete. This function is the only way to
* make readline's code fully support rc's quoting rules. It is called in
* *_rl_find_completion_word* as the *rl_completion_word_break_hook* and
* exploits the fact that readline stores the start of the word in *rl_point*.
* We put the correct postion there first and prevent readline from overwriting
* it by keeping *rl_completer_quote_characters* empty!
*/
static char *compl_start() {
int i, quoted = 0, start = 0;
for (i = 0; i < rl_point; i++) {
char c = rl_line_buffer[i];
if (c == '\'')
quoted = !quoted;
if (!quoted && strchr(rl_basic_word_break_characters, c))
start = i;
}
rl_point = start;
return NULL;
}
static int matchcmp(const void *a, const void *b) {
return strcoll(*(const char **)a, *(const char **)b);
}
static rl_compentry_func_t *compentry_func;
static char **rc_completion(const char *text, int start, int end) {
size_t i, n;
char *t = unquote(text);
char **matches = NULL;
rl_compentry_func_t *func;
if (compentry_func != NULL) {
func = compentry_func;
compentry_func = NULL;
} else
func = compl_func(compl_prefix(start));
matches = rl_completion_matches(t, func);
if (matches) {
for (n = 1; matches[n]; n++);
qsort(&matches[1], n - 1, sizeof(matches[0]), matchcmp);
if (rl_completion_type != '?')
matches[0] = quote(matches[0], n > 1);
if (rl_completion_type == '*')
for (i = 1; i < n; i++)
matches[i] = quote(matches[i], 0);
}
efree(t);
rl_attempted_completion_over = 1;
rl_sort_completion_matches = 0;
return matches;
}
static int expl_complete(rl_compentry_func_t *func, int count, int key) {
if (rl_last_func == rl_complete)
rl_last_func = NULL;
compentry_func = func;
return rl_complete(count, key);
}
static int rc_complete_command(int count, int key) {
return expl_complete(compl_extcmd, count, key);
}
static int rc_complete_filename(int count, int key) {
return expl_complete(compl_filename, count, key);
}
static int rc_complete_variable(int count, int key) {
return expl_complete(compl_var, count, key);
}
void *edit_begin(int fd) {
List *hist;
struct cookie *c;
rl_attempted_completion_function = rc_completion;
rl_basic_quote_characters = "";
rl_basic_word_break_characters = " \t\n`@$><=;|&{(";
rl_catch_signals = 0;
rl_completion_word_break_hook = compl_start;
rl_readline_name = "rc";
rl_initialize();
rl_add_funmap_entry("rc-complete-command", rc_complete_command);
rl_add_funmap_entry("rc-complete-filename", rc_complete_filename);
rl_add_funmap_entry("rc-complete-variable", rc_complete_variable);
rl_bind_keyseq("\e!", rc_complete_command);
rl_bind_keyseq("\e/", rc_complete_filename);
rl_bind_keyseq("\e$", rc_complete_variable);
hist = varlookup("history");
if (hist != NULL)
if (read_history(hist->w) != 0 &&
errno != ENOENT) /* ignore if missing */
uerror(hist->w);
c = ealloc(sizeof *c);
c->buffer = NULL;
return c;
}
static void (*oldint)(int), (*oldquit)(int);
static void edit_catcher(int sig) {
sys_signal(SIGINT, oldint);
sys_signal(SIGQUIT, oldquit);
write(2, "\n", 1);
rc_raise(eError);
}
static char *prompt;
char *edit_alloc(void *cookie, size_t *count) {
struct cookie *c = cookie;
oldint = sys_signal(SIGINT, edit_catcher);
oldquit = sys_signal(SIGQUIT, edit_catcher);
rl_reset_screen_size();
c->buffer = readline(prompt);
sys_signal(SIGINT, oldint);
sys_signal(SIGQUIT, oldquit);
if (c->buffer) {
*count = strlen(c->buffer);
if (*count) {
history_set_pos(history_length);
while (history_search_prefix(c->buffer, -1) == 0) {
HIST_ENTRY *e = current_history();
if (e != NULL && e->line[*count] == '\0') {
if ((e = remove_history(where_history())))
free_history_entry(e);
}
if (!previous_history())
break;
}
add_history(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);
/* Set c->buffer to NULL, allowing us to "overfree" it. This is a bit
* of a kludge, but it's otherwise hard to deal with the case where a
* signal causes an early return from readline. */
c->buffer = NULL;
}
void edit_end(void *cookie) {
struct cookie *c = cookie;
efree(c);
}
void edit_reset(void *cookie) {
rl_reset_terminal(NULL);
}