Home | History | Annotate | Line # | Download | only in libedit
el.c revision 1.47.2.1
      1  1.47.2.1       jym /*	$NetBSD: el.c,v 1.47.2.1 2009/05/13 19:18:29 jym Exp $	*/
      2       1.2     lukem 
      3       1.1       cgd /*-
      4       1.1       cgd  * Copyright (c) 1992, 1993
      5       1.1       cgd  *	The Regents of the University of California.  All rights reserved.
      6       1.1       cgd  *
      7       1.1       cgd  * This code is derived from software contributed to Berkeley by
      8       1.1       cgd  * Christos Zoulas of Cornell University.
      9       1.1       cgd  *
     10       1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11       1.1       cgd  * modification, are permitted provided that the following conditions
     12       1.1       cgd  * are met:
     13       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18      1.32       agc  * 3. Neither the name of the University nor the names of its contributors
     19       1.1       cgd  *    may be used to endorse or promote products derived from this software
     20       1.1       cgd  *    without specific prior written permission.
     21       1.1       cgd  *
     22       1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23       1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24       1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25       1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26       1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27       1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28       1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29       1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30       1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31       1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32       1.1       cgd  * SUCH DAMAGE.
     33       1.1       cgd  */
     34       1.1       cgd 
     35      1.29  christos #include "config.h"
     36       1.1       cgd #if !defined(lint) && !defined(SCCSID)
     37       1.2     lukem #if 0
     38       1.1       cgd static char sccsid[] = "@(#)el.c	8.2 (Berkeley) 1/3/94";
     39       1.2     lukem #else
     40  1.47.2.1       jym __RCSID("$NetBSD: el.c,v 1.47.2.1 2009/05/13 19:18:29 jym Exp $");
     41       1.2     lukem #endif
     42       1.1       cgd #endif /* not lint && not SCCSID */
     43       1.1       cgd 
     44       1.1       cgd /*
     45       1.1       cgd  * el.c: EditLine interface functions
     46       1.1       cgd  */
     47       1.1       cgd #include <sys/types.h>
     48       1.1       cgd #include <sys/param.h>
     49       1.1       cgd #include <string.h>
     50       1.1       cgd #include <stdlib.h>
     51      1.19     lukem #include <stdarg.h>
     52       1.1       cgd #include "el.h"
     53       1.1       cgd 
     54       1.1       cgd /* el_init():
     55       1.1       cgd  *	Initialize editline and set default parameters.
     56       1.1       cgd  */
     57       1.1       cgd public EditLine *
     58      1.19     lukem el_init(const char *prog, FILE *fin, FILE *fout, FILE *ferr)
     59       1.1       cgd {
     60      1.18     chuck 
     61      1.19     lukem 	EditLine *el = (EditLine *) el_malloc(sizeof(EditLine));
     62       1.1       cgd 
     63      1.19     lukem 	if (el == NULL)
     64      1.19     lukem 		return (NULL);
     65       1.1       cgd 
     66      1.19     lukem 	memset(el, 0, sizeof(EditLine));
     67       1.1       cgd 
     68      1.44  christos 	el->el_infile = fin;
     69      1.19     lukem 	el->el_outfile = fout;
     70      1.19     lukem 	el->el_errfile = ferr;
     71      1.44  christos 
     72      1.44  christos 	el->el_infd = fileno(fin);
     73      1.44  christos 
     74      1.36  christos 	if ((el->el_prog = el_strdup(prog)) == NULL) {
     75      1.36  christos 		el_free(el);
     76      1.36  christos 		return NULL;
     77      1.36  christos 	}
     78      1.19     lukem 
     79      1.19     lukem 	/*
     80      1.19     lukem          * Initialize all the modules. Order is important!!!
     81      1.19     lukem          */
     82      1.19     lukem 	el->el_flags = 0;
     83      1.19     lukem 
     84      1.25  christos 	if (term_init(el) == -1) {
     85      1.36  christos 		el_free(el->el_prog);
     86      1.25  christos 		el_free(el);
     87      1.25  christos 		return NULL;
     88      1.25  christos 	}
     89      1.19     lukem 	(void) key_init(el);
     90      1.19     lukem 	(void) map_init(el);
     91      1.19     lukem 	if (tty_init(el) == -1)
     92      1.19     lukem 		el->el_flags |= NO_TTY;
     93      1.19     lukem 	(void) ch_init(el);
     94      1.19     lukem 	(void) search_init(el);
     95      1.19     lukem 	(void) hist_init(el);
     96      1.19     lukem 	(void) prompt_init(el);
     97      1.19     lukem 	(void) sig_init(el);
     98      1.23  christos 	(void) read_init(el);
     99       1.1       cgd 
    100      1.19     lukem 	return (el);
    101      1.19     lukem }
    102       1.1       cgd 
    103       1.1       cgd 
    104       1.1       cgd /* el_end():
    105       1.1       cgd  *	Clean up.
    106       1.1       cgd  */
    107       1.1       cgd public void
    108      1.19     lukem el_end(EditLine *el)
    109       1.1       cgd {
    110       1.1       cgd 
    111      1.19     lukem 	if (el == NULL)
    112      1.19     lukem 		return;
    113       1.1       cgd 
    114      1.19     lukem 	el_reset(el);
    115      1.19     lukem 
    116      1.19     lukem 	term_end(el);
    117      1.19     lukem 	key_end(el);
    118      1.19     lukem 	map_end(el);
    119      1.19     lukem 	tty_end(el);
    120      1.19     lukem 	ch_end(el);
    121      1.19     lukem 	search_end(el);
    122      1.19     lukem 	hist_end(el);
    123      1.19     lukem 	prompt_end(el);
    124      1.19     lukem 	sig_end(el);
    125      1.19     lukem 
    126      1.19     lukem 	el_free((ptr_t) el->el_prog);
    127      1.19     lukem 	el_free((ptr_t) el);
    128      1.19     lukem }
    129       1.1       cgd 
    130       1.1       cgd 
    131       1.1       cgd /* el_reset():
    132       1.1       cgd  *	Reset the tty and the parser
    133       1.1       cgd  */
    134       1.1       cgd public void
    135      1.19     lukem el_reset(EditLine *el)
    136       1.1       cgd {
    137      1.19     lukem 
    138      1.19     lukem 	tty_cookedmode(el);
    139      1.40  christos 	ch_reset(el, 0);		/* XXX: Do we want that? */
    140       1.1       cgd }
    141       1.1       cgd 
    142       1.1       cgd 
    143       1.1       cgd /* el_set():
    144       1.1       cgd  *	set the editline parameters
    145       1.1       cgd  */
    146       1.1       cgd public int
    147       1.1       cgd el_set(EditLine *el, int op, ...)
    148       1.1       cgd {
    149      1.44  christos 	va_list ap;
    150      1.27  christos 	int rv = 0;
    151       1.1       cgd 
    152      1.19     lukem 	if (el == NULL)
    153      1.19     lukem 		return (-1);
    154      1.44  christos 	va_start(ap, op);
    155      1.22       wiz 
    156      1.19     lukem 	switch (op) {
    157      1.19     lukem 	case EL_PROMPT:
    158  1.47.2.1       jym 	case EL_RPROMPT: {
    159  1.47.2.1       jym 		el_pfunc_t p = va_arg(ap, el_pfunc_t);
    160  1.47.2.1       jym 
    161  1.47.2.1       jym 		rv = prompt_set(el, p, 0, op);
    162  1.47.2.1       jym 		break;
    163  1.47.2.1       jym 	}
    164  1.47.2.1       jym 
    165  1.47.2.1       jym 	case EL_PROMPT_ESC:
    166  1.47.2.1       jym 	case EL_RPROMPT_ESC: {
    167  1.47.2.1       jym 		el_pfunc_t p = va_arg(ap, el_pfunc_t);
    168  1.47.2.1       jym 		char c = va_arg(ap, int);
    169  1.47.2.1       jym 
    170  1.47.2.1       jym 		rv = prompt_set(el, p, c, op);
    171      1.19     lukem 		break;
    172  1.47.2.1       jym 	}
    173      1.13    simonb 
    174      1.19     lukem 	case EL_TERMINAL:
    175      1.44  christos 		rv = term_set(el, va_arg(ap, char *));
    176      1.19     lukem 		break;
    177       1.1       cgd 
    178      1.19     lukem 	case EL_EDITOR:
    179      1.44  christos 		rv = map_set_editor(el, va_arg(ap, char *));
    180       1.1       cgd 		break;
    181       1.1       cgd 
    182      1.19     lukem 	case EL_SIGNAL:
    183      1.44  christos 		if (va_arg(ap, int))
    184      1.19     lukem 			el->el_flags |= HANDLE_SIGNALS;
    185      1.19     lukem 		else
    186      1.19     lukem 			el->el_flags &= ~HANDLE_SIGNALS;
    187       1.1       cgd 		break;
    188       1.1       cgd 
    189      1.19     lukem 	case EL_BIND:
    190      1.19     lukem 	case EL_TELLTC:
    191      1.19     lukem 	case EL_SETTC:
    192      1.42  christos 	case EL_GETTC:
    193      1.19     lukem 	case EL_ECHOTC:
    194      1.19     lukem 	case EL_SETTY:
    195      1.19     lukem 	{
    196      1.29  christos 		const char *argv[20];
    197      1.19     lukem 		int i;
    198      1.19     lukem 
    199      1.19     lukem 		for (i = 1; i < 20; i++)
    200      1.44  christos 			if ((argv[i] = va_arg(ap, char *)) == NULL)
    201      1.19     lukem 				break;
    202      1.19     lukem 
    203      1.19     lukem 		switch (op) {
    204      1.19     lukem 		case EL_BIND:
    205      1.19     lukem 			argv[0] = "bind";
    206      1.19     lukem 			rv = map_bind(el, i, argv);
    207      1.19     lukem 			break;
    208      1.19     lukem 
    209      1.19     lukem 		case EL_TELLTC:
    210      1.19     lukem 			argv[0] = "telltc";
    211      1.19     lukem 			rv = term_telltc(el, i, argv);
    212      1.19     lukem 			break;
    213      1.19     lukem 
    214      1.19     lukem 		case EL_SETTC:
    215      1.19     lukem 			argv[0] = "settc";
    216      1.19     lukem 			rv = term_settc(el, i, argv);
    217      1.19     lukem 			break;
    218      1.19     lukem 
    219      1.19     lukem 		case EL_ECHOTC:
    220      1.19     lukem 			argv[0] = "echotc";
    221      1.19     lukem 			rv = term_echotc(el, i, argv);
    222      1.19     lukem 			break;
    223      1.19     lukem 
    224      1.19     lukem 		case EL_SETTY:
    225      1.19     lukem 			argv[0] = "setty";
    226      1.19     lukem 			rv = tty_stty(el, i, argv);
    227      1.19     lukem 			break;
    228      1.19     lukem 
    229      1.19     lukem 		default:
    230      1.19     lukem 			rv = -1;
    231      1.20  christos 			EL_ABORT((el->el_errfile, "Bad op %d\n", op));
    232      1.19     lukem 			break;
    233      1.19     lukem 		}
    234       1.1       cgd 		break;
    235      1.19     lukem 	}
    236      1.19     lukem 
    237      1.19     lukem 	case EL_ADDFN:
    238      1.19     lukem 	{
    239      1.44  christos 		char *name = va_arg(ap, char *);
    240      1.44  christos 		char *help = va_arg(ap, char *);
    241      1.44  christos 		el_func_t func = va_arg(ap, el_func_t);
    242       1.1       cgd 
    243      1.19     lukem 		rv = map_addfunc(el, name, help, func);
    244       1.1       cgd 		break;
    245      1.19     lukem 	}
    246      1.19     lukem 
    247      1.19     lukem 	case EL_HIST:
    248      1.19     lukem 	{
    249      1.44  christos 		hist_fun_t func = va_arg(ap, hist_fun_t);
    250      1.44  christos 		ptr_t ptr = va_arg(ap, char *);
    251       1.1       cgd 
    252      1.19     lukem 		rv = hist_set(el, func, ptr);
    253       1.1       cgd 		break;
    254      1.19     lukem 	}
    255       1.1       cgd 
    256      1.19     lukem 	case EL_EDITMODE:
    257      1.44  christos 		if (va_arg(ap, int))
    258      1.19     lukem 			el->el_flags &= ~EDIT_DISABLED;
    259      1.19     lukem 		else
    260      1.19     lukem 			el->el_flags |= EDIT_DISABLED;
    261      1.19     lukem 		rv = 0;
    262       1.1       cgd 		break;
    263      1.13    simonb 
    264      1.23  christos 	case EL_GETCFN:
    265      1.23  christos 	{
    266      1.44  christos 		el_rfunc_t rc = va_arg(ap, el_rfunc_t);
    267      1.23  christos 		rv = el_read_setfn(el, rc);
    268      1.23  christos 		break;
    269      1.23  christos 	}
    270      1.23  christos 
    271      1.24  christos 	case EL_CLIENTDATA:
    272      1.44  christos 		el->el_data = va_arg(ap, void *);
    273      1.24  christos 		break;
    274      1.24  christos 
    275      1.34  christos 	case EL_UNBUFFERED:
    276      1.44  christos 		rv = va_arg(ap, int);
    277      1.34  christos 		if (rv && !(el->el_flags & UNBUFFERED)) {
    278      1.34  christos 			el->el_flags |= UNBUFFERED;
    279      1.34  christos 			read_prepare(el);
    280      1.34  christos 		} else if (!rv && (el->el_flags & UNBUFFERED)) {
    281      1.34  christos 			el->el_flags &= ~UNBUFFERED;
    282      1.34  christos 			read_finish(el);
    283      1.34  christos 		}
    284      1.35  christos 		rv = 0;
    285      1.35  christos 		break;
    286      1.35  christos 
    287      1.35  christos 	case EL_PREP_TERM:
    288      1.44  christos 		rv = va_arg(ap, int);
    289      1.35  christos 		if (rv)
    290      1.38  christos 			(void) tty_rawmode(el);
    291      1.35  christos 		else
    292      1.38  christos 			(void) tty_cookedmode(el);
    293      1.34  christos 		rv = 0;
    294      1.34  christos 		break;
    295      1.34  christos 
    296      1.44  christos 	case EL_SETFP:
    297      1.44  christos 	{
    298      1.44  christos 		FILE *fp;
    299      1.44  christos 		int what;
    300      1.44  christos 
    301      1.44  christos 		what = va_arg(ap, int);
    302      1.44  christos 		fp = va_arg(ap, FILE *);
    303      1.44  christos 
    304      1.44  christos 		rv = 0;
    305      1.44  christos 		switch (what) {
    306      1.44  christos 		case 0:
    307      1.44  christos 			el->el_infile = fp;
    308      1.44  christos 			el->el_infd = fileno(fp);
    309      1.44  christos 			break;
    310      1.44  christos 		case 1:
    311      1.44  christos 			el->el_outfile = fp;
    312      1.44  christos 			break;
    313      1.44  christos 		case 2:
    314      1.44  christos 			el->el_errfile = fp;
    315      1.44  christos 			break;
    316      1.44  christos 		default:
    317      1.44  christos 			rv = -1;
    318      1.44  christos 			break;
    319      1.44  christos 		}
    320      1.44  christos 		break;
    321      1.44  christos 	}
    322      1.44  christos 
    323      1.45  christos 	case EL_REFRESH:
    324      1.45  christos 		re_clear_display(el);
    325      1.45  christos 		re_refresh(el);
    326      1.46  christos 		term__flush(el);
    327      1.45  christos 		break;
    328      1.45  christos 
    329      1.19     lukem 	default:
    330      1.19     lukem 		rv = -1;
    331      1.27  christos 		break;
    332       1.1       cgd 	}
    333       1.1       cgd 
    334      1.44  christos 	va_end(ap);
    335      1.19     lukem 	return (rv);
    336      1.19     lukem }
    337       1.1       cgd 
    338       1.1       cgd 
    339      1.10     lukem /* el_get():
    340      1.10     lukem  *	retrieve the editline parameters
    341      1.10     lukem  */
    342      1.10     lukem public int
    343      1.42  christos el_get(EditLine *el, int op, ...)
    344      1.10     lukem {
    345      1.42  christos 	va_list ap;
    346      1.19     lukem 	int rv;
    347      1.10     lukem 
    348      1.42  christos 	if (el == NULL)
    349      1.42  christos 		return -1;
    350      1.42  christos 
    351      1.42  christos 	va_start(ap, op);
    352      1.42  christos 
    353      1.19     lukem 	switch (op) {
    354      1.19     lukem 	case EL_PROMPT:
    355  1.47.2.1       jym 	case EL_RPROMPT: {
    356  1.47.2.1       jym 		el_pfunc_t *p = va_arg(ap, el_pfunc_t *);
    357  1.47.2.1       jym 		char *c = va_arg(ap, char *);
    358  1.47.2.1       jym 
    359  1.47.2.1       jym 		rv = prompt_get(el, p, c, op);
    360      1.19     lukem 		break;
    361  1.47.2.1       jym 	}
    362      1.10     lukem 
    363      1.19     lukem 	case EL_EDITOR:
    364      1.42  christos 		rv = map_get_editor(el, va_arg(ap, const char **));
    365      1.10     lukem 		break;
    366      1.10     lukem 
    367      1.19     lukem 	case EL_SIGNAL:
    368      1.42  christos 		*va_arg(ap, int *) = (el->el_flags & HANDLE_SIGNALS);
    369      1.19     lukem 		rv = 0;
    370      1.10     lukem 		break;
    371      1.10     lukem 
    372      1.19     lukem 	case EL_EDITMODE:
    373      1.42  christos 		*va_arg(ap, int *) = !(el->el_flags & EDIT_DISABLED);
    374      1.19     lukem 		rv = 0;
    375      1.10     lukem 		break;
    376      1.10     lukem 
    377      1.19     lukem 	case EL_TERMINAL:
    378      1.42  christos 		term_get(el, va_arg(ap, const char **));
    379      1.33  christos 		rv = 0;
    380      1.10     lukem 		break;
    381      1.10     lukem 
    382      1.42  christos 	case EL_GETTC:
    383      1.19     lukem 	{
    384      1.42  christos 		static char name[] = "gettc";
    385      1.42  christos 		char *argv[20];
    386      1.19     lukem 		int i;
    387      1.10     lukem 
    388      1.47     lukem  		for (i = 1; i < (int)(sizeof(argv) / sizeof(argv[0])); i++)
    389      1.42  christos 			if ((argv[i] = va_arg(ap, char *)) == NULL)
    390      1.19     lukem 				break;
    391      1.19     lukem 
    392      1.19     lukem 		switch (op) {
    393      1.42  christos 		case EL_GETTC:
    394      1.42  christos 			argv[0] = name;
    395      1.42  christos 			rv = term_gettc(el, i, argv);
    396      1.19     lukem 			break;
    397      1.19     lukem 
    398      1.19     lukem 		default:
    399      1.19     lukem 			rv = -1;
    400      1.43     freza 			EL_ABORT((el->el_errfile, "Bad op %d\n", op));
    401      1.19     lukem 			break;
    402      1.19     lukem 		}
    403      1.10     lukem 		break;
    404      1.10     lukem 	}
    405      1.13    simonb 
    406      1.42  christos #if 0 /* XXX */
    407      1.19     lukem 	case EL_ADDFN:
    408      1.10     lukem 	{
    409      1.44  christos 		char *name = va_arg(ap, char *);
    410      1.44  christos 		char *help = va_arg(ap, char *);
    411      1.44  christos 		el_func_t func = va_arg(ap, el_func_t);
    412      1.19     lukem 
    413      1.19     lukem 		rv = map_addfunc(el, name, help, func);
    414      1.19     lukem 		break;
    415      1.10     lukem 	}
    416      1.10     lukem 
    417      1.19     lukem 	case EL_HIST:
    418      1.19     lukem 		{
    419      1.44  christos 			hist_fun_t func = va_arg(ap, hist_fun_t);
    420      1.44  christos 			ptr_t ptr = va_arg(ap, char *);
    421      1.19     lukem 			rv = hist_set(el, func, ptr);
    422      1.19     lukem 		}
    423      1.19     lukem 		break;
    424      1.19     lukem #endif /* XXX */
    425      1.23  christos 
    426      1.23  christos 	case EL_GETCFN:
    427      1.42  christos 		*va_arg(ap, el_rfunc_t *) = el_read_getfn(el);
    428      1.24  christos 		rv = 0;
    429      1.24  christos 		break;
    430      1.24  christos 
    431      1.24  christos 	case EL_CLIENTDATA:
    432      1.42  christos 		*va_arg(ap, void **) = el->el_data;
    433      1.34  christos 		rv = 0;
    434      1.34  christos 		break;
    435      1.34  christos 
    436      1.34  christos 	case EL_UNBUFFERED:
    437      1.42  christos 		*va_arg(ap, int *) = (!(el->el_flags & UNBUFFERED));
    438      1.23  christos 		rv = 0;
    439      1.23  christos 		break;
    440      1.19     lukem 
    441      1.44  christos 	case EL_GETFP:
    442      1.44  christos 	{
    443      1.44  christos 		int what;
    444      1.44  christos 		FILE **fpp;
    445      1.44  christos 
    446      1.44  christos 		what = va_arg(ap, int);
    447      1.44  christos 		fpp = va_arg(ap, FILE **);
    448      1.44  christos 		rv = 0;
    449      1.44  christos 		switch (what) {
    450      1.44  christos 		case 0:
    451      1.44  christos 			*fpp = el->el_infile;
    452      1.44  christos 			break;
    453      1.44  christos 		case 1:
    454      1.44  christos 			*fpp = el->el_outfile;
    455      1.44  christos 			break;
    456      1.44  christos 		case 2:
    457      1.44  christos 			*fpp = el->el_errfile;
    458      1.44  christos 			break;
    459      1.44  christos 		default:
    460      1.44  christos 			rv = -1;
    461      1.44  christos 			break;
    462      1.44  christos 		}
    463      1.44  christos 		break;
    464      1.44  christos 	}
    465      1.19     lukem 	default:
    466      1.19     lukem 		rv = -1;
    467      1.44  christos 		break;
    468      1.19     lukem 	}
    469      1.42  christos 	va_end(ap);
    470      1.10     lukem 
    471      1.19     lukem 	return (rv);
    472      1.19     lukem }
    473      1.10     lukem 
    474      1.10     lukem 
    475       1.1       cgd /* el_line():
    476       1.1       cgd  *	Return editing info
    477       1.1       cgd  */
    478       1.1       cgd public const LineInfo *
    479      1.19     lukem el_line(EditLine *el)
    480       1.1       cgd {
    481      1.19     lukem 
    482      1.19     lukem 	return (const LineInfo *) (void *) &el->el_line;
    483       1.1       cgd }
    484       1.1       cgd 
    485       1.1       cgd 
    486       1.1       cgd /* el_source():
    487       1.1       cgd  *	Source a file
    488       1.1       cgd  */
    489       1.1       cgd public int
    490      1.19     lukem el_source(EditLine *el, const char *fname)
    491       1.1       cgd {
    492      1.19     lukem 	FILE *fp;
    493      1.19     lukem 	size_t len;
    494      1.27  christos 	char *ptr;
    495      1.19     lukem 
    496      1.19     lukem 	fp = NULL;
    497      1.19     lukem 	if (fname == NULL) {
    498      1.29  christos #ifdef HAVE_ISSETUGID
    499      1.27  christos 		static const char elpath[] = "/.editrc";
    500      1.27  christos 		char path[MAXPATHLEN];
    501      1.27  christos 
    502      1.19     lukem 		if (issetugid())
    503      1.19     lukem 			return (-1);
    504      1.19     lukem 		if ((ptr = getenv("HOME")) == NULL)
    505      1.19     lukem 			return (-1);
    506      1.19     lukem 		if (strlcpy(path, ptr, sizeof(path)) >= sizeof(path))
    507      1.19     lukem 			return (-1);
    508      1.19     lukem 		if (strlcat(path, elpath, sizeof(path)) >= sizeof(path))
    509      1.19     lukem 			return (-1);
    510      1.19     lukem 		fname = path;
    511      1.27  christos #else
    512      1.27  christos 		/*
    513      1.27  christos 		 * If issetugid() is missing, always return an error, in order
    514      1.27  christos 		 * to keep from inadvertently opening up the user to a security
    515      1.27  christos 		 * hole.
    516      1.27  christos 		 */
    517      1.27  christos 		return (-1);
    518      1.27  christos #endif
    519      1.19     lukem 	}
    520      1.19     lukem 	if (fp == NULL)
    521      1.19     lukem 		fp = fopen(fname, "r");
    522      1.19     lukem 	if (fp == NULL)
    523      1.19     lukem 		return (-1);
    524      1.19     lukem 
    525      1.19     lukem 	while ((ptr = fgetln(fp, &len)) != NULL) {
    526      1.19     lukem 		if (len > 0 && ptr[len - 1] == '\n')
    527      1.19     lukem 			--len;
    528      1.19     lukem 		ptr[len] = '\0';
    529      1.19     lukem 		if (parse_line(el, ptr) == -1) {
    530      1.19     lukem 			(void) fclose(fp);
    531      1.19     lukem 			return (-1);
    532      1.19     lukem 		}
    533       1.1       cgd 	}
    534       1.1       cgd 
    535      1.19     lukem 	(void) fclose(fp);
    536      1.19     lukem 	return (0);
    537       1.1       cgd }
    538       1.1       cgd 
    539       1.1       cgd 
    540       1.1       cgd /* el_resize():
    541       1.1       cgd  *	Called from program when terminal is resized
    542       1.1       cgd  */
    543       1.1       cgd public void
    544      1.19     lukem el_resize(EditLine *el)
    545       1.1       cgd {
    546      1.19     lukem 	int lins, cols;
    547      1.19     lukem 	sigset_t oset, nset;
    548      1.19     lukem 
    549      1.19     lukem 	(void) sigemptyset(&nset);
    550      1.19     lukem 	(void) sigaddset(&nset, SIGWINCH);
    551      1.19     lukem 	(void) sigprocmask(SIG_BLOCK, &nset, &oset);
    552      1.19     lukem 
    553      1.19     lukem 	/* get the correct window size */
    554      1.19     lukem 	if (term_get_size(el, &lins, &cols))
    555      1.19     lukem 		term_change_size(el, lins, cols);
    556       1.1       cgd 
    557      1.19     lukem 	(void) sigprocmask(SIG_SETMASK, &oset, NULL);
    558       1.9  christos }
    559      1.14     lukem 
    560       1.9  christos 
    561       1.9  christos /* el_beep():
    562       1.9  christos  *	Called from the program to beep
    563       1.9  christos  */
    564       1.9  christos public void
    565      1.19     lukem el_beep(EditLine *el)
    566       1.9  christos {
    567      1.19     lukem 
    568      1.19     lukem 	term_beep(el);
    569       1.1       cgd }
    570      1.10     lukem 
    571      1.10     lukem 
    572      1.10     lukem /* el_editmode()
    573      1.10     lukem  *	Set the state of EDIT_DISABLED from the `edit' command.
    574      1.10     lukem  */
    575      1.10     lukem protected int
    576      1.10     lukem /*ARGSUSED*/
    577      1.29  christos el_editmode(EditLine *el, int argc, const char **argv)
    578      1.10     lukem {
    579      1.19     lukem 	const char *how;
    580      1.10     lukem 
    581      1.19     lukem 	if (argv == NULL || argc != 2 || argv[1] == NULL)
    582      1.19     lukem 		return (-1);
    583      1.10     lukem 
    584      1.19     lukem 	how = argv[1];
    585      1.39  christos 	if (strcmp(how, "on") == 0) {
    586      1.19     lukem 		el->el_flags &= ~EDIT_DISABLED;
    587      1.39  christos 		tty_rawmode(el);
    588      1.39  christos 	} else if (strcmp(how, "off") == 0) {
    589      1.39  christos 		tty_cookedmode(el);
    590      1.19     lukem 		el->el_flags |= EDIT_DISABLED;
    591      1.39  christos 	}
    592      1.19     lukem 	else {
    593      1.19     lukem 		(void) fprintf(el->el_errfile, "edit: Bad value `%s'.\n", how);
    594      1.19     lukem 		return (-1);
    595      1.19     lukem 	}
    596      1.19     lukem 	return (0);
    597      1.19     lukem }
    598