1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2014 Steffen "Daode" Nurpmeso <sdaoden@users.sf.net>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the University of
22 * California, Berkeley and its contributors.
23 * 4. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41 * Copyright (c) 2013 - 2014 Steffen "Daode" Nurpmeso <sdaoden@users.sf.net>.
43 * Permission to use, copy, modify, and/or distribute this software for any
44 * purpose with or without fee is hereby granted, provided that the above
45 * copyright notice and this permission notice appear in all copies.
47 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
48 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
49 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
50 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
51 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
52 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
53 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
56 #ifndef HAVE_AMALGAMATION
61 # include <readline/readline.h>
63 # include <readline/history.h>
65 #elif defined HAVE_EDITLINE
66 # include <histedit.h>
69 /* Shared history support macros */
71 # define _CL_HISTFILE(S) \
73 S = ok_vlook(NAIL_HISTFILE);\
75 S = fexpand(S, FEXP_LOCAL);\
78 # define _CL_HISTSIZE(V) \
80 char const *__sv = ok_vlook(NAIL_HISTSIZE);\
82 if (__sv == NULL || *__sv == '\0' || (__rv = strtol(__sv, NULL, 10)) == 0)\
90 # define _CL_CHECK_ADDHIST(S,NOACT) \
101 # define C_HISTORY_SHARED \
106 if (argv[1] != NULL)\
108 if (asccasecmp(*argv, "show") == 0)\
110 if (asccasecmp(*argv, "clear") == 0)\
113 fprintf(stderr, "Synopsis: history: %s\n", tr(431,\
114 "Either <show> (default) or <clear> the line editor history"));\
117 return (v == NULL ? !STOP : !OKAY); /* xxx 1:bad 0:good -- do some */
118 #endif /* HAVE_HISTORY */
120 /* fexpand() flags for expand-on-tab */
121 #define _CL_TAB_FEXP_FL (FEXP_FULL | FEXP_SILENT | FEXP_MULTIOK)
124 * Because we have multiple identical implementations, change file layout a bit
125 * and place the implementations one after the other below the other externals
129 yorn(char const *msg
)
133 if (!(options
& OPT_INTERACTIVE
))
135 do if ((cp
= readstr_input(msg
, NULL
)) == NULL
)
137 while (*cp
!= 'y' && *cp
!= 'Y' && *cp
!= 'n' && *cp
!= 'N');
138 return (*cp
== 'y' || *cp
== 'Y');
142 getuser(char const *query
)
147 query
= tr(509, "User: ");
149 if (readline_input(LNED_NONE
, query
, &termios_state
.ts_linebuf
,
150 &termios_state
.ts_linesize
, NULL
) >= 0)
151 user
= termios_state
.ts_linebuf
;
152 termios_state_reset();
157 getpassword(char const *query
) /* FIXME encaps ttystate signal safe */
163 query
= tr(510, "Password: ");
164 fputs(query
, stdout
);
168 * FIXME everywhere: tcsetattr() generates SIGTTOU when we're not in
169 * foreground pgrp, and can fail with EINTR!!
171 if (options
& OPT_TTYIN
) {
172 tcgetattr(STDIN_FILENO
, &termios_state
.ts_tios
);
173 memcpy(&tios
, &termios_state
.ts_tios
, sizeof tios
);
174 termios_state
.ts_needs_reset
= TRU1
;
175 tios
.c_iflag
&= ~(ISTRIP
);
176 tios
.c_lflag
&= ~(ECHO
| ECHOE
| ECHOK
| ECHONL
);
177 tcsetattr(STDIN_FILENO
, TCSAFLUSH
, &tios
);
180 if (readline_restart(stdin
, &termios_state
.ts_linebuf
,
181 &termios_state
.ts_linesize
, 0) >= 0)
182 pass
= termios_state
.ts_linebuf
;
183 termios_state_reset();
185 if (options
& OPT_TTYIN
)
191 getcredentials(char **user
, char **pass
)
194 char *u
= *user
, *p
= *pass
;
197 if ((u
= getuser(NULL
)) == NULL
)
205 if ((p
= getpassword(NULL
)) == NULL
)
217 static sighandler_type _rl_shup
;
218 static char * _rl_buf
; /* pre_input() hook: initial line */
219 static int _rl_buflen
; /* content, and its length */
221 static int _rl_pre_input(void);
226 /* Handle leftover data from \ escaped former line */
227 rl_extend_line_buffer(_rl_buflen
+ 10);
228 memcpy(rl_line_buffer
, _rl_buf
, _rl_buflen
+ 1);
229 rl_point
= rl_end
= _rl_buflen
;
230 rl_pre_input_hook
= (rl_hook_func_t
*)NULL
;
243 rl_readline_name
= UNCONST(uagent
);
247 stifle_history((int)hs
);
249 rl_read_init_file(NULL
);
251 /* Because rl_read_init_file() may have introduced yet a different
252 * history size limit, simply load and incorporate the history, leave
253 * it up to readline(3) to do the rest */
285 /* readline(3) doesn't catch it :( */
286 rl_free_line_state();
287 rl_cleanup_after_signal();
288 safe_signal(SIGHUP
, _rl_shup
);
290 sigaddset(&nset
, sig
);
291 sigprocmask(SIG_UNBLOCK
, &nset
, &oset
);
293 /* XXX When we come here we'll continue editing, so reestablish
294 * XXX cannot happen */
295 sigprocmask(SIG_BLOCK
, &oset
, (sigset_t
*)NULL
);
296 _rl_shup
= safe_signal(SIGHUP
, &tty_signal
);
297 rl_reset_after_signal();
305 (tty_readline
)(char const *prompt
, char **linebuf
, size_t *linesize
, size_t n
314 rl_pre_input_hook
= &_rl_pre_input
;
317 _rl_shup
= safe_signal(SIGHUP
, &tty_signal
);
318 line
= readline(prompt
!= NULL
? prompt
: "");
319 safe_signal(SIGHUP
, _rl_shup
);
327 if (n
>= *linesize
) {
328 *linesize
= LINESIZE
+ n
+ 1;
329 *linebuf
= (srealloc
)(*linebuf
, *linesize SMALLOC_DEBUG_ARGSCALL
);
331 memcpy(*linebuf
, line
, n
);
333 (*linebuf
)[n
] = '\0';
340 tty_addhist(char const *s
)
343 _CL_CHECK_ADDHIST(s
, goto jleave
);
344 hold_all_sigs(); /* XXX too heavy */
345 add_history(s
); /* XXX yet we jump away! */
346 rele_all_sigs(); /* XXX remove jumps */
364 if ((fp
= Ftemp(&cp
, "Ra", "w+", 0600, 1)) == NULL
) {
375 while (hl
[i
] != NULL
)
380 size_t sl
= strlen(hl
[i
]->line
);
381 fprintf(fp
, "%4lu. %-50.50s (%4lu+%lu bytes)\n",
382 (ul_it
)i
, hl
[i
]->line
, (ul_it
)b
, (ul_it
)sl
);
386 page_or_print(fp
, i
);
395 # endif /* HAVE_HISTORY */
396 #endif /* HAVE_READLINE */
403 static EditLine
* _el_el
; /* editline(3) handle */
404 static char const * _el_prompt
; /* Current prompt */
406 static History
* _el_hcom
; /* History handle for commline */
409 static char const * _el_getprompt(void);
428 _el_hcom
= history_init();
429 history(_el_hcom
, &he
, H_SETSIZE
, (int)hs
);
430 history(_el_hcom
, &he
, H_SETUNIQUE
, 1);
433 _el_el
= el_init(uagent
, stdin
, stdout
, stderr
);
434 el_set(_el_el
, EL_SIGNAL
, 1);
435 el_set(_el_el
, EL_TERMINAL
, NULL
);
436 /* Need to set HIST before EDITOR, otherwise it won't work automatic */
438 el_set(_el_el
, EL_HIST
, &history
, _el_hcom
);
440 el_set(_el_el
, EL_EDITOR
, "emacs");
441 # ifdef EL_PROMPT_ESC
442 el_set(_el_el
, EL_PROMPT_ESC
, &_el_getprompt
, '\1');
444 el_set(_el_el
, EL_PROMPT
, &_el_getprompt
);
447 el_set(_el_el
, EL_ADDFN
, "tab_complete",
448 "editline(3) internal completion function", &_el_file_cpl
);
449 el_set(_el_el
, EL_BIND
, "^I", "tab_complete", NULL
);
452 el_set(_el_el
, EL_BIND
, "^R", "ed-search-prev-history", NULL
);
454 el_source(_el_el
, NULL
); /* Source ~/.editrc */
456 /* Because el_source() may have introduced yet a different history size
457 * limit, simply load and incorporate the history, leave it up to
458 * editline(3) to do the rest */
462 history(_el_hcom
, &he
, H_LOAD
, v
);
479 history(_el_hcom
, &he
, H_SAVE
, v
);
480 history_end(_el_hcom
);
499 (tty_readline
)(char const *prompt
, char **linebuf
, size_t *linesize
, size_t n
505 _el_prompt
= (prompt
!= NULL
) ? prompt
: "";
507 el_push(_el_el
, *linebuf
);
508 line
= el_gets(_el_el
, &nn
);
516 if (n
> 0 && line
[n
- 1] == '\n')
519 if (n
>= *linesize
) {
520 *linesize
= LINESIZE
+ n
+ 1;
521 *linebuf
= (srealloc
)(*linebuf
, *linesize SMALLOC_DEBUG_ARGSCALL
);
523 memcpy(*linebuf
, line
, n
);
524 (*linebuf
)[n
] = '\0';
530 tty_addhist(char const *s
)
533 /* Enlarge meaning of unique .. to something that rocks;
534 * xxx unfortunately this is expensive to do with editline(3)
535 * xxx maybe it would be better to hook the ptfs instead? */
539 _CL_CHECK_ADDHIST(s
, goto jleave
);
541 hold_all_sigs(); /* XXX too heavy, yet we jump away! */
542 if (history(_el_hcom
, &he
, H_GETUNIQUE
) < 0 || he
.num
== 0)
545 for (i
= history(_el_hcom
, &he
, H_FIRST
); i
>= 0;
546 i
= history(_el_hcom
, &he
, H_NEXT
))
547 if (strcmp(he
.str
, s
) == 0) {
548 history(_el_hcom
, &he
, H_DEL
, he
.num
);
552 history(_el_hcom
, &he
, H_ENTER
, s
);
553 rele_all_sigs(); /* XXX remove jumps */
572 if ((fp
= Ftemp(&cp
, "Ra", "w+", 0600, 1)) == NULL
) {
580 i
= (size_t)((history(_el_hcom
, &he
, H_GETSIZE
) >= 0) ? he
.num
: 0);
582 for (x
= history(_el_hcom
, &he
, H_FIRST
); x
>= 0;
583 x
= history(_el_hcom
, &he
, H_NEXT
)) {
584 size_t sl
= strlen(he
.str
);
585 fprintf(fp
, "%4lu. %-50.50s (%4lu+%lu bytes)\n",
586 (ul_it
)i
, he
.str
, (ul_it
)b
, (ul_it
)sl
);
591 page_or_print(fp
, i
);
598 history(_el_hcom
, &he
, H_CLEAR
);
602 # endif /* HAVE_HISTORY */
603 #endif /* HAVE_EDITLINE */
606 * NCL: our homebrew version (inspired from NetBSD sh(1) / dash(1)s hetio.c).
608 * Only used in interactive mode, simply use STDIN_FILENO as point of interest.
609 * We do not handle character widths because the terminal must deal with that
610 * anyway on the one hand, and also wcwidth(3) doesn't support zero-width
611 * characters by definition on the other. We're addicted.
613 * To avoid memory leaks etc. with the current codebase that simply longjmp(3)s
614 * we're forced to use the very same buffer--the one that is passed through to
615 * us from the outside--to store anything we need, i.e., a `struct cell[]', and
616 * convert that on-the-fly back to the plain char* result once we're done.
617 * To simplify our live, use savestr() buffers for all other needed memory
621 * TODO NCL: don't use that stupid .sint=-1 stuff, but simply block all signals
622 * TODO NCL: during handler de-/installation handling.
627 # define MAX_INPUT 255 /* (_POSIX_MAX_INPUT = 255 as of Issue 7 TC1) */
630 /* Since we simply fputs(3) the prompt, assume each character requires two
631 * visual cells -- and we need to restrict the maximum prompt size because
632 * of MAX_INPUT and our desire to have room for some error message left */
633 # define _PROMPT_VLEN(P) (strlen(P) * 2)
634 # define _PROMPT_MAX ((MAX_INPUT / 2) + (MAX_INPUT / 4))
637 sighandler_type shdl
; /* Try avoid races by setting */
638 sl_it sint
; /* .sint=-1 when inactive */
640 CTA(sizeof(sl_it
) >= sizeof(sighandler_type
));
650 char cbuf
[MB_LEN_MAX
* 2]; /* .. plus reset shift sequence */
654 size_t cursor
; /* Current cursor position */
655 size_t topins
; /* Outermost cursor col set */
657 char * cbuf
; /* *x_buf */
660 struct str defc
; /* Current default content */
661 struct str savec
; /* Saved default content */
663 struct hist
* hist
; /* History cursor */
666 char const * nd
; /* Cursor right */
667 char ** x_buf
; /* Caller pointers */
674 struct hist
* younger
;
676 char dat
[VFIELD_SIZE(sizeof(size_t))];
680 static union xsighdl _ncl_oint
;
681 static union xsighdl _ncl_oquit
;
682 static union xsighdl _ncl_oterm
;
683 static union xsighdl _ncl_ohup
;
684 static union xsighdl _ncl_otstp
;
685 static union xsighdl _ncl_ottin
;
686 static union xsighdl _ncl_ottou
;
687 static struct xtios _ncl_tios
;
689 static struct hist
* _ncl_hist
;
690 static struct hist
* _ncl_hist_tail
;
691 static size_t _ncl_hist_size
;
692 static size_t _ncl_hist_size_max
;
693 static bool_t _ncl_hist_load
;
696 static void _ncl_sigs_up(void);
697 static void _ncl_sigs_down(void);
699 static void _ncl_term_mode(bool_t raw
);
701 static void _ncl_check_grow(struct line
*l
, size_t no SMALLOC_DEBUG_ARGS
);
702 static void _ncl_bs_eof_dvup(struct cell
*cap
, size_t i
);
703 static ssize_t
_ncl_wboundary(struct line
*l
, ssize_t dir
);
704 static ssize_t
_ncl_cell2dat(struct line
*l
);
705 # if defined HAVE_HISTORY || defined HAVE_TABEXPAND
706 static void _ncl_cell2save(struct line
*l
);
709 static void _ncl_khome(struct line
*l
, bool_t dobell
);
710 static void _ncl_kend(struct line
*l
);
711 static void _ncl_kbs(struct line
*l
);
712 static void _ncl_kkill(struct line
*l
, bool_t dobell
);
713 static ssize_t
_ncl_keof(struct line
*l
);
714 static void _ncl_kleft(struct line
*l
);
715 static void _ncl_kright(struct line
*l
);
716 static void _ncl_krefresh(struct line
*l
);
717 static void _ncl_kbwddelw(struct line
*l
);
718 static void _ncl_kgow(struct line
*l
, ssize_t dir
);
719 static void _ncl_kother(struct line
*l
, wchar_t wc
);
721 static size_t __ncl_khist_shared(struct line
*l
, struct hist
*hp
);
722 static size_t _ncl_khist(struct line
*l
, bool_t backwd
);
723 static size_t _ncl_krhist(struct line
*l
);
725 # ifdef HAVE_TABEXPAND
726 static size_t _ncl_kht(struct line
*l
);
728 static ssize_t
_ncl_readline(char const *prompt
, char **buf
, size_t *bufsize
,
729 size_t len SMALLOC_DEBUG_ARGS
);
734 if (_ncl_oint
.sint
== -1)
735 _ncl_oint
.shdl
= safe_signal(SIGINT
, &tty_signal
);
736 if (_ncl_oquit
.sint
== -1)
737 _ncl_oquit
.shdl
= safe_signal(SIGQUIT
, &tty_signal
);
738 if (_ncl_oterm
.sint
== -1)
739 _ncl_oterm
.shdl
= safe_signal(SIGTERM
, &tty_signal
);
740 if (_ncl_ohup
.sint
== -1)
741 _ncl_ohup
.shdl
= safe_signal(SIGHUP
, &tty_signal
);
742 if (_ncl_otstp
.sint
== -1)
743 _ncl_otstp
.shdl
= safe_signal(SIGTSTP
, &tty_signal
);
744 if (_ncl_ottin
.sint
== -1)
745 _ncl_ottin
.shdl
= safe_signal(SIGTTIN
, &tty_signal
);
746 if (_ncl_ottou
.sint
== -1)
747 _ncl_ottou
.shdl
= safe_signal(SIGTTOU
, &tty_signal
);
753 /* aaah.. atomic cas would be nice (but isn't it all redundant?) */
756 if (_ncl_ottou
.sint
!= -1) {
757 st
= _ncl_ottou
.shdl
, _ncl_ottou
.sint
= -1;
758 safe_signal(SIGTTOU
, st
);
760 if (_ncl_ottin
.sint
!= -1) {
761 st
= _ncl_ottin
.shdl
, _ncl_ottin
.sint
= -1;
762 safe_signal(SIGTTIN
, st
);
764 if (_ncl_otstp
.sint
!= -1) {
765 st
= _ncl_otstp
.shdl
, _ncl_otstp
.sint
= -1;
766 safe_signal(SIGTSTP
, st
);
768 if (_ncl_ohup
.sint
!= -1) {
769 st
= _ncl_ohup
.shdl
, _ncl_ohup
.sint
= -1;
770 safe_signal(SIGHUP
, st
);
772 if (_ncl_oterm
.sint
!= -1) {
773 st
= _ncl_oterm
.shdl
, _ncl_oterm
.sint
= -1;
774 safe_signal(SIGTERM
, st
);
776 if (_ncl_oquit
.sint
!= -1) {
777 st
= _ncl_oquit
.shdl
, _ncl_oquit
.sint
= -1;
778 safe_signal(SIGQUIT
, st
);
780 if (_ncl_oint
.sint
!= -1) {
781 st
= _ncl_oint
.shdl
, _ncl_oint
.sint
= -1;
782 safe_signal(SIGINT
, st
);
787 _ncl_term_mode(bool_t raw
)
789 struct termios
*tiosp
= &_ncl_tios
.told
;
794 /* Always requery the attributes, in case we've been moved from background
795 * to foreground or however else in between sessions */
796 tcgetattr(STDIN_FILENO
, tiosp
);
797 memcpy(&_ncl_tios
.tnew
, tiosp
, sizeof *tiosp
);
798 tiosp
= &_ncl_tios
.tnew
;
799 tiosp
->c_cc
[VMIN
] = 1;
800 tiosp
->c_cc
[VTIME
] = 0;
801 tiosp
->c_iflag
&= ~(ISTRIP
);
802 tiosp
->c_lflag
&= ~(ECHO
/*| ECHOE | ECHONL */| ICANON
| IEXTEN
);
804 tcsetattr(STDIN_FILENO
, TCSADRAIN
, tiosp
);
808 _ncl_check_grow(struct line
*l
, size_t no SMALLOC_DEBUG_ARGS
)
810 size_t i
= (l
->topins
+ no
) * sizeof(struct cell
) + 2 * sizeof(struct cell
);
812 if (i
> *l
->x_bufsize
) {
816 *l
->x_buf
= (srealloc
)(*l
->x_buf
, i SMALLOC_DEBUG_ARGSCALL
);
821 _ncl_bs_eof_dvup(struct cell
*cap
, size_t i
)
826 memmove(cap
, cap
+ 1, i
* sizeof(*cap
));
828 /* And.. the (rest of the) visual update */
829 for (j
= 0; j
< i
; ++j
)
830 fwrite(cap
[j
].cbuf
, sizeof *cap
->cbuf
, cap
[j
].count
, stdout
);
831 fputs(" \b", stdout
);
832 for (j
= 0; j
< i
; ++j
)
837 _ncl_wboundary(struct line
*l
, ssize_t dir
)
839 size_t c
= l
->cursor
, t
= l
->topins
, i
;
850 --t
, --c
; /* Unsigned wrapping may occur (twice), then */
852 for (i
= 0, cap
= l
->line
.cells
, anynon
= FAL0
;;) {
853 wchar_t wc
= cap
[c
+ dir
].wc
;
854 if (iswblank(wc
) || iswpunct(wc
)) {
872 _ncl_cell2dat(struct line
*l
)
877 for (i
= 0; i
< l
->topins
; ++i
) {
878 struct cell
*cap
= l
->line
.cells
+ i
;
879 memcpy(l
->line
.cbuf
+ len
, cap
->cbuf
, cap
->count
);
882 l
->line
.cbuf
[len
] = '\0';
886 # if defined HAVE_HISTORY || defined HAVE_TABEXPAND
888 _ncl_cell2save(struct line
*l
)
893 l
->savec
.s
= NULL
, l
->savec
.l
= 0;
897 for (cap
= l
->line
.cells
, len
= i
= 0; i
< l
->topins
; ++cap
, ++i
)
901 l
->savec
.s
= salloc(len
+ 1);
903 for (cap
= l
->line
.cells
, len
= i
= 0; i
< l
->topins
; ++cap
, ++i
) {
904 memcpy(l
->savec
.s
+ len
, cap
->cbuf
, cap
->count
);
907 l
->savec
.s
[len
] = '\0';
914 _ncl_khome(struct line
*l
, bool_t dobell
)
916 size_t c
= l
->cursor
;
927 _ncl_kend(struct line
*l
)
929 ssize_t i
= (ssize_t
)(l
->topins
- l
->cursor
);
932 l
->cursor
= l
->topins
;
934 fputs(l
->nd
, stdout
);
940 _ncl_kbs(struct line
*l
)
942 ssize_t c
= l
->cursor
, t
= l
->topins
;
949 _ncl_bs_eof_dvup(l
->line
.cells
+ c
, t
);
955 _ncl_kkill(struct line
*l
, bool_t dobell
)
957 size_t j
, c
= l
->cursor
, i
= (size_t)(l
->topins
- c
);
961 for (j
= i
; j
!= 0; --j
)
963 for (j
= i
; j
!= 0; --j
)
970 _ncl_keof(struct line
*l
)
972 size_t c
= l
->cursor
, t
= l
->topins
;
973 ssize_t i
= (ssize_t
)(t
- c
);
977 _ncl_bs_eof_dvup(l
->line
.cells
+ c
, --i
);
978 } else if (t
== 0 && !ok_blook(ignoreeof
)) {
990 _ncl_kleft(struct line
*l
)
1000 _ncl_kright(struct line
*l
)
1002 if (l
->cursor
< l
->topins
) {
1004 fputs(l
->nd
, stdout
);
1010 _ncl_krefresh(struct line
*l
)
1016 if (l
->prompt
!= NULL
&& *l
->prompt
!= '\0')
1017 fputs(l
->prompt
, stdout
);
1018 for (cap
= l
->line
.cells
, i
= l
->topins
; i
> 0; ++cap
, --i
)
1019 fwrite(cap
->cbuf
, sizeof *cap
->cbuf
, cap
->count
, stdout
);
1020 for (i
= l
->topins
- l
->cursor
; i
> 0; --i
)
1025 _ncl_kbwddelw(struct line
*l
)
1028 size_t c
= l
->cursor
, t
, j
;
1031 i
= _ncl_wboundary(l
, -1);
1042 cap
= l
->line
.cells
+ c
;
1044 if (t
!= l
->cursor
) {
1046 memmove(cap
, cap
+ i
, j
* sizeof(*cap
));
1049 for (j
= i
; j
> 0; --j
)
1051 for (j
= l
->topins
- c
; j
> 0; ++cap
, --j
)
1052 fwrite(cap
[0].cbuf
, sizeof *cap
->cbuf
, cap
[0].count
, stdout
);
1053 for (j
= i
; j
> 0; --j
)
1055 for (j
= t
- c
; j
> 0; --j
)
1062 _ncl_kgow(struct line
*l
, ssize_t dir
)
1064 ssize_t i
= _ncl_wboundary(l
, dir
);
1078 fputs(l
->nd
, stdout
);
1085 _ncl_kother(struct line
*l
, wchar_t wc
)
1087 /* Append if at EOL, insert otherwise;
1088 * since we may move around character-wise, always use a fresh ps */
1090 struct cell cell
, *cap
;
1093 /* First init a cell and see wether we'll really handle this wc */
1095 memset(&ps
, 0, sizeof ps
);
1096 i
= wcrtomb(cell
.cbuf
, wc
, &ps
);
1099 cell
.count
= (ui_it
)i
;
1100 if (enc_has_state
) {
1101 i
= wcrtomb(cell
.cbuf
+ i
, L
'\0', &ps
);
1104 else if (--i
< MB_LEN_MAX
)
1105 cell
.count
+= (ui_it
)i
;
1110 /* Yes, we will! Place it in the array */
1112 i
= l
->topins
++ - c
;
1113 cap
= l
->line
.cells
+ c
;
1115 memmove(cap
+ 1, cap
, i
* sizeof(cell
));
1116 memcpy(cap
, &cell
, sizeof cell
);
1118 /* And update visual */
1121 fwrite(cap
->cbuf
, sizeof *cap
->cbuf
, cap
->count
, stdout
);
1122 while ((++cap
, i
-- != 0));
1129 # ifdef HAVE_HISTORY
1131 __ncl_khist_shared(struct line
*l
, struct hist
*hp
)
1135 if ((l
->hist
= hp
) != NULL
) {
1136 l
->defc
.s
= savestrbuf(hp
->dat
, hp
->len
);
1138 l
->defc
.l
= hp
->len
;
1139 if (l
->topins
> 0) {
1140 _ncl_khome(l
, FAL0
);
1141 _ncl_kkill(l
, FAL0
);
1151 _ncl_khist(struct line
*l
, bool_t backwd
)
1155 /* If we're not in history mode yet, save line content;
1156 * also, disallow forward search, then, and, of course, bail unless we
1157 * do have any history at all */
1158 if ((hp
= l
->hist
) == NULL
) {
1161 if ((hp
= _ncl_hist
) == NULL
)
1167 hp
= backwd
? hp
->older
: hp
->younger
;
1169 return __ncl_khist_shared(l
, hp
);
1173 _ncl_krhist(struct line
*l
)
1175 struct str orig_savec
;
1176 struct hist
*hp
= NULL
;
1178 /* We cannot complete an empty line */
1179 if (l
->topins
== 0) {
1180 /* XXX The upcoming hard reset would restore a set savec buffer,
1181 * XXX so forcefully reset that. A cleaner solution would be to
1182 * XXX reset it whenever a restore is no longer desired */
1183 l
->savec
.s
= NULL
, l
->savec
.l
= 0;
1186 if ((hp
= l
->hist
) == NULL
) {
1187 if ((hp
= _ncl_hist
) == NULL
)
1189 orig_savec
.s
= NULL
;
1190 orig_savec
.l
= 0; /* silence CC */
1191 } else if ((hp
= hp
->older
) == NULL
)
1194 orig_savec
= l
->savec
;
1196 if (orig_savec
.s
== NULL
)
1198 for (; hp
!= NULL
; hp
= hp
->older
)
1199 if (is_prefix(l
->savec
.s
, hp
->dat
))
1201 if (orig_savec
.s
!= NULL
)
1202 l
->savec
= orig_savec
;
1204 return __ncl_khist_shared(l
, hp
);
1208 # ifdef HAVE_TABEXPAND
1210 _ncl_kht(struct line
*l
)
1212 struct str orig
, bot
, topp
, sub
, exp
;
1213 struct cell
*cword
, *ctop
, *cx
;
1214 bool_t set_savec
= FAL0
;
1217 /* We cannot expand an empty line */
1221 /* Get plain line data; if this is the first expansion/xy, update the
1222 * very original content so that ^G gets the origin back */
1232 cword
= l
->line
.cells
;
1233 ctop
= cword
+ l
->cursor
;
1235 /* topp: separate data right of cursor */
1236 if ((cx
= cword
+ l
->topins
) != ctop
) {
1237 for (rv
= 0; cx
> ctop
; --cx
)
1240 topp
.s
= orig
.s
+ orig
.l
- rv
;
1242 topp
.s
= NULL
, topp
.l
= 0;
1244 /* bot, sub: we cannot expand the entire data left of cursor, but only
1245 * the last "word", so separate them */
1246 while (cx
> cword
&& !iswspace(cx
[-1].wc
))
1248 for (rv
= 0; cword
< cx
; ++cword
)
1258 sub
.s
= savestrbuf(sub
.s
, sub
.l
);
1259 /* TODO there is a TODO note upon fexpand() with multi-return;
1260 * TODO if that will change, the if() below can be simplified */
1261 /* Super-Heavy-Metal: block all sigs, avoid leaks on jump */
1263 exp
.s
= fexpand(sub
.s
, _CL_TAB_FEXP_FL
);
1266 if (exp
.s
!= NULL
&& (exp
.l
= strlen(exp
.s
)) > 0 &&
1267 (exp
.l
!= sub
.l
|| strcmp(exp
.s
, sub
.s
))) {
1268 /* Cramp expansion length to MAX_INPUT, or 255 if not defined.
1269 * Take care to take *prompt* into account, since we don't know
1270 * anything about it's visual length (fputs(3) is used), simply
1271 * assume each character requires two columns */
1272 /* TODO the problem is that we loose control otherwise; in the best
1273 * TODO case the user can control via ^A and ^K etc., but be safe;
1274 * TODO we cannot simply adjust fexpand() because we don't know how
1275 * TODO that is implemented... The real solution would be to check
1276 * TODO wether we fit on a line, and start a pager if not.
1277 * TODO However, that should be part of a real tab-COMPLETION, then,
1278 * TODO i.e., don't EXPAND, but SHOW COMPLETIONS, page-wise if needed.
1279 * TODO And: MAX_INPUT is dynamic: pathconf(2), _SC_MAX_INPUT */
1280 rv
= (l
->prompt
!= NULL
) ? _PROMPT_VLEN(l
->prompt
) : 0;
1281 if (rv
+ bot
.l
+ exp
.l
+ topp
.l
>= MAX_INPUT
) {
1282 char const e1
[] = "[maximum line size exceeded]";
1283 exp
.s
= UNCONST(e1
);
1284 exp
.l
= sizeof(e1
) - 1;
1286 if (rv
+ bot
.l
+ exp
.l
>= MAX_INPUT
)
1288 if (rv
+ exp
.l
>= MAX_INPUT
) {
1289 char const e2
[] = "[ERR]";
1290 exp
.s
= UNCONST(e2
);
1291 exp
.l
= sizeof(e2
) - 1;
1294 orig
.l
= bot
.l
+ exp
.l
+ topp
.l
;
1295 orig
.s
= salloc(orig
.l
+ 1 + 5);
1296 if ((rv
= bot
.l
) > 0)
1297 memcpy(orig
.s
, bot
.s
, rv
);
1298 memcpy(orig
.s
+ rv
, exp
.s
, exp
.l
);
1301 memcpy(orig
.s
+ rv
, topp
.s
, topp
.l
);
1307 _ncl_khome(l
, FAL0
);
1308 _ncl_kkill(l
, FAL0
);
1313 /* If we've provided a default content, but failed to expand, there is
1314 * nothing we can "revert to": drop that default again */
1316 l
->savec
.s
= NULL
, l
->savec
.l
= 0;
1321 # endif /* HAVE_TABEXPAND */
1324 _ncl_readline(char const *prompt
, char **buf
, size_t *bufsize
, size_t len
1327 /* We want to save code, yet we may have to incorporate a lines'
1328 * default content and / or default input to switch back to after some
1329 * history movement; let "len > 0" mean "have to display some data
1330 * buffer", and only otherwise read(2) it */
1333 char cbuf_base
[MB_LEN_MAX
* 2], *cbuf
, *cbufp
;
1336 ui32_t maybe_cursor
;
1338 memset(&l
, 0, sizeof l
);
1341 l
.defc
.s
= savestrbuf(*buf
, len
);
1344 if ((l
.prompt
= prompt
) != NULL
&& _PROMPT_VLEN(prompt
) > _PROMPT_MAX
)
1345 l
.prompt
= prompt
= "?ERR?";
1346 /* TODO *l.nd=='\0' only because we have no value-cache -> see acmava.c */
1347 if ((l
.nd
= ok_vlook(line_editor_cursor_right
)) == NULL
|| *l
.nd
== '\0')
1348 l
.nd
= "\033[C"; /* XXX no "magic" constant */
1350 l
.x_bufsize
= bufsize
;
1352 if (prompt
!= NULL
&& *prompt
!= '\0') {
1353 fputs(prompt
, stdout
);
1357 memset(ps
, 0, sizeof ps
);
1359 /* TODO: NCL: we should output the reset sequence when we jrestart:
1360 * TODO: NCL: if we are using a stateful encoding? !
1361 * TODO: NCL: in short: this is not yet well understood */
1363 _ncl_check_grow(&l
, len SMALLOC_DEBUG_ARGSCALL
);
1365 /* Normal read(2)? Else buffer-takeover: speed this one up */
1370 assert(l
.defc
.l
> 0 && l
.defc
.s
!= NULL
);
1372 cbuf
= l
.defc
.s
+ (l
.defc
.l
- len
);
1376 /* Read in the next complete multibyte character */
1379 if ((rv
= read(STDIN_FILENO
, cbufp
, 1)) < 1) {
1380 if (errno
== EINTR
) /* xxx #if !SA_RESTART ? */
1387 /* Ach! the ISO C multibyte handling!
1388 * Encodings with locking shift states cannot really be helped, since
1389 * it is impossible to only query the shift state, as opposed to the
1390 * entire shift state + character pair (via ISO C functions) */
1391 rv
= (ssize_t
)mbrtowc(&wc
, cbuf
, (size_t)(cbufp
- cbuf
), ps
+ 0);
1393 /* Any error during take-over can only result in a hard reset;
1394 * Otherwise, if it's a hard error, or if too many redundant shift
1395 * sequences overflow our buffer, also perform a hard reset */
1396 if (len
!= 0 || rv
== -1 ||
1397 sizeof cbuf_base
== (size_t)(cbufp
- cbuf
)) {
1398 l
.savec
.s
= l
.defc
.s
= NULL
,
1399 l
.savec
.l
= l
.defc
.l
= len
= 0;
1404 /* Otherwise, due to the way we deal with the buffer, we need to
1405 * restore the mbstate_t from before this conversion */
1410 if (len
!= 0 && (len
-= (size_t)rv
) == 0)
1411 l
.defc
.s
= NULL
, l
.defc
.l
= 0;
1416 /* Don't interpret control bytes during buffer take-over */
1417 if (cbuf
!= cbuf_base
)
1420 case 'A' ^ 0x40: /* cursor home */
1421 _ncl_khome(&l
, TRU1
);
1424 case 'B' ^ 0x40: /* backward character */
1427 /* 'C': interrupt (CTRL-C) */
1428 case 'D' ^ 0x40: /* delete char forward if any, else EOF */
1429 if ((rv
= _ncl_keof(&l
)) < 0)
1432 case 'E' ^ 0x40: /* end of line */
1436 case 'F' ^ 0x40: /* forward character */
1440 case 'H' ^ 0x40: /* backspace */
1444 case 'I' ^ 0x40: /* horizontal tab */
1445 # ifdef HAVE_TABEXPAND
1446 if ((len
= _ncl_kht(&l
)) > 0)
1450 case 'J' ^ 0x40: /* NL (\n) */
1452 case 'G' ^ 0x40: /* full reset */
1455 case 'U' ^ 0x40: /* ^U: ^A + ^K */
1456 _ncl_khome(&l
, FAL0
);
1458 case 'K' ^ 0x40: /* kill from cursor to end of line */
1459 _ncl_kkill(&l
, (wc
== ('K' ^ 0x40) || l
.topins
== 0));
1460 /* (Handle full reset?) */
1461 if (wc
== ('G' ^ 0x40)) {
1462 # ifdef HAVE_HISTORY
1465 if ((len
= l
.savec
.l
) != 0) {
1467 l
.savec
.s
= NULL
, l
.savec
.l
= 0;
1473 case 'L' ^ 0x40: /* repaint line */
1478 case 'N' ^ 0x40: /* history next */
1479 # ifdef HAVE_HISTORY
1482 if ((len
= _ncl_khist(&l
, FAL0
)) > 0)
1491 case 'P' ^ 0x40: /* history previous */
1492 # ifdef HAVE_HISTORY
1493 if ((len
= _ncl_khist(&l
, TRU1
)) > 0)
1501 case 'R' ^ 0x40: /* reverse history search */
1502 # ifdef HAVE_HISTORY
1503 if ((len
= _ncl_krhist(&l
)) > 0)
1512 /*case 'V' ^ 0x40: TODO*/ /* forward delete "word" */
1513 case 'W' ^ 0x40: /* backward delete "word" */
1516 case 'X' ^ 0x40: /* move cursor forward "word" */
1519 case 'Y' ^ 0x40: /* move cursor backward "word" */
1522 /* 'Z': suspend (CTRL-Z) */
1524 if (maybe_cursor
++ != 0)
1528 /* XXX Handle usual ^[[[ABCD] cursor keys -- UGLY, "MAGIC", INFLEX */
1529 if (maybe_cursor
> 0) {
1530 if (++maybe_cursor
== 2) {
1537 case L
'A': goto j_p
;
1538 case L
'B': goto j_n
;
1539 case L
'C': goto j_f
;
1540 case L
'D': goto j_b
;
1542 _ncl_kother(&l
, L
'[');
1547 _ncl_kother(&l
, wc
);
1548 /* Don't clear the history during takeover..
1549 * ..and also avoid fflush()ing unless we've
1550 * worked the entire buffer */
1553 # ifdef HAVE_HISTORY
1554 if (cbuf
== cbuf_base
)
1566 /* We have a completed input line, convert the struct cell data to its
1567 * plain character equivalent */
1571 len
= _ncl_cell2dat(&l
);
1580 # ifdef HAVE_HISTORY
1584 size_t lsize
, cnt
, llen
;
1587 _ncl_oint
.sint
= _ncl_oquit
.sint
= _ncl_oterm
.sint
=
1588 _ncl_ohup
.sint
= _ncl_otstp
.sint
= _ncl_ottin
.sint
=
1589 _ncl_ottou
.sint
= -1;
1591 # ifdef HAVE_HISTORY
1594 _ncl_hist_size_max
= hs
;
1602 hold_all_sigs(); /* XXX too heavy, yet we may jump even here!? */
1603 f
= fopen(v
, "r"); /* TODO HISTFILE LOAD: use linebuf pool */
1610 while (fgetline(&lbuf
, &lsize
, &cnt
, &llen
, f
, FAL0
) != NULL
) {
1611 if (llen
> 0 && lbuf
[llen
- 1] == '\n')
1612 lbuf
[--llen
] = '\0';
1613 if (llen
== 0 || lbuf
[0] == '#') /* xxx comments? noone! */
1615 _ncl_hist_load
= TRU1
;
1617 _ncl_hist_load
= FAL0
;
1624 rele_all_sigs(); /* XXX remove jumps */
1626 # endif /* HAVE_HISTORY */
1633 # ifdef HAVE_HISTORY
1647 if ((hp
= _ncl_hist
) != NULL
)
1648 while (hp
->older
!= NULL
&& hs
-- != 0)
1651 hold_all_sigs(); /* TODO too heavy, yet we may jump even here!? */
1652 f
= fopen(v
, "w"); /* TODO temporary + rename?! */
1655 if (fchmod(fileno(f
), S_IRUSR
| S_IWUSR
) != 0)
1658 for (; hp
!= NULL
; hp
= hp
->younger
) {
1659 fwrite(hp
->dat
, sizeof *hp
->dat
, hp
->len
, f
);
1665 rele_all_sigs(); /* XXX remove jumps */
1667 # endif /* HAVE_HISTORY */
1674 sigset_t nset
, oset
;
1678 /* We don't deal with SIGWINCH, yet get called from main.c */
1681 _ncl_term_mode(FAL0
);
1684 sigaddset(&nset
, sig
);
1685 sigprocmask(SIG_UNBLOCK
, &nset
, &oset
);
1687 /* When we come here we'll continue editing, so reestablish */
1688 sigprocmask(SIG_BLOCK
, &oset
, (sigset_t
*)NULL
);
1690 _ncl_term_mode(TRU1
);
1696 (tty_readline
)(char const *prompt
, char **linebuf
, size_t *linesize
, size_t n
1701 /* Of course we have races here, but they cannot be avoided on POSIX
1702 * (except by even *more* actions) */
1704 _ncl_term_mode(TRU1
);
1705 nn
= _ncl_readline(prompt
, linebuf
, linesize
, n SMALLOC_DEBUG_ARGSCALL
);
1706 _ncl_term_mode(FAL0
);
1713 tty_addhist(char const *s
)
1715 # ifdef HAVE_HISTORY
1716 /* Super-Heavy-Metal: block all sigs, avoid leaks+ on jump */
1717 size_t l
= strlen(s
);
1718 struct hist
*h
, *o
, *y
;
1720 if (_ncl_hist_size_max
== 0)
1722 _CL_CHECK_ADDHIST(s
, goto j_leave
);
1724 /* Eliminating duplicates is expensive, but simply inacceptable so
1725 * during the load of a potentially large history file! */
1726 if (!_ncl_hist_load
)
1727 for (h
= _ncl_hist
; h
!= NULL
; h
= h
->older
)
1728 if (h
->len
== l
&& !strcmp(h
->dat
, s
)) {
1729 hold_all_sigs(); /* TODO */
1745 if (!_ncl_hist_load
&& _ncl_hist_size
> _ncl_hist_size_max
) {
1747 if ((h
= _ncl_hist_tail
) != NULL
) {
1748 if ((_ncl_hist_tail
= h
->younger
) == NULL
)
1751 _ncl_hist_tail
->older
= NULL
;
1756 h
= smalloc((sizeof(struct hist
) - VFIELD_SIZEOF(struct hist
, dat
)) + l
+1);
1758 memcpy(h
->dat
, s
, l
+1);
1760 if ((h
->older
= _ncl_hist
) != NULL
)
1761 _ncl_hist
->younger
= h
;
1773 # ifdef HAVE_HISTORY
1785 if (_ncl_hist
== NULL
)
1788 if ((fp
= Ftemp(&cp
, "Ra", "w+", 0600, 1)) == NULL
) {
1798 for (h
= _ncl_hist
; h
!= NULL
; --i
, b
+= h
->len
, h
= h
->older
)
1799 fprintf(fp
, "%4lu. %-50.50s (%4lu+%lu bytes)\n",
1800 (ul_it
)i
, h
->dat
, (ul_it
)b
, (ul_it
)h
->len
);
1802 page_or_print(fp
, i
);
1809 while ((h
= _ncl_hist
) != NULL
) {
1810 _ncl_hist
= h
->older
;
1813 _ncl_hist_tail
= NULL
;
1818 # endif /* HAVE_HISTORY */
1819 #endif /* HAVE_NCL */
1822 * The really-nothing-at-all implementation
1825 #if !defined HAVE_READLINE && !defined HAVE_EDITLINE && !defined HAVE_NCL
1841 (tty_readline
)(char const *prompt
, char **linebuf
, size_t *linesize
, size_t n
1845 * TODO The nothing-at-all tty layer even forces re-entering all the
1846 * TODO original data when re-editing a field
1848 bool_t doffl
= FAL0
;
1850 if (prompt
!= NULL
&& *prompt
!= '\0') {
1851 fputs(prompt
, stdout
);
1855 fprintf(stdout
, tr(511, "{former content: %.*s} "), (int)n
, *linebuf
);
1861 return (readline_restart
)(stdin
, linebuf
, linesize
,n SMALLOC_DEBUG_ARGSCALL
);
1865 tty_addhist(char const *s
)
1869 #endif /* nothing at all */
1871 /* vim:set fenc=utf-8:s-it-mode */