Blame


1 84b88039 2021-07-12 op /*
2 84b88039 2021-07-12 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 84b88039 2021-07-12 op *
4 84b88039 2021-07-12 op * Permission to use, copy, modify, and distribute this software for any
5 84b88039 2021-07-12 op * purpose with or without fee is hereby granted, provided that the above
6 84b88039 2021-07-12 op * copyright notice and this permission notice appear in all copies.
7 84b88039 2021-07-12 op *
8 84b88039 2021-07-12 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 84b88039 2021-07-12 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 84b88039 2021-07-12 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 84b88039 2021-07-12 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 84b88039 2021-07-12 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 84b88039 2021-07-12 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 84b88039 2021-07-12 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 84b88039 2021-07-12 op */
16 84b88039 2021-07-12 op
17 4bc446b9 2021-07-21 op #include "compat.h"
18 4bc446b9 2021-07-21 op
19 4bc446b9 2021-07-21 op #include <stdio.h>
20 84b88039 2021-07-12 op #include <stdlib.h>
21 84b88039 2021-07-12 op #include <string.h>
22 84b88039 2021-07-12 op
23 450a89f7 2021-07-12 op #include "minibuffer.h"
24 1fce2e75 2021-08-14 op #include "session.h"
25 d1a0f2a3 2021-07-12 op #include "ui.h"
26 5caf7d67 2021-07-12 op #include "utf8.h"
27 9d65b1d9 2022-01-11 op #include "utils.h"
28 84b88039 2021-07-12 op
29 eefb3de5 2022-02-26 op #define nitems(x) (sizeof(x)/sizeof(x[0]))
30 eefb3de5 2022-02-26 op
31 d7ee7b5e 2021-07-15 op static void *minibuffer_metadata(void);
32 7bd3a14b 2022-04-13 op static const char *minibuffer_compl_text(void);
33 84b88039 2021-07-12 op static void minibuffer_hist_save_entry(void);
34 84b88039 2021-07-12 op static void yornp_self_insert(void);
35 84b88039 2021-07-12 op static void yornp_abort(void);
36 84b88039 2021-07-12 op static void read_self_insert(void);
37 84b88039 2021-07-12 op static void read_abort(void);
38 84b88039 2021-07-12 op static void read_select(void);
39 4bc446b9 2021-07-21 op static void handle_clear_echoarea(int, short, void *);
40 4bc446b9 2021-07-21 op
41 4bc446b9 2021-07-21 op static struct event clechoev;
42 4bc446b9 2021-07-21 op static struct timeval clechoev_timer = { 5, 0 };
43 84b88039 2021-07-12 op
44 84b88039 2021-07-12 op static void (*yornp_cb)(int, struct tab *);
45 84b88039 2021-07-12 op static struct tab *yornp_data;
46 84b88039 2021-07-12 op
47 d1353324 2021-07-13 op static void (*read_cb)(const char*, struct tab *);
48 d1353324 2021-07-13 op static struct tab *read_data;
49 84b88039 2021-07-12 op
50 78894e73 2021-08-12 op /* XXX: don't forget to init these in minibuffer_init */
51 84b88039 2021-07-12 op struct histhead eecmd_history,
52 84b88039 2021-07-12 op ir_history,
53 84b88039 2021-07-12 op lu_history,
54 84b88039 2021-07-12 op read_history;
55 84b88039 2021-07-12 op
56 84b88039 2021-07-12 op struct ministate ministate;
57 84b88039 2021-07-12 op
58 b1e1e41a 2021-07-14 op struct buffer minibufferwin;
59 54ee0a94 2021-07-21 op
60 54ee0a94 2021-07-21 op int in_minibuffer;
61 eefb3de5 2022-02-26 op
62 eefb3de5 2022-02-26 op static inline int
63 eefb3de5 2022-02-26 op matches(char **words, size_t len, struct line *l)
64 eefb3de5 2022-02-26 op {
65 eefb3de5 2022-02-26 op size_t i;
66 eefb3de5 2022-02-26 op int lm, am;
67 eefb3de5 2022-02-26 op
68 eefb3de5 2022-02-26 op for (i = 0; i < len; ++i) {
69 eefb3de5 2022-02-26 op lm = am = 0;
70 eefb3de5 2022-02-26 op
71 eefb3de5 2022-02-26 op if (strcasestr(l->line, words[i]) != NULL)
72 eefb3de5 2022-02-26 op lm = 1;
73 eefb3de5 2022-02-26 op if (l->alt != NULL &&
74 eefb3de5 2022-02-26 op strcasestr(l->alt, words[i]) != NULL)
75 eefb3de5 2022-02-26 op am = 1;
76 eefb3de5 2022-02-26 op
77 eefb3de5 2022-02-26 op if (!lm && !am)
78 eefb3de5 2022-02-26 op return 0;
79 eefb3de5 2022-02-26 op }
80 b1e1e41a 2021-07-14 op
81 eefb3de5 2022-02-26 op return 1;
82 eefb3de5 2022-02-26 op }
83 eefb3de5 2022-02-26 op
84 b1e1e41a 2021-07-14 op /*
85 b1e1e41a 2021-07-14 op * Recompute the visible completions. If add is 1, don't consider the
86 b1e1e41a 2021-07-14 op * ones already hidden.
87 b1e1e41a 2021-07-14 op */
88 b1e1e41a 2021-07-14 op void
89 b1e1e41a 2021-07-14 op recompute_completions(int add)
90 b1e1e41a 2021-07-14 op {
91 eefb3de5 2022-02-26 op static char buf[GEMINI_URL_LEN];
92 eefb3de5 2022-02-26 op char *input, **ap, *words[10];
93 eefb3de5 2022-02-26 op size_t len = 0;
94 b1e1e41a 2021-07-14 op struct line *l;
95 7c1d55bf 2022-04-13 op struct vline *vl;
96 e7b982f4 2021-07-14 op struct buffer *b;
97 b1e1e41a 2021-07-14 op
98 b1e1e41a 2021-07-14 op if (in_minibuffer != MB_COMPREAD)
99 b1e1e41a 2021-07-14 op return;
100 b1e1e41a 2021-07-14 op
101 eefb3de5 2022-02-26 op strlcpy(buf, ministate.buf, sizeof(buf));
102 eefb3de5 2022-02-26 op input = buf;
103 eefb3de5 2022-02-26 op
104 eefb3de5 2022-02-26 op /* tokenize the input */
105 eefb3de5 2022-02-26 op for (ap = words; ap < words + nitems(words) &&
106 eefb3de5 2022-02-26 op (*ap = strsep(&input, " ")) != NULL;) {
107 eefb3de5 2022-02-26 op if (**ap != '\0')
108 eefb3de5 2022-02-26 op ap++, len++;
109 eefb3de5 2022-02-26 op }
110 eefb3de5 2022-02-26 op
111 e7b982f4 2021-07-14 op b = &ministate.compl.buffer;
112 e7b982f4 2021-07-14 op TAILQ_FOREACH(l, &b->page.head, lines) {
113 e7b982f4 2021-07-14 op l->type = LINE_COMPL;
114 b1e1e41a 2021-07-14 op if (add && l->flags & L_HIDDEN)
115 b1e1e41a 2021-07-14 op continue;
116 eefb3de5 2022-02-26 op if (matches(words, len, l)) {
117 5977965a 2021-07-15 op if (l->flags & L_HIDDEN)
118 5977965a 2021-07-15 op b->line_max++;
119 b1e1e41a 2021-07-14 op l->flags &= ~L_HIDDEN;
120 5977965a 2021-07-15 op } else {
121 5977965a 2021-07-15 op if (!(l->flags & L_HIDDEN))
122 5977965a 2021-07-15 op b->line_max--;
123 b1e1e41a 2021-07-14 op l->flags |= L_HIDDEN;
124 5977965a 2021-07-15 op }
125 b1e1e41a 2021-07-14 op }
126 e7b982f4 2021-07-14 op
127 e7b982f4 2021-07-14 op if (b->current_line == NULL)
128 e7b982f4 2021-07-14 op b->current_line = TAILQ_FIRST(&b->head);
129 e7b982f4 2021-07-14 op b->current_line = adjust_line(b->current_line, b);
130 7c1d55bf 2022-04-13 op vl = b->current_line;
131 4bb17137 2022-04-14 op if (ministate.compl.must_select && vl != NULL)
132 7c1d55bf 2022-04-13 op vl->parent->type = LINE_COMPL_CURRENT;
133 b1e1e41a 2021-07-14 op }
134 b1e1e41a 2021-07-14 op
135 16578ca5 2021-01-02 op int
136 16578ca5 2021-01-02 op minibuffer_insert_current_candidate(void)
137 16578ca5 2021-01-02 op {
138 16578ca5 2021-01-02 op struct vline *vl;
139 16578ca5 2021-01-02 op
140 16578ca5 2021-01-02 op vl = ministate.compl.buffer.current_line;
141 16578ca5 2021-01-02 op if (vl == NULL || vl->parent->flags & L_HIDDEN)
142 16578ca5 2021-01-02 op return -1;
143 16578ca5 2021-01-02 op
144 16578ca5 2021-01-02 op minibuffer_taint_hist();
145 16578ca5 2021-01-02 op strlcpy(ministate.buf, vl->parent->line, sizeof(ministate.buf));
146 16578ca5 2021-01-02 op ministate.buffer.cpoff = utf8_cplen(ministate.buf);
147 16578ca5 2021-01-02 op
148 16578ca5 2021-01-02 op return 0;
149 16578ca5 2021-01-02 op }
150 16578ca5 2021-01-02 op
151 d7ee7b5e 2021-07-15 op static void *
152 d7ee7b5e 2021-07-15 op minibuffer_metadata(void)
153 d7ee7b5e 2021-07-15 op {
154 d7ee7b5e 2021-07-15 op struct vline *vl;
155 d7ee7b5e 2021-07-15 op
156 d7ee7b5e 2021-07-15 op vl = ministate.compl.buffer.current_line;
157 d7ee7b5e 2021-07-15 op
158 d7ee7b5e 2021-07-15 op if (vl == NULL || vl->parent->flags & L_HIDDEN)
159 d7ee7b5e 2021-07-15 op return NULL;
160 d7ee7b5e 2021-07-15 op
161 fbadd395 2021-07-16 op return vl->parent->data;
162 d7ee7b5e 2021-07-15 op }
163 d7ee7b5e 2021-07-15 op
164 7bd3a14b 2022-04-13 op static const char *
165 7bd3a14b 2022-04-13 op minibuffer_compl_text(void)
166 7bd3a14b 2022-04-13 op {
167 7bd3a14b 2022-04-13 op struct vline *vl;
168 7bd3a14b 2022-04-13 op
169 7bd3a14b 2022-04-13 op vl = ministate.compl.buffer.current_line;
170 7bd3a14b 2022-04-13 op if (vl == NULL || vl->parent->flags & L_HIDDEN ||
171 7bd3a14b 2022-04-13 op vl->parent->type == LINE_COMPL || vl->parent->line == NULL)
172 7bd3a14b 2022-04-13 op return ministate.buf;
173 7bd3a14b 2022-04-13 op return vl->parent->line;
174 7bd3a14b 2022-04-13 op }
175 7bd3a14b 2022-04-13 op
176 84b88039 2021-07-12 op static void
177 84b88039 2021-07-12 op minibuffer_hist_save_entry(void)
178 84b88039 2021-07-12 op {
179 84b88039 2021-07-12 op struct hist *hist;
180 7bd3a14b 2022-04-13 op const char *t;
181 84b88039 2021-07-12 op
182 84b88039 2021-07-12 op if (ministate.history == NULL)
183 84b88039 2021-07-12 op return;
184 84b88039 2021-07-12 op
185 84b88039 2021-07-12 op if ((hist = calloc(1, sizeof(*hist))) == NULL)
186 84b88039 2021-07-12 op abort();
187 84b88039 2021-07-12 op
188 7bd3a14b 2022-04-13 op t = minibuffer_compl_text();
189 7bd3a14b 2022-04-13 op strlcpy(hist->h, t, sizeof(hist->h));
190 84b88039 2021-07-12 op
191 32ac17a4 2021-08-12 op TAILQ_INSERT_TAIL(&ministate.history->head, hist, entries);
192 84b88039 2021-07-12 op ministate.history->len++;
193 84b88039 2021-07-12 op }
194 84b88039 2021-07-12 op
195 84b88039 2021-07-12 op /*
196 84b88039 2021-07-12 op * taint the minibuffer cache: if we're currently showing a history
197 84b88039 2021-07-12 op * element, copy that to the current buf and reset the "history
198 84b88039 2021-07-12 op * navigation" thing.
199 84b88039 2021-07-12 op */
200 84b88039 2021-07-12 op void
201 84b88039 2021-07-12 op minibuffer_taint_hist(void)
202 84b88039 2021-07-12 op {
203 84b88039 2021-07-12 op if (ministate.hist_cur == NULL)
204 84b88039 2021-07-12 op return;
205 84b88039 2021-07-12 op
206 84b88039 2021-07-12 op strlcpy(ministate.buf, ministate.hist_cur->h, sizeof(ministate.buf));
207 84b88039 2021-07-12 op ministate.hist_cur = NULL;
208 19f7f20c 2021-07-12 op ministate.buffer.current_line->line = ministate.buf;
209 84b88039 2021-07-12 op }
210 84b88039 2021-07-12 op
211 65601367 2021-07-14 op void
212 84b88039 2021-07-12 op minibuffer_self_insert(void)
213 84b88039 2021-07-12 op {
214 84b88039 2021-07-12 op char *c, tmp[5] = {0};
215 84b88039 2021-07-12 op size_t len;
216 84b88039 2021-07-12 op
217 84b88039 2021-07-12 op minibuffer_taint_hist();
218 84b88039 2021-07-12 op
219 84b88039 2021-07-12 op if (thiskey.cp == 0)
220 84b88039 2021-07-12 op return;
221 84b88039 2021-07-12 op
222 84b88039 2021-07-12 op len = utf8_encode(thiskey.cp, tmp);
223 84b88039 2021-07-12 op c = utf8_nth(ministate.buffer.current_line->line, ministate.buffer.cpoff);
224 84b88039 2021-07-12 op if (c + len > ministate.buf + sizeof(ministate.buf) - 1)
225 84b88039 2021-07-12 op return;
226 84b88039 2021-07-12 op
227 84b88039 2021-07-12 op memmove(c + len, c, strlen(c)+1);
228 84b88039 2021-07-12 op memcpy(c, tmp, len);
229 84b88039 2021-07-12 op ministate.buffer.cpoff++;
230 b1e1e41a 2021-07-14 op
231 b1e1e41a 2021-07-14 op recompute_completions(1);
232 40fbc354 2021-07-14 op }
233 40fbc354 2021-07-14 op
234 40fbc354 2021-07-14 op void
235 40fbc354 2021-07-14 op sensible_self_insert(void)
236 40fbc354 2021-07-14 op {
237 e8c9de1e 2021-07-20 op if (thiskey.meta ||
238 85c820b8 2021-07-24 op (!unicode_isgraph(thiskey.key) && thiskey.key != ' ')) {
239 84b88039 2021-07-12 op global_key_unbound();
240 84b88039 2021-07-12 op return;
241 84b88039 2021-07-12 op }
242 84b88039 2021-07-12 op
243 84b88039 2021-07-12 op minibuffer_self_insert();
244 84b88039 2021-07-12 op }
245 84b88039 2021-07-12 op
246 84b88039 2021-07-12 op void
247 84b88039 2021-07-12 op eecmd_select(void)
248 84b88039 2021-07-12 op {
249 16578ca5 2021-01-02 op struct cmd *cmd;
250 16578ca5 2021-01-02 op const char *t;
251 16578ca5 2021-01-02 op
252 7bd3a14b 2022-04-13 op t = minibuffer_compl_text();
253 84b88039 2021-07-12 op for (cmd = cmds; cmd->cmd != NULL; ++cmd) {
254 16578ca5 2021-01-02 op if (!strcmp(cmd->cmd, t)) {
255 84b88039 2021-07-12 op minibuffer_hist_save_entry();
256 7bd3a14b 2022-04-13 op exit_minibuffer();
257 84b88039 2021-07-12 op cmd->fn(current_buffer());
258 84b88039 2021-07-12 op return;
259 84b88039 2021-07-12 op }
260 84b88039 2021-07-12 op }
261 84b88039 2021-07-12 op
262 84b88039 2021-07-12 op message("No match");
263 84b88039 2021-07-12 op }
264 84b88039 2021-07-12 op
265 84b88039 2021-07-12 op void
266 9a28e7e5 2021-08-03 op ir_select_gemini(void)
267 84b88039 2021-07-12 op {
268 84b88039 2021-07-12 op char buf[1025] = {0};
269 84b88039 2021-07-12 op struct phos_uri uri;
270 83dce83d 2021-07-17 op struct tab *tab = current_tab;
271 84b88039 2021-07-12 op
272 84b88039 2021-07-12 op minibuffer_hist_save_entry();
273 84b88039 2021-07-12 op
274 84b88039 2021-07-12 op /* a bit ugly but... */
275 84b88039 2021-07-12 op memcpy(&uri, &tab->uri, sizeof(tab->uri));
276 7bd3a14b 2022-04-13 op phos_uri_set_query(&uri, minibuffer_compl_text());
277 ed504b9e 2022-02-07 op phos_serialize_uri(&uri, buf, sizeof(buf));
278 7bd3a14b 2022-04-13 op
279 7bd3a14b 2022-04-13 op exit_minibuffer();
280 ed504b9e 2022-02-07 op load_url_in_tab(tab, buf, NULL, LU_MODE_NOCACHE);
281 ed504b9e 2022-02-07 op }
282 ed504b9e 2022-02-07 op
283 ed504b9e 2022-02-07 op void
284 ed504b9e 2022-02-07 op ir_select_reply(void)
285 ed504b9e 2022-02-07 op {
286 ed504b9e 2022-02-07 op char buf[1025] = {0};
287 ed504b9e 2022-02-07 op struct phos_uri uri;
288 ed504b9e 2022-02-07 op struct tab *tab = current_tab;
289 ed504b9e 2022-02-07 op
290 ed504b9e 2022-02-07 op minibuffer_hist_save_entry();
291 ed504b9e 2022-02-07 op
292 ed504b9e 2022-02-07 op /* a bit ugly but... */
293 ed504b9e 2022-02-07 op strlcpy(buf, tab->last_input_url, sizeof(buf));
294 ed504b9e 2022-02-07 op phos_parse_absolute_uri(buf, &uri);
295 7bd3a14b 2022-04-13 op phos_uri_set_query(&uri, minibuffer_compl_text());
296 84b88039 2021-07-12 op phos_serialize_uri(&uri, buf, sizeof(buf));
297 7bd3a14b 2022-04-13 op
298 7bd3a14b 2022-04-13 op exit_minibuffer();
299 ed21a9a1 2022-01-11 op load_url_in_tab(tab, buf, NULL, LU_MODE_NOCACHE);
300 84b88039 2021-07-12 op }
301 84b88039 2021-07-12 op
302 84b88039 2021-07-12 op void
303 9a28e7e5 2021-08-03 op ir_select_gopher(void)
304 9a28e7e5 2021-08-03 op {
305 9a28e7e5 2021-08-03 op minibuffer_hist_save_entry();
306 7bd3a14b 2022-04-13 op gopher_send_search_req(current_tab, minibuffer_compl_text());
307 7bd3a14b 2022-04-13 op exit_minibuffer();
308 9a28e7e5 2021-08-03 op }
309 9a28e7e5 2021-08-03 op
310 9a28e7e5 2021-08-03 op void
311 84b88039 2021-07-12 op lu_select(void)
312 84b88039 2021-07-12 op {
313 c6efff96 2021-08-16 op char url[GEMINI_URL_LEN+1];
314 c6efff96 2021-08-16 op
315 84b88039 2021-07-12 op minibuffer_hist_save_entry();
316 7bd3a14b 2022-04-13 op humanify_url(minibuffer_compl_text(), url, sizeof(url));
317 7bd3a14b 2022-04-13 op exit_minibuffer();
318 ed21a9a1 2022-01-11 op load_url_in_tab(current_tab, url, NULL, LU_MODE_NOCACHE);
319 84b88039 2021-07-12 op }
320 84b88039 2021-07-12 op
321 84b88039 2021-07-12 op void
322 84b88039 2021-07-12 op bp_select(void)
323 84b88039 2021-07-12 op {
324 84b88039 2021-07-12 op exit_minibuffer();
325 84b88039 2021-07-12 op if (*ministate.buf != '\0')
326 84b88039 2021-07-12 op add_to_bookmarks(ministate.buf);
327 84b88039 2021-07-12 op else
328 84b88039 2021-07-12 op message("Abort.");
329 84b88039 2021-07-12 op }
330 84b88039 2021-07-12 op
331 65601367 2021-07-14 op void
332 65601367 2021-07-14 op ts_select(void)
333 65601367 2021-07-14 op {
334 65601367 2021-07-14 op struct tab *tab;
335 65601367 2021-07-14 op
336 d7ee7b5e 2021-07-15 op if ((tab = minibuffer_metadata()) == NULL) {
337 65601367 2021-07-14 op message("No tab selected");
338 65601367 2021-07-14 op return;
339 65601367 2021-07-14 op }
340 65601367 2021-07-14 op
341 65601367 2021-07-14 op exit_minibuffer();
342 65601367 2021-07-14 op switch_to_tab(tab);
343 753c6ac7 2021-07-14 op }
344 753c6ac7 2021-07-14 op
345 753c6ac7 2021-07-14 op void
346 753c6ac7 2021-07-14 op ls_select(void)
347 753c6ac7 2021-07-14 op {
348 753c6ac7 2021-07-14 op struct line *l;
349 753c6ac7 2021-07-14 op
350 d7ee7b5e 2021-07-15 op if ((l = minibuffer_metadata()) == NULL) {
351 753c6ac7 2021-07-14 op message("No link selected");
352 753c6ac7 2021-07-14 op return;
353 753c6ac7 2021-07-14 op }
354 753c6ac7 2021-07-14 op
355 753c6ac7 2021-07-14 op exit_minibuffer();
356 ed21a9a1 2022-01-11 op load_url_in_tab(current_tab, l->alt, NULL, LU_MODE_NOCACHE);
357 753c6ac7 2021-07-14 op }
358 753c6ac7 2021-07-14 op
359 d7ee7b5e 2021-07-15 op static inline void
360 d7ee7b5e 2021-07-15 op jump_to_line(struct line *l)
361 753c6ac7 2021-07-14 op {
362 753c6ac7 2021-07-14 op struct vline *vl;
363 5924d8d2 2021-07-21 op struct buffer *buffer;
364 753c6ac7 2021-07-14 op
365 5924d8d2 2021-07-21 op buffer = current_buffer();
366 5924d8d2 2021-07-21 op
367 5924d8d2 2021-07-21 op TAILQ_FOREACH(vl, &buffer->head, vlines) {
368 753c6ac7 2021-07-14 op if (vl->parent == l)
369 753c6ac7 2021-07-14 op break;
370 753c6ac7 2021-07-14 op }
371 753c6ac7 2021-07-14 op
372 753c6ac7 2021-07-14 op if (vl == NULL)
373 d7ee7b5e 2021-07-15 op message("Ops, %s error! Please report to %s",
374 d7ee7b5e 2021-07-15 op __func__, PACKAGE_BUGREPORT);
375 0b442ded 2021-07-16 op else {
376 5924d8d2 2021-07-21 op buffer->top_line = vl;
377 5924d8d2 2021-07-21 op buffer->current_line = vl;
378 0b442ded 2021-07-16 op }
379 65601367 2021-07-14 op }
380 65601367 2021-07-14 op
381 d7ee7b5e 2021-07-15 op void
382 d7ee7b5e 2021-07-15 op swiper_select(void)
383 edd9a650 2021-07-15 op {
384 edd9a650 2021-07-15 op struct line *l;
385 edd9a650 2021-07-15 op
386 edd9a650 2021-07-15 op if ((l = minibuffer_metadata()) == NULL) {
387 edd9a650 2021-07-15 op message("No line selected");
388 edd9a650 2021-07-15 op return;
389 edd9a650 2021-07-15 op }
390 edd9a650 2021-07-15 op
391 edd9a650 2021-07-15 op exit_minibuffer();
392 edd9a650 2021-07-15 op jump_to_line(l);
393 edd9a650 2021-07-15 op }
394 edd9a650 2021-07-15 op
395 edd9a650 2021-07-15 op void
396 edd9a650 2021-07-15 op toc_select(void)
397 d7ee7b5e 2021-07-15 op {
398 d7ee7b5e 2021-07-15 op struct line *l;
399 d7ee7b5e 2021-07-15 op
400 d7ee7b5e 2021-07-15 op if ((l = minibuffer_metadata()) == NULL) {
401 d7ee7b5e 2021-07-15 op message("No line selected");
402 d7ee7b5e 2021-07-15 op return;
403 d7ee7b5e 2021-07-15 op }
404 d7ee7b5e 2021-07-15 op
405 d7ee7b5e 2021-07-15 op exit_minibuffer();
406 d7ee7b5e 2021-07-15 op jump_to_line(l);
407 d7ee7b5e 2021-07-15 op }
408 d7ee7b5e 2021-07-15 op
409 84b88039 2021-07-12 op static void
410 84b88039 2021-07-12 op yornp_self_insert(void)
411 84b88039 2021-07-12 op {
412 84b88039 2021-07-12 op if (thiskey.key != 'y' && thiskey.key != 'n') {
413 84b88039 2021-07-12 op message("Please answer y or n");
414 84b88039 2021-07-12 op return;
415 84b88039 2021-07-12 op }
416 84b88039 2021-07-12 op
417 84b88039 2021-07-12 op exit_minibuffer();
418 84b88039 2021-07-12 op yornp_cb(thiskey.key == 'y', yornp_data);
419 84b88039 2021-07-12 op }
420 84b88039 2021-07-12 op
421 84b88039 2021-07-12 op static void
422 84b88039 2021-07-12 op yornp_abort(void)
423 84b88039 2021-07-12 op {
424 84b88039 2021-07-12 op exit_minibuffer();
425 84b88039 2021-07-12 op yornp_cb(0, yornp_data);
426 84b88039 2021-07-12 op }
427 84b88039 2021-07-12 op
428 84b88039 2021-07-12 op static void
429 84b88039 2021-07-12 op read_self_insert(void)
430 84b88039 2021-07-12 op {
431 84b88039 2021-07-12 op if (thiskey.meta || !unicode_isgraph(thiskey.cp)) {
432 84b88039 2021-07-12 op global_key_unbound();
433 84b88039 2021-07-12 op return;
434 84b88039 2021-07-12 op }
435 84b88039 2021-07-12 op
436 84b88039 2021-07-12 op minibuffer_self_insert();
437 84b88039 2021-07-12 op }
438 84b88039 2021-07-12 op
439 84b88039 2021-07-12 op static void
440 84b88039 2021-07-12 op read_abort(void)
441 84b88039 2021-07-12 op {
442 84b88039 2021-07-12 op exit_minibuffer();
443 84b88039 2021-07-12 op read_cb(NULL, read_data);
444 84b88039 2021-07-12 op }
445 84b88039 2021-07-12 op
446 84b88039 2021-07-12 op static void
447 84b88039 2021-07-12 op read_select(void)
448 84b88039 2021-07-12 op {
449 95a8c791 2021-08-26 op exit_minibuffer();
450 84b88039 2021-07-12 op minibuffer_hist_save_entry();
451 84b88039 2021-07-12 op read_cb(ministate.buf, read_data);
452 b1e1e41a 2021-07-14 op }
453 b1e1e41a 2021-07-14 op
454 b1e1e41a 2021-07-14 op /*
455 b1e1e41a 2021-07-14 op * TODO: we should collect this asynchronously...
456 b1e1e41a 2021-07-14 op */
457 b1e1e41a 2021-07-14 op static inline void
458 b1e1e41a 2021-07-14 op populate_compl_buffer(complfn *fn, void *data)
459 b1e1e41a 2021-07-14 op {
460 b3be07ea 2021-07-18 op const char *s, *descr;
461 b1e1e41a 2021-07-14 op struct line *l;
462 b1e1e41a 2021-07-14 op struct buffer *b;
463 b1e1e41a 2021-07-14 op struct parser *p;
464 0ce8aa3e 2021-07-18 op void *linedata;
465 b1e1e41a 2021-07-14 op
466 b1e1e41a 2021-07-14 op b = &ministate.compl.buffer;
467 b1e1e41a 2021-07-14 op p = &b->page;
468 b1e1e41a 2021-07-14 op
469 0ce8aa3e 2021-07-18 op linedata = NULL;
470 0ce8aa3e 2021-07-18 op descr = NULL;
471 b3be07ea 2021-07-18 op while ((s = fn(&data, &linedata, &descr)) != NULL) {
472 b1e1e41a 2021-07-14 op if ((l = calloc(1, sizeof(*l))) == NULL)
473 b1e1e41a 2021-07-14 op abort();
474 b1e1e41a 2021-07-14 op
475 e7b982f4 2021-07-14 op l->type = LINE_COMPL;
476 fbadd395 2021-07-16 op l->data = linedata;
477 b3be07ea 2021-07-18 op l->alt = (char*)descr;
478 e7b982f4 2021-07-14 op if ((l->line = strdup(s)) == NULL)
479 e7b982f4 2021-07-14 op abort();
480 b1e1e41a 2021-07-14 op
481 32ac17a4 2021-08-12 op TAILQ_INSERT_TAIL(&p->head, l, lines);
482 65601367 2021-07-14 op
483 65601367 2021-07-14 op linedata = NULL;
484 b3be07ea 2021-07-18 op descr = NULL;
485 b1e1e41a 2021-07-14 op }
486 7c1d55bf 2022-04-13 op
487 7c1d55bf 2022-04-13 op if ((l = TAILQ_FIRST(&p->head)) != NULL &&
488 7c1d55bf 2022-04-13 op ministate.compl.must_select)
489 7c1d55bf 2022-04-13 op l->type = LINE_COMPL_CURRENT;
490 84b88039 2021-07-12 op }
491 84b88039 2021-07-12 op
492 84b88039 2021-07-12 op void
493 84b88039 2021-07-12 op enter_minibuffer(void (*self_insert_fn)(void), void (*donefn)(void),
494 e5a2797f 2021-07-13 op void (*abortfn)(void), struct histhead *hist,
495 27dbcaab 2022-04-13 op complfn *complfn, void *compldata, int must_select)
496 84b88039 2021-07-12 op {
497 b1e1e41a 2021-07-14 op in_minibuffer = complfn == NULL ? MB_READ : MB_COMPREAD;
498 b1e1e41a 2021-07-14 op if (in_minibuffer == MB_COMPREAD) {
499 b1e1e41a 2021-07-14 op ui_schedule_redraw();
500 b1e1e41a 2021-07-14 op
501 b1e1e41a 2021-07-14 op ministate.compl.fn = complfn;
502 b1e1e41a 2021-07-14 op ministate.compl.data = compldata;
503 27dbcaab 2022-04-13 op ministate.compl.must_select = must_select;
504 b1e1e41a 2021-07-14 op populate_compl_buffer(complfn, compldata);
505 b1e1e41a 2021-07-14 op }
506 b1e1e41a 2021-07-14 op
507 84b88039 2021-07-12 op base_map = &minibuffer_map;
508 84b88039 2021-07-12 op current_map = &minibuffer_map;
509 84b88039 2021-07-12 op
510 84b88039 2021-07-12 op base_map->unhandled_input = self_insert_fn;
511 84b88039 2021-07-12 op
512 84b88039 2021-07-12 op ministate.donefn = donefn;
513 84b88039 2021-07-12 op ministate.abortfn = abortfn;
514 84b88039 2021-07-12 op memset(ministate.buf, 0, sizeof(ministate.buf));
515 84b88039 2021-07-12 op ministate.buffer.current_line = &ministate.vline;
516 84b88039 2021-07-12 op ministate.buffer.current_line->line = ministate.buf;
517 84b88039 2021-07-12 op ministate.buffer.cpoff = 0;
518 84b88039 2021-07-12 op strlcpy(ministate.buf, "", sizeof(ministate.prompt));
519 84b88039 2021-07-12 op
520 84b88039 2021-07-12 op ministate.history = hist;
521 84b88039 2021-07-12 op ministate.hist_cur = NULL;
522 84b88039 2021-07-12 op ministate.hist_off = 0;
523 84b88039 2021-07-12 op }
524 84b88039 2021-07-12 op
525 84b88039 2021-07-12 op void
526 84b88039 2021-07-12 op exit_minibuffer(void)
527 84b88039 2021-07-12 op {
528 e7b982f4 2021-07-14 op if (in_minibuffer == MB_COMPREAD) {
529 e7b982f4 2021-07-14 op erase_buffer(&ministate.compl.buffer);
530 b1e1e41a 2021-07-14 op ui_schedule_redraw();
531 e7b982f4 2021-07-14 op }
532 b1e1e41a 2021-07-14 op
533 84b88039 2021-07-12 op in_minibuffer = 0;
534 84b88039 2021-07-12 op base_map = &global_map;
535 84b88039 2021-07-12 op current_map = &global_map;
536 84b88039 2021-07-12 op }
537 84b88039 2021-07-12 op
538 84b88039 2021-07-12 op void
539 84b88039 2021-07-12 op yornp(const char *prompt, void (*fn)(int, struct tab*),
540 84b88039 2021-07-12 op struct tab *data)
541 84b88039 2021-07-12 op {
542 84b88039 2021-07-12 op size_t len;
543 84b88039 2021-07-12 op
544 84b88039 2021-07-12 op if (in_minibuffer) {
545 84b88039 2021-07-12 op fn(0, data);
546 84b88039 2021-07-12 op return;
547 84b88039 2021-07-12 op }
548 84b88039 2021-07-12 op
549 84b88039 2021-07-12 op yornp_cb = fn;
550 84b88039 2021-07-12 op yornp_data = data;
551 84b88039 2021-07-12 op enter_minibuffer(yornp_self_insert, yornp_self_insert,
552 27dbcaab 2022-04-13 op yornp_abort, NULL, NULL, NULL, 0);
553 84b88039 2021-07-12 op
554 84b88039 2021-07-12 op len = sizeof(ministate.prompt);
555 84b88039 2021-07-12 op strlcpy(ministate.prompt, prompt, len);
556 84b88039 2021-07-12 op strlcat(ministate.prompt, " (y or n) ", len);
557 84b88039 2021-07-12 op }
558 84b88039 2021-07-12 op
559 4bc446b9 2021-07-21 op void
560 4bc446b9 2021-07-21 op minibuffer_read(const char *prompt, void (*fn)(const char *, struct tab *),
561 b1e1e41a 2021-07-14 op struct tab *data)
562 84b88039 2021-07-12 op {
563 84b88039 2021-07-12 op size_t len;
564 84b88039 2021-07-12 op
565 84b88039 2021-07-12 op if (in_minibuffer)
566 84b88039 2021-07-12 op return;
567 84b88039 2021-07-12 op
568 84b88039 2021-07-12 op read_cb = fn;
569 84b88039 2021-07-12 op read_data = data;
570 84b88039 2021-07-12 op enter_minibuffer(read_self_insert, read_select, read_abort,
571 27dbcaab 2022-04-13 op &read_history, NULL, NULL, 0);
572 84b88039 2021-07-12 op
573 84b88039 2021-07-12 op len = sizeof(ministate.prompt);
574 84b88039 2021-07-12 op strlcpy(ministate.prompt, prompt, len);
575 84b88039 2021-07-12 op strlcat(ministate.prompt, ": ", len);
576 4bc446b9 2021-07-21 op }
577 4bc446b9 2021-07-21 op
578 4bc446b9 2021-07-21 op static void
579 4bc446b9 2021-07-21 op handle_clear_echoarea(int fd, short ev, void *d)
580 4bc446b9 2021-07-21 op {
581 4bc446b9 2021-07-21 op free(ministate.curmesg);
582 4bc446b9 2021-07-21 op ministate.curmesg = NULL;
583 4bc446b9 2021-07-21 op
584 4bc446b9 2021-07-21 op ui_after_message_hook();
585 4bc446b9 2021-07-21 op }
586 4bc446b9 2021-07-21 op
587 4bc446b9 2021-07-21 op void
588 4bc446b9 2021-07-21 op vmessage(const char *fmt, va_list ap)
589 4bc446b9 2021-07-21 op {
590 4bc446b9 2021-07-21 op if (evtimer_pending(&clechoev, NULL))
591 4bc446b9 2021-07-21 op evtimer_del(&clechoev);
592 4bc446b9 2021-07-21 op
593 4bc446b9 2021-07-21 op free(ministate.curmesg);
594 4bc446b9 2021-07-21 op ministate.curmesg = NULL;
595 4bc446b9 2021-07-21 op
596 4bc446b9 2021-07-21 op if (fmt != NULL) {
597 4bc446b9 2021-07-21 op evtimer_set(&clechoev, handle_clear_echoarea, NULL);
598 4bc446b9 2021-07-21 op evtimer_add(&clechoev, &clechoev_timer);
599 4bc446b9 2021-07-21 op
600 4bc446b9 2021-07-21 op /* TODO: what to do if the allocation fails here? */
601 4bc446b9 2021-07-21 op if (vasprintf(&ministate.curmesg, fmt, ap) == -1)
602 4bc446b9 2021-07-21 op ministate.curmesg = NULL;
603 4bc446b9 2021-07-21 op }
604 4bc446b9 2021-07-21 op
605 4bc446b9 2021-07-21 op ui_after_message_hook();
606 84b88039 2021-07-12 op }
607 4bc446b9 2021-07-21 op
608 4bc446b9 2021-07-21 op void
609 4bc446b9 2021-07-21 op message(const char *fmt, ...)
610 4bc446b9 2021-07-21 op {
611 4bc446b9 2021-07-21 op va_list ap;
612 4bc446b9 2021-07-21 op
613 4bc446b9 2021-07-21 op va_start(ap, fmt);
614 4bc446b9 2021-07-21 op vmessage(fmt, ap);
615 4bc446b9 2021-07-21 op va_end(ap);
616 4bc446b9 2021-07-21 op }
617 4bc446b9 2021-07-21 op
618 4bc446b9 2021-07-21 op void
619 4bc446b9 2021-07-21 op minibuffer_init(void)
620 4bc446b9 2021-07-21 op {
621 bccb5b0b 2021-07-21 op TAILQ_INIT(&eecmd_history.head);
622 bccb5b0b 2021-07-21 op TAILQ_INIT(&ir_history.head);
623 bccb5b0b 2021-07-21 op TAILQ_INIT(&lu_history.head);
624 78894e73 2021-08-12 op TAILQ_INIT(&read_history.head);
625 bccb5b0b 2021-07-21 op
626 78894e73 2021-08-12 op TAILQ_INIT(&ministate.compl.buffer.head);
627 78894e73 2021-08-12 op TAILQ_INIT(&ministate.compl.buffer.page.head);
628 78894e73 2021-08-12 op
629 bccb5b0b 2021-07-21 op ministate.line.type = LINE_TEXT;
630 bccb5b0b 2021-07-21 op ministate.vline.parent = &ministate.line;
631 ab0a4274 2021-07-25 op ministate.buffer.page.name = "*minibuffer*";
632 bccb5b0b 2021-07-21 op ministate.buffer.current_line = &ministate.vline;
633 bccb5b0b 2021-07-21 op
634 4bc446b9 2021-07-21 op evtimer_set(&clechoev, handle_clear_echoarea, NULL);
635 4bc446b9 2021-07-21 op }