mk-conf.sh, auxlily.c: fix va_copy(3) detection with -std=c89
[s-mailx.git] / tty.c
blob5ad5ecdbd0c22741bab890924a8951cb18806faa
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ TTY (command line) editing interaction.
3 *@ Because we have multiple line-editor implementations, including our own
4 *@ M(ailx) L(ine) E(ditor), change the file layout a bit and place those
5 *@ one after the other below the other externals.
7 * Copyright (c) 2012 - 2016 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
9 * Permission to use, copy, modify, and/or distribute this software for any
10 * purpose with or without fee is hereby granted, provided that the above
11 * copyright notice and this permission notice appear in all copies.
13 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
14 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
15 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
16 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
17 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
19 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 #undef n_FILE
22 #define n_FILE tty
24 #ifndef HAVE_AMALGAMATION
25 # include "nail.h"
26 #endif
28 #if defined HAVE_MLE || defined HAVE_TERMCAP
29 # define a_TTY_SIGNALS
30 #endif
32 /* History support macros */
33 #ifdef HAVE_HISTORY
34 # define a_TTY_HISTFILE(S) \
35 do{\
36 char const *__hist_obsolete = ok_vlook(NAIL_HISTFILE);\
37 if(__hist_obsolete != NULL)\
38 OBSOLETE(_("please use *history-file* instead of *NAIL_HISTFILE*"));\
39 S = ok_vlook(history_file);\
40 if((S) == NULL)\
41 (S) = __hist_obsolete;\
42 if((S) != NULL)\
43 S = fexpand(S, FEXP_LOCAL | FEXP_NSHELL);\
44 }while(0)
46 # define a_TTY_HISTSIZE(V) \
47 do{\
48 char const *__hist_obsolete = ok_vlook(NAIL_HISTSIZE);\
49 char const *__sv = ok_vlook(history_size);\
50 long __rv;\
51 if(__hist_obsolete != NULL)\
52 OBSOLETE(_("please use *history-size* instead of *NAIL_HISTSIZE*"));\
53 if(__sv == NULL)\
54 __sv = __hist_obsolete;\
55 if(__sv == NULL || (__rv = strtol(__sv, NULL, 10)) == 0)\
56 __rv = HIST_SIZE;\
57 else if(__rv < 0)\
58 __rv = 0;\
59 (V) = __rv;\
60 }while(0)
62 # define a_TTY_CHECK_ADDHIST(S,ISGABBY,NOACT) \
63 do{\
64 if(!(pstate & (PS_ROOT | PS_LINE_EDITOR_INIT)) ||\
65 ok_blook(line_editor_disable) ||\
66 ((ISGABBY) && !ok_blook(history_gabby)) ||\
67 spacechar(*(S)) || *(S) == '\0')\
68 NOACT;\
69 }while(0)
71 # define C_HISTORY_SHARED \
72 char **argv = v;\
73 long entry;\
74 NYD_ENTER;\
76 if(ok_blook(line_editor_disable)){\
77 n_err(_("history: *line-editor-disable* is set\n"));\
78 goto jerr;\
80 if(!(pstate & PS_LINE_EDITOR_INIT)){\
81 n_tty_init();\
82 assert(pstate & PS_LINE_EDITOR_INIT);\
84 if(*argv == NULL)\
85 goto jlist;\
86 if(argv[1] != NULL)\
87 goto jerr;\
88 if(!asccasecmp(*argv, "show"))\
89 goto jlist;\
90 if(!asccasecmp(*argv, "clear"))\
91 goto jclear;\
92 if((entry = strtol(*argv, argv, 10)) > 0 && **argv == '\0')\
93 goto jentry;\
94 jerr:\
95 n_err(_("Synopsis: history: %s\n"),\
96 /* Same string as in cmd_tab.h, still hoping...) */\
97 _("<show> (default), <clear> or select <NO> from editor history"));\
98 v = NULL;\
99 jleave:\
100 NYD_LEAVE;\
101 return (v == NULL ? !STOP : !OKAY); /* xxx 1:bad 0:good -- do some */
102 #endif /* HAVE_HISTORY */
104 #ifdef a_TTY_SIGNALS
105 static sighandler_type a_tty_oint, a_tty_oquit, a_tty_oterm,
106 a_tty_ohup,
107 a_tty_otstp, a_tty_ottin, a_tty_ottou;
108 #endif
110 #ifdef a_TTY_SIGNALS
111 static void a_tty_sigs_up(void), a_tty_sigs_down(void);
112 #endif
114 #ifdef a_TTY_SIGNALS
115 static void
116 a_tty_sigs_up(void){
117 sigset_t nset, oset;
118 NYD2_ENTER;
120 sigfillset(&nset);
122 sigprocmask(SIG_BLOCK, &nset, &oset);
123 a_tty_oint = safe_signal(SIGINT, &n_tty_signal);
124 a_tty_oquit = safe_signal(SIGQUIT, &n_tty_signal);
125 a_tty_oterm = safe_signal(SIGTERM, &n_tty_signal);
126 a_tty_ohup = safe_signal(SIGHUP, &n_tty_signal);
127 a_tty_otstp = safe_signal(SIGTSTP, &n_tty_signal);
128 a_tty_ottin = safe_signal(SIGTTIN, &n_tty_signal);
129 a_tty_ottou = safe_signal(SIGTTOU, &n_tty_signal);
130 sigprocmask(SIG_SETMASK, &oset, NULL);
131 NYD2_LEAVE;
134 static void
135 a_tty_sigs_down(void){
136 sigset_t nset, oset;
137 NYD2_ENTER;
139 sigfillset(&nset);
141 sigprocmask(SIG_BLOCK, &nset, &oset);
142 safe_signal(SIGINT, a_tty_oint);
143 safe_signal(SIGQUIT, a_tty_oquit);
144 safe_signal(SIGTERM, a_tty_oterm);
145 safe_signal(SIGHUP, a_tty_ohup);
146 safe_signal(SIGTSTP, a_tty_otstp);
147 safe_signal(SIGTTIN, a_tty_ottin);
148 safe_signal(SIGTTOU, a_tty_ottou);
149 sigprocmask(SIG_SETMASK, &oset, NULL);
150 NYD2_LEAVE;
152 #endif /* a_TTY_SIGNALS */
154 static sigjmp_buf a_tty__actjmp; /* TODO someday, we won't need it no more */
155 static void
156 a_tty__acthdl(int s) /* TODO someday, we won't need it no more */
158 NYD_X; /* Signal handler */
159 termios_state_reset();
160 siglongjmp(a_tty__actjmp, s);
163 FL bool_t
164 getapproval(char const * volatile prompt, bool_t noninteract_default)
166 sighandler_type volatile oint, ohup;
167 bool_t volatile rv;
168 int volatile sig;
169 NYD_ENTER;
171 if (!(options & OPT_INTERACTIVE)) {
172 sig = 0;
173 rv = noninteract_default;
174 goto jleave;
176 rv = FAL0;
178 /* C99 */{
179 char const *quest = noninteract_default
180 ? _("[yes]/no? ") : _("[no]/yes? ");
182 if (prompt == NULL)
183 prompt = _("Continue");
184 prompt = savecatsep(prompt, ' ', quest);
187 oint = safe_signal(SIGINT, SIG_IGN);
188 ohup = safe_signal(SIGHUP, SIG_IGN);
189 if ((sig = sigsetjmp(a_tty__actjmp, 1)) != 0)
190 goto jrestore;
191 safe_signal(SIGINT, &a_tty__acthdl);
192 safe_signal(SIGHUP, &a_tty__acthdl);
194 if (n_lex_input(n_LEXINPUT_CTX_BASE | n_LEXINPUT_NL_ESC, prompt,
195 &termios_state.ts_linebuf, &termios_state.ts_linesize, NULL) >= 0)
196 rv = (boolify(termios_state.ts_linebuf, UIZ_MAX,
197 noninteract_default) > 0);
198 jrestore:
199 termios_state_reset();
201 safe_signal(SIGHUP, ohup);
202 safe_signal(SIGINT, oint);
203 jleave:
204 NYD_LEAVE;
205 if (sig != 0)
206 n_raise(sig);
207 return rv;
210 #ifdef HAVE_SOCKETS
211 FL char *
212 getuser(char const * volatile query) /* TODO v15-compat obsolete */
214 sighandler_type volatile oint, ohup;
215 char * volatile user = NULL;
216 int volatile sig;
217 NYD_ENTER;
219 if (query == NULL)
220 query = _("User: ");
222 oint = safe_signal(SIGINT, SIG_IGN);
223 ohup = safe_signal(SIGHUP, SIG_IGN);
224 if ((sig = sigsetjmp(a_tty__actjmp, 1)) != 0)
225 goto jrestore;
226 safe_signal(SIGINT, &a_tty__acthdl);
227 safe_signal(SIGHUP, &a_tty__acthdl);
229 if (n_lex_input(n_LEXINPUT_CTX_BASE | n_LEXINPUT_NL_ESC, query,
230 &termios_state.ts_linebuf, &termios_state.ts_linesize, NULL) >= 0)
231 user = termios_state.ts_linebuf;
232 jrestore:
233 termios_state_reset();
235 safe_signal(SIGHUP, ohup);
236 safe_signal(SIGINT, oint);
237 NYD_LEAVE;
238 if (sig != 0)
239 n_raise(sig);
240 return user;
243 FL char *
244 getpassword(char const *query)
246 sighandler_type volatile oint, ohup;
247 struct termios tios;
248 char * volatile pass = NULL;
249 int volatile sig;
250 NYD_ENTER;
252 if (query == NULL)
253 query = _("Password: ");
254 fputs(query, stdout);
255 fflush(stdout);
257 /* FIXME everywhere: tcsetattr() generates SIGTTOU when we're not in
258 * FIXME foreground pgrp, and can fail with EINTR!! also affects
259 * FIXME termios_state_reset() */
260 if (options & OPT_TTYIN) {
261 tcgetattr(STDIN_FILENO, &termios_state.ts_tios);
262 memcpy(&tios, &termios_state.ts_tios, sizeof tios);
263 termios_state.ts_needs_reset = TRU1;
264 tios.c_iflag &= ~(ISTRIP);
265 tios.c_lflag &= ~(ECHO | ECHOE | ECHOK | ECHONL);
268 oint = safe_signal(SIGINT, SIG_IGN);
269 ohup = safe_signal(SIGHUP, SIG_IGN);
270 if ((sig = sigsetjmp(a_tty__actjmp, 1)) != 0)
271 goto jrestore;
272 safe_signal(SIGINT, &a_tty__acthdl);
273 safe_signal(SIGHUP, &a_tty__acthdl);
275 if (options & OPT_TTYIN)
276 tcsetattr(STDIN_FILENO, TCSAFLUSH, &tios);
278 if (readline_restart(stdin, &termios_state.ts_linebuf,
279 &termios_state.ts_linesize, 0) >= 0)
280 pass = termios_state.ts_linebuf;
281 jrestore:
282 termios_state_reset();
283 if (options & OPT_TTYIN)
284 putc('\n', stdout);
286 safe_signal(SIGHUP, ohup);
287 safe_signal(SIGINT, oint);
288 NYD_LEAVE;
289 if (sig != 0)
290 n_raise(sig);
291 return pass;
293 #endif /* HAVE_SOCKETS */
296 * MLE: the Mailx-Line-Editor, our homebrew editor
297 * (inspired from NetBSDs sh(1) and dash(1)s hetio.c).
299 * Only used in interactive mode, simply use STDIN_FILENO as point of interest.
300 * TODO . This code should be splitted in funs/raw input/bind modules.
301 * TODO . After I/O layer rewrite, also "output to STDIN_FILENO".
302 * TODO . We work with wide characters, but not for buffer takeovers and
303 * TODO cell2save()ings. This should be changed. For the former the buffer
304 * TODO thus needs to be converted to wide first, and then simply be fed in.
305 * TODO . We repaint too much. To overcome this use the same approach that my
306 * TODO terminal library uses, add a true "virtual screen line" that stores
307 * TODO the actually visible content, keep a notion of "first modified slot"
308 * TODO and "last modified slot" (including "unknown" and "any" specials),
309 * TODO update that virtual instead, then synchronize what has truly changed.
310 * TODO I.e., add an indirection layer.
311 * TODO . No BIDI support.
312 * TODO . `bind': we currently use only one lookup tree.
313 * TODO For absolute graceful behaviour in conjunction (with HAVE_TERMCAP) we
314 * TODO need a lower level tree, which possibly combines bytes into "symbolic
315 * TODO wchar_t values", into "keys" that is, as applicable, and an upper
316 * TODO layer which only works on "keys" in order to possibly combine them
317 * TODO into key sequences. We can reuse existent tree code for that.
318 * TODO We need an additional hashmap which maps termcap/terminfo names to
319 * TODO (their byte representations and) a dynamically assigned unique
320 * TODO "symbolic wchar_t value". This implies we may have incompatibilities
321 * TODO when __STDC_ISO_10646__ is not defined. Also we do need takeover-
322 * TODO bytes storage, but it can be a string_creat_auto in the line struct.
323 * TODO Until then we can run into ambiguities; in rare occasions.
325 #ifdef HAVE_MLE
326 /* To avoid memory leaks etc. with the current codebase that simply longjmp(3)s
327 * we're forced to use the very same buffer--the one that is passed through to
328 * us from the outside--to store anything we need, i.e., a "struct cell[]", and
329 * convert that on-the-fly back to the plain char* result once we're done.
330 * To simplify our live, use savestr() buffers for all other needed memory */
332 # ifdef HAVE_KEY_BINDINGS
333 /* Default *bind-timeout* key-sequence continuation timeout, in tenths of
334 * a second. Must fit in 8-bit! Update the manual upon change! */
335 # define a_TTY_BIND_TIMEOUT 2
336 # define a_TTY_BIND_TIMEOUT_MAX SI8_MAX
338 n_CTAV(a_TTY_BIND_TIMEOUT_MAX <= UI8_MAX);
340 /* We have a chicken-and-egg problem with `bind' and our termcap layer,
341 * because we may not initialize the latter automatically to allow users to
342 * specify *termcap-disable* and let it mean exactly that.
343 * On the other hand users can be expected to use `bind' in resource file(s).
344 * Therefore bindings which involve termcap/terminfo sequences, and which are
345 * defined before PS_STARTED signals usability of termcap/terminfo, will be
346 * (partially) delayed until tty_init() is called.
347 * And we preallocate space for the expansion of the resolved capability */
348 # define a_TTY_BIND_CAPNAME_MAX 15
349 # define a_TTY_BIND_CAPEXP_ROUNDUP 16
351 n_CTAV(ISPOW2(a_TTY_BIND_CAPEXP_ROUNDUP));
352 n_CTA(a_TTY_BIND_CAPEXP_ROUNDUP <= SI8_MAX / 2, "Variable must fit in 6-bit");
353 n_CTA(a_TTY_BIND_CAPEXP_ROUNDUP >= 8, "Variable too small");
354 # endif /* HAVE_KEY_BINDINGS */
356 /* The maximum size (of a_tty_cell's) in a line */
357 # define a_TTY_LINE_MAX SI32_MAX
359 /* (Some more CTAs around) */
360 n_CTA(a_TTY_LINE_MAX <= SI32_MAX,
361 "a_TTY_LINE_MAX larger than SI32_MAX, but the MLE uses 32-bit arithmetic");
363 /* When shall the visual screen be scrolled, in % of usable screen width */
364 # define a_TTY_SCROLL_MARGIN_LEFT 15
365 # define a_TTY_SCROLL_MARGIN_RIGHT 10
367 /* fexpand() flags for expand-on-tab */
368 # define a_TTY_TAB_FEXP_FL (FEXP_FULL | FEXP_SILENT | FEXP_MULTIOK)
370 /* Columns to ripoff: outermost may not be touched, plus position indicator.
371 * Must thus be at least 1, but should be >= 1+4 to dig the position indicator
372 * that we place (if there is sufficient space) */
373 # define a_TTY_WIDTH_RIPOFF 5
375 /* The implementation of the MLE functions always exists, and is based upon
376 * the a_TTY_BIND_FUN_* constants, so most of this enum is always necessary */
377 enum a_tty_bind_flags{
378 # ifdef HAVE_KEY_BINDINGS
379 a_TTY_BIND_RESOLVE = 1u<<8, /* Term cap. yet needs to be resolved */
380 a_TTY_BIND_DEFUNCT = 1u<<9, /* Unicode/term cap. used but not avail. */
381 a_TTY__BIND_MASK = a_TTY_BIND_RESOLVE | a_TTY_BIND_DEFUNCT,
382 /* MLE fun assigned to a one-byte-sequence: this may be used for special
383 * key-sequence bypass processing */
384 a_TTY_BIND_MLE1CNTRL = 1u<<10,
385 a_TTY_BIND_NOCOMMIT = 1u<<11, /* Expansion shall be editable */
386 # endif
388 /* MLE internal commands */
389 a_TTY_BIND_FUN_INTERNAL = 1u<<15,
390 a_TTY__BIND_FUN_SHIFT = 16u,
391 a_TTY__BIND_FUN_SHIFTMAX = 24u,
392 a_TTY__BIND_FUN_MASK = ((1u << a_TTY__BIND_FUN_SHIFTMAX) - 1) &
393 ~((1u << a_TTY__BIND_FUN_SHIFT) - 1),
394 # define a_TTY_BIND_FUN_REDUCE(X) \
395 (((ui32_t)(X) & a_TTY__BIND_FUN_MASK) >> a_TTY__BIND_FUN_SHIFT)
396 # define a_TTY_BIND_FUN_EXPAND(X) \
397 (((ui32_t)(X) & (a_TTY__BIND_FUN_MASK >> a_TTY__BIND_FUN_SHIFT)) << \
398 a_TTY__BIND_FUN_SHIFT)
399 # undef a_X
400 # define a_X(N,I)\
401 a_TTY_BIND_FUN_ ## N = a_TTY_BIND_FUN_EXPAND(I),
403 a_X(BELL, 0)
404 a_X(GO_BWD, 1) a_X(GO_FWD, 2)
405 a_X(GO_WORD_BWD, 3) a_X(GO_WORD_FWD, 4)
406 a_X(GO_HOME, 5) a_X(GO_END, 6)
407 a_X(DEL_BWD, 7) a_X(DEL_FWD, 8)
408 a_X(SNARF_WORD_BWD, 9) a_X(SNARF_WORD_FWD, 10)
409 a_X(SNARF_END, 11) a_X(SNARF_LINE, 12)
410 a_X(HIST_BWD, 13) a_X(HIST_FWD, 14)
411 a_X(HIST_SRCH_BWD, 15) a_X(HIST_SRCH_FWD, 16)
412 a_X(REPAINT, 17)
413 a_X(QUOTE_RNDTRIP, 18)
414 a_X(PROMPT_CHAR, 19)
415 a_X(COMPLETE, 20)
416 a_X(PASTE, 21)
418 a_X(CANCEL, 22)
419 a_X(RESET, 23)
420 a_X(FULLRESET, 24)
421 a_X(COMMIT, 25) /* Must be last one! */
422 # undef a_X
424 a_TTY__BIND_LAST = 1<<25
426 # ifdef HAVE_KEY_BINDINGS
427 n_CTA((ui32_t)a_TTY_BIND_RESOLVE > (ui32_t)n__LEXINPUT_CTX_MAX,
428 "Bit carrier lower boundary must be raised to avoid value sharing");
429 # endif
430 n_CTA(a_TTY_BIND_FUN_EXPAND(a_TTY_BIND_FUN_COMMIT) <
431 (1 << a_TTY__BIND_FUN_SHIFTMAX),
432 "Bit carrier range must be expanded to represent necessary bits");
433 n_CTA(a_TTY__BIND_LAST >= (1u << a_TTY__BIND_FUN_SHIFTMAX),
434 "Bit carrier upper boundary must be raised to avoid value sharing");
435 n_CTA(UICMP(64, a_TTY__BIND_LAST, <=, SI32_MAX),
436 "Flag bits excess storage datatype" /* And we need one bit free */);
438 enum a_tty_fun_status{
439 a_TTY_FUN_STATUS_OK, /* Worked, next character */
440 a_TTY_FUN_STATUS_COMMIT, /* Line done */
441 a_TTY_FUN_STATUS_RESTART, /* Complete restart, reset multibyte etc. */
442 a_TTY_FUN_STATUS_END /* End, return EOF */
445 enum a_tty_visual_flags{
446 a_TTY_VF_NONE,
447 a_TTY_VF_MOD_CURSOR = 1u<<0, /* Cursor moved */
448 a_TTY_VF_MOD_CONTENT = 1u<<1, /* Content modified */
449 a_TTY_VF_MOD_DIRTY = 1u<<2, /* Needs complete repaint */
450 a_TTY_VF_MOD_SINGLE = 1u<<3, /* TODO Drop when indirection as above comes */
451 a_TTY_VF_REFRESH = a_TTY_VF_MOD_DIRTY | a_TTY_VF_MOD_CURSOR |
452 a_TTY_VF_MOD_CONTENT | a_TTY_VF_MOD_SINGLE,
453 a_TTY_VF_BELL = 1u<<8, /* Ring the bell */
454 a_TTY_VF_SYNC = 1u<<9, /* Flush/Sync I/O channel */
456 a_TTY_VF_ALL_MASK = a_TTY_VF_REFRESH | a_TTY_VF_BELL | a_TTY_VF_SYNC,
457 a_TTY__VF_LAST = a_TTY_VF_SYNC
460 # ifdef HAVE_KEY_BINDINGS
461 struct a_tty_bind_ctx{
462 struct a_tty_bind_ctx *tbc_next;
463 char *tbc_seq; /* quence as given (poss. re-quoted), in .tb__buf */
464 char *tbc_exp; /* ansion, in .tb__buf */
465 /* The .tbc_seq'uence with any terminal capabilities resolved; in fact an
466 * array of structures, the first entry of which is {si32_t buf_len_iscap;}
467 * where the signed bit indicates whether the buffer is a resolved terminal
468 * capability instead of a (possibly multibyte) character. In .tbc__buf */
469 char *tbc_cnv;
470 ui32_t tbc_seq_len;
471 ui32_t tbc_exp_len;
472 ui32_t tbc_cnv_len;
473 ui32_t tbc_flags;
474 char tbc__buf[VFIELD_SIZE(0)];
477 struct a_tty_bind_ctx_map{
478 enum n_lexinput_flags tbcm_ctx;
479 char const tbcm_name[12]; /* Name of `bind' context */
481 # endif /* HAVE_KEY_BINDINGS */
483 struct a_tty_bind_default_tuple{
484 bool_t tbdt_iskey; /* Whether this is a control key; else termcap query */
485 char tbdt_ckey; /* Control code */
486 ui16_t tbdt_query; /* enum n_termcap_query (instead) */
487 char tbdt_exp[12]; /* String or [0]=NUL/[1]=BIND_FUN_REDUCE() */
489 n_CTA(n__TERMCAP_QUERY_MAX <= UI16_MAX,
490 "Enumeration cannot be stored in datatype");
492 # ifdef HAVE_KEY_BINDINGS
493 struct a_tty_bind_parse_ctx{
494 char const *tbpc_cmd; /* Command which parses */
495 char const *tbpc_in_seq; /* In: key sequence */
496 struct str tbpc_exp; /* In/Out: expansion (or NULL) */
497 struct a_tty_bind_ctx *tbpc_tbcp; /* Out: if yet existent */
498 struct a_tty_bind_ctx *tbpc_ltbcp; /* Out: the one before .tbpc_tbcp */
499 char *tbpc_seq; /* Out: normalized sequence */
500 char *tbpc_cnv; /* Out: sequence when read(2)ing it */
501 ui32_t tbpc_seq_len;
502 ui32_t tbpc_cnv_len;
503 ui32_t tbpc_cnv_align_mask; /* For creating a_tty_bind_ctx.tbc_cnv */
504 ui32_t tbpc_flags; /* n_lexinput_flags | a_tty_bind_flags */
507 /* Input character tree */
508 struct a_tty_bind_tree{
509 struct a_tty_bind_tree *tbt_sibling; /* s at same level */
510 struct a_tty_bind_tree *tbt_childs; /* Sequence continues.. here */
511 struct a_tty_bind_tree *tbt_parent;
512 struct a_tty_bind_ctx *tbt_bind; /* NULL for intermediates */
513 wchar_t tbt_char; /* acter this level represents */
514 bool_t tbt_isseq; /* Belongs to multibyte sequence */
515 bool_t tbt_isseq_trail; /* ..is trailing byte of it */
516 ui8_t tbt__dummy[2];
518 # endif /* HAVE_KEY_BINDINGS */
520 struct a_tty_cell{
521 wchar_t tc_wc;
522 ui16_t tc_count; /* ..of bytes */
523 ui8_t tc_width; /* Visual width; TAB==UI8_MAX! */
524 bool_t tc_novis; /* Don't display visually as such (control character) */
525 char tc_cbuf[MB_LEN_MAX * 2]; /* .. plus reset shift sequence */
528 struct a_tty_global{
529 struct a_tty_line *tg_line; /* To be able to access it from signal hdl */
530 # ifdef HAVE_HISTORY
531 struct a_tty_hist *tg_hist;
532 struct a_tty_hist *tg_hist_tail;
533 size_t tg_hist_size;
534 size_t tg_hist_size_max;
535 # endif
536 # ifdef HAVE_KEY_BINDINGS
537 ui32_t tg_bind_cnt; /* Overall number of bindings */
538 bool_t tg_bind_isdirty;
539 bool_t tg_bind_isbuild;
540 char tg_bind_shcut_cancel[n__LEXINPUT_CTX_MAX][5];
541 char tg_bind_shcut_prompt_char[n__LEXINPUT_CTX_MAX][5];
542 struct a_tty_bind_ctx *tg_bind[n__LEXINPUT_CTX_MAX];
543 struct a_tty_bind_tree *tg_bind_tree[n__LEXINPUT_CTX_MAX][HSHSIZE];
544 # endif
545 struct termios tg_tios_old;
546 struct termios tg_tios_new;
548 n_CTA(n__LEXINPUT_CTX_MAX == 2,
549 "Value results in array sizes that results in bad structure layout");
551 # ifdef HAVE_HISTORY
552 struct a_tty_hist{
553 struct a_tty_hist *th_older;
554 struct a_tty_hist *th_younger;
555 # ifdef HAVE_BYTE_ORDER_LITTLE
556 ui32_t th_isgabby : 1;
557 # endif
558 ui32_t th_len : 31;
559 # ifndef HAVE_BYTE_ORDER_LITTLE
560 ui32_t th_isgabby : 1;
561 # endif
562 char th_dat[VFIELD_SIZE(sizeof(ui32_t))];
564 # endif
566 struct a_tty_line{
567 /* Caller pointers */
568 char **tl_x_buf;
569 size_t *tl_x_bufsize;
570 /* Input processing */
571 # ifdef HAVE_KEY_BINDINGS
572 wchar_t tl_bind_takeover; /* Leftover byte to consume next */
573 ui8_t tl_bind_timeout; /* In-seq. inter-byte-timer, in 1/10th secs */
574 ui8_t tl__bind_dummy[3];
575 char (*tl_bind_shcut_cancel)[5]; /* Special _CANCEL shortcut control */
576 char (*tl_bind_shcut_prompt_char)[5]; /* ..for _PROMPT_CHAR */
577 struct a_tty_bind_tree *(*tl_bind_tree_hmap)[HSHSIZE]; /* Bind lookup tree */
578 struct a_tty_bind_tree *tl_bind_tree;
579 # endif
580 char const *tl_reenter_after_cmd; /* `bind' cmd to exec, then re-readline */
581 /* Line data / content handling */
582 ui32_t tl_count; /* ..of a_tty_cell's (<= a_TTY_LINE_MAX) */
583 ui32_t tl_cursor; /* Current a_tty_cell insertion point */
584 union{
585 char *cbuf; /* *.tl_x_buf */
586 struct a_tty_cell *cells;
587 } tl_line;
588 struct str tl_defc; /* Current default content */
589 size_t tl_defc_cursor_byte; /* Desired position of cursor after takeover */
590 struct str tl_savec; /* Saved default content */
591 struct str tl_pastebuf; /* Last snarfed data */
592 # ifdef HAVE_HISTORY
593 struct a_tty_hist *tl_hist; /* History cursor */
594 # endif
595 ui32_t tl_count_max; /* ..before buffer needs to grow */
596 /* Visual data representation handling */
597 ui32_t tl_vi_flags; /* enum a_tty_visual_flags */
598 ui32_t tl_lst_count; /* .tl_count after last sync */
599 ui32_t tl_lst_cursor; /* .tl_cursor after last sync */
600 /* TODO Add another indirection layer by adding a tl_phy_line of
601 * TODO a_tty_cell objects, incorporate changes in visual layer,
602 * TODO then check what _really_ has changed, sync those changes only */
603 struct a_tty_cell const *tl_phy_start; /* First visible cell, left border */
604 ui32_t tl_phy_cursor; /* Physical cursor position */
605 bool_t tl_quote_rndtrip; /* For _kht() expansion */
606 ui8_t tl__dummy2[3];
607 ui32_t tl_prompt_length; /* Preclassified (TODO needed as a_tty_cell) */
608 ui32_t tl_prompt_width;
609 char const *tl_prompt; /* Preformatted prompt (including colours) */
610 /* .tl_pos_buf is a hack */
611 # ifdef HAVE_COLOUR
612 char *tl_pos_buf; /* mle-position colour-on, [4], reset seq. */
613 char *tl_pos; /* Address of the [4] */
614 # endif
617 # ifdef HAVE_KEY_BINDINGS
618 /* C99: use [INDEX]={} */
619 n_CTAV(n_LEXINPUT_CTX_BASE == 0);
620 n_CTAV(n_LEXINPUT_CTX_COMPOSE == 1);
621 static struct a_tty_bind_ctx_map const
622 a_tty_bind_ctx_maps[n__LEXINPUT_CTX_MAX] = {
623 {n_LEXINPUT_CTX_BASE, "base"},
624 {n_LEXINPUT_CTX_COMPOSE, "compose"}
627 /* Special functions which our MLE provides internally.
628 * Update the manual upon change! */
629 static char const a_tty_bind_fun_names[][24] = {
630 # undef a_X
631 # define a_X(I,N) \
632 n_FIELD_INITI(a_TTY_BIND_FUN_REDUCE(a_TTY_BIND_FUN_ ## I)) "mle-" N "\0",
634 a_X(BELL, "bell")
635 a_X(GO_BWD, "go-bwd") a_X(GO_FWD, "go-fwd")
636 a_X(GO_WORD_BWD, "go-word-bwd") a_X(GO_WORD_FWD, "go-word-fwd")
637 a_X(GO_HOME, "go-home") a_X(GO_END, "go-end")
638 a_X(DEL_BWD, "del-bwd") a_X(DEL_FWD, "del-fwd")
639 a_X(SNARF_WORD_BWD, "snarf-word-bwd") a_X(SNARF_WORD_FWD, "snarf-word-fwd")
640 a_X(SNARF_END, "snarf-end") a_X(SNARF_LINE, "snarf-line")
641 a_X(HIST_BWD, "hist-bwd") a_X(HIST_FWD, "hist-fwd")
642 a_X(HIST_SRCH_BWD, "hist-srch-bwd") a_X(HIST_SRCH_FWD, "hist-srch-fwd")
643 a_X(REPAINT, "repaint")
644 a_X(QUOTE_RNDTRIP, "quote-rndtrip")
645 a_X(PROMPT_CHAR, "prompt-char")
646 a_X(COMPLETE, "complete")
647 a_X(PASTE, "paste")
649 a_X(CANCEL, "cancel")
650 a_X(RESET, "reset")
651 a_X(FULLRESET, "fullreset")
652 a_X(COMMIT, "commit")
654 # undef a_X
656 # endif /* HAVE_KEY_BINDINGS */
658 /* The default key bindings (unless disallowed). Update manual upon change!
659 * A logical subset of this table is also used if !HAVE_KEY_BINDINGS (more
660 * expensive than a switch() on control codes directly, but less redundant) */
661 static struct a_tty_bind_default_tuple const a_tty_bind_default_tuples[] = {
662 # undef a_X
663 # define a_X(K,S) \
664 {TRU1, K, 0, {'\0', (char)a_TTY_BIND_FUN_REDUCE(a_TTY_BIND_FUN_ ## S),}},
666 a_X('A', GO_HOME)
667 a_X('B', GO_BWD)
668 /* C: SIGINT */
669 a_X('D', DEL_FWD)
670 a_X('E', GO_END)
671 a_X('F', GO_FWD)
672 a_X('G', RESET)
673 a_X('H', DEL_BWD)
674 a_X('I', COMPLETE)
675 a_X('J', COMMIT)
676 a_X('K', SNARF_END)
677 a_X('L', REPAINT)
678 /* M: same as J */
679 a_X('N', HIST_FWD)
680 /* O: below */
681 a_X('P', HIST_BWD)
682 a_X('Q', QUOTE_RNDTRIP)
683 a_X('R', HIST_SRCH_BWD)
684 a_X('S', HIST_SRCH_FWD)
685 a_X('T', PASTE)
686 a_X('U', SNARF_LINE)
687 a_X('V', PROMPT_CHAR)
688 a_X('W', SNARF_WORD_BWD)
689 a_X('X', GO_WORD_FWD)
690 a_X('Y', GO_WORD_BWD)
691 /* Z: SIGTSTP */
693 a_X('[', CANCEL)
694 /* \: below */
695 /* ]: below */
696 /* ^: below */
697 a_X('_', SNARF_WORD_FWD)
699 a_X('?', DEL_BWD)
701 # undef a_X
702 # define a_X(K,S) {TRU1, K, 0, {S}},
704 a_X('O', "dt")
705 a_X('\\', "z+")
706 a_X(']', "z$")
707 a_X('^', "z0")
709 # ifdef HAVE_KEY_BINDINGS
710 # undef a_X
711 # define a_X(Q,S) \
712 {FAL0, '\0', n_TERMCAP_QUERY_ ## Q,\
713 {'\0', (char)a_TTY_BIND_FUN_REDUCE(a_TTY_BIND_FUN_ ## S),}},
715 a_X(key_backspace, DEL_BWD) a_X(key_dc, DEL_FWD)
716 a_X(key_eol, SNARF_END)
717 a_X(key_home, GO_HOME) a_X(key_end, GO_END)
718 a_X(key_left, GO_BWD) a_X(key_right, GO_FWD)
719 a_X(key_sleft, GO_HOME) a_X(key_sright, GO_END)
720 a_X(key_up, HIST_BWD) a_X(key_down, HIST_FWD)
722 # undef a_X
723 # define a_X(Q,S) {FAL0, '\0', n_TERMCAP_QUERY_ ## Q, {S}},
725 a_X(key_shome, "z0") a_X(key_send, "z$")
726 a_X(xkey_sup, "z0") a_X(xkey_sdown, "z$")
727 a_X(key_ppage, "z-") a_X(key_npage, "z+")
728 a_X(xkey_cup, "dotmove-") a_X(xkey_cdown, "dotmove+")
730 # endif /* HAVE_KEY_BINDINGS */
731 # undef a_X
734 static struct a_tty_global a_tty;
736 /* Change from canonical to raw, non-canonical mode, and way back */
737 static void a_tty_term_mode(bool_t raw);
739 /* Adjust an active raw mode to use / not use a timeout */
740 # ifdef HAVE_KEY_BINDINGS
741 static void a_tty_term_rawmode_timeout(struct a_tty_line *tlp, bool_t enable);
742 # endif
744 /* 0-X (2), UI8_MAX == \t / TAB */
745 static ui8_t a_tty_wcwidth(wchar_t wc);
747 /* Memory / cell / word generics */
748 static void a_tty_check_grow(struct a_tty_line *tlp, ui32_t no
749 SMALLOC_DEBUG_ARGS);
750 static ssize_t a_tty_cell2dat(struct a_tty_line *tlp);
751 static void a_tty_cell2save(struct a_tty_line *tlp);
753 /* Save away data bytes of given range (max = non-inclusive) */
754 static void a_tty_copy2paste(struct a_tty_line *tlp, struct a_tty_cell *tcpmin,
755 struct a_tty_cell *tcpmax);
757 /* Ask user for hexadecimal number, interpret as UTF-32 */
758 static wchar_t a_tty_vinuni(struct a_tty_line *tlp);
760 /* Visual screen synchronization */
761 static bool_t a_tty_vi_refresh(struct a_tty_line *tlp);
763 static bool_t a_tty_vi__paint(struct a_tty_line *tlp);
765 /* Search for word boundary, starting at tl_cursor, in "dir"ection (<> 0).
766 * Return <0 when moving is impossible (backward direction but in position 0,
767 * forward direction but in outermost column), and relative distance to
768 * tl_cursor otherwise */
769 static si32_t a_tty_wboundary(struct a_tty_line *tlp, si32_t dir);
771 /* Most function implementations */
772 static void a_tty_khome(struct a_tty_line *tlp, bool_t dobell);
773 static void a_tty_kend(struct a_tty_line *tlp);
774 static void a_tty_kbs(struct a_tty_line *tlp);
775 static void a_tty_ksnarf(struct a_tty_line *tlp, bool_t cplline, bool_t dobell);
776 static si32_t a_tty_kdel(struct a_tty_line *tlp);
777 static void a_tty_kleft(struct a_tty_line *tlp);
778 static void a_tty_kright(struct a_tty_line *tlp);
779 static void a_tty_ksnarfw(struct a_tty_line *tlp, bool_t fwd);
780 static void a_tty_kgow(struct a_tty_line *tlp, si32_t dir);
781 static bool_t a_tty_kother(struct a_tty_line *tlp, wchar_t wc);
782 static ui32_t a_tty_kht(struct a_tty_line *tlp);
784 # ifdef HAVE_HISTORY
785 /* Return UI32_MAX on "exhaustion" */
786 static ui32_t a_tty_khist(struct a_tty_line *tlp, bool_t fwd);
787 static ui32_t a_tty_khist_search(struct a_tty_line *tlp, bool_t fwd);
789 static ui32_t a_tty__khist_shared(struct a_tty_line *tlp,
790 struct a_tty_hist *thp);
791 # endif
793 /* Handle a function */
794 static enum a_tty_fun_status a_tty_fun(struct a_tty_line *tlp,
795 enum a_tty_bind_flags tbf, size_t *len);
797 /* Readline core */
798 static ssize_t a_tty_readline(struct a_tty_line *tlp, size_t len
799 SMALLOC_DEBUG_ARGS);
801 # ifdef HAVE_KEY_BINDINGS
802 /* Find context or -1 */
803 static enum n_lexinput_flags a_tty_bind_ctx_find(char const *name);
805 /* Create (or replace, if allowed) a binding */
806 static bool_t a_tty_bind_create(struct a_tty_bind_parse_ctx *tbpcp,
807 bool_t replace);
809 /* Shared implementation to parse `bind' and `unbind' "key-sequence" and
810 * "expansion" command line arguments into something that we can work with */
811 static bool_t a_tty_bind_parse(bool_t isbindcmd,
812 struct a_tty_bind_parse_ctx *tbpcp);
814 /* Lazy resolve a termcap(5)/terminfo(5) (or *termcap*!) capability */
815 static void a_tty_bind_resolve(struct a_tty_bind_ctx *tbcp);
817 /* Delete an existing binding */
818 static void a_tty_bind_del(struct a_tty_bind_parse_ctx *tbpcp);
820 /* Life cycle of all input node trees */
821 static void a_tty_bind_tree_build(void);
822 static void a_tty_bind_tree_teardown(void);
824 static void a_tty__bind_tree_add(ui32_t hmap_idx,
825 struct a_tty_bind_tree *store[HSHSIZE],
826 struct a_tty_bind_ctx *tbcp);
827 static struct a_tty_bind_tree *a_tty__bind_tree_add_wc(
828 struct a_tty_bind_tree **treep, struct a_tty_bind_tree *parentp,
829 wchar_t wc, bool_t isseq);
830 static void a_tty__bind_tree_free(struct a_tty_bind_tree *tbtp);
831 # endif /* HAVE_KEY_BINDINGS */
833 static void
834 a_tty_term_mode(bool_t raw){
835 struct termios *tiosp;
836 NYD2_ENTER;
838 tiosp = &a_tty.tg_tios_old;
839 if(!raw)
840 goto jleave;
842 /* Always requery the attributes, in case we've been moved from background
843 * to foreground or however else in between sessions */
844 /* XXX Always enforce ECHO and ICANON in the OLD attributes - do so as long
845 * XXX as we don't properly deal with TTIN and TTOU etc. */
846 tcgetattr(STDIN_FILENO, tiosp);
847 tiosp->c_lflag |= ECHO | ICANON;
849 memcpy(&a_tty.tg_tios_new, tiosp, sizeof *tiosp);
850 tiosp = &a_tty.tg_tios_new;
851 tiosp->c_cc[VMIN] = 1;
852 tiosp->c_cc[VTIME] = 0;
853 /* Enable ^\, ^Q and ^S to be used for key bindings */
854 tiosp->c_cc[VQUIT] = tiosp->c_cc[VSTART] = tiosp->c_cc[VSTOP] = '\0';
855 tiosp->c_iflag &= ~(ISTRIP | IGNCR);
856 tiosp->c_lflag &= ~(ECHO /*| ECHOE | ECHONL */| ICANON | IEXTEN);
857 jleave:
858 tcsetattr(STDIN_FILENO, TCSADRAIN, tiosp);
859 NYD2_LEAVE;
862 # ifdef HAVE_KEY_BINDINGS
863 static void
864 a_tty_term_rawmode_timeout(struct a_tty_line *tlp, bool_t enable){
865 NYD2_ENTER;
866 if(enable){
867 ui8_t bt;
869 a_tty.tg_tios_new.c_cc[VMIN] = 0;
870 if((bt = tlp->tl_bind_timeout) == 0)
871 bt = a_TTY_BIND_TIMEOUT;
872 a_tty.tg_tios_new.c_cc[VTIME] = bt;
873 }else{
874 a_tty.tg_tios_new.c_cc[VMIN] = 1;
875 a_tty.tg_tios_new.c_cc[VTIME] = 0;
877 tcsetattr(STDIN_FILENO, TCSANOW, &a_tty.tg_tios_new);
878 NYD2_LEAVE;
880 # endif /* HAVE_KEY_BINDINGS */
882 static ui8_t
883 a_tty_wcwidth(wchar_t wc){
884 ui8_t rv;
885 NYD2_ENTER;
887 /* Special case the backslash at first */
888 if(wc == '\t')
889 rv = UI8_MAX;
890 else{
891 int i;
893 # ifdef HAVE_WCWIDTH
894 rv = ((i = wcwidth(wc)) > 0) ? (ui8_t)i : 0;
895 # else
896 rv = iswprint(wc) ? 1 + (wc >= 0x1100u) : 0; /* TODO use S-CText */
897 # endif
899 NYD2_LEAVE;
900 return rv;
903 static void
904 a_tty_check_grow(struct a_tty_line *tlp, ui32_t no SMALLOC_DEBUG_ARGS){
905 ui32_t cmax;
906 NYD2_ENTER;
908 if(UNLIKELY((cmax = tlp->tl_count + no) > tlp->tl_count_max)){
909 size_t i;
911 i = cmax * sizeof(struct a_tty_cell) + 2 * sizeof(struct a_tty_cell);
912 if(LIKELY(i >= *tlp->tl_x_bufsize)){
913 hold_all_sigs(); /* XXX v15 drop */
914 i <<= 1;
915 tlp->tl_line.cbuf =
916 *tlp->tl_x_buf = (srealloc)(*tlp->tl_x_buf, i SMALLOC_DEBUG_ARGSCALL);
917 rele_all_sigs(); /* XXX v15 drop */
919 tlp->tl_count_max = cmax;
920 *tlp->tl_x_bufsize = i;
922 NYD2_LEAVE;
925 static ssize_t
926 a_tty_cell2dat(struct a_tty_line *tlp){
927 size_t len, i;
928 NYD2_ENTER;
930 len = 0;
932 if(LIKELY((i = tlp->tl_count) > 0)){
933 struct a_tty_cell const *tcap;
935 tcap = tlp->tl_line.cells;
937 memcpy(tlp->tl_line.cbuf + len, tcap->tc_cbuf, tcap->tc_count);
938 len += tcap->tc_count;
939 }while(++tcap, --i > 0);
942 tlp->tl_line.cbuf[len] = '\0';
943 NYD2_LEAVE;
944 return (ssize_t)len;
947 static void
948 a_tty_cell2save(struct a_tty_line *tlp){
949 size_t len, i;
950 struct a_tty_cell *tcap;
951 NYD2_ENTER;
953 tlp->tl_savec.s = NULL;
954 tlp->tl_savec.l = 0;
956 if(UNLIKELY(tlp->tl_count == 0))
957 goto jleave;
959 for(tcap = tlp->tl_line.cells, len = 0, i = tlp->tl_count; i > 0;
960 ++tcap, --i)
961 len += tcap->tc_count;
963 tlp->tl_savec.s = salloc((tlp->tl_savec.l = len) +1);
965 for(tcap = tlp->tl_line.cells, len = 0, i = tlp->tl_count; i > 0;
966 ++tcap, --i){
967 memcpy(tlp->tl_savec.s + len, tcap->tc_cbuf, tcap->tc_count);
968 len += tcap->tc_count;
970 tlp->tl_savec.s[len] = '\0';
971 jleave:
972 NYD2_LEAVE;
975 static void
976 a_tty_copy2paste(struct a_tty_line *tlp, struct a_tty_cell *tcpmin,
977 struct a_tty_cell *tcpmax){
978 char *cp;
979 struct a_tty_cell *tcp;
980 size_t l;
981 NYD2_ENTER;
983 l = 0;
984 for(tcp = tcpmin; tcp < tcpmax; ++tcp)
985 l += tcp->tc_count;
987 tlp->tl_pastebuf.s = cp = salloc((tlp->tl_pastebuf.l = l) +1);
989 l = 0;
990 for(tcp = tcpmin; tcp < tcpmax; cp += l, ++tcp)
991 memcpy(cp, tcp->tc_cbuf, l = tcp->tc_count);
992 *cp = '\0';
993 NYD2_LEAVE;
996 static wchar_t
997 a_tty_vinuni(struct a_tty_line *tlp){
998 char buf[16], *eptr;
999 union {size_t i; long l;} u;
1000 wchar_t wc;
1001 NYD2_ENTER;
1003 wc = '\0';
1005 if(!n_termcap_cmdx(n_TERMCAP_CMD_cr) ||
1006 !n_termcap_cmd(n_TERMCAP_CMD_ce, 0, -1))
1007 goto jleave;
1009 /* C99 */{
1010 struct str const *cpre, *csuf;
1011 #ifdef HAVE_COLOUR
1012 struct n_colour_pen *cpen;
1014 cpen = n_colour_pen_create(n_COLOUR_ID_MLE_PROMPT, NULL);
1015 if((cpre = n_colour_pen_to_str(cpen)) != NULL)
1016 csuf = n_colour_reset_to_str();
1017 else
1018 csuf = NULL;
1019 #else
1020 cpre = csuf = NULL;
1021 #endif
1022 printf(_("%sPlease enter Unicode code point:%s "),
1023 (cpre != NULL ? cpre->s : ""), (csuf != NULL ? csuf->s : ""));
1025 fflush(stdout);
1027 buf[sizeof(buf) -1] = '\0';
1028 for(u.i = 0;;){
1029 if(read(STDIN_FILENO, &buf[u.i], 1) != 1){
1030 if(errno == EINTR) /* xxx #if !SA_RESTART ? */
1031 continue;
1032 goto jleave;
1034 if(buf[u.i] == '\n')
1035 break;
1036 if(!hexchar(buf[u.i])){
1037 char const emsg[] = "[0-9a-fA-F]";
1039 LCTA(sizeof emsg <= sizeof(buf));
1040 memcpy(buf, emsg, sizeof emsg);
1041 goto jerr;
1044 putc(buf[u.i], stdout);
1045 fflush(stdout);
1046 if(++u.i == sizeof buf)
1047 goto jerr;
1049 buf[u.i] = '\0';
1051 u.l = strtol(buf, &eptr, 16);
1052 if(u.l <= 0 || u.l >= 0x10FFFF/* XXX magic; CText */ || *eptr != '\0'){
1053 jerr:
1054 n_err(_("\nInvalid input: %s\n"), buf);
1055 goto jleave;
1058 wc = (wchar_t)u.l;
1059 jleave:
1060 tlp->tl_vi_flags |= a_TTY_VF_MOD_DIRTY | (wc == '\0' ? a_TTY_VF_BELL : 0);
1061 NYD2_LEAVE;
1062 return wc;
1065 static bool_t
1066 a_tty_vi_refresh(struct a_tty_line *tlp){
1067 bool_t rv;
1068 NYD2_ENTER;
1070 if(tlp->tl_vi_flags & a_TTY_VF_BELL){
1071 tlp->tl_vi_flags |= a_TTY_VF_SYNC;
1072 if(putchar('\a') == EOF)
1073 goto jerr;
1076 if(tlp->tl_vi_flags & a_TTY_VF_REFRESH){
1077 /* kht may want to restore a cursor position after inserting some
1078 * data somewhere */
1079 if(tlp->tl_defc_cursor_byte > 0){
1080 size_t i, j;
1081 ssize_t k;
1083 a_tty_khome(tlp, FAL0);
1085 i = tlp->tl_defc_cursor_byte;
1086 tlp->tl_defc_cursor_byte = 0;
1087 for(j = 0; tlp->tl_cursor < tlp->tl_count; ++j){
1088 a_tty_kright(tlp);
1089 if((k = tlp->tl_line.cells[j].tc_count) > i)
1090 break;
1091 i -= k;
1095 if(!a_tty_vi__paint(tlp))
1096 goto jerr;
1099 if(tlp->tl_vi_flags & a_TTY_VF_SYNC){
1100 tlp->tl_vi_flags &= ~a_TTY_VF_SYNC;
1101 if(fflush(stdout))
1102 goto jerr;
1105 rv = TRU1;
1106 jleave:
1107 tlp->tl_vi_flags &= ~a_TTY_VF_ALL_MASK;
1108 NYD2_LEAVE;
1109 return rv;
1111 jerr:
1112 clearerr(stdout); /* xxx I/O layer rewrite */
1113 n_err(_("Visual refresh failed! Is $TERM set correctly?\n"
1114 " Setting *line-editor-disable* to get us through!\n"));
1115 ok_bset(line_editor_disable);
1116 rv = FAL0;
1117 goto jleave;
1120 static bool_t
1121 a_tty_vi__paint(struct a_tty_line *tlp){
1122 enum{
1123 a_TRUE_RV = a_TTY__VF_LAST<<1, /* Return value bit */
1124 a_HAVE_PROMPT = a_TTY__VF_LAST<<2, /* Have a prompt */
1125 a_SHOW_PROMPT = a_TTY__VF_LAST<<3, /* Shall print the prompt */
1126 a_MOVE_CURSOR = a_TTY__VF_LAST<<4, /* Move visual cursor for user! */
1127 a_LEFT_MIN = a_TTY__VF_LAST<<5, /* On left boundary */
1128 a_RIGHT_MAX = a_TTY__VF_LAST<<6,
1129 a_HAVE_POSITION = a_TTY__VF_LAST<<7, /* Print the position indicator */
1131 /* We carry some flags over invocations (not worth a specific field) */
1132 a_VISIBLE_PROMPT = a_TTY__VF_LAST<<8, /* The prompt is on the screen */
1133 a_PERSIST_MASK = a_VISIBLE_PROMPT,
1134 a__LAST = a_PERSIST_MASK
1137 ui32_t f, w, phy_wid_base, phy_wid, phy_base, phy_cur, cnt, lstcur, cur,
1138 vi_left, vi_right, phy_nxtcur;
1139 struct a_tty_cell const *tccp, *tcp_left, *tcp_right, *tcxp;
1140 NYD2_ENTER;
1141 n_LCTA(UICMP(64, a__LAST, <, UI32_MAX), "Flag bits excess storage datatype");
1143 f = tlp->tl_vi_flags;
1144 tlp->tl_vi_flags = (f & ~(a_TTY_VF_REFRESH | a_PERSIST_MASK)) |
1145 a_TTY_VF_SYNC;
1146 f |= a_TRUE_RV;
1147 if((w = tlp->tl_prompt_length) > 0)
1148 f |= a_HAVE_PROMPT;
1149 f |= a_HAVE_POSITION;
1151 /* XXX We don't have a OnTerminalResize event (see main.c) yet, so we need
1152 * XXX to reevaluate our circumstances over and over again */
1153 /* Don't display prompt or position indicator on very small screens */
1154 if((phy_wid_base = (ui32_t)scrnwidth) <= a_TTY_WIDTH_RIPOFF)
1155 f &= ~(a_HAVE_PROMPT | a_HAVE_POSITION);
1156 else{
1157 phy_wid_base -= a_TTY_WIDTH_RIPOFF;
1159 /* Disable the prompt if the screen is too small; due to lack of some
1160 * indicator simply add a second ripoff */
1161 if((f & a_HAVE_PROMPT) && w + a_TTY_WIDTH_RIPOFF >= phy_wid_base)
1162 f &= ~a_HAVE_PROMPT;
1165 phy_wid = phy_wid_base;
1166 phy_base = 0;
1167 phy_cur = tlp->tl_phy_cursor;
1168 cnt = tlp->tl_count;
1169 lstcur = tlp->tl_lst_cursor;
1171 /* XXX Assume dirty screen if shrunk */
1172 if(cnt < tlp->tl_lst_count)
1173 f |= a_TTY_VF_MOD_DIRTY;
1175 /* TODO Without HAVE_TERMCAP, it would likely be much cheaper to simply
1176 * TODO always "cr + paint + ce + ch", since ce is simulated via spaces.. */
1178 /* Quickshot: if the line is empty, possibly print prompt and out */
1179 if(cnt == 0){
1180 /* In that special case dirty anything if it seems better */
1181 if((f & a_TTY_VF_MOD_CONTENT) || tlp->tl_lst_count > 0)
1182 f |= a_TTY_VF_MOD_DIRTY;
1184 if((f & a_TTY_VF_MOD_DIRTY) && phy_cur != 0){
1185 if(!n_termcap_cmdx(n_TERMCAP_CMD_cr))
1186 goto jerr;
1187 phy_cur = 0;
1190 if((f & (a_TTY_VF_MOD_DIRTY | a_HAVE_PROMPT)) ==
1191 (a_TTY_VF_MOD_DIRTY | a_HAVE_PROMPT)){
1192 if(fputs(tlp->tl_prompt, stdout) == EOF)
1193 goto jerr;
1194 phy_cur = tlp->tl_prompt_width + 1;
1197 /* May need to clear former line content */
1198 if((f & a_TTY_VF_MOD_DIRTY) &&
1199 !n_termcap_cmd(n_TERMCAP_CMD_ce, phy_cur, -1))
1200 goto jerr;
1202 tlp->tl_phy_start = tlp->tl_line.cells;
1203 goto jleave;
1206 /* Try to get an idea of the visual window */
1208 /* Find the left visual boundary */
1209 phy_wid = (phy_wid >> 1) + (phy_wid >> 2);
1210 if((cur = tlp->tl_cursor) == cnt)
1211 --cur;
1213 w = (tcp_left = tccp = tlp->tl_line.cells + cur)->tc_width;
1214 if(w == UI8_MAX) /* TODO yet TAB == SPC */
1215 w = 1;
1216 while(tcp_left > tlp->tl_line.cells){
1217 ui16_t cw = tcp_left[-1].tc_width;
1219 if(cw == UI8_MAX) /* TODO yet TAB == SPC */
1220 cw = 1;
1221 if(w + cw >= phy_wid)
1222 break;
1223 w += cw;
1224 --tcp_left;
1226 vi_left = w;
1228 /* If the left hand side of our visual viewpoint consumes less than half
1229 * of the screen width, show the prompt */
1230 if(tcp_left == tlp->tl_line.cells)
1231 f |= a_LEFT_MIN;
1233 if((f & (a_LEFT_MIN | a_HAVE_PROMPT)) == (a_LEFT_MIN | a_HAVE_PROMPT) &&
1234 w + tlp->tl_prompt_width < phy_wid){
1235 phy_base = tlp->tl_prompt_width;
1236 f |= a_SHOW_PROMPT;
1239 /* Then search for right boundary. We always leave the rightmost column
1240 * empty because some terminals [cw]ould wrap the line if we write into
1241 * that. XXX terminfo(5)/termcap(5) have the semi_auto_right_margin/sam/YE
1242 * XXX capability to indicate this, but we don't look at that */
1243 phy_wid = phy_wid_base - phy_base;
1244 tcp_right = tlp->tl_line.cells + cnt;
1246 while(&tccp[1] < tcp_right){
1247 ui16_t cw = tccp[1].tc_width;
1248 ui32_t i;
1250 if(cw == UI8_MAX) /* TODO yet TAB == SPC */
1251 cw = 1;
1252 i = w + cw;
1253 if(i > phy_wid)
1254 break;
1255 w = i;
1256 ++tccp;
1258 vi_right = w - vi_left;
1260 /* If the complete line including prompt fits on the screen, show prompt */
1261 if(--tcp_right == tccp){
1262 f |= a_RIGHT_MAX;
1264 /* Since we did brute-force walk also for the left boundary we may end up
1265 * in a situation were anything effectively fits on the screen, including
1266 * the prompt that is, but were we don't recognize this since we
1267 * restricted the search to fit in some visual viewpoint. Therefore try
1268 * again to extend the left boundary to overcome that */
1269 if(!(f & a_LEFT_MIN)){
1270 struct a_tty_cell const *tc1p = tlp->tl_line.cells;
1271 ui32_t vil1 = vi_left;
1273 assert(!(f & a_SHOW_PROMPT));
1274 w += tlp->tl_prompt_width;
1275 for(tcxp = tcp_left;;){
1276 ui32_t i = tcxp[-1].tc_width;
1278 if(i == UI8_MAX) /* TODO yet TAB == SPC */
1279 i = 1;
1280 vil1 += i;
1281 i += w;
1282 if(i > phy_wid)
1283 break;
1284 w = i;
1285 if(--tcxp == tc1p){
1286 tcp_left = tc1p;
1287 vi_left = vil1;
1288 f |= a_LEFT_MIN;
1289 break;
1292 /*w -= tlp->tl_prompt_width;*/
1295 tcp_right = tccp;
1296 tccp = tlp->tl_line.cells + cur;
1298 if((f & (a_LEFT_MIN | a_RIGHT_MAX | a_HAVE_PROMPT | a_SHOW_PROMPT)) ==
1299 (a_LEFT_MIN | a_RIGHT_MAX | a_HAVE_PROMPT) &&
1300 w + tlp->tl_prompt_width <= phy_wid){
1301 phy_wid -= (phy_base = tlp->tl_prompt_width);
1302 f |= a_SHOW_PROMPT;
1305 /* Try to avoid repainting the complete line - this is possible if the
1306 * cursor "did not leave the screen" and the prompt status hasn't changed.
1307 * I.e., after clamping virtual viewpoint, compare relation to physical */
1308 if((f & (a_TTY_VF_MOD_SINGLE/*FIXME*/ |
1309 a_TTY_VF_MOD_CONTENT/* xxx */ | a_TTY_VF_MOD_DIRTY)) ||
1310 (tcxp = tlp->tl_phy_start) == NULL ||
1311 tcxp > tccp || tcxp <= tcp_right)
1312 f |= a_TTY_VF_MOD_DIRTY;
1313 else{
1314 f |= a_TTY_VF_MOD_DIRTY;
1315 #if 0
1316 struct a_tty_cell const *tcyp;
1317 si32_t cur_displace;
1318 ui32_t phy_lmargin, phy_rmargin, fx, phy_displace;
1320 phy_lmargin = (fx = phy_wid) / 100;
1321 phy_rmargin = fx - (phy_lmargin * a_TTY_SCROLL_MARGIN_RIGHT);
1322 phy_lmargin *= a_TTY_SCROLL_MARGIN_LEFT;
1323 fx = (f & (a_SHOW_PROMPT | a_VISIBLE_PROMPT));
1325 if(fx == 0 || fx == (a_SHOW_PROMPT | a_VISIBLE_PROMPT)){
1327 #endif
1329 goto jpaint;
1331 /* We know what we have to paint, start synchronizing */
1332 jpaint:
1333 assert(phy_cur == tlp->tl_phy_cursor);
1334 assert(phy_wid == phy_wid_base - phy_base);
1335 assert(cnt == tlp->tl_count);
1336 assert(cnt > 0);
1337 assert(lstcur == tlp->tl_lst_cursor);
1338 assert(tccp == tlp->tl_line.cells + cur);
1340 phy_nxtcur = phy_base; /* FIXME only if repaint cpl. */
1342 /* Quickshot: is it only cursor movement within the visible screen? */
1343 if((f & a_TTY_VF_REFRESH) == a_TTY_VF_MOD_CURSOR){
1344 f |= a_MOVE_CURSOR;
1345 goto jcursor;
1348 /* To be able to apply some quick jump offs, clear line if possible */
1349 if(f & a_TTY_VF_MOD_DIRTY){
1350 /* Force complete clearance and cursor reinitialization */
1351 if(!n_termcap_cmdx(n_TERMCAP_CMD_cr) ||
1352 !n_termcap_cmd(n_TERMCAP_CMD_ce, 0, -1))
1353 goto jerr;
1354 tlp->tl_phy_start = tcp_left;
1355 phy_cur = 0;
1358 if((f & (a_TTY_VF_MOD_DIRTY | a_SHOW_PROMPT)) && phy_cur != 0){
1359 if(!n_termcap_cmdx(n_TERMCAP_CMD_cr))
1360 goto jerr;
1361 phy_cur = 0;
1364 if(f & a_SHOW_PROMPT){
1365 assert(phy_base == tlp->tl_prompt_width);
1366 if(fputs(tlp->tl_prompt, stdout) == EOF)
1367 goto jerr;
1368 phy_cur = phy_nxtcur;
1369 f |= a_VISIBLE_PROMPT;
1370 }else
1371 f &= ~a_VISIBLE_PROMPT;
1373 /* FIXME reposition cursor for paint */
1374 for(w = phy_nxtcur; tcp_left <= tcp_right; ++tcp_left){
1375 ui16_t cw;
1377 cw = tcp_left->tc_width;
1379 if(LIKELY(!tcp_left->tc_novis)){
1380 if(fwrite(tcp_left->tc_cbuf, sizeof *tcp_left->tc_cbuf,
1381 tcp_left->tc_count, stdout) != tcp_left->tc_count)
1382 goto jerr;
1383 }else{ /* XXX Shouldn't be here <-> CText, ui_str.c */
1384 char wbuf[8]; /* XXX magic */
1386 if(options & OPT_UNICODE){
1387 ui32_t wc;
1389 wc = (ui32_t)tcp_left->tc_wc;
1390 if((wc & ~0x1Fu) == 0)
1391 wc |= 0x2400;
1392 else if(wc == 0x7F)
1393 wc = 0x2421;
1394 else
1395 wc = 0x2426;
1396 n_utf32_to_utf8(wc, wbuf);
1397 }else
1398 wbuf[0] = '?', wbuf[1] = '\0';
1400 if(fputs(wbuf, stdout) == EOF)
1401 goto jerr;
1402 cw = 1;
1405 if(cw == UI8_MAX) /* TODO yet TAB == SPC */
1406 cw = 1;
1407 w += cw;
1408 if(tcp_left == tccp)
1409 phy_nxtcur = w;
1410 phy_cur += cw;
1413 /* Write something position marker alike if it doesn't fit on screen */
1414 if((f & a_HAVE_POSITION) &&
1415 ((f & (a_LEFT_MIN | a_RIGHT_MAX)) != (a_LEFT_MIN | a_RIGHT_MAX) ||
1416 ((f & a_HAVE_PROMPT) && !(f & a_SHOW_PROMPT)))){
1417 # ifdef HAVE_COLOUR
1418 char *posbuf = tlp->tl_pos_buf, *pos = tlp->tl_pos;
1419 # else
1420 char posbuf[5], *pos = posbuf;
1422 pos[4] = '\0';
1423 # endif
1425 if(phy_cur != (w = phy_wid_base) &&
1426 !n_termcap_cmd(n_TERMCAP_CMD_ch, phy_cur = w, 0))
1427 goto jerr;
1429 *pos++ = '|';
1430 if((f & a_LEFT_MIN) && (!(f & a_HAVE_PROMPT) || (f & a_SHOW_PROMPT)))
1431 memcpy(pos, "^.+", 3);
1432 else if(f & a_RIGHT_MAX)
1433 memcpy(pos, ".+$", 3);
1434 else{
1435 /* Theoretical line length limit a_TTY_LINE_MAX, choose next power of
1436 * ten (10 ** 10) to represent 100 percent, since we don't have a macro
1437 * that generates a constant, and i don't trust the standard "u type
1438 * suffix automatically scales" calculate the large number */
1439 static char const itoa[] = "0123456789";
1441 ui64_t const fact100 = (ui64_t)0x3B9ACA00u * 10u, fact = fact100 / 100;
1442 ui32_t i = (ui32_t)(((fact100 / cnt) * tlp->tl_cursor) / fact);
1443 n_LCTA(a_TTY_LINE_MAX <= SI32_MAX, "a_TTY_LINE_MAX too large");
1445 if(i < 10)
1446 pos[0] = ' ', pos[1] = itoa[i];
1447 else
1448 pos[1] = itoa[i % 10], pos[0] = itoa[i / 10];
1449 pos[2] = '%';
1452 if(fputs(posbuf, stdout) == EOF)
1453 goto jerr;
1454 phy_cur += 4;
1457 /* Users are used to see the cursor right of the point of interest, so we
1458 * need some further adjustments unless in special conditions. Be aware
1459 * that we may have adjusted cur at the beginning, too */
1460 if((cur = tlp->tl_cursor) == 0)
1461 phy_nxtcur = phy_base;
1462 else if(cur != cnt){
1463 ui16_t cw = tccp->tc_width;
1465 if(cw == UI8_MAX) /* TODO yet TAB == SPC */
1466 cw = 1;
1467 phy_nxtcur -= cw;
1470 jcursor:
1471 if(((f & a_MOVE_CURSOR) || phy_nxtcur != phy_cur) &&
1472 !n_termcap_cmd(n_TERMCAP_CMD_ch, phy_cur = phy_nxtcur, 0))
1473 goto jerr;
1475 jleave:
1476 tlp->tl_vi_flags |= (f & a_PERSIST_MASK);
1477 tlp->tl_lst_count = tlp->tl_count;
1478 tlp->tl_lst_cursor = tlp->tl_cursor;
1479 tlp->tl_phy_cursor = phy_cur;
1481 NYD2_LEAVE;
1482 return ((f & a_TRUE_RV) != 0);
1483 jerr:
1484 f &= ~a_TRUE_RV;
1485 goto jleave;
1488 static si32_t
1489 a_tty_wboundary(struct a_tty_line *tlp, si32_t dir){/* TODO shell token-wise */
1490 bool_t anynon;
1491 struct a_tty_cell *tcap;
1492 ui32_t cur, cnt;
1493 si32_t rv;
1494 NYD2_ENTER;
1496 assert(dir == 1 || dir == -1);
1498 rv = -1;
1499 cnt = tlp->tl_count;
1500 cur = tlp->tl_cursor;
1502 if(dir < 0){
1503 if(cur == 0)
1504 goto jleave;
1505 }else if(cur + 1 >= cnt)
1506 goto jleave;
1507 else
1508 --cnt, --cur; /* xxx Unsigned wrapping may occur (twice), then */
1510 for(rv = 0, tcap = tlp->tl_line.cells, anynon = FAL0;;){
1511 wchar_t wc;
1513 wc = tcap[cur += (ui32_t)dir].tc_wc;
1514 if(iswblank(wc) || iswpunct(wc)){
1515 if(anynon)
1516 break;
1517 }else
1518 anynon = TRU1;
1520 ++rv;
1522 if(dir < 0){
1523 if(cur == 0)
1524 break;
1525 }else if(cur + 1 >= cnt){
1526 ++rv;
1527 break;
1530 jleave:
1531 NYD2_LEAVE;
1532 return rv;
1535 static void
1536 a_tty_khome(struct a_tty_line *tlp, bool_t dobell){
1537 ui32_t f;
1538 NYD2_ENTER;
1540 if(LIKELY(tlp->tl_cursor > 0)){
1541 tlp->tl_cursor = 0;
1542 f = a_TTY_VF_MOD_CURSOR;
1543 }else if(dobell)
1544 f = a_TTY_VF_BELL;
1545 else
1546 f = a_TTY_VF_NONE;
1548 tlp->tl_vi_flags |= f;
1549 NYD2_LEAVE;
1552 static void
1553 a_tty_kend(struct a_tty_line *tlp){
1554 ui32_t f;
1555 NYD2_ENTER;
1557 if(LIKELY(tlp->tl_cursor < tlp->tl_count)){
1558 tlp->tl_cursor = tlp->tl_count;
1559 f = a_TTY_VF_MOD_CURSOR;
1560 }else
1561 f = a_TTY_VF_BELL;
1563 tlp->tl_vi_flags |= f;
1564 NYD2_LEAVE;
1567 static void
1568 a_tty_kbs(struct a_tty_line *tlp){
1569 ui32_t f, cur, cnt;
1570 NYD2_ENTER;
1572 cur = tlp->tl_cursor;
1573 cnt = tlp->tl_count;
1575 if(LIKELY(cur > 0)){
1576 tlp->tl_cursor = --cur;
1577 tlp->tl_count = --cnt;
1579 if((cnt -= cur) > 0){
1580 struct a_tty_cell *tcap;
1582 tcap = tlp->tl_line.cells + cur;
1583 memmove(tcap, &tcap[1], cnt *= sizeof(*tcap));
1585 f = a_TTY_VF_MOD_CURSOR | a_TTY_VF_MOD_CONTENT;
1586 }else
1587 f = a_TTY_VF_BELL;
1589 tlp->tl_vi_flags |= f;
1590 NYD2_LEAVE;
1593 static void
1594 a_tty_ksnarf(struct a_tty_line *tlp, bool_t cplline, bool_t dobell){
1595 ui32_t i, f;
1596 NYD2_ENTER;
1598 f = a_TTY_VF_NONE;
1599 i = tlp->tl_cursor;
1601 if(cplline && i > 0){
1602 tlp->tl_cursor = i = 0;
1603 f = a_TTY_VF_MOD_CURSOR;
1606 if(LIKELY(i < tlp->tl_count)){
1607 struct a_tty_cell *tcap;
1609 tcap = &tlp->tl_line.cells[0];
1610 a_tty_copy2paste(tlp, &tcap[i], &tcap[tlp->tl_count]);
1611 tlp->tl_count = i;
1612 f = a_TTY_VF_MOD_CONTENT;
1613 }else if(dobell)
1614 f |= a_TTY_VF_BELL;
1616 tlp->tl_vi_flags |= f;
1617 NYD2_LEAVE;
1620 static si32_t
1621 a_tty_kdel(struct a_tty_line *tlp){
1622 ui32_t cur, cnt, f;
1623 si32_t i;
1624 NYD2_ENTER;
1626 cur = tlp->tl_cursor;
1627 cnt = tlp->tl_count;
1628 i = (si32_t)(cnt - cur);
1630 if(LIKELY(i > 0)){
1631 tlp->tl_count = --cnt;
1633 if(LIKELY(--i > 0)){
1634 struct a_tty_cell *tcap;
1636 tcap = &tlp->tl_line.cells[cur];
1637 memmove(tcap, &tcap[1], (ui32_t)i * sizeof(*tcap));
1639 f = a_TTY_VF_MOD_CONTENT;
1640 }else if(cnt == 0 && !ok_blook(ignoreeof)){
1641 putchar('^');
1642 putchar('D');
1643 i = -1;
1644 f = a_TTY_VF_NONE;
1645 }else{
1646 i = 0;
1647 f = a_TTY_VF_BELL;
1650 tlp->tl_vi_flags |= f;
1651 NYD2_LEAVE;
1652 return i;
1655 static void
1656 a_tty_kleft(struct a_tty_line *tlp){
1657 ui32_t f;
1658 NYD2_ENTER;
1660 if(LIKELY(tlp->tl_cursor > 0)){
1661 --tlp->tl_cursor;
1662 f = a_TTY_VF_MOD_CURSOR;
1663 }else
1664 f = a_TTY_VF_BELL;
1666 tlp->tl_vi_flags |= f;
1667 NYD2_LEAVE;
1670 static void
1671 a_tty_kright(struct a_tty_line *tlp){
1672 ui32_t i;
1673 NYD2_ENTER;
1675 if(LIKELY((i = tlp->tl_cursor + 1) <= tlp->tl_count)){
1676 tlp->tl_cursor = i;
1677 i = a_TTY_VF_MOD_CURSOR;
1678 }else
1679 i = a_TTY_VF_BELL;
1681 tlp->tl_vi_flags |= i;
1682 NYD2_LEAVE;
1685 static void
1686 a_tty_ksnarfw(struct a_tty_line *tlp, bool_t fwd){
1687 struct a_tty_cell *tcap;
1688 ui32_t cnt, cur, f;
1689 si32_t i;
1690 NYD2_ENTER;
1692 if(UNLIKELY((i = a_tty_wboundary(tlp, (fwd ? +1 : -1))) <= 0)){
1693 f = (i < 0) ? a_TTY_VF_BELL : a_TTY_VF_NONE;
1694 goto jleave;
1697 cnt = tlp->tl_count - (ui32_t)i;
1698 cur = tlp->tl_cursor;
1699 if(!fwd)
1700 cur -= (ui32_t)i;
1701 tcap = &tlp->tl_line.cells[cur];
1703 a_tty_copy2paste(tlp, &tcap[0], &tcap[i]);
1705 if((tlp->tl_count = cnt) != (tlp->tl_cursor = cur)){
1706 cnt -= cur;
1707 memmove(&tcap[0], &tcap[i], cnt * sizeof(*tcap)); /* FIXME*/
1710 f = a_TTY_VF_MOD_CURSOR | a_TTY_VF_MOD_CONTENT;
1711 jleave:
1712 tlp->tl_vi_flags |= f;
1713 NYD2_LEAVE;
1716 static void
1717 a_tty_kgow(struct a_tty_line *tlp, si32_t dir){
1718 ui32_t f;
1719 si32_t i;
1720 NYD2_ENTER;
1722 if(UNLIKELY((i = a_tty_wboundary(tlp, dir)) <= 0))
1723 f = (i < 0) ? a_TTY_VF_BELL : a_TTY_VF_NONE;
1724 else{
1725 if(dir < 0)
1726 i = -i;
1727 tlp->tl_cursor += (ui32_t)i;
1728 f = a_TTY_VF_MOD_CURSOR;
1731 tlp->tl_vi_flags |= f;
1732 NYD2_LEAVE;
1735 static bool_t
1736 a_tty_kother(struct a_tty_line *tlp, wchar_t wc){
1737 /* Append if at EOL, insert otherwise;
1738 * since we may move around character-wise, always use a fresh ps */
1739 mbstate_t ps;
1740 struct a_tty_cell tc, *tcap;
1741 ui32_t f, cur, cnt;
1742 bool_t rv;
1743 NYD2_ENTER;
1745 rv = FAL0;
1746 f = a_TTY_VF_NONE;
1748 n_LCTA(a_TTY_LINE_MAX <= SI32_MAX, "a_TTY_LINE_MAX too large");
1749 if(tlp->tl_count + 1 >= a_TTY_LINE_MAX){
1750 n_err(_("Stop here, we can't extend line beyond size limit\n"));
1751 goto jleave;
1754 /* First init a cell and see whether we'll really handle this wc */
1755 memset(&ps, 0, sizeof ps);
1756 /* C99 */{
1757 size_t l;
1759 l = wcrtomb(tc.tc_cbuf, tc.tc_wc = wc, &ps);
1760 if(UNLIKELY(l > MB_LEN_MAX)){
1761 jemb:
1762 n_err(_("wcrtomb(3) error: too many multibyte character bytes\n"));
1763 goto jleave;
1765 tc.tc_count = (ui16_t)l;
1767 if(UNLIKELY((options & OPT_ENC_MBSTATE) != 0)){
1768 l = wcrtomb(&tc.tc_cbuf[l], L'\0', &ps);
1769 if(LIKELY(l == 1))
1770 /* Only NUL terminator */;
1771 else if(LIKELY(--l < MB_LEN_MAX))
1772 tc.tc_count += (ui16_t)l;
1773 else
1774 goto jemb;
1778 /* Yes, we will! Place it in the array */
1779 tc.tc_novis = (iswprint(wc) == 0);
1780 tc.tc_width = a_tty_wcwidth(wc);
1781 /* TODO if(tc.tc_novis && tc.tc_width > 0) */
1783 cur = tlp->tl_cursor++;
1784 cnt = tlp->tl_count++ - cur;
1785 tcap = &tlp->tl_line.cells[cur];
1786 if(cnt >= 1){
1787 memmove(&tcap[1], tcap, cnt * sizeof(*tcap));
1788 f = a_TTY_VF_MOD_CONTENT;
1789 }else
1790 f = a_TTY_VF_MOD_SINGLE;
1791 memcpy(tcap, &tc, sizeof *tcap);
1793 f |= a_TTY_VF_MOD_CURSOR;
1794 rv = TRU1;
1795 jleave:
1796 if(!rv)
1797 f |= a_TTY_VF_BELL;
1798 tlp->tl_vi_flags |= f;
1799 NYD2_LEAVE;
1800 return rv;
1803 static ui32_t
1804 a_tty_kht(struct a_tty_line *tlp){
1805 struct stat sb;
1806 struct str orig, bot, topp, sub, exp;
1807 struct n_string shou, *shoup;
1808 struct a_tty_cell *cword, *ctop, *cx;
1809 bool_t wedid, set_savec;
1810 ui32_t rv, f;
1811 NYD2_ENTER;
1813 f = a_TTY_VF_NONE;
1814 shoup = n_string_creat_auto(&shou);
1816 /* Get plain line data; if this is the first expansion/xy, update the
1817 * very original content so that ^G gets the origin back */
1818 orig = tlp->tl_savec;
1819 a_tty_cell2save(tlp);
1820 exp = tlp->tl_savec;
1821 if(orig.s != NULL){
1822 /*tlp->tl_savec = orig;*/
1823 set_savec = FAL0;
1824 }else
1825 set_savec = TRU1;
1826 orig = exp;
1828 /* Find the word to be expanded */
1830 cword = tlp->tl_line.cells;
1831 ctop = cword + tlp->tl_cursor;
1832 cx = cword + tlp->tl_count;
1834 /* topp: separate data right of cursor */
1835 if(cx > ctop){
1836 for(rv = 0; ctop < cx; ++ctop)
1837 rv += ctop->tc_count;
1838 topp.l = rv;
1839 topp.s = orig.s + orig.l - rv;
1840 ctop = cword + tlp->tl_cursor;
1841 }else
1842 topp.s = NULL, topp.l = 0;
1844 /* Find the shell token that corresponds to the cursor position */
1845 /* C99 */{
1846 size_t max;
1848 max = 0;
1849 if(ctop > cword){
1850 for(; cword < ctop; ++cword)
1851 max += cword->tc_count;
1852 cword = tlp->tl_line.cells;
1854 bot = sub = orig;
1855 bot.l = 0;
1856 sub.l = max;
1858 if(max > 0){
1859 for(;;){
1860 enum n_shexp_state shs;
1862 exp = sub;
1863 shs = n_shexp_parse_token(NULL, &sub, n_SHEXP_PARSE_DRYRUN |
1864 n_SHEXP_PARSE_TRIMSPACE | n_SHEXP_PARSE_IGNORE_EMPTY |
1865 n_SHEXP_PARSE_QUOTE_AUTOCLOSE);
1866 if(sub.l != 0){
1867 size_t x;
1869 assert(max >= sub.l);
1870 x = max - sub.l;
1871 bot.l += x;
1872 max -= x;
1873 continue;
1875 if(shs & n_SHEXP_STATE_ERR_MASK){
1876 n_err(_("Invalid completion pattern: %.*s\n"),
1877 (int)exp.l, exp.s);
1878 goto jnope;
1880 n_shexp_parse_token(shoup, &exp,
1881 n_SHEXP_PARSE_TRIMSPACE | n_SHEXP_PARSE_IGNORE_EMPTY |
1882 n_SHEXP_PARSE_QUOTE_AUTOCLOSE);
1883 break;
1886 sub.s = n_string_cp(shoup);
1887 sub.l = shoup->s_len;
1891 /* Leave room for "implicit asterisk" expansion, as below */
1892 if(sub.l == 0){
1893 wedid = TRU1;
1894 sub.s = UNCONST("*");
1895 sub.l = 1;
1898 wedid = FAL0;
1899 jredo:
1900 /* TODO Super-Heavy-Metal: block all sigs, avoid leaks on jump */
1901 hold_all_sigs();
1902 exp.s = fexpand(sub.s, a_TTY_TAB_FEXP_FL);
1903 rele_all_sigs();
1905 if(exp.s == NULL || (exp.l = strlen(exp.s)) == 0)
1906 goto jnope;
1908 /* May be multi-return! */
1909 if(pstate & PS_EXPAND_MULTIRESULT)
1910 goto jmulti;
1912 /* xxx That is not really true since the limit counts characters not bytes */
1913 n_LCTA(a_TTY_LINE_MAX <= SI32_MAX, "a_TTY_LINE_MAX too large");
1914 if(exp.l + 1 >= a_TTY_LINE_MAX){
1915 n_err(_("Tabulator expansion would extend beyond line size limit\n"));
1916 goto jnope;
1919 /* If the expansion equals the original string, assume the user wants what
1920 * is usually known as tab completion, append `*' and restart */
1921 if(!wedid && exp.l == sub.l && !memcmp(exp.s, sub.s, exp.l)){
1922 if(sub.s[sub.l - 1] == '*')
1923 goto jnope;
1925 wedid = TRU1;
1926 sub.s[sub.l++] = '*';
1927 sub.s[sub.l] = '\0';
1928 goto jredo;
1930 /* If it is a directory, and there is not yet a / appended, then we want the
1931 * user to confirm that he wants to dive in -- with only a HT */
1932 else if(wedid && exp.l == --sub.l && !memcmp(exp.s, sub.s, exp.l) &&
1933 exp.s[exp.l - 1] != '/'){
1934 if(stat(exp.s, &sb) || !S_ISDIR(sb.st_mode))
1935 goto jnope;
1936 sub.s = salloc(exp.l + 1 +1);
1937 memcpy(sub.s, exp.s, exp.l);
1938 sub.s[exp.l++] = '/';
1939 sub.s[exp.l] = '\0';
1940 exp.s = sub.s;
1941 wedid = FAL0;
1942 goto jset;
1943 }else{
1944 if(wedid && (wedid = (exp.s[exp.l - 1] == '*')))
1945 --exp.l;
1946 exp.s[exp.l] = '\0';
1947 jset:
1948 exp.l = strlen(exp.s = n_shexp_quote_cp(exp.s, tlp->tl_quote_rndtrip));
1949 tlp->tl_defc_cursor_byte = bot.l + exp.l -1;
1950 if(wedid)
1951 goto jnope;
1954 orig.l = bot.l + exp.l + topp.l;
1955 orig.s = salloc(orig.l + 5 +1);
1956 if((rv = (ui32_t)bot.l) > 0)
1957 memcpy(orig.s, bot.s, rv);
1958 memcpy(orig.s + rv, exp.s, exp.l);
1959 rv += exp.l;
1960 if(topp.l > 0){
1961 memcpy(orig.s + rv, topp.s, topp.l);
1962 rv += topp.l;
1964 orig.s[rv] = '\0';
1966 tlp->tl_defc = orig;
1967 tlp->tl_count = tlp->tl_cursor = 0;
1968 f |= a_TTY_VF_MOD_DIRTY;
1969 jleave:
1970 n_string_gut(shoup);
1971 tlp->tl_vi_flags |= f;
1972 NYD2_LEAVE;
1973 return rv;
1975 jmulti:{
1976 struct n_visual_info_ctx vic;
1977 struct str input;
1978 wc_t c2, c1;
1979 bool_t isfirst;
1980 char const *lococp;
1981 size_t locolen, scrwid, lnlen, lncnt, prefixlen;
1982 FILE *fp;
1984 if((fp = Ftmp(NULL, "tabex", OF_RDWR | OF_UNLINK | OF_REGISTER)) == NULL){
1985 n_perr(_("tmpfile"), 0);
1986 fp = stdout;
1989 /* How long is the result string for real? Search the NUL NUL
1990 * terminator. While here, detect the longest entry to perform an
1991 * initial allocation of our accumulator string */
1992 locolen = 0;
1994 size_t i;
1996 i = strlen(&exp.s[++exp.l]);
1997 locolen = MAX(locolen, i);
1998 exp.l += i;
1999 }while(exp.s[exp.l + 1] != '\0');
2001 shoup = n_string_reserve(n_string_trunc(shoup, 0),
2002 locolen + (locolen >> 1));
2004 /* Iterate (once again) over all results */
2005 scrwid = (size_t)scrnwidth - ((size_t)scrnwidth >> 3);
2006 lnlen = lncnt = 0;
2007 UNINIT(prefixlen, 0);
2008 UNINIT(lococp, NULL);
2009 UNINIT(c1, '\0');
2010 for(isfirst = TRU1; exp.l > 0; isfirst = FAL0, c1 = c2){
2011 size_t i;
2012 char const *fullpath;
2014 /* Next result */
2015 sub = exp;
2016 sub.l = i = strlen(sub.s);
2017 assert(exp.l >= i);
2018 if((exp.l -= i) > 0)
2019 --exp.l;
2020 exp.s += ++i;
2022 /* Separate dirname and basename */
2023 fullpath = sub.s;
2024 if(isfirst){
2025 char const *cp;
2027 if((cp = strrchr(fullpath, '/')) != NULL)
2028 prefixlen = PTR2SIZE(++cp - fullpath);
2029 else
2030 prefixlen = 0;
2032 if(prefixlen > 0 && prefixlen < sub.l){
2033 sub.l -= prefixlen;
2034 sub.s += prefixlen;
2037 /* We want case-insensitive sort-order */
2038 memset(&vic, 0, sizeof vic);
2039 vic.vic_indat = sub.s;
2040 vic.vic_inlen = sub.l;
2041 c2 = n_visual_info(&vic, n_VISUAL_INFO_ONE_CHAR) ? vic.vic_waccu
2042 : (ui8_t)*sub.s;
2043 #ifdef HAVE_C90AMEND1
2044 c2 = towlower(c2);
2045 #else
2046 c2 = lowerconv(c2);
2047 #endif
2049 /* Query longest common prefix along the way */
2050 if(isfirst){
2051 c1 = c2;
2052 lococp = sub.s;
2053 locolen = sub.l;
2054 }else if(locolen > 0){
2055 for(i = 0; i < locolen; ++i)
2056 if(lococp[i] != sub.s[i]){
2057 i = field_detect_clip(i, lococp, i);
2058 locolen = i;
2059 break;
2063 /* Prepare display */
2064 input = sub;
2065 shoup = n_shexp_quote(n_string_trunc(shoup, 0), &input,
2066 tlp->tl_quote_rndtrip);
2067 memset(&vic, 0, sizeof vic);
2068 vic.vic_indat = shoup->s_dat;
2069 vic.vic_inlen = shoup->s_len;
2070 if(!n_visual_info(&vic,
2071 n_VISUAL_INFO_SKIP_ERRORS | n_VISUAL_INFO_WIDTH_QUERY))
2072 vic.vic_vi_width = shoup->s_len;
2074 /* Put on screen. Indent follow lines of same sort slot */
2075 c1 = (c1 != c2);
2076 if(isfirst || c1 ||
2077 scrwid < lnlen || scrwid - lnlen <= vic.vic_vi_width + 2){
2078 putc('\n', fp);
2079 if(scrwid < lnlen)
2080 ++lncnt;
2081 ++lncnt, lnlen = 0;
2082 if(!isfirst && !c1)
2083 goto jsep;
2084 }else if(lnlen > 0){
2085 jsep:
2086 fputs(" ", fp);
2087 lnlen += 2;
2089 fputs(n_string_cp(shoup), fp);
2090 lnlen += vic.vic_vi_width;
2092 /* Support the known file name tagging
2093 * XXX *line-editor-completion-filetype* or so */
2094 if(!lstat(fullpath, &sb)){
2095 char c = '\0';
2097 if(S_ISDIR(sb.st_mode))
2098 c = '/';
2099 else if(S_ISLNK(sb.st_mode))
2100 c = '@';
2101 # ifdef S_ISFIFO
2102 else if(S_ISFIFO(sb.st_mode))
2103 c = '|';
2104 # endif
2105 # ifdef S_ISSOCK
2106 else if(S_ISSOCK(sb.st_mode))
2107 c = '=';
2108 # endif
2109 # ifdef S_ISCHR
2110 else if(S_ISCHR(sb.st_mode))
2111 c = '%';
2112 # endif
2113 # ifdef S_ISBLK
2114 else if(S_ISBLK(sb.st_mode))
2115 c = '#';
2116 # endif
2118 if(c != '\0'){
2119 putc(c, fp);
2120 ++lnlen;
2124 putc('\n', fp);
2125 ++lncnt;
2127 page_or_print(fp, lncnt);
2128 if(fp != stdout)
2129 Fclose(fp);
2131 n_string_gut(shoup);
2133 /* A common prefix of 0 means we cannot provide the user any auto
2134 * completed characters */
2135 if(locolen == 0)
2136 goto jnope;
2138 /* Otherwise we can, so extend the visual line content by the common
2139 * prefix (in a reversible way) */
2140 (exp.s = UNCONST(lococp))[locolen] = '\0';
2141 exp.s -= prefixlen;
2142 exp.l = (locolen += prefixlen);
2144 /* XXX Indicate that there is multiple choice */
2145 /* XXX f |= a_TTY_VF_BELL; -> *line-editor-completion-bell*? or so */
2146 wedid = FAL0;
2147 goto jset;
2150 jnope:
2151 /* If we've provided a default content, but failed to expand, there is
2152 * nothing we can "revert to": drop that default again */
2153 if(set_savec){
2154 tlp->tl_savec.s = NULL;
2155 tlp->tl_savec.l = 0;
2157 f = a_TTY_VF_NONE;
2158 rv = 0;
2159 goto jleave;
2162 # ifdef HAVE_HISTORY
2163 static ui32_t
2164 a_tty__khist_shared(struct a_tty_line *tlp, struct a_tty_hist *thp){
2165 ui32_t f, rv;
2166 NYD2_ENTER;
2168 if(LIKELY((tlp->tl_hist = thp) != NULL)){
2169 tlp->tl_defc.s = savestrbuf(thp->th_dat, thp->th_len);
2170 rv = tlp->tl_defc.l = thp->th_len;
2171 f = (tlp->tl_count > 0) ? a_TTY_VF_MOD_DIRTY : a_TTY_VF_NONE;
2172 tlp->tl_count = tlp->tl_cursor = 0;
2173 }else{
2174 f = a_TTY_VF_BELL;
2175 rv = UI32_MAX;
2178 tlp->tl_vi_flags |= f;
2179 NYD2_LEAVE;
2180 return rv;
2183 static ui32_t
2184 a_tty_khist(struct a_tty_line *tlp, bool_t fwd){
2185 struct a_tty_hist *thp;
2186 ui32_t rv;
2187 NYD2_ENTER;
2189 /* If we're not in history mode yet, save line content;
2190 * also, disallow forward search, then, and, of course, bail unless we
2191 * do have any history at all */
2192 if((thp = tlp->tl_hist) == NULL){
2193 if(fwd)
2194 goto jleave;
2195 if((thp = a_tty.tg_hist) == NULL)
2196 goto jleave;
2197 a_tty_cell2save(tlp);
2198 goto jleave;
2201 thp = fwd ? thp->th_younger : thp->th_older;
2202 jleave:
2203 rv = a_tty__khist_shared(tlp, thp);
2204 NYD2_LEAVE;
2205 return rv;
2208 static ui32_t
2209 a_tty_khist_search(struct a_tty_line *tlp, bool_t fwd){
2210 struct str orig_savec;
2211 struct a_tty_hist *thp;
2212 ui32_t rv;
2213 NYD2_ENTER;
2215 thp = NULL;
2217 /* We cannot complete an empty line */
2218 if(UNLIKELY(tlp->tl_count == 0)){
2219 /* XXX The upcoming hard reset would restore a set savec buffer,
2220 * XXX so forcefully reset that. A cleaner solution would be to
2221 * XXX reset it whenever a restore is no longer desired */
2222 tlp->tl_savec.s = NULL;
2223 tlp->tl_savec.l = 0;
2224 goto jleave;
2227 if((thp = tlp->tl_hist) == NULL){
2228 if((thp = a_tty.tg_hist) == NULL)
2229 goto jleave;
2230 /* We don't support wraparound, searching forward must always step */
2231 if(fwd)
2232 thp = thp->th_younger;
2233 orig_savec.s = NULL;
2234 orig_savec.l = 0; /* silence CC */
2235 }else if((thp = (fwd ? thp->th_younger : thp->th_older)) == NULL)
2236 goto jleave;
2237 else
2238 orig_savec = tlp->tl_savec;
2240 if(orig_savec.s == NULL)
2241 a_tty_cell2save(tlp);
2243 for(; thp != NULL; thp = (fwd ? thp->th_younger : thp->th_older))
2244 if(is_prefix(tlp->tl_savec.s, thp->th_dat))
2245 break;
2247 if(orig_savec.s != NULL)
2248 tlp->tl_savec = orig_savec;
2249 jleave:
2250 rv = a_tty__khist_shared(tlp, thp);
2251 NYD2_LEAVE;
2252 return rv;
2254 # endif /* HAVE_HISTORY */
2256 static enum a_tty_fun_status
2257 a_tty_fun(struct a_tty_line *tlp, enum a_tty_bind_flags tbf, size_t *len){
2258 enum a_tty_fun_status rv;
2259 NYD2_ENTER;
2261 rv = a_TTY_FUN_STATUS_OK;
2262 # undef a_X
2263 # define a_X(N) a_TTY_BIND_FUN_REDUCE(a_TTY_BIND_FUN_ ## N)
2264 switch(a_TTY_BIND_FUN_REDUCE(tbf)){
2265 case a_X(BELL):
2266 tlp->tl_vi_flags |= a_TTY_VF_BELL;
2267 break;
2268 case a_X(GO_BWD):
2269 a_tty_kleft(tlp);
2270 break;
2271 case a_X(GO_FWD):
2272 a_tty_kright(tlp);
2273 break;
2274 case a_X(GO_WORD_BWD):
2275 a_tty_kgow(tlp, -1);
2276 break;
2277 case a_X(GO_WORD_FWD):
2278 a_tty_kgow(tlp, +1);
2279 break;
2280 case a_X(GO_HOME):
2281 a_tty_khome(tlp, TRU1);
2282 break;
2283 case a_X(GO_END):
2284 a_tty_kend(tlp);
2285 break;
2286 case a_X(DEL_BWD):
2287 a_tty_kbs(tlp);
2288 break;
2289 case a_X(DEL_FWD):
2290 if(a_tty_kdel(tlp) < 0)
2291 rv = a_TTY_FUN_STATUS_END;
2292 break;
2293 case a_X(SNARF_WORD_BWD):
2294 a_tty_ksnarfw(tlp, FAL0);
2295 break;
2296 case a_X(SNARF_WORD_FWD):
2297 a_tty_ksnarfw(tlp, TRU1);
2298 break;
2299 case a_X(SNARF_END):
2300 a_tty_ksnarf(tlp, FAL0, TRU1);
2301 break;
2302 case a_X(SNARF_LINE):
2303 a_tty_ksnarf(tlp, TRU1, (tlp->tl_count == 0));
2304 break;
2306 case a_X(HIST_FWD):
2307 # ifdef HAVE_HISTORY
2308 if(tlp->tl_hist != NULL){
2309 bool_t isfwd = TRU1;
2311 if(0){
2312 # endif
2313 /* FALLTHRU */
2314 case a_X(HIST_BWD):
2315 # ifdef HAVE_HISTORY
2316 isfwd = FAL0;
2318 if((*len = a_tty_khist(tlp, isfwd)) != UI32_MAX){
2319 rv = a_TTY_FUN_STATUS_RESTART;
2320 break;
2322 goto jreset;
2323 # endif
2325 tlp->tl_vi_flags |= a_TTY_VF_BELL;
2326 break;
2328 case a_X(HIST_SRCH_FWD):{
2329 # ifdef HAVE_HISTORY
2330 bool_t isfwd = TRU1;
2332 if(0){
2333 # endif
2334 /* FALLTHRU */
2335 case a_X(HIST_SRCH_BWD):
2336 # ifdef HAVE_HISTORY
2337 isfwd = FAL0;
2339 if((*len = a_tty_khist_search(tlp, isfwd)) != UI32_MAX){
2340 rv = a_TTY_FUN_STATUS_RESTART;
2341 break;
2343 goto jreset;
2344 # else
2345 tlp->tl_vi_flags |= a_TTY_VF_BELL;
2346 # endif
2347 } break;
2349 case a_X(REPAINT):
2350 tlp->tl_vi_flags |= a_TTY_VF_MOD_DIRTY;
2351 break;
2352 case a_X(QUOTE_RNDTRIP):
2353 tlp->tl_quote_rndtrip = !tlp->tl_quote_rndtrip;
2354 break;
2355 case a_X(PROMPT_CHAR):{
2356 wchar_t wc;
2358 if((wc = a_tty_vinuni(tlp)) > 0)
2359 a_tty_kother(tlp, wc);
2360 } break;
2361 case a_X(COMPLETE):
2362 if((*len = a_tty_kht(tlp)) > 0)
2363 rv = a_TTY_FUN_STATUS_RESTART;
2364 break;
2366 case a_X(PASTE):
2367 if(tlp->tl_pastebuf.l > 0)
2368 *len = (tlp->tl_defc = tlp->tl_pastebuf).l;
2369 else
2370 tlp->tl_vi_flags |= a_TTY_VF_BELL;
2371 break;
2374 case a_X(CANCEL):
2375 /* Normally this just causes a restart and thus resets the state
2376 * machine */
2377 if(tlp->tl_savec.l == 0 && tlp->tl_defc.l == 0){
2379 # ifdef HAVE_KEY_BINDINGS
2380 tlp->tl_bind_takeover = '\0';
2381 # endif
2382 tlp->tl_vi_flags |= a_TTY_VF_BELL;
2383 rv = a_TTY_FUN_STATUS_RESTART;
2384 break;
2386 case a_X(RESET):
2387 if(tlp->tl_count == 0 && tlp->tl_savec.l == 0 && tlp->tl_defc.l == 0){
2388 # ifdef HAVE_KEY_BINDINGS
2389 tlp->tl_bind_takeover = '\0';
2390 # endif
2391 tlp->tl_vi_flags |= a_TTY_VF_MOD_DIRTY | a_TTY_VF_BELL;
2392 break;
2393 }else if(0){
2394 case a_X(FULLRESET):
2395 tlp->tl_savec.s = tlp->tl_defc.s = NULL;
2396 tlp->tl_savec.l = tlp->tl_defc.l = 0;
2397 tlp->tl_defc_cursor_byte = 0;
2398 tlp->tl_vi_flags |= a_TTY_VF_BELL;
2400 jreset:
2401 # ifdef HAVE_KEY_BINDINGS
2402 tlp->tl_bind_takeover = '\0';
2403 # endif
2404 tlp->tl_vi_flags |= a_TTY_VF_MOD_DIRTY;
2405 tlp->tl_cursor = tlp->tl_count = 0;
2406 # ifdef HAVE_HISTORY
2407 tlp->tl_hist = NULL;
2408 # endif
2409 if((*len = tlp->tl_savec.l) != 0){
2410 tlp->tl_defc = tlp->tl_savec;
2411 tlp->tl_savec.s = NULL;
2412 tlp->tl_savec.l = 0;
2413 }else
2414 *len = tlp->tl_defc.l;
2415 rv = a_TTY_FUN_STATUS_RESTART;
2416 break;
2418 default:
2419 case a_X(COMMIT):
2420 rv = a_TTY_FUN_STATUS_COMMIT;
2421 break;
2423 # undef a_X
2425 NYD2_LEAVE;
2426 return rv;
2429 static ssize_t
2430 a_tty_readline(struct a_tty_line *tlp, size_t len SMALLOC_DEBUG_ARGS){
2431 /* We want to save code, yet we may have to incorporate a lines'
2432 * default content and / or default input to switch back to after some
2433 * history movement; let "len > 0" mean "have to display some data
2434 * buffer" -> a_BUFMODE, and only otherwise read(2) it */
2435 mbstate_t ps[2];
2436 char cbuf_base[MB_LEN_MAX * 2], *cbuf, *cbufp;
2437 ssize_t rv;
2438 struct a_tty_bind_tree *tbtp;
2439 wchar_t wc;
2440 enum a_tty_bind_flags tbf;
2441 enum {a_NONE, a_WAS_HERE = 1<<0, a_BUFMODE = 1<<1, a_MAYBEFUN = 1<<2,
2442 a_TIMEOUT = 1<<3, a_TIMEOUT_EXPIRED = 1<<4,
2443 a_TIMEOUT_MASK = a_TIMEOUT | a_TIMEOUT_EXPIRED,
2444 a_READ_LOOP_MASK = ~(a_WAS_HERE | a_MAYBEFUN | a_TIMEOUT_MASK)
2445 } flags;
2446 NYD_ENTER;
2448 UNINIT(rv, 0);
2449 # ifdef HAVE_KEY_BINDINGS
2450 assert(tlp->tl_bind_takeover == '\0');
2451 # endif
2452 jrestart:
2453 memset(ps, 0, sizeof ps);
2454 flags = a_NONE;
2455 tbf = 0;
2456 tlp->tl_vi_flags |= a_TTY_VF_REFRESH | a_TTY_VF_SYNC;
2458 jinput_loop:
2459 for(;;){
2460 if(len != 0)
2461 flags |= a_BUFMODE;
2463 /* Ensure we have valid pointers, and room for grow */
2464 a_tty_check_grow(tlp, ((flags & a_BUFMODE) ? (ui32_t)len : 1)
2465 SMALLOC_DEBUG_ARGSCALL);
2467 /* Handle visual state flags, except in buffer mode */
2468 if(!(flags & a_BUFMODE) && (tlp->tl_vi_flags & a_TTY_VF_ALL_MASK))
2469 if(!a_tty_vi_refresh(tlp)){
2470 rv = -1;
2471 goto jleave;
2474 /* Ready for messing around.
2475 * Normal read(2)? Else buffer mode: speed this one up */
2476 if(!(flags & a_BUFMODE)){
2477 cbufp =
2478 cbuf = cbuf_base;
2479 }else{
2480 assert(tlp->tl_defc.l > 0 && tlp->tl_defc.s != NULL);
2481 assert(tlp->tl_defc.l >= len);
2482 cbufp =
2483 cbuf = tlp->tl_defc.s + (tlp->tl_defc.l - len);
2484 cbufp += len;
2487 /* Read in the next complete multibyte character */
2488 /* C99 */{
2489 # ifdef HAVE_KEY_BINDINGS
2490 struct a_tty_bind_tree *xtbtp;
2491 struct inseq{
2492 struct inseq *last;
2493 struct inseq *next;
2494 struct a_tty_bind_tree *tbtp;
2495 } *isp_head, *isp;
2497 isp_head = isp = NULL;
2498 # endif
2500 for(flags &= a_READ_LOOP_MASK;;){
2501 # ifdef HAVE_KEY_BINDINGS
2502 if(!(flags & a_BUFMODE) && tlp->tl_bind_takeover != '\0'){
2503 wc = tlp->tl_bind_takeover;
2504 tlp->tl_bind_takeover = '\0';
2505 }else
2506 # endif
2508 if(!(flags & a_BUFMODE)){
2509 /* Let me at least once dream of iomon(itor), timer with
2510 * one-shot, enwrapped with key_event and key_sequence_event,
2511 * all driven by an event_loop */
2512 /* TODO v15 Until we have SysV signal handling all through we
2513 * TODO need to temporarily adjust our BSD signal handler with
2514 * TODO a SysV one, here */
2515 n_sighdl_t otstp, ottin, ottou;
2517 otstp = n_signal(SIGTSTP, &n_tty_signal);
2518 ottin = n_signal(SIGTTIN, &n_tty_signal);
2519 ottou = n_signal(SIGTTOU, &n_tty_signal);
2520 # ifdef HAVE_KEY_BINDINGS
2521 flags &= ~a_TIMEOUT_MASK;
2522 if(isp != NULL && (tbtp = isp->tbtp)->tbt_isseq &&
2523 !tbtp->tbt_isseq_trail){
2524 a_tty_term_rawmode_timeout(tlp, TRU1);
2525 flags |= a_TIMEOUT;
2527 # endif
2529 while((rv = read(STDIN_FILENO, cbufp, 1)) < 1){
2530 if(rv == -1){
2531 if(errno == EINTR){
2532 if((tlp->tl_vi_flags & a_TTY_VF_MOD_DIRTY) &&
2533 !a_tty_vi_refresh(tlp))
2534 break;
2535 continue;
2537 break;
2540 # ifdef HAVE_KEY_BINDINGS
2541 /* Timeout expiration */
2542 if(rv == 0){
2543 assert(flags & a_TIMEOUT);
2544 assert(isp != NULL);
2545 a_tty_term_rawmode_timeout(tlp, FAL0);
2547 /* Something "atomic" broke. Maybe the current one can
2548 * also be terminated already, by itself? xxx really? */
2549 if((tbtp = isp->tbtp)->tbt_bind != NULL){
2550 tlp->tl_bind_takeover = wc;
2551 goto jhave_bind;
2554 /* Or, maybe there is a second path without a timeout;
2555 * this should be covered by .tbt_isseq_trail, but then
2556 * again a single-layer implementation cannot "know" */
2557 for(xtbtp = tbtp; (xtbtp = xtbtp->tbt_sibling) != NULL;)
2558 if(xtbtp->tbt_char == tbtp->tbt_char){
2559 assert(!xtbtp->tbt_isseq);
2560 break;
2562 /* Lay down on read(2)? */
2563 if(xtbtp != NULL)
2564 continue;
2565 goto jtake_over;
2567 # endif /* HAVE_KEY_BINDINGS */
2570 # ifdef HAVE_KEY_BINDINGS
2571 if(flags & a_TIMEOUT)
2572 a_tty_term_rawmode_timeout(tlp, FAL0);
2573 # endif
2574 safe_signal(SIGTSTP, otstp);
2575 safe_signal(SIGTTIN, ottin);
2576 safe_signal(SIGTTOU, ottou);
2577 if(rv < 0)
2578 goto jleave;
2580 ++cbufp;
2583 rv = (ssize_t)mbrtowc(&wc, cbuf, PTR2SIZE(cbufp - cbuf), &ps[0]);
2584 if(rv <= 0){
2585 /* Any error during buffer mode can only result in a hard
2586 * reset; Otherwise, if it's a hard error, or if too many
2587 * redundant shift sequences overflow our buffer: perform
2588 * hard reset */
2589 if((flags & a_BUFMODE) || rv == -1 ||
2590 sizeof cbuf_base == PTR2SIZE(cbufp - cbuf)){
2591 a_tty_fun(tlp, a_TTY_BIND_FUN_FULLRESET, &len);
2592 goto jrestart;
2594 /* Otherwise, due to the way we deal with the buffer, we need
2595 * to restore the mbstate_t from before this conversion */
2596 ps[0] = ps[1];
2597 continue;
2599 cbufp = cbuf;
2600 ps[1] = ps[0];
2603 /* Normal read(2)ing is subject to detection of key-bindings */
2604 # ifdef HAVE_KEY_BINDINGS
2605 if(!(flags & a_BUFMODE)){
2606 /* Check for special bypass functions before we try to embed
2607 * this character into the tree */
2608 if(n_uasciichar(wc)){
2609 char c;
2610 char const *cp;
2612 for(c = (char)wc, cp = &(*tlp->tl_bind_shcut_prompt_char)[0];
2613 *cp != '\0'; ++cp){
2614 if(c == *cp){
2615 wc = a_tty_vinuni(tlp);
2616 break;
2619 if(wc == '\0'){
2620 tlp->tl_vi_flags |= a_TTY_VF_BELL;
2621 goto jinput_loop;
2624 if(n_uasciichar(wc))
2625 flags |= a_MAYBEFUN;
2626 else
2627 flags &= ~a_MAYBEFUN;
2629 /* Search for this character in the bind tree */
2630 tbtp = (isp != NULL) ? isp->tbtp->tbt_childs
2631 : (*tlp->tl_bind_tree_hmap)[wc % HSHSIZE];
2632 for(; tbtp != NULL; tbtp = tbtp->tbt_sibling){
2633 if(tbtp->tbt_char == wc){
2634 struct inseq *nisp;
2636 /* If this one cannot continue we're likely finished! */
2637 if(tbtp->tbt_childs == NULL){
2638 assert(tbtp->tbt_bind != NULL);
2639 tbf = tbtp->tbt_bind->tbc_flags;
2640 goto jmle_fun;
2643 /* This needs to read more characters */
2644 nisp = salloc(sizeof *nisp);
2645 if((nisp->last = isp) == NULL)
2646 isp_head = nisp;
2647 else
2648 isp->next = nisp;
2649 nisp->next = NULL;
2650 nisp->tbtp = tbtp;
2651 isp = nisp;
2652 flags &= ~a_WAS_HERE;
2653 break;
2656 if(tbtp != NULL)
2657 continue;
2659 /* Was there a binding active, but couldn't be continued? */
2660 if(isp != NULL){
2661 /* A binding had a timeout, it didn't expire, but we saw
2662 * something non-expected. Something "atomic" broke.
2663 * Maybe there is a second path without a timeout, that
2664 * continues like we've seen it. I.e., it may just have been
2665 * the user, typing two fast. We definitely want to allow
2666 * bindings like \e,d etc. to succeed: users are so used to
2667 * them that a timeout cannot be the mechanism to catch up!
2668 * A single-layer implementation cannot "know" */
2669 if((tbtp = isp->tbtp)->tbt_isseq && (isp->last == NULL ||
2670 !(xtbtp = isp->last->tbtp)->tbt_isseq ||
2671 xtbtp->tbt_isseq_trail)){
2672 for(xtbtp = (tbtp = isp->tbtp);
2673 (xtbtp = xtbtp->tbt_sibling) != NULL;)
2674 if(xtbtp->tbt_char == tbtp->tbt_char){
2675 assert(!xtbtp->tbt_isseq);
2676 break;
2678 if(xtbtp != NULL){
2679 isp->tbtp = xtbtp;
2680 tlp->tl_bind_takeover = wc;
2681 continue;
2685 /* Check for CANCEL shortcut now */
2686 if(flags & a_MAYBEFUN){
2687 char c;
2688 char const *cp;
2690 for(c = (char)wc, cp = &(*tlp->tl_bind_shcut_cancel)[0];
2691 *cp != '\0'; ++cp)
2692 if(c == *cp){
2693 tbf = a_TTY_BIND_FUN_INTERNAL |a_TTY_BIND_FUN_CANCEL;
2694 goto jmle_fun;
2698 /* So: maybe the current sequence can be terminated here? */
2699 if((tbtp = isp->tbtp)->tbt_bind != NULL){
2700 jhave_bind:
2701 tbf = tbtp->tbt_bind->tbc_flags;
2702 jmle_fun:
2703 if(tbf & a_TTY_BIND_FUN_INTERNAL){
2704 switch(a_tty_fun(tlp, tbf, &len)){
2705 case a_TTY_FUN_STATUS_OK:
2706 goto jinput_loop;
2707 case a_TTY_FUN_STATUS_COMMIT:
2708 goto jdone;
2709 case a_TTY_FUN_STATUS_RESTART:
2710 goto jrestart;
2711 case a_TTY_FUN_STATUS_END:
2712 goto jleave;
2714 assert(0);
2715 }else if(tbtp->tbt_bind->tbc_flags & a_TTY_BIND_NOCOMMIT){
2716 struct a_tty_bind_ctx *tbcp;
2718 tbcp = tbtp->tbt_bind;
2719 memcpy(tlp->tl_defc.s = salloc(
2720 (tlp->tl_defc.l = len = tbcp->tbc_exp_len) +1),
2721 tbcp->tbc_exp, tbcp->tbc_exp_len +1);
2722 goto jrestart;
2723 }else{
2724 tlp->tl_reenter_after_cmd = tbtp->tbt_bind->tbc_exp;
2725 goto jdone;
2730 /* Otherwise take over all chars "as is" */
2731 jtake_over:
2732 for(; isp_head != NULL; isp_head = isp_head->next)
2733 if(a_tty_kother(tlp, isp_head->tbtp->tbt_char)){
2734 /* FIXME */
2736 /* And the current one too */
2737 goto jkother;
2739 # endif /* HAVE_KEY_BINDINGS */
2741 if((flags & a_BUFMODE) && (len -= (size_t)rv) == 0){
2742 /* Buffer mode completed */
2743 tlp->tl_defc.s = NULL;
2744 tlp->tl_defc.l = 0;
2745 flags &= ~a_BUFMODE;
2747 break;
2750 # ifndef HAVE_KEY_BINDINGS
2751 /* Don't interpret control bytes during buffer mode.
2752 * Otherwise, if it's a control byte check whether it is a MLE
2753 * function. Remarks: initially a complete duplicate to be able to
2754 * switch(), later converted to simply iterate over (an #ifdef'd
2755 * subset of) the MLE default_tuple table in order to have "a SPOF" */
2756 if(cbuf == cbuf_base && n_uasciichar(wc) && cntrlchar((char)wc)){
2757 struct a_tty_bind_default_tuple const *tbdtp;
2758 char c;
2760 for(c = (char)wc ^ 0x40, tbdtp = a_tty_bind_default_tuples;
2761 PTRCMP(tbdtp, <, &a_tty_bind_default_tuples[
2762 NELEM(a_tty_bind_default_tuples)]);
2763 ++tbdtp){
2764 /* Assert default_tuple table is properly subset'ed */
2765 assert(tbdtp->tbdt_iskey);
2766 if(tbdtp->tbdt_ckey == c){
2767 if(tbdtp->tbdt_exp[0] == '\0'){
2768 enum a_tty_bind_flags tbf;
2770 tbf = a_TTY_BIND_FUN_EXPAND((ui8_t)tbdtp->tbdt_exp[1]);
2771 switch(a_tty_fun(tlp, tbf, &len)){
2772 case a_TTY_FUN_STATUS_OK:
2773 goto jinput_loop;
2774 case a_TTY_FUN_STATUS_COMMIT:
2775 goto jdone;
2776 case a_TTY_FUN_STATUS_RESTART:
2777 goto jrestart;
2778 case a_TTY_FUN_STATUS_END:
2779 goto jleave;
2781 assert(0);
2782 }else{
2783 tlp->tl_reenter_after_cmd = tbdtp->tbdt_exp;
2784 goto jdone;
2789 # endif /* !HAVE_KEY_BINDINGS */
2791 # ifdef HAVE_KEY_BINDINGS
2792 jkother:
2793 # endif
2794 if(a_tty_kother(tlp, wc)){
2795 /* Don't clear the history during buffer mode.. */
2796 # ifdef HAVE_HISTORY
2797 if(!(flags & a_BUFMODE) && cbuf == cbuf_base)
2798 tlp->tl_hist = NULL;
2799 # endif
2804 /* We have a completed input line, convert the struct cell data to its
2805 * plain character equivalent */
2806 jdone:
2807 rv = a_tty_cell2dat(tlp);
2808 jleave:
2809 putchar('\n');
2810 fflush(stdout);
2811 NYD_LEAVE;
2812 return rv;
2815 # ifdef HAVE_KEY_BINDINGS
2816 static enum n_lexinput_flags
2817 a_tty_bind_ctx_find(char const *name){
2818 enum n_lexinput_flags rv;
2819 struct a_tty_bind_ctx_map const *tbcmp;
2820 NYD2_ENTER;
2822 tbcmp = a_tty_bind_ctx_maps;
2823 do if(!asccasecmp(tbcmp->tbcm_name, name)){
2824 rv = tbcmp->tbcm_ctx;
2825 goto jleave;
2826 }while(PTRCMP(++tbcmp, <, &a_tty_bind_ctx_maps[NELEM(a_tty_bind_ctx_maps)]));
2828 rv = (enum n_lexinput_flags)-1;
2829 jleave:
2830 NYD2_LEAVE;
2831 return rv;
2834 static bool_t
2835 a_tty_bind_create(struct a_tty_bind_parse_ctx *tbpcp, bool_t replace){
2836 struct a_tty_bind_ctx *tbcp;
2837 bool_t rv;
2838 NYD2_ENTER;
2840 rv = FAL0;
2842 if(!a_tty_bind_parse(TRU1, tbpcp))
2843 goto jleave;
2845 /* Since we use a single buffer for it all, need to replace as such */
2846 if(tbpcp->tbpc_tbcp != NULL){
2847 if(!replace)
2848 goto jleave;
2849 a_tty_bind_del(tbpcp);
2850 }else if(a_tty.tg_bind_cnt == UI32_MAX){
2851 n_err(_("`bind': maximum number of bindings already established\n"));
2852 goto jleave;
2855 /* C99 */{
2856 size_t i, j;
2858 tbcp = smalloc(sizeof(*tbcp) -
2859 VFIELD_SIZEOF(struct a_tty_bind_ctx, tbc__buf) +
2860 tbpcp->tbpc_seq_len + tbpcp->tbpc_exp.l +
2861 MAX(sizeof(si32_t), sizeof(wc_t)) + tbpcp->tbpc_cnv_len +3);
2862 if(tbpcp->tbpc_ltbcp != NULL){
2863 tbcp->tbc_next = tbpcp->tbpc_ltbcp->tbc_next;
2864 tbpcp->tbpc_ltbcp->tbc_next = tbcp;
2865 }else{
2866 enum n_lexinput_flags lif = tbpcp->tbpc_flags & n__LEXINPUT_CTX_MASK;
2868 tbcp->tbc_next = a_tty.tg_bind[lif];
2869 a_tty.tg_bind[lif] = tbcp;
2871 memcpy(tbcp->tbc_seq = &tbcp->tbc__buf[0],
2872 tbpcp->tbpc_seq, i = (tbcp->tbc_seq_len = tbpcp->tbpc_seq_len) +1);
2873 memcpy(tbcp->tbc_exp = &tbcp->tbc__buf[i],
2874 tbpcp->tbpc_exp.s, j = (tbcp->tbc_exp_len = tbpcp->tbpc_exp.l) +1);
2875 i += j;
2876 i = (i + tbpcp->tbpc_cnv_align_mask) & ~tbpcp->tbpc_cnv_align_mask;
2877 memcpy(tbcp->tbc_cnv = &tbcp->tbc__buf[i],
2878 tbpcp->tbpc_cnv, (tbcp->tbc_cnv_len = tbpcp->tbpc_cnv_len) +1);
2879 tbcp->tbc_flags = tbpcp->tbpc_flags;
2882 /* Directly resolve any termcap(5) symbol if we are already setup */
2883 if((pstate & PS_STARTED) &&
2884 (tbcp->tbc_flags & (a_TTY_BIND_RESOLVE | a_TTY_BIND_DEFUNCT)) ==
2885 a_TTY_BIND_RESOLVE)
2886 a_tty_bind_resolve(tbcp);
2888 ++a_tty.tg_bind_cnt;
2889 /* If this binding is usable invalidate the key input lookup trees */
2890 if(!(tbcp->tbc_flags & a_TTY_BIND_DEFUNCT))
2891 a_tty.tg_bind_isdirty = TRU1;
2892 rv = TRU1;
2893 jleave:
2894 NYD2_LEAVE;
2895 return rv;
2898 static bool_t
2899 a_tty_bind_parse(bool_t isbindcmd, struct a_tty_bind_parse_ctx *tbpcp){
2900 enum{a_TRUE_RV = a_TTY__BIND_LAST<<1};
2902 struct n_visual_info_ctx vic;
2903 struct str shin_save, shin;
2904 struct n_string shou, *shoup;
2905 size_t i;
2906 struct kse{
2907 struct kse *next;
2908 char *seq_dat;
2909 wc_t *cnv_dat;
2910 ui32_t seq_len;
2911 ui32_t cnv_len; /* High bit set if a termap to be resolved */
2912 ui32_t calc_cnv_len; /* Ditto, but aligned etc. */
2913 ui8_t kse__dummy[4];
2914 } *head, *tail;
2915 ui32_t f;
2916 NYD2_ENTER;
2917 n_LCTA(UICMP(64, a_TRUE_RV, <, UI32_MAX),
2918 "Flag bits excess storage datatype");
2920 f = n_LEXINPUT_NONE;
2921 shoup = n_string_creat_auto(&shou);
2922 head = tail = NULL;
2924 /* Parse the key-sequence */
2925 for(shin.s = UNCONST(tbpcp->tbpc_in_seq), shin.l = UIZ_MAX;;){
2926 struct kse *ep;
2927 enum n_shexp_state shs;
2929 shin_save = shin;
2930 shs = n_shexp_parse_token(shoup, &shin,
2931 n_SHEXP_PARSE_TRUNC | n_SHEXP_PARSE_TRIMSPACE |
2932 n_SHEXP_PARSE_IGNORE_EMPTY | n_SHEXP_PARSE_IFS_IS_COMMA);
2933 if(shs & n_SHEXP_STATE_ERR_UNICODE){
2934 f |= a_TTY_BIND_DEFUNCT;
2935 if(isbindcmd && (options & OPT_D_V))
2936 n_err(_("`%s': \\uNICODE not available in locale: %s\n"),
2937 tbpcp->tbpc_cmd, tbpcp->tbpc_in_seq);
2939 if((shs & n_SHEXP_STATE_ERR_MASK) & ~n_SHEXP_STATE_ERR_UNICODE){
2940 n_err(_("`%s': failed to parse key-sequence: %s\n"),
2941 tbpcp->tbpc_cmd, tbpcp->tbpc_in_seq);
2942 goto jleave;
2944 if((shs & (n_SHEXP_STATE_OUTPUT | n_SHEXP_STATE_STOP)) ==
2945 n_SHEXP_STATE_STOP)
2946 break;
2948 ep = salloc(sizeof *ep);
2949 if(head == NULL)
2950 head = ep;
2951 else
2952 tail->next = ep;
2953 tail = ep;
2954 ep->next = NULL;
2955 if(!(shs & n_SHEXP_STATE_ERR_UNICODE)){
2956 i = strlen(ep->seq_dat = n_shexp_quote_cp(n_string_cp(shoup), TRU1));
2957 if(i >= SI32_MAX - 1)
2958 goto jelen;
2959 ep->seq_len = (ui32_t)i;
2960 }else{
2961 /* Otherwise use the original buffer, _we_ can only quote it the wrong
2962 * way (e.g., an initial $'\u3a' becomes '\u3a'), _then_ */
2963 if((i = shin_save.l - shin.l) >= SI32_MAX - 1)
2964 goto jelen;
2965 ep->seq_len = (ui32_t)i;
2966 ep->seq_dat = savestrbuf(shin_save.s, i);
2969 memset(&vic, 0, sizeof vic);
2970 vic.vic_inlen = shoup->s_len;
2971 vic.vic_indat = shoup->s_dat;
2972 if(!n_visual_info(&vic,
2973 n_VISUAL_INFO_WOUT_CREATE | n_VISUAL_INFO_WOUT_SALLOC)){
2974 n_err(_("`%s': key-sequence seems to contain invalid "
2975 "characters: %s: %s\n"),
2976 tbpcp->tbpc_cmd, n_string_cp(shoup), tbpcp->tbpc_in_seq);
2977 f |= a_TTY_BIND_DEFUNCT;
2978 goto jleave;
2979 }else if(vic.vic_woulen == 0 ||
2980 vic.vic_woulen >= (SI32_MAX - 2) / sizeof(wc_t)){
2981 jelen:
2982 n_err(_("`%s': length of key-sequence unsupported: %s: %s\n"),
2983 tbpcp->tbpc_cmd, n_string_cp(shoup), tbpcp->tbpc_in_seq);
2984 f |= a_TTY_BIND_DEFUNCT;
2985 goto jleave;
2987 ep->cnv_dat = vic.vic_woudat;
2988 ep->cnv_len = (ui32_t)vic.vic_woulen;
2990 /* A termcap(5)/terminfo(5) identifier? */
2991 if(ep->cnv_len > 1 && ep->cnv_dat[0] == ':'){
2992 i = --ep->cnv_len, ++ep->cnv_dat;
2993 # ifndef HAVE_TERMCAP
2994 if(options & OPT_D_V)
2995 n_err(_("`%s': no termcap(5)/terminfo(5) support: %s: %s\n"),
2996 tbpcp->tbpc_cmd, ep->seq_dat, tbpcp->tbpc_in_seq);
2997 f |= a_TTY_BIND_DEFUNCT;
2998 # endif
2999 if(i > a_TTY_BIND_CAPNAME_MAX){
3000 n_err(_("`%s': termcap(5)/terminfo(5) name too long: %s: %s\n"),
3001 tbpcp->tbpc_cmd, ep->seq_dat, tbpcp->tbpc_in_seq);
3002 f |= a_TTY_BIND_DEFUNCT;
3004 while(i > 0)
3005 /* (We store it as char[]) */
3006 if((ui32_t)ep->cnv_dat[--i] & ~0x7Fu){
3007 n_err(_("`%s': invalid termcap(5)/terminfo(5) name content: "
3008 "%s: %s\n"),
3009 tbpcp->tbpc_cmd, ep->seq_dat, tbpcp->tbpc_in_seq);
3010 f |= a_TTY_BIND_DEFUNCT;
3011 break;
3013 ep->cnv_len |= SI32_MIN; /* Needs resolve */
3014 f |= a_TTY_BIND_RESOLVE;
3017 if(shs & n_SHEXP_STATE_STOP)
3018 break;
3021 if(head == NULL){
3022 jeempty:
3023 n_err(_("`%s': effectively empty key-sequence: %s\n"),
3024 tbpcp->tbpc_cmd, tbpcp->tbpc_in_seq);
3025 goto jleave;
3028 if(isbindcmd) /* (Or always, just "1st time init") */
3029 tbpcp->tbpc_cnv_align_mask = MAX(sizeof(si32_t), sizeof(wc_t)) - 1;
3031 /* C99 */{
3032 struct a_tty_bind_ctx *ltbcp, *tbcp;
3033 char *cpbase, *cp, *cnv;
3034 size_t sl, cl;
3036 /* Unite the parsed sequence(s) into single string representations */
3037 for(sl = cl = 0, tail = head; tail != NULL; tail = tail->next){
3038 sl += tail->seq_len + 1;
3040 if(!isbindcmd)
3041 continue;
3043 /* Preserve room for terminal capabilities to be resolved.
3044 * Above we have ensured the buffer will fit in these calculations */
3045 if((i = tail->cnv_len) & SI32_MIN){
3046 /* For now
3047 * struct{si32_t buf_len_iscap; si32_t cap_len; wc_t name[]+NUL;}
3048 * later
3049 * struct{si32_t buf_len_iscap; si32_t cap_len; char buf[]+NUL;} */
3050 n_LCTAV(ISPOW2(a_TTY_BIND_CAPEXP_ROUNDUP));
3051 n_LCTA(a_TTY_BIND_CAPEXP_ROUNDUP >= sizeof(wc_t),
3052 "Aligning on this constant doesn't properly align wc_t");
3053 i &= SI32_MAX;
3054 i *= sizeof(wc_t);
3055 i += sizeof(si32_t);
3056 if(i < a_TTY_BIND_CAPEXP_ROUNDUP)
3057 i = (i + (a_TTY_BIND_CAPEXP_ROUNDUP - 1)) &
3058 ~(a_TTY_BIND_CAPEXP_ROUNDUP - 1);
3059 }else
3060 /* struct{si32_t buf_len_iscap; wc_t buf[]+NUL;} */
3061 i *= sizeof(wc_t);
3062 i += sizeof(si32_t) + sizeof(wc_t); /* (buf_len_iscap, NUL) */
3063 cl += i;
3064 if(tail->cnv_len & SI32_MIN){
3065 tail->cnv_len &= SI32_MAX;
3066 i |= SI32_MIN;
3068 tail->calc_cnv_len = (ui32_t)i;
3070 --sl;
3072 tbpcp->tbpc_seq_len = sl;
3073 tbpcp->tbpc_cnv_len = cl;
3074 /* C99 */{
3075 size_t j;
3077 j = i = sl + 1; /* Room for comma separator */
3078 if(isbindcmd){
3079 i = (i + tbpcp->tbpc_cnv_align_mask) & ~tbpcp->tbpc_cnv_align_mask;
3080 j = i;
3081 i += cl;
3083 tbpcp->tbpc_seq = cp = cpbase = salloc(i);
3084 tbpcp->tbpc_cnv = cnv = &cpbase[j];
3087 for(tail = head; tail != NULL; tail = tail->next){
3088 memcpy(cp, tail->seq_dat, tail->seq_len);
3089 cp += tail->seq_len;
3090 *cp++ = ',';
3092 if(isbindcmd){
3093 char * const save_cnv = cnv;
3095 UNALIGN(si32_t*,cnv)[0] = (si32_t)(i = tail->calc_cnv_len);
3096 cnv += sizeof(si32_t);
3097 if(i & SI32_MIN){
3098 /* For now
3099 * struct{si32_t buf_len_iscap; si32_t cap_len; wc_t name[];}
3100 * later
3101 * struct{si32_t buf_len_iscap; si32_t cap_len; char buf[];} */
3102 UNALIGN(si32_t*,cnv)[0] = tail->cnv_len;
3103 cnv += sizeof(si32_t);
3105 i = tail->cnv_len * sizeof(wc_t);
3106 memcpy(cnv, tail->cnv_dat, i);
3107 cnv += i;
3108 *UNALIGN(wc_t*,cnv) = '\0';
3110 cnv = save_cnv + (tail->calc_cnv_len & SI32_MAX);
3113 *--cp = '\0';
3115 /* Search for a yet existing identical mapping */
3116 for(ltbcp = NULL, tbcp = a_tty.tg_bind[tbpcp->tbpc_flags]; tbcp != NULL;
3117 ltbcp = tbcp, tbcp = tbcp->tbc_next)
3118 if(tbcp->tbc_seq_len == sl && !memcmp(tbcp->tbc_seq, cpbase, sl)){
3119 tbpcp->tbpc_tbcp = tbcp;
3120 break;
3122 tbpcp->tbpc_ltbcp = ltbcp;
3123 tbpcp->tbpc_flags |= (f & a_TTY__BIND_MASK);
3126 /* Create single string expansion if so desired */
3127 if(isbindcmd){
3128 char *exp;
3130 exp = tbpcp->tbpc_exp.s;
3132 i = tbpcp->tbpc_exp.l;
3133 if(i > 0 && exp[i - 1] == '@'){
3134 while(--i > 0){
3135 if(!blankspacechar(exp[i - 1]))
3136 break;
3138 if(i == 0)
3139 goto jeempty;
3141 exp[tbpcp->tbpc_exp.l = i] = '\0';
3142 tbpcp->tbpc_flags |= a_TTY_BIND_NOCOMMIT;
3145 /* It may map to an internal MLE command! */
3146 for(i = 0; i < NELEM(a_tty_bind_fun_names); ++i)
3147 if(!asccasecmp(exp, a_tty_bind_fun_names[i])){
3148 tbpcp->tbpc_flags |= a_TTY_BIND_FUN_EXPAND(i) |
3149 a_TTY_BIND_FUN_INTERNAL |
3150 (head->next == NULL ? a_TTY_BIND_MLE1CNTRL : 0);
3151 if((options & OPT_D_V) && (tbpcp->tbpc_flags & a_TTY_BIND_NOCOMMIT))
3152 n_err(_("`%s': MLE commands can't be made editable via @: %s\n"),
3153 tbpcp->tbpc_cmd, exp);
3154 tbpcp->tbpc_flags &= ~a_TTY_BIND_NOCOMMIT;
3155 break;
3159 f |= a_TRUE_RV; /* TODO because we only now true and false; DEFUNCT.. */
3160 jleave:
3161 n_string_gut(shoup);
3162 NYD2_LEAVE;
3163 return (f & a_TRUE_RV) != 0;
3166 static void
3167 a_tty_bind_resolve(struct a_tty_bind_ctx *tbcp){
3168 char capname[a_TTY_BIND_CAPNAME_MAX +1];
3169 struct n_termcap_value tv;
3170 size_t len;
3171 bool_t isfirst; /* TODO For now: first char must be control! */
3172 char *cp, *next;
3173 NYD2_ENTER;
3175 UNINIT(next, NULL);
3176 for(cp = tbcp->tbc_cnv, isfirst = TRU1, len = tbcp->tbc_cnv_len;
3177 len > 0; isfirst = FAL0, cp = next){
3178 /* C99 */{
3179 si32_t i, j;
3181 i = UNALIGN(si32_t*,cp)[0];
3182 j = i & SI32_MAX;
3183 next = &cp[j];
3184 len -= j;
3185 if(i == j)
3186 continue;
3188 /* struct{si32_t buf_len_iscap; si32_t cap_len; wc_t name[];} */
3189 cp += sizeof(si32_t);
3190 i = UNALIGN(si32_t*,cp)[0];
3191 cp += sizeof(si32_t);
3192 for(j = 0; j < i; ++j)
3193 capname[j] = UNALIGN(wc_t*,cp)[j];
3194 capname[j] = '\0';
3197 /* Use generic lookup mechanism if not a known query */
3198 /* C99 */{
3199 si32_t tq;
3201 tq = n_termcap_query_for_name(capname, n_TERMCAP_CAPTYPE_STRING);
3202 if(tq == -1){
3203 tv.tv_data.tvd_string = capname;
3204 tq = n__TERMCAP_QUERY_MAX;
3207 if(tq < 0 || !n_termcap_query(tq, &tv)){
3208 if(options & OPT_D_V)
3209 n_err(_("`bind': unknown or unsupported capability: %s: %s\n"),
3210 capname, tbcp->tbc_seq);
3211 tbcp->tbc_flags |= a_TTY_BIND_DEFUNCT;
3212 break;
3216 /* struct{si32_t buf_len_iscap; si32_t cap_len; char buf[]+NUL;} */
3217 /* C99 */{
3218 size_t i;
3220 i = strlen(tv.tv_data.tvd_string);
3221 if(/*i > SI32_MAX ||*/ i >= PTR2SIZE(next - cp)){
3222 if(options & OPT_D_V)
3223 n_err(_("`bind': capability expansion too long: %s: %s\n"),
3224 capname, tbcp->tbc_seq);
3225 tbcp->tbc_flags |= a_TTY_BIND_DEFUNCT;
3226 break;
3227 }else if(i == 0){
3228 if(options & OPT_D_V)
3229 n_err(_("`bind': empty capability expansion: %s: %s\n"),
3230 capname, tbcp->tbc_seq);
3231 tbcp->tbc_flags |= a_TTY_BIND_DEFUNCT;
3232 break;
3233 }else if(isfirst && !cntrlchar(*tv.tv_data.tvd_string)){
3234 if(options & OPT_D_V)
3235 n_err(_("`bind': capability expansion doesn't start with "
3236 "control: %s: %s\n"), capname, tbcp->tbc_seq);
3237 tbcp->tbc_flags |= a_TTY_BIND_DEFUNCT;
3238 break;
3240 UNALIGN(si32_t*,cp)[-1] = (si32_t)i;
3241 memcpy(cp, tv.tv_data.tvd_string, i);
3242 cp[i] = '\0';
3245 NYD2_LEAVE;
3248 static void
3249 a_tty_bind_del(struct a_tty_bind_parse_ctx *tbpcp){
3250 struct a_tty_bind_ctx *ltbcp, *tbcp;
3251 NYD2_ENTER;
3253 tbcp = tbpcp->tbpc_tbcp;
3255 if((ltbcp = tbpcp->tbpc_ltbcp) != NULL)
3256 ltbcp->tbc_next = tbcp->tbc_next;
3257 else
3258 a_tty.tg_bind[tbpcp->tbpc_flags] = tbcp->tbc_next;
3259 free(tbcp);
3261 --a_tty.tg_bind_cnt;
3262 a_tty.tg_bind_isdirty = TRU1;
3263 NYD2_LEAVE;
3266 static void
3267 a_tty_bind_tree_build(void){
3268 size_t i;
3269 NYD2_ENTER;
3271 for(i = 0; i < n__LEXINPUT_CTX_MAX; ++i){
3272 struct a_tty_bind_ctx *tbcp;
3273 n_LCTAV(n_LEXINPUT_CTX_BASE == 0);
3275 /* Somewhat wasteful, but easier to handle: simply clone the entire
3276 * primary key onto the secondary one, then only modify it */
3277 for(tbcp = a_tty.tg_bind[n_LEXINPUT_CTX_BASE]; tbcp != NULL;
3278 tbcp = tbcp->tbc_next)
3279 if(!(tbcp->tbc_flags & a_TTY_BIND_DEFUNCT))
3280 a_tty__bind_tree_add(n_LEXINPUT_CTX_BASE, &a_tty.tg_bind_tree[i][0],
3281 tbcp);
3283 if(i != n_LEXINPUT_CTX_BASE)
3284 for(tbcp = a_tty.tg_bind[i]; tbcp != NULL; tbcp = tbcp->tbc_next)
3285 if(!(tbcp->tbc_flags & a_TTY_BIND_DEFUNCT))
3286 a_tty__bind_tree_add(i, &a_tty.tg_bind_tree[i][0], tbcp);
3289 a_tty.tg_bind_isbuild = TRU1;
3290 NYD2_LEAVE;
3293 static void
3294 a_tty_bind_tree_teardown(void){
3295 size_t i, j;
3296 NYD2_ENTER;
3298 memset(&a_tty.tg_bind_shcut_cancel[0], 0,
3299 sizeof(a_tty.tg_bind_shcut_cancel));
3300 memset(&a_tty.tg_bind_shcut_prompt_char[0], 0,
3301 sizeof(a_tty.tg_bind_shcut_prompt_char));
3303 for(i = 0; i < n__LEXINPUT_CTX_MAX; ++i)
3304 for(j = 0; j < HSHSIZE; ++j)
3305 a_tty__bind_tree_free(a_tty.tg_bind_tree[i][j]);
3306 memset(&a_tty.tg_bind_tree[0], 0, sizeof(a_tty.tg_bind_tree));
3308 a_tty.tg_bind_isdirty = a_tty.tg_bind_isbuild = FAL0;
3309 NYD2_LEAVE;
3312 static void
3313 a_tty__bind_tree_add(ui32_t hmap_idx, struct a_tty_bind_tree *store[HSHSIZE],
3314 struct a_tty_bind_ctx *tbcp){
3315 ui32_t cnvlen;
3316 char const *cnvdat;
3317 struct a_tty_bind_tree *ntbtp;
3318 NYD2_ENTER;
3319 UNUSED(hmap_idx);
3321 ntbtp = NULL;
3323 for(cnvdat = tbcp->tbc_cnv, cnvlen = tbcp->tbc_cnv_len; cnvlen > 0;){
3324 union {wchar_t const *wp; char const *cp;} u;
3325 si32_t entlen;
3327 /* {si32_t buf_len_iscap;} */
3328 entlen = *UNALIGN(si32_t const*,cnvdat);
3330 if(entlen & SI32_MIN){
3331 /* struct{si32_t buf_len_iscap; si32_t cap_len; char buf[]+NUL;}
3332 * Note that empty capabilities result in DEFUNCT */
3333 for(u.cp = (char const*)&UNALIGN(si32_t const*,cnvdat)[2];
3334 *u.cp != '\0'; ++u.cp)
3335 ntbtp = a_tty__bind_tree_add_wc(store, ntbtp, *u.cp, TRU1);
3336 assert(ntbtp != NULL);
3337 ntbtp->tbt_isseq_trail = TRU1;
3338 entlen &= SI32_MAX;
3339 }else{
3340 /* struct{si32_t buf_len_iscap; wc_t buf[]+NUL;} */
3341 bool_t isseq;
3343 u.wp = (wchar_t const*)&UNALIGN(si32_t const*,cnvdat)[1];
3345 /* May be a special shortcut function? */
3346 if(ntbtp == NULL && (tbcp->tbc_flags & a_TTY_BIND_MLE1CNTRL)){
3347 char *cp;
3348 ui32_t ctx, fun;
3350 ctx = tbcp->tbc_flags & n__LEXINPUT_CTX_MAX;
3351 fun = tbcp->tbc_flags & a_TTY__BIND_FUN_MASK;
3353 if(fun == a_TTY_BIND_FUN_CANCEL){
3354 for(cp = &a_tty.tg_bind_shcut_cancel[ctx][0];
3355 PTRCMP(cp, <, &a_tty.tg_bind_shcut_cancel[ctx]
3356 [NELEM(a_tty.tg_bind_shcut_cancel[ctx]) - 1]); ++cp)
3357 if(*cp == '\0'){
3358 *cp = (char)*u.wp;
3359 break;
3361 }else if(fun == a_TTY_BIND_FUN_PROMPT_CHAR){
3362 for(cp = &a_tty.tg_bind_shcut_prompt_char[ctx][0];
3363 PTRCMP(cp, <, &a_tty.tg_bind_shcut_prompt_char[ctx]
3364 [NELEM(a_tty.tg_bind_shcut_prompt_char[ctx]) - 1]);
3365 ++cp)
3366 if(*cp == '\0'){
3367 *cp = (char)*u.wp;
3368 break;
3373 isseq = (u.wp[1] != '\0');
3374 for(; *u.wp != '\0'; ++u.wp)
3375 ntbtp = a_tty__bind_tree_add_wc(store, ntbtp, *u.wp, isseq);
3376 if(isseq)
3377 ntbtp->tbt_isseq_trail = TRU1;
3380 cnvlen -= entlen;
3381 cnvdat += entlen;
3384 /* Should have been rendered defunctional at first instead */
3385 assert(ntbtp != NULL);
3386 ntbtp->tbt_bind = tbcp;
3387 NYD2_LEAVE;
3390 static struct a_tty_bind_tree *
3391 a_tty__bind_tree_add_wc(struct a_tty_bind_tree **treep,
3392 struct a_tty_bind_tree *parentp, wchar_t wc, bool_t isseq){
3393 struct a_tty_bind_tree *tbtp, *xtbtp;
3394 NYD2_ENTER;
3396 if(parentp == NULL){
3397 treep += wc % HSHSIZE;
3399 /* Having no parent also means that the tree slot is possibly empty */
3400 for(tbtp = *treep; tbtp != NULL;
3401 parentp = tbtp, tbtp = tbtp->tbt_sibling){
3402 if(tbtp->tbt_char != wc)
3403 continue;
3404 if(tbtp->tbt_isseq == isseq)
3405 goto jleave;
3406 /* isseq MUST be linked before !isseq, so record this "parent"
3407 * sibling, but continue searching for now */
3408 if(!isseq)
3409 parentp = tbtp;
3410 /* Otherwise it is impossible that we'll find what we look for */
3411 else{
3412 #ifdef HAVE_DEBUG
3413 while((tbtp = tbtp->tbt_sibling) != NULL)
3414 assert(tbtp->tbt_char != wc);
3415 #endif
3416 break;
3420 tbtp = smalloc(sizeof *tbtp);
3421 memset(tbtp, 0, sizeof *tbtp);
3422 tbtp->tbt_char = wc;
3423 tbtp->tbt_isseq = isseq;
3425 if(parentp == NULL){
3426 tbtp->tbt_sibling = *treep;
3427 *treep = tbtp;
3428 }else{
3429 tbtp->tbt_sibling = parentp->tbt_sibling;
3430 parentp->tbt_sibling = tbtp;
3432 }else{
3433 if((tbtp = *(treep = &parentp->tbt_childs)) != NULL){
3434 for(;; tbtp = xtbtp){
3435 if(tbtp->tbt_char == wc){
3436 if(tbtp->tbt_isseq == isseq)
3437 goto jleave;
3438 /* isseq MUST be linked before, so it is impossible that we'll
3439 * find what we look for */
3440 if(isseq){
3441 #ifdef HAVE_DEBUG
3442 while((tbtp = tbtp->tbt_sibling) != NULL)
3443 assert(tbtp->tbt_char != wc);
3444 #endif
3445 tbtp = NULL;
3446 break;
3450 if((xtbtp = tbtp->tbt_sibling) == NULL){
3451 treep = &tbtp->tbt_sibling;
3452 break;
3457 xtbtp = smalloc(sizeof *xtbtp);
3458 memset(xtbtp, 0, sizeof *xtbtp);
3459 xtbtp->tbt_parent = parentp;
3460 xtbtp->tbt_char = wc;
3461 xtbtp->tbt_isseq = isseq;
3462 tbtp = xtbtp;
3463 *treep = tbtp;
3465 jleave:
3466 NYD2_LEAVE;
3467 return tbtp;
3470 static void
3471 a_tty__bind_tree_free(struct a_tty_bind_tree *tbtp){
3472 NYD2_ENTER;
3473 while(tbtp != NULL){
3474 struct a_tty_bind_tree *tmp;
3476 if((tmp = tbtp->tbt_childs) != NULL)
3477 a_tty__bind_tree_free(tmp);
3479 tmp = tbtp->tbt_sibling;
3480 free(tbtp);
3481 tbtp = tmp;
3483 NYD2_LEAVE;
3485 # endif /* HAVE_KEY_BINDINGS */
3487 FL void
3488 n_tty_init(void){
3489 NYD_ENTER;
3491 if(ok_blook(line_editor_disable))
3492 goto jleave;
3494 /* Load the history file */
3495 # ifdef HAVE_HISTORY
3496 do/* for break */{
3497 long hs;
3498 char const *v;
3499 char *lbuf;
3500 FILE *f;
3501 size_t lsize, cnt, llen;
3503 a_TTY_HISTSIZE(hs);
3504 a_tty.tg_hist_size = 0;
3505 a_tty.tg_hist_size_max = (size_t)hs;
3506 if(hs == 0)
3507 break;
3509 a_TTY_HISTFILE(v);
3510 if(v == NULL)
3511 break;
3513 hold_all_sigs(); /* TODO too heavy, yet we may jump even here!? */
3514 f = fopen(v, "r"); /* TODO HISTFILE LOAD: use linebuf pool */
3515 if(f == NULL)
3516 goto jhist_done;
3517 (void)n_file_lock(fileno(f), FLT_READ, 0,0, UIZ_MAX);
3519 assert(!(pstate & PS_ROOT));
3520 pstate |= PS_ROOT; /* Allow calling addhist() */
3521 lbuf = NULL;
3522 lsize = 0;
3523 cnt = (size_t)fsize(f);
3524 while(fgetline(&lbuf, &lsize, &cnt, &llen, f, FAL0) != NULL){
3525 if(llen > 0 && lbuf[llen - 1] == '\n')
3526 lbuf[--llen] = '\0';
3527 if(llen == 0 || lbuf[0] == '#') /* xxx comments? noone! */
3528 continue;
3529 else{
3530 bool_t isgabby;
3532 isgabby = (lbuf[0] == '*');
3533 n_tty_addhist(lbuf + isgabby, isgabby);
3536 if(lbuf != NULL)
3537 free(lbuf);
3538 pstate &= ~PS_ROOT;
3540 fclose(f);
3541 jhist_done:
3542 rele_all_sigs(); /* XXX remove jumps */
3543 }while(0);
3544 # endif /* HAVE_HISTORY */
3546 /* Force immediate resolve for anything which follows */
3547 pstate |= PS_LINE_EDITOR_INIT;
3549 # ifdef HAVE_KEY_BINDINGS
3550 /* `bind's (and `unbind's) done from within resource files couldn't be
3551 * performed for real since our termcap driver wasn't yet loaded, and we
3552 * can't perform automatic init since the user may have disallowed so */
3553 /* C99 */{
3554 struct a_tty_bind_ctx *tbcp;
3555 enum n_lexinput_flags lif;
3557 for(lif = 0; lif < n__LEXINPUT_CTX_MAX; ++lif)
3558 for(tbcp = a_tty.tg_bind[lif]; tbcp != NULL; tbcp = tbcp->tbc_next)
3559 if((tbcp->tbc_flags & (a_TTY_BIND_RESOLVE | a_TTY_BIND_DEFUNCT)) ==
3560 a_TTY_BIND_RESOLVE)
3561 a_tty_bind_resolve(tbcp);
3564 /* And we want to (try to) install some default key bindings */
3565 if(!ok_blook(line_editor_no_defaults)){
3566 char buf[8];
3567 struct a_tty_bind_parse_ctx tbpc;
3568 struct a_tty_bind_default_tuple const *tbdtp;
3570 buf[0] = '$', buf[1] = '\'', buf[2] = '\\', buf[3] = 'c',
3571 buf[5] = '\'', buf[6] = '\0';
3572 for(tbdtp = a_tty_bind_default_tuples;
3573 PTRCMP(tbdtp, <,
3574 &a_tty_bind_default_tuples[NELEM(a_tty_bind_default_tuples)]);
3575 ++tbdtp){
3576 memset(&tbpc, 0, sizeof tbpc);
3577 tbpc.tbpc_cmd = "bind";
3578 if(tbdtp->tbdt_iskey){
3579 buf[4] = tbdtp->tbdt_ckey;
3580 tbpc.tbpc_in_seq = buf;
3581 }else
3582 tbpc.tbpc_in_seq = savecatsep(":", '\0',
3583 n_termcap_name_of_query(tbdtp->tbdt_query));
3584 tbpc.tbpc_exp.s = UNCONST(tbdtp->tbdt_exp[0] == '\0'
3585 ? a_tty_bind_fun_names[(ui8_t)tbdtp->tbdt_exp[1]]
3586 : tbdtp->tbdt_exp);
3587 tbpc.tbpc_exp.l = strlen(tbpc.tbpc_exp.s);
3588 tbpc.tbpc_flags = n_LEXINPUT_CTX_BASE;
3589 /* ..but don't want to overwrite any user settings */
3590 a_tty_bind_create(&tbpc, FAL0);
3593 # endif /* HAVE_KEY_BINDINGS */
3595 jleave:
3596 NYD_LEAVE;
3599 FL void
3600 n_tty_destroy(void){
3601 NYD_ENTER;
3603 if(!(pstate & PS_LINE_EDITOR_INIT))
3604 goto jleave;
3606 # ifdef HAVE_HISTORY
3607 do/* for break */{
3608 long hs;
3609 char const *v;
3610 struct a_tty_hist *thp;
3611 bool_t dogabby;
3612 FILE *f;
3614 a_TTY_HISTSIZE(hs);
3615 if(hs == 0)
3616 break;
3618 a_TTY_HISTFILE(v);
3619 if(v == NULL)
3620 break;
3622 dogabby = ok_blook(history_gabby_persist);
3624 if((thp = a_tty.tg_hist) != NULL)
3625 for(; thp->th_older != NULL; thp = thp->th_older)
3626 if((dogabby || !thp->th_isgabby) && --hs == 0)
3627 break;
3629 hold_all_sigs(); /* TODO too heavy, yet we may jump even here!? */
3630 f = fopen(v, "w"); /* TODO temporary + rename?! */
3631 if(f == NULL)
3632 goto jhist_done;
3633 (void)n_file_lock(fileno(f), FLT_WRITE, 0,0, UIZ_MAX);
3635 for(; thp != NULL; thp = thp->th_younger){
3636 if(dogabby || !thp->th_isgabby){
3637 if(thp->th_isgabby)
3638 putc('*', f);
3639 fwrite(thp->th_dat, sizeof *thp->th_dat, thp->th_len, f);
3640 putc('\n', f);
3643 fclose(f);
3644 jhist_done:
3645 rele_all_sigs(); /* XXX remove jumps */
3646 }while(0);
3647 # endif /* HAVE_HISTORY */
3649 # if defined HAVE_KEY_BINDINGS && defined HAVE_DEBUG
3650 c_unbind(UNCONST("* *"));
3651 # endif
3653 # ifdef HAVE_DEBUG
3654 memset(&a_tty, 0, sizeof a_tty);
3655 # endif
3656 DBG( pstate &= ~PS_LINE_EDITOR_INIT; )
3657 jleave:
3658 NYD_LEAVE;
3661 FL void
3662 n_tty_signal(int sig){
3663 sigset_t nset, oset;
3664 NYD_X; /* Signal handler */
3666 switch(sig){
3667 # ifdef SIGWINCH
3668 case SIGWINCH:
3669 /* We don't deal with SIGWINCH, yet get called from main.c.
3670 * Note this case might get called even if !PS_LINE_EDITOR_INIT */
3671 break;
3672 # endif
3673 default:
3674 a_tty_term_mode(FAL0);
3675 n_TERMCAP_SUSPEND(TRU1);
3676 a_tty_sigs_down();
3678 sigemptyset(&nset);
3679 sigaddset(&nset, sig);
3680 sigprocmask(SIG_UNBLOCK, &nset, &oset);
3681 n_raise(sig);
3682 /* When we come here we'll continue editing, so reestablish */
3683 sigprocmask(SIG_BLOCK, &oset, (sigset_t*)NULL);
3685 a_tty_sigs_up();
3686 n_TERMCAP_RESUME(TRU1);
3687 a_tty_term_mode(TRU1);
3688 a_tty.tg_line->tl_vi_flags |= a_TTY_VF_MOD_DIRTY;
3689 break;
3693 FL int
3694 (n_tty_readline)(enum n_lexinput_flags lif, char const *prompt,
3695 char **linebuf, size_t *linesize, size_t n SMALLOC_DEBUG_ARGS){
3696 struct a_tty_line tl;
3697 # ifdef HAVE_COLOUR
3698 char *posbuf, *pos;
3699 # endif
3700 ui32_t plen, pwidth;
3701 ssize_t nn;
3702 char const *orig_prompt;
3703 NYD_ENTER;
3704 UNUSED(lif);
3706 assert(!ok_blook(line_editor_disable));
3707 if(!(pstate & PS_LINE_EDITOR_INIT))
3708 n_tty_init();
3709 assert(pstate & PS_LINE_EDITOR_INIT);
3711 orig_prompt = prompt;
3712 /* xxx Likely overkill: avoid "bind base a,b,c set-line-editor-disable"
3713 * xxx not being honoured at once: call n_lex_input() instead of goto */
3714 # ifndef HAVE_KEY_BINDINGS
3715 jredo:
3716 prompt = orig_prompt;
3717 # endif
3719 # ifdef HAVE_COLOUR
3720 n_colour_env_create(n_COLOUR_CTX_MLE, FAL0);
3721 # endif
3723 /* Classify prompt */
3724 UNINIT(plen, 0);
3725 UNINIT(pwidth, 0);
3726 if(prompt != NULL){
3727 size_t i = strlen(prompt);
3729 if(i == 0 || i >= UI32_MAX)
3730 prompt = NULL;
3731 else{
3732 /* TODO *prompt* is in multibyte and not in a_tty_cell, therefore
3733 * TODO we cannot handle it in parts, it's all or nothing.
3734 * TODO Later (S-CText, SysV signals) the prompt should be some global
3735 * TODO carrier thing, fully evaluated and passed around as UI-enabled
3736 * TODO string, then we can print it character by character */
3737 struct n_visual_info_ctx vic;
3739 memset(&vic, 0, sizeof vic);
3740 vic.vic_indat = prompt;
3741 vic.vic_inlen = i;
3742 if(n_visual_info(&vic, n_VISUAL_INFO_WIDTH_QUERY)){
3743 pwidth = (ui32_t)vic.vic_vi_width;
3744 plen = (ui32_t)i;
3745 }else{
3746 n_err(_("Character set error in evaluation of prompt\n"));
3747 prompt = NULL;
3752 # ifdef HAVE_COLOUR
3753 /* C99 */{
3754 struct n_colour_pen *ccp;
3755 struct str const *sp;
3757 if(prompt != NULL &&
3758 (ccp = n_colour_pen_create(n_COLOUR_ID_MLE_PROMPT, NULL)) != NULL &&
3759 (sp = n_colour_pen_to_str(ccp)) != NULL){
3760 char const *ccol = sp->s;
3762 if((sp = n_colour_reset_to_str()) != NULL){
3763 size_t l1 = strlen(ccol), l2 = strlen(sp->s);
3764 ui32_t nplen = (ui32_t)(l1 + plen + l2);
3765 char *nprompt = salloc(nplen +1);
3767 memcpy(nprompt, ccol, l1);
3768 memcpy(&nprompt[l1], prompt, plen);
3769 memcpy(&nprompt[l1 += plen], sp->s, ++l2);
3771 prompt = nprompt;
3772 plen = nplen;
3776 /* .tl_pos_buf is a hack */
3777 posbuf = pos = NULL;
3778 if((ccp = n_colour_pen_create(n_COLOUR_ID_MLE_POSITION, NULL)) != NULL &&
3779 (sp = n_colour_pen_to_str(ccp)) != NULL){
3780 char const *ccol = sp->s;
3782 if((sp = n_colour_reset_to_str()) != NULL){
3783 size_t l1 = strlen(ccol), l2 = strlen(sp->s);
3785 posbuf = salloc(l1 + 4 + l2 +1);
3786 memcpy(posbuf, ccol, l1);
3787 pos = &posbuf[l1];
3788 memcpy(&pos[4], sp->s, ++l2);
3791 if(posbuf == NULL){
3792 posbuf = pos = salloc(4 +1);
3793 pos[4] = '\0';
3796 # endif /* HAVE_COLOUR */
3798 memset(&tl, 0, sizeof tl);
3800 # ifdef HAVE_KEY_BINDINGS
3801 /* C99 */{
3802 char const *cp = ok_vlook(bind_timeout);
3804 if(cp != NULL){
3805 ul_i ul;
3807 if((ul = strtoul(cp, NULL, 0)) > 0 &&
3808 /* Convert to tenths of a second, unfortunately */
3809 (ul = (ul + 99) / 100) <= a_TTY_BIND_TIMEOUT_MAX)
3810 tl.tl_bind_timeout = (ui8_t)ul;
3811 else if(options & OPT_D_V)
3812 n_err(_("Ignoring invalid *bind-timeout*: %s\n"), cp);
3816 if(a_tty.tg_bind_isdirty)
3817 a_tty_bind_tree_teardown();
3818 if(a_tty.tg_bind_cnt > 0 && !a_tty.tg_bind_isbuild)
3819 a_tty_bind_tree_build();
3820 tl.tl_bind_tree_hmap = &a_tty.tg_bind_tree[lif & n__LEXINPUT_CTX_MASK];
3821 tl.tl_bind_shcut_cancel =
3822 &a_tty.tg_bind_shcut_cancel[lif & n__LEXINPUT_CTX_MASK];
3823 tl.tl_bind_shcut_prompt_char =
3824 &a_tty.tg_bind_shcut_prompt_char[lif & n__LEXINPUT_CTX_MASK];
3825 # endif /* HAVE_KEY_BINDINGS */
3827 if((tl.tl_prompt = prompt) != NULL){ /* XXX not re-evaluated */
3828 tl.tl_prompt_length = plen;
3829 tl.tl_prompt_width = pwidth;
3831 # ifdef HAVE_COLOUR
3832 tl.tl_pos_buf = posbuf;
3833 tl.tl_pos = pos;
3834 # endif
3836 tl.tl_line.cbuf = *linebuf;
3837 if(n != 0){
3838 tl.tl_defc.s = savestrbuf(*linebuf, n);
3839 tl.tl_defc.l = n;
3841 tl.tl_x_buf = linebuf;
3842 tl.tl_x_bufsize = linesize;
3844 a_tty.tg_line = &tl;
3845 a_tty_sigs_up();
3846 a_tty_term_mode(TRU1);
3847 nn = a_tty_readline(&tl, n SMALLOC_DEBUG_ARGSCALL);
3848 a_tty_term_mode(FAL0);
3849 a_tty_sigs_down();
3850 a_tty.tg_line = NULL;
3852 # ifdef HAVE_COLOUR
3853 n_colour_env_gut(stdout);
3854 # endif
3856 if(tl.tl_reenter_after_cmd != NULL){
3857 n_source_command(lif, tl.tl_reenter_after_cmd);
3858 /* TODO because of recursion we cannot use srelax()ation: would be good */
3859 /* See above for why not simply using goto */
3860 n = (nn <= 0) ? 0 : nn;
3861 # ifdef HAVE_KEY_BINDINGS
3862 nn = (n_lex_input)(lif, orig_prompt, linebuf, linesize,
3863 (n == 0 ? "" : savestrbuf(*linebuf, n)) SMALLOC_DEBUG_ARGSCALL);
3864 # else
3865 goto jredo;
3866 # endif
3868 NYD_LEAVE;
3869 return (int)nn;
3872 FL void
3873 n_tty_addhist(char const *s, bool_t isgabby){
3874 # ifdef HAVE_HISTORY
3875 /* Super-Heavy-Metal: block all sigs, avoid leaks+ on jump */
3876 ui32_t l;
3877 struct a_tty_hist *thp, *othp, *ythp;
3878 # endif
3879 NYD_ENTER;
3880 UNUSED(s);
3881 UNUSED(isgabby);
3883 # ifdef HAVE_HISTORY
3884 a_TTY_CHECK_ADDHIST(s, isgabby, goto j_leave);
3885 if(a_tty.tg_hist_size_max == 0)
3886 goto j_leave;
3888 l = (ui32_t)strlen(s);
3890 /* Eliminating duplicates is expensive, but simply inacceptable so
3891 * during the load of a potentially large history file! */
3892 if(pstate & PS_LINE_EDITOR_INIT)
3893 for(thp = a_tty.tg_hist; thp != NULL; thp = thp->th_older)
3894 if(thp->th_len == l && !strcmp(thp->th_dat, s)){
3895 hold_all_sigs(); /* TODO */
3896 if(thp->th_isgabby)
3897 thp->th_isgabby = !!isgabby;
3898 othp = thp->th_older;
3899 ythp = thp->th_younger;
3900 if(othp != NULL)
3901 othp->th_younger = ythp;
3902 else
3903 a_tty.tg_hist_tail = ythp;
3904 if(ythp != NULL)
3905 ythp->th_older = othp;
3906 else
3907 a_tty.tg_hist = othp;
3908 goto jleave;
3910 hold_all_sigs();
3912 ++a_tty.tg_hist_size;
3913 if((pstate & PS_LINE_EDITOR_INIT) &&
3914 a_tty.tg_hist_size > a_tty.tg_hist_size_max){
3915 --a_tty.tg_hist_size;
3916 if((thp = a_tty.tg_hist_tail) != NULL){
3917 if((a_tty.tg_hist_tail = thp->th_younger) == NULL)
3918 a_tty.tg_hist = NULL;
3919 else
3920 a_tty.tg_hist_tail->th_older = NULL;
3921 free(thp);
3925 thp = smalloc((sizeof(struct a_tty_hist) -
3926 VFIELD_SIZEOF(struct a_tty_hist, th_dat)) + l +1);
3927 thp->th_isgabby = !!isgabby;
3928 thp->th_len = l;
3929 memcpy(thp->th_dat, s, l +1);
3930 jleave:
3931 if((thp->th_older = a_tty.tg_hist) != NULL)
3932 a_tty.tg_hist->th_younger = thp;
3933 else
3934 a_tty.tg_hist_tail = thp;
3935 thp->th_younger = NULL;
3936 a_tty.tg_hist = thp;
3938 rele_all_sigs();
3939 j_leave:
3940 # endif
3941 NYD_LEAVE;
3944 # ifdef HAVE_HISTORY
3945 FL int
3946 c_history(void *v){
3947 C_HISTORY_SHARED;
3949 jlist:{
3950 FILE *fp;
3951 size_t i, b;
3952 struct a_tty_hist *thp;
3954 if(a_tty.tg_hist == NULL)
3955 goto jleave;
3957 if((fp = Ftmp(NULL, "hist", OF_RDWR | OF_UNLINK | OF_REGISTER)) == NULL){
3958 n_perr(_("tmpfile"), 0);
3959 v = NULL;
3960 goto jleave;
3963 i = a_tty.tg_hist_size;
3964 b = 0;
3965 for(thp = a_tty.tg_hist; thp != NULL;
3966 --i, b += thp->th_len, thp = thp->th_older)
3967 fprintf(fp,
3968 "%c%4" PRIuZ ". %-50.50s (%4" PRIuZ "+%2" PRIu32 " B)\n",
3969 (thp->th_isgabby ? '*' : ' '), i, thp->th_dat, b, thp->th_len);
3971 page_or_print(fp, i);
3972 Fclose(fp);
3974 goto jleave;
3976 jclear:{
3977 struct a_tty_hist *thp;
3979 while((thp = a_tty.tg_hist) != NULL){
3980 a_tty.tg_hist = thp->th_older;
3981 free(thp);
3983 a_tty.tg_hist_tail = NULL;
3984 a_tty.tg_hist_size = 0;
3986 goto jleave;
3988 jentry:{
3989 struct a_tty_hist *thp;
3991 if(UICMP(z, entry, <=, a_tty.tg_hist_size)){
3992 entry = (long)a_tty.tg_hist_size - entry;
3993 for(thp = a_tty.tg_hist;; thp = thp->th_older)
3994 if(thp == NULL)
3995 break;
3996 else if(entry-- != 0)
3997 continue;
3998 else{
3999 v = temporary_arg_v_store = thp->th_dat;
4000 goto jleave;
4003 v = NULL;
4005 goto jleave;
4007 # endif /* HAVE_HISTORY */
4009 # ifdef HAVE_KEY_BINDINGS
4010 FL int
4011 c_bind(void *v){
4012 n_CMD_ARG_DESC_SUBCLASS_DEF(bind, 3, a_tty_bind_cad) { /* TODO cmd_tab.h */
4013 {n_CMD_ARG_DESC_STRING, 0},
4014 {n_CMD_ARG_DESC_WYSH | n_CMD_ARG_DESC_OPTION |
4015 n_CMD_ARG_DESC_HONOUR_STOP,
4016 n_SHEXP_PARSE_DRYRUN | n_SHEXP_PARSE_LOG},
4017 {n_CMD_ARG_DESC_WYSH | n_CMD_ARG_DESC_OPTION | n_CMD_ARG_DESC_GREEDY |
4018 n_CMD_ARG_DESC_HONOUR_STOP,
4019 n_SHEXP_PARSE_IGNORE_EMPTY}
4020 } n_CMD_ARG_DESC_SUBCLASS_DEF_END;
4021 struct n_cmd_arg_ctx cac;
4022 struct a_tty_bind_ctx *tbcp;
4023 enum n_lexinput_flags lif;
4024 bool_t aster, show;
4025 union {char const *cp; char *p; char c;} c;
4026 NYD_ENTER;
4028 cac.cac_desc = n_CMD_ARG_DESC_SUBCLASS_CAST(&a_tty_bind_cad);
4029 cac.cac_indat = v;
4030 cac.cac_inlen = UIZ_MAX;
4031 if(!n_cmd_arg_parse(&cac)){
4032 v = NULL;
4033 goto jleave;
4036 c.cp = cac.cac_arg->ca_arg.ca_str.s;
4037 if(cac.cac_no == 1)
4038 show = TRU1;
4039 else
4040 show = !asccasecmp(cac.cac_arg->ca_next->ca_arg.ca_str.s, "show");
4041 aster = FAL0;
4043 if((lif = a_tty_bind_ctx_find(c.cp)) == (enum n_lexinput_flags)-1){
4044 if(!(aster = n_is_all_or_aster(c.cp)) || !show){
4045 n_err(_("`bind': invalid context: %s\n"), c.cp);
4046 v = NULL;
4047 goto jleave;
4049 lif = 0;
4052 if(show){
4053 ui32_t lns;
4054 FILE *fp;
4056 if((fp = Ftmp(NULL, "bind", OF_RDWR | OF_UNLINK | OF_REGISTER)) == NULL){
4057 n_perr(_("tmpfile"), 0);
4058 v = NULL;
4059 goto jleave;
4062 lns = 0;
4063 for(;;){
4064 for(tbcp = a_tty.tg_bind[lif]; tbcp != NULL;
4065 ++lns, tbcp = tbcp->tbc_next){
4066 /* Print the bytes of resolved terminal capabilities, then */
4067 if((options & OPT_D_V) &&
4068 (tbcp->tbc_flags & (a_TTY_BIND_RESOLVE | a_TTY_BIND_DEFUNCT)
4069 ) == a_TTY_BIND_RESOLVE){
4070 char cbuf[8];
4071 union {wchar_t const *wp; char const *cp;} u;
4072 si32_t entlen;
4073 ui32_t cnvlen;
4074 char const *cnvdat, *bsep, *cbufp;
4076 putc('#', fp);
4077 putc(' ', fp);
4079 cbuf[0] = '=', cbuf[2] = '\0';
4080 for(cnvdat = tbcp->tbc_cnv, cnvlen = tbcp->tbc_cnv_len;
4081 cnvlen > 0;){
4082 if(cnvdat != tbcp->tbc_cnv)
4083 putc(',', fp);
4085 /* {si32_t buf_len_iscap;} */
4086 entlen = *UNALIGN(si32_t const*,cnvdat);
4087 if(entlen & SI32_MIN){
4088 /* struct{si32_t buf_len_iscap; si32_t cap_len;
4089 * char buf[]+NUL;} */
4090 for(bsep = "",
4091 u.cp = (char const*)
4092 &UNALIGN(si32_t const*,cnvdat)[2];
4093 (c.c = *u.cp) != '\0'; ++u.cp){
4094 if(asciichar(c.c) && !cntrlchar(c.c))
4095 cbuf[1] = c.c, cbufp = cbuf;
4096 else
4097 cbufp = "";
4098 fprintf(fp, "%s%02X%s",
4099 bsep, (ui32_t)(ui8_t)c.c, cbufp);
4100 bsep = " ";
4102 entlen &= SI32_MAX;
4103 }else
4104 putc('-', fp);
4106 cnvlen -= entlen;
4107 cnvdat += entlen;
4110 fputs("\n ", fp);
4111 ++lns;
4114 fprintf(fp, "%sbind %s %s %s%s%s\n",
4115 ((tbcp->tbc_flags & a_TTY_BIND_DEFUNCT)
4116 /* I18N: `bind' sequence not working, either because it is
4117 * I18N: using Unicode and that is not available in the locale,
4118 * I18N: or a termcap(5)/terminfo(5) sequence won't work out */
4119 ? _("# <Defunctional> ") : ""),
4120 a_tty_bind_ctx_maps[lif].tbcm_name, tbcp->tbc_seq,
4121 n_shexp_quote_cp(tbcp->tbc_exp, TRU1),
4122 (tbcp->tbc_flags & a_TTY_BIND_NOCOMMIT ? "@" : ""),
4123 (!(options & OPT_D_VV) ? ""
4124 : (tbcp->tbc_flags & a_TTY_BIND_FUN_INTERNAL
4125 ? _(" # MLE internal") : ""))
4128 if(!aster || ++lif >= n__LEXINPUT_CTX_MAX)
4129 break;
4131 page_or_print(fp, lns);
4133 Fclose(fp);
4134 }else{
4135 struct a_tty_bind_parse_ctx tbpc;
4136 struct n_string store;
4138 memset(&tbpc, 0, sizeof tbpc);
4139 tbpc.tbpc_cmd = a_tty_bind_cad.cad_name;
4140 tbpc.tbpc_in_seq = cac.cac_arg->ca_next->ca_arg.ca_str.s;
4141 tbpc.tbpc_exp.s = n_string_cp(n_cmd_arg_join_greedy(&cac,
4142 n_string_creat_auto(&store)));
4143 tbpc.tbpc_exp.l = store.s_len;
4144 tbpc.tbpc_flags = lif;
4145 if(!a_tty_bind_create(&tbpc, TRU1))
4146 v = NULL;
4147 n_string_gut(&store);
4149 jleave:
4150 NYD_LEAVE;
4151 return (v != NULL) ? EXIT_OK : EXIT_ERR;
4154 FL int
4155 c_unbind(void *v){
4156 n_CMD_ARG_DESC_SUBCLASS_DEF(unbind, 2, a_tty_unbind_cad) {/* TODO cmd_tab.h*/
4157 {n_CMD_ARG_DESC_STRING, 0},
4158 {n_CMD_ARG_DESC_WYSH | n_CMD_ARG_DESC_HONOUR_STOP,
4159 n_SHEXP_PARSE_DRYRUN | n_SHEXP_PARSE_LOG}
4160 } n_CMD_ARG_DESC_SUBCLASS_DEF_END;
4161 struct a_tty_bind_parse_ctx tbpc;
4162 struct n_cmd_arg_ctx cac;
4163 struct a_tty_bind_ctx *tbcp;
4164 enum n_lexinput_flags lif;
4165 bool_t aster;
4166 union {char const *cp; char *p;} c;
4167 NYD_ENTER;
4169 cac.cac_desc = n_CMD_ARG_DESC_SUBCLASS_CAST(&a_tty_unbind_cad);
4170 cac.cac_indat = v;
4171 cac.cac_inlen = UIZ_MAX;
4172 if(!n_cmd_arg_parse(&cac)){
4173 v = NULL;
4174 goto jleave;
4177 c.cp = cac.cac_arg->ca_arg.ca_str.s;
4178 aster = FAL0;
4180 if((lif = a_tty_bind_ctx_find(c.cp)) == (enum n_lexinput_flags)-1){
4181 if(!(aster = n_is_all_or_aster(c.cp))){
4182 n_err(_("`unbind': invalid context: %s\n"), c.cp);
4183 v = NULL;
4184 goto jleave;
4186 lif = 0;
4189 c.cp = cac.cac_arg->ca_next->ca_arg.ca_str.s;
4190 jredo:
4191 if(n_is_all_or_aster(c.cp)){
4192 while((tbcp = a_tty.tg_bind[lif]) != NULL){
4193 memset(&tbpc, 0, sizeof tbpc);
4194 tbpc.tbpc_tbcp = tbcp;
4195 tbpc.tbpc_flags = lif;
4196 a_tty_bind_del(&tbpc);
4198 }else{
4199 memset(&tbpc, 0, sizeof tbpc);
4200 tbpc.tbpc_cmd = a_tty_unbind_cad.cad_name;
4201 tbpc.tbpc_in_seq = c.cp;
4202 tbpc.tbpc_flags = lif;
4204 if(UNLIKELY(!a_tty_bind_parse(FAL0, &tbpc)))
4205 v = NULL;
4206 else if(UNLIKELY((tbcp = tbpc.tbpc_tbcp) == NULL)){
4207 n_err(_("`unbind': no such `bind'ing: %s %s\n"),
4208 a_tty_bind_ctx_maps[lif].tbcm_name, c.cp);
4209 v = NULL;
4210 }else
4211 a_tty_bind_del(&tbpc);
4214 if(aster && ++lif < n__LEXINPUT_CTX_MAX)
4215 goto jredo;
4216 jleave:
4217 NYD_LEAVE;
4218 return (v != NULL) ? EXIT_OK : EXIT_ERR;
4220 # endif /* HAVE_KEY_BINDINGS */
4222 #else /* HAVE_MLE */
4224 * The really-nothing-at-all implementation
4227 FL void
4228 n_tty_init(void){
4229 NYD_ENTER;
4230 NYD_LEAVE;
4233 FL void
4234 n_tty_destroy(void){
4235 NYD_ENTER;
4236 NYD_LEAVE;
4239 FL void
4240 n_tty_signal(int sig){
4241 NYD_X; /* Signal handler */
4242 UNUSED(sig);
4244 # ifdef HAVE_TERMCAP
4245 switch(sig){
4246 default:{
4247 sigset_t nset, oset;
4249 n_TERMCAP_SUSPEND(TRU1);
4250 a_tty_sigs_down();
4252 sigemptyset(&nset);
4253 sigaddset(&nset, sig);
4254 sigprocmask(SIG_UNBLOCK, &nset, &oset);
4255 n_raise(sig);
4256 /* When we come here we'll continue editing, so reestablish */
4257 sigprocmask(SIG_BLOCK, &oset, (sigset_t*)NULL);
4259 a_tty_sigs_up();
4260 n_TERMCAP_RESUME(TRU1);
4261 break;
4264 # endif /* HAVE_TERMCAP */
4267 FL int
4268 (n_tty_readline)(char const *prompt, char **linebuf, size_t *linesize, size_t n
4269 SMALLOC_DEBUG_ARGS){
4270 int rv;
4271 NYD_ENTER;
4273 if(prompt != NULL){
4274 if(*prompt != '\0')
4275 fputs(prompt, stdout);
4276 fflush(stdout);
4278 # ifdef HAVE_TERMCAP
4279 a_tty_sigs_up();
4280 # endif
4281 rv = (readline_restart)(stdin, linebuf, linesize,n SMALLOC_DEBUG_ARGSCALL);
4282 # ifdef HAVE_TERMCAP
4283 a_tty_sigs_down();
4284 # endif
4285 NYD_LEAVE;
4286 return rv;
4289 FL void
4290 n_tty_addhist(char const *s, bool_t isgabby){
4291 NYD_ENTER;
4292 UNUSED(s);
4293 UNUSED(isgabby);
4294 NYD_LEAVE;
4296 #endif /* nothing at all */
4298 #undef a_TTY_SIGNALS
4299 /* s-it-mode */