/* $NetBSD: histedit.h,v 1.62 2023/02/03 22:01:42 christos Exp $ */12/*-3* Copyright (c) 1992, 19934* The Regents of the University of California. All rights reserved.5*6* This code is derived from software contributed to Berkeley by7* Christos Zoulas of Cornell University.8*9* Redistribution and use in source and binary forms, with or without10* modification, are permitted provided that the following conditions11* are met:12* 1. Redistributions of source code must retain the above copyright13* notice, this list of conditions and the following disclaimer.14* 2. Redistributions in binary form must reproduce the above copyright15* notice, this list of conditions and the following disclaimer in the16* documentation and/or other materials provided with the distribution.17* 3. Neither the name of the University nor the names of its contributors18* may be used to endorse or promote products derived from this software19* without specific prior written permission.20*21* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND22* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE23* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE24* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE25* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL26* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS27* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)28* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT29* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY30* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF31* SUCH DAMAGE.32*33* @(#)histedit.h 8.2 (Berkeley) 1/3/9434*/3536/*37* histedit.h: Line editor and history interface.38*/39#ifndef _HISTEDIT_H_40#define _HISTEDIT_H_4142#define LIBEDIT_MAJOR 243#define LIBEDIT_MINOR 114445#include <sys/types.h>46#include <stdio.h>4748#ifdef __cplusplus49extern "C" {50#endif5152/*53* ==== Editing ====54*/5556typedef struct editline EditLine;5758/*59* For user-defined function interface60*/61typedef struct lineinfo {62const char *buffer;63const char *cursor;64const char *lastchar;65} LineInfo;6667/*68* EditLine editor function return codes.69* For user-defined function interface70*/71#define CC_NORM 072#define CC_NEWLINE 173#define CC_EOF 274#define CC_ARGHACK 375#define CC_REFRESH 476#define CC_CURSOR 577#define CC_ERROR 678#define CC_FATAL 779#define CC_REDISPLAY 880#define CC_REFRESH_BEEP 98182/*83* Initialization, cleanup, and resetting84*/85EditLine *el_init(const char *, FILE *, FILE *, FILE *);86EditLine *el_init_fd(const char *, FILE *, FILE *, FILE *,87int, int, int);88void el_end(EditLine *);89void el_reset(EditLine *);9091/*92* Get a line, a character or push a string back in the input queue93*/94const char *el_gets(EditLine *, int *);95int el_getc(EditLine *, char *);96void el_push(EditLine *, const char *);9798/*99* Beep!100*/101void el_beep(EditLine *);102103/*104* High level function internals control105* Parses argc, argv array and executes builtin editline commands106*/107int el_parse(EditLine *, int, const char **);108109/*110* Low level editline access functions111*/112int el_set(EditLine *, int, ...);113int el_get(EditLine *, int, ...);114unsigned char _el_fn_complete(EditLine *, int);115unsigned char _el_fn_sh_complete(EditLine *, int);116117/*118* el_set/el_get parameters119*120* When using el_wset/el_wget (as opposed to el_set/el_get):121* Char is wchar_t, otherwise it is char.122* prompt_func is el_wpfunc_t, otherwise it is el_pfunc_t .123124* Prompt function prototypes are:125* typedef char *(*el_pfunct_t) (EditLine *);126* typedef wchar_t *(*el_wpfunct_t) (EditLine *);127*128* For operations that support set or set/get, the argument types listed are for129* the "set" operation. For "get", each listed type must be a pointer.130* E.g. EL_EDITMODE takes an int when set, but an int* when get.131*132* Operations that only support "get" have the correct argument types listed.133*/134#define EL_PROMPT 0 /* , prompt_func); set/get */135#define EL_TERMINAL 1 /* , const char *); set/get */136#define EL_EDITOR 2 /* , const Char *); set/get */137#define EL_SIGNAL 3 /* , int); set/get */138#define EL_BIND 4 /* , const Char *, ..., NULL); set */139#define EL_TELLTC 5 /* , const Char *, ..., NULL); set */140#define EL_SETTC 6 /* , const Char *, ..., NULL); set */141#define EL_ECHOTC 7 /* , const Char *, ..., NULL); set */142#define EL_SETTY 8 /* , const Char *, ..., NULL); set */143#define EL_ADDFN 9 /* , const Char *, const Char, set */144/* el_func_t); */145#define EL_HIST 10 /* , hist_fun_t, const void *); set */146#define EL_EDITMODE 11 /* , int); set/get */147#define EL_RPROMPT 12 /* , prompt_func); set/get */148#define EL_GETCFN 13 /* , el_rfunc_t); set/get */149#define EL_CLIENTDATA 14 /* , void *); set/get */150#define EL_UNBUFFERED 15 /* , int); set/get */151#define EL_PREP_TERM 16 /* , int); set */152#define EL_GETTC 17 /* , const Char *, ..., NULL); get */153#define EL_GETFP 18 /* , int, FILE **); get */154#define EL_SETFP 19 /* , int, FILE *); set */155#define EL_REFRESH 20 /* , void); set */156#define EL_PROMPT_ESC 21 /* , prompt_func, Char); set/get */157#define EL_RPROMPT_ESC 22 /* , prompt_func, Char); set/get */158#define EL_RESIZE 23 /* , el_zfunc_t, void *); set */159#define EL_ALIAS_TEXT 24 /* , el_afunc_t, void *); set */160#define EL_SAFEREAD 25 /* , int); set/get */161162#define EL_BUILTIN_GETCFN (NULL)163164/*165* Source named file or $PWD/.editrc or $HOME/.editrc166*/167int el_source(EditLine *, const char *);168169/*170* Must be called when the terminal changes size; If EL_SIGNAL171* is set this is done automatically otherwise it is the responsibility172* of the application173*/174void el_resize(EditLine *);175176/*177* User-defined function interface.178*/179const LineInfo *el_line(EditLine *);180int el_insertstr(EditLine *, const char *);181void el_deletestr(EditLine *, int);182int el_replacestr(EditLine *, const char *);183int el_deletestr1(EditLine *, int, int);184185/*186* ==== History ====187*/188189typedef struct history History;190191typedef struct HistEvent {192int num;193const char *str;194} HistEvent;195196/*197* History access functions.198*/199History * history_init(void);200void history_end(History *);201202int history(History *, HistEvent *, int, ...);203204#define H_FUNC 0 /* , UTSL */205#define H_SETSIZE 1 /* , const int); */206#define H_GETSIZE 2 /* , void); */207#define H_FIRST 3 /* , void); */208#define H_LAST 4 /* , void); */209#define H_PREV 5 /* , void); */210#define H_NEXT 6 /* , void); */211#define H_CURR 8 /* , const int); */212#define H_SET 7 /* , int); */213#define H_ADD 9 /* , const wchar_t *); */214#define H_ENTER 10 /* , const wchar_t *); */215#define H_APPEND 11 /* , const wchar_t *); */216#define H_END 12 /* , void); */217#define H_NEXT_STR 13 /* , const wchar_t *); */218#define H_PREV_STR 14 /* , const wchar_t *); */219#define H_NEXT_EVENT 15 /* , const int); */220#define H_PREV_EVENT 16 /* , const int); */221#define H_LOAD 17 /* , const char *); */222#define H_SAVE 18 /* , const char *); */223#define H_CLEAR 19 /* , void); */224#define H_SETUNIQUE 20 /* , int); */225#define H_GETUNIQUE 21 /* , void); */226#define H_DEL 22 /* , int); */227#define H_NEXT_EVDATA 23 /* , const int, histdata_t *); */228#define H_DELDATA 24 /* , int, histdata_t *);*/229#define H_REPLACE 25 /* , const char *, histdata_t); */230#define H_SAVE_FP 26 /* , FILE *); */231#define H_NSAVE_FP 27 /* , size_t, FILE *); */232233234235/*236* ==== Tokenization ====237*/238239typedef struct tokenizer Tokenizer;240241/*242* String tokenization functions, using simplified sh(1) quoting rules243*/244Tokenizer *tok_init(const char *);245void tok_end(Tokenizer *);246void tok_reset(Tokenizer *);247int tok_line(Tokenizer *, const LineInfo *,248int *, const char ***, int *, int *);249int tok_str(Tokenizer *, const char *,250int *, const char ***);251252/*253* Begin Wide Character Support254*/255#include <wchar.h>256#include <wctype.h>257258/*259* ==== Editing ====260*/261typedef struct lineinfow {262const wchar_t *buffer;263const wchar_t *cursor;264const wchar_t *lastchar;265} LineInfoW;266267typedef int (*el_rfunc_t)(EditLine *, wchar_t *);268269const wchar_t *el_wgets(EditLine *, int *);270int el_wgetc(EditLine *, wchar_t *);271void el_wpush(EditLine *, const wchar_t *);272273int el_wparse(EditLine *, int, const wchar_t **);274275int el_wset(EditLine *, int, ...);276int el_wget(EditLine *, int, ...);277278int el_cursor(EditLine *, int);279const LineInfoW *el_wline(EditLine *);280int el_winsertstr(EditLine *, const wchar_t *);281#define el_wdeletestr el_deletestr282int el_wreplacestr(EditLine *, const wchar_t *);283284/*285* ==== History ====286*/287typedef struct histeventW {288int num;289const wchar_t *str;290} HistEventW;291292typedef struct historyW HistoryW;293294HistoryW * history_winit(void);295void history_wend(HistoryW *);296297int history_w(HistoryW *, HistEventW *, int, ...);298299/*300* ==== Tokenization ====301*/302typedef struct tokenizerW TokenizerW;303304/* Wide character tokenizer support */305TokenizerW *tok_winit(const wchar_t *);306void tok_wend(TokenizerW *);307void tok_wreset(TokenizerW *);308int tok_wline(TokenizerW *, const LineInfoW *,309int *, const wchar_t ***, int *, int *);310int tok_wstr(TokenizerW *, const wchar_t *,311int *, const wchar_t ***);312313#ifdef __cplusplus314}315#endif316317#endif /* _HISTEDIT_H_ */318319320