Home | History | Annotate | Line # | Download | only in libedit
      1 /*	$NetBSD: histedit.h,v 1.64 2025/12/16 02:40:48 kre Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1992, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * Christos Zoulas of Cornell University.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. Neither the name of the University nor the names of its contributors
     19  *    may be used to endorse or promote products derived from this software
     20  *    without specific prior written permission.
     21  *
     22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32  * SUCH DAMAGE.
     33  *
     34  *	@(#)histedit.h	8.2 (Berkeley) 1/3/94
     35  */
     36 
     37 /*
     38  * histedit.h: Line editor and history interface.
     39  */
     40 #ifndef _HISTEDIT_H_
     41 #define	_HISTEDIT_H_
     42 
     43 #define	LIBEDIT_MAJOR 2
     44 #define	LIBEDIT_MINOR 11
     45 
     46 #include <sys/types.h>
     47 #include <stdio.h>
     48 
     49 #ifdef __cplusplus
     50 extern "C" {
     51 #endif
     52 
     53 /*
     54  * ==== Editing ====
     55  */
     56 
     57 typedef struct editline EditLine;
     58 
     59 /*
     60  * For user-defined function interface
     61  */
     62 typedef struct lineinfo {
     63 	const char	*buffer;
     64 	const char	*cursor;
     65 	const char	*lastchar;
     66 } LineInfo;
     67 
     68 /*
     69  * EditLine editor function return codes.
     70  * For user-defined function interface
     71  */
     72 #define	CC_NORM		0
     73 #define	CC_NEWLINE	1
     74 #define	CC_EOF		2
     75 #define	CC_ARGHACK	3
     76 #define	CC_REFRESH	4
     77 #define	CC_CURSOR	5
     78 #define	CC_ERROR	6
     79 #define	CC_FATAL	7
     80 #define	CC_REDISPLAY	8
     81 #define	CC_REFRESH_BEEP	9
     82 
     83 /*
     84  * Initialization, cleanup, and resetting
     85  */
     86 EditLine	*el_init(const char *, FILE *, FILE *, FILE *);
     87 EditLine	*el_init_fd(const char *, FILE *, FILE *, FILE *,
     88     int, int, int);
     89 void		 el_end(EditLine *);
     90 void		 el_reset(EditLine *);
     91 
     92 /*
     93  * Get a line, a character or push a string back in the input queue
     94  */
     95 const char	*el_gets(EditLine *, int *);
     96 int		 el_getc(EditLine *, char *);
     97 void		 el_push(EditLine *, const char *);
     98 
     99 /*
    100  * Beep!
    101  */
    102 void		 el_beep(EditLine *);
    103 
    104 /*
    105  * High level function internals control
    106  * Parses argc, argv array and executes builtin editline commands
    107  */
    108 int		 el_parse(EditLine *, int, const char **);
    109 
    110 /*
    111  * Low level editline access functions
    112  */
    113 int		 el_set(EditLine *, int, ...);
    114 int		 el_get(EditLine *, int, ...);
    115 unsigned char	_el_fn_complete(EditLine *, int);
    116 unsigned char	_el_fn_sh_complete(EditLine *, int);
    117 
    118 /*
    119  * el_set/el_get parameters
    120  *
    121  * When using el_wset/el_wget (as opposed to el_set/el_get):
    122  *   Char is wchar_t, otherwise it is char.
    123  *   prompt_func is el_wpfunc_t, otherwise it is el_pfunc_t .
    124 
    125  * Prompt function prototypes are:
    126  *   typedef char    *(*el_pfunct_t)  (EditLine *);
    127  *   typedef wchar_t *(*el_wpfunct_t) (EditLine *);
    128  *
    129  * For operations that support set or set/get, the argument types listed are for
    130  * the "set" operation. For "get", each listed type must be a pointer.
    131  * E.g. EL_EDITMODE takes an int when set, but an int* when get.
    132  *
    133  * Operations that only support "get" have the correct argument types listed.
    134  */
    135 #define	EL_PROMPT	0	/* , prompt_func);		      set/get */
    136 #define	EL_TERMINAL	1	/* , const char *);		      set/get */
    137 #define	EL_EDITOR	2	/* , const Char *);		      set/get */
    138 #define	EL_SIGNAL	3	/* , int);			      set/get */
    139 #define	EL_BIND		4	/* , const Char *, ..., NULL);	      set     */
    140 #define	EL_TELLTC	5	/* , const Char *, ..., NULL);	      set     */
    141 #define	EL_SETTC	6	/* , const Char *, ..., NULL);	      set     */
    142 #define	EL_ECHOTC	7	/* , const Char *, ..., NULL);        set     */
    143 #define	EL_SETTY	8	/* , const Char *, ..., NULL);        set     */
    144 #define	EL_ADDFN	9	/* , const Char *, const Char,        set     */
    145 				/*   el_func_t);			      */
    146 #define	EL_HIST		10	/* , hist_fun_t, const void *);	      set     */
    147 #define	EL_EDITMODE	11	/* , int);			      set/get */
    148 #define	EL_RPROMPT	12	/* , prompt_func);		      set/get */
    149 #define	EL_GETCFN	13	/* , el_rfunc_t);		      set/get */
    150 #define	EL_CLIENTDATA	14	/* , void *);			      set/get */
    151 #define	EL_UNBUFFERED	15	/* , int);			      set/get */
    152 #define	EL_PREP_TERM	16	/* , int);			      set     */
    153 #define	EL_GETTC	17	/* , const Char *, ..., NULL);		  get */
    154 #define	EL_GETFP	18	/* , int, FILE **);		          get */
    155 #define	EL_SETFP	19	/* , int, FILE *);		      set     */
    156 #define	EL_REFRESH	20	/* , void);			      set     */
    157 #define	EL_PROMPT_ESC	21	/* , prompt_func, Char);	      set/get */
    158 #define	EL_RPROMPT_ESC	22	/* , prompt_func, Char);	      set/get */
    159 #define	EL_RESIZE	23	/* , el_zfunc_t, void *);	      set     */
    160 #define	EL_ALIAS_TEXT	24	/* , el_afunc_t, void *);	      set     */
    161 #define	EL_SAFEREAD	25	/* , int);			      set/get */
    162 #define	EL_WORDCHARS	26	/* , const Char *);		      set/get */
    163 #define	EL_GETENV	27	/* , char *(*func)(const char *);     set/get */
    164 
    165 #define	EL_BUILTIN_GETCFN	(NULL)
    166 
    167 /*
    168  * Source named file or $PWD/.editrc or $HOME/.editrc
    169  */
    170 int		el_source(EditLine *, const char *);
    171 
    172 /*
    173  * Must be called when the terminal changes size; If EL_SIGNAL
    174  * is set this is done automatically otherwise it is the responsibility
    175  * of the application
    176  */
    177 void		 el_resize(EditLine *);
    178 
    179 /*
    180  * User-defined function interface.
    181  */
    182 const LineInfo	*el_line(EditLine *);
    183 int		 el_insertstr(EditLine *, const char *);
    184 void		 el_deletestr(EditLine *, int);
    185 int		 el_replacestr(EditLine *, const char *);
    186 int		 el_deletestr1(EditLine *, int, int);
    187 
    188 /*
    189  * ==== History ====
    190  */
    191 
    192 typedef struct history History;
    193 
    194 typedef struct HistEvent {
    195 	int		 num;
    196 	const char	*str;
    197 } HistEvent;
    198 
    199 /*
    200  * History access functions.
    201  */
    202 History *	history_init(void);
    203 void		history_end(History *);
    204 
    205 int		history(History *, HistEvent *, int, ...);
    206 
    207 #define	H_FUNC		 0	/* , UTSL		*/
    208 #define	H_SETSIZE	 1	/* , const int);	*/
    209 #define	H_GETSIZE	 2	/* , void);		*/
    210 #define	H_FIRST		 3	/* , void);		*/
    211 #define	H_LAST		 4	/* , void);		*/
    212 #define	H_PREV		 5	/* , void);		*/
    213 #define	H_NEXT		 6	/* , void);		*/
    214 #define	H_CURR		 8	/* , const int);	*/
    215 #define	H_SET		 7	/* , int);		*/
    216 #define	H_ADD		 9	/* , const wchar_t *);	*/
    217 #define	H_ENTER		10	/* , const wchar_t *);	*/
    218 #define	H_APPEND	11	/* , const wchar_t *);	*/
    219 #define	H_END		12	/* , void);		*/
    220 #define	H_NEXT_STR	13	/* , const wchar_t *);	*/
    221 #define	H_PREV_STR	14	/* , const wchar_t *);	*/
    222 #define	H_NEXT_EVENT	15	/* , const int);	*/
    223 #define	H_PREV_EVENT	16	/* , const int);	*/
    224 #define	H_LOAD		17	/* , const char *);	*/
    225 #define	H_SAVE		18	/* , const char *);	*/
    226 #define	H_CLEAR		19	/* , void);		*/
    227 #define	H_SETUNIQUE	20	/* , int);		*/
    228 #define	H_GETUNIQUE	21	/* , void);		*/
    229 #define	H_DEL		22	/* , int);		*/
    230 #define	H_NEXT_EVDATA	23	/* , const int, histdata_t *);	*/
    231 #define	H_DELDATA	24	/* , int, histdata_t *);*/
    232 #define	H_REPLACE	25	/* , const char *, histdata_t);	*/
    233 #define	H_SAVE_FP	26	/* , FILE *);		*/
    234 #define	H_NSAVE_FP	27	/* , size_t, FILE *);	*/
    235 
    236 
    237 
    238 /*
    239  * ==== Tokenization ====
    240  */
    241 
    242 typedef struct tokenizer Tokenizer;
    243 
    244 /*
    245  * String tokenization functions, using simplified sh(1) quoting rules
    246  */
    247 Tokenizer	*tok_init(const char *);
    248 void		 tok_end(Tokenizer *);
    249 void		 tok_reset(Tokenizer *);
    250 int		 tok_line(Tokenizer *, const LineInfo *,
    251 		    int *, const char ***, int *, int *);
    252 int		 tok_str(Tokenizer *, const char *,
    253 		    int *, const char ***);
    254 
    255 /*
    256  * Begin Wide Character Support
    257  */
    258 #include <wchar.h>
    259 #include <wctype.h>
    260 
    261 /*
    262  * ==== Editing ====
    263  */
    264 typedef struct lineinfow {
    265 	const wchar_t	*buffer;
    266 	const wchar_t	*cursor;
    267 	const wchar_t	*lastchar;
    268 } LineInfoW;
    269 
    270 typedef int	(*el_rfunc_t)(EditLine *, wchar_t *);
    271 
    272 const wchar_t	*el_wgets(EditLine *, int *);
    273 int		 el_wgetc(EditLine *, wchar_t *);
    274 void		 el_wpush(EditLine *, const wchar_t *);
    275 
    276 int		 el_wparse(EditLine *, int, const wchar_t **);
    277 
    278 int		 el_wset(EditLine *, int, ...);
    279 int		 el_wget(EditLine *, int, ...);
    280 
    281 int		 el_cursor(EditLine *, int);
    282 const LineInfoW	*el_wline(EditLine *);
    283 int		 el_winsertstr(EditLine *, const wchar_t *);
    284 #define          el_wdeletestr  el_deletestr
    285 int		 el_wreplacestr(EditLine *, const wchar_t *);
    286 
    287 /*
    288  * ==== History ====
    289  */
    290 typedef struct histeventW {
    291 	int		 num;
    292 	const wchar_t	*str;
    293 } HistEventW;
    294 
    295 typedef struct historyW HistoryW;
    296 
    297 HistoryW *	history_winit(void);
    298 void		history_wend(HistoryW *);
    299 
    300 int		history_w(HistoryW *, HistEventW *, int, ...);
    301 
    302 /*
    303  * ==== Tokenization ====
    304  */
    305 typedef struct tokenizerW TokenizerW;
    306 
    307 /* Wide character tokenizer support */
    308 TokenizerW	*tok_winit(const wchar_t *);
    309 void		 tok_wend(TokenizerW *);
    310 void		 tok_wreset(TokenizerW *);
    311 int		 tok_wline(TokenizerW *, const LineInfoW *,
    312 		    int *, const wchar_t ***, int *, int *);
    313 int		 tok_wstr(TokenizerW *, const wchar_t *,
    314 		    int *, const wchar_t ***);
    315 
    316 #ifdef __cplusplus
    317 }
    318 #endif
    319 
    320 #endif /* _HISTEDIT_H_ */
    321