1994-08-04 20:49:28 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Christos Zoulas of Cornell University.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2005-08-07 20:55:59 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-08-04 20:49:28 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)histedit.h 8.2 (Berkeley) 1/3/94
|
2007-06-11 06:25:19 +00:00
|
|
|
* $NetBSD: histedit.h,v 1.32 2007/06/10 20:20:28 christos Exp $
|
2001-10-01 21:07:33 +00:00
|
|
|
* $FreeBSD$
|
1994-08-04 20:49:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* histedit.h: Line editor and history interface.
|
|
|
|
*/
|
2001-10-01 21:07:33 +00:00
|
|
|
#ifndef _HISTEDIT_H_
|
|
|
|
#define _HISTEDIT_H_
|
1994-08-04 20:49:28 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2003-07-14 16:31:20 +00:00
|
|
|
__BEGIN_DECLS
|
|
|
|
|
1994-08-04 20:49:28 +00:00
|
|
|
/*
|
|
|
|
* ==== Editing ====
|
|
|
|
*/
|
2005-08-07 20:55:59 +00:00
|
|
|
|
1994-08-04 20:49:28 +00:00
|
|
|
typedef struct editline EditLine;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For user-defined function interface
|
|
|
|
*/
|
|
|
|
typedef struct lineinfo {
|
2001-10-01 21:07:33 +00:00
|
|
|
const char *buffer;
|
|
|
|
const char *cursor;
|
|
|
|
const char *lastchar;
|
1994-08-04 20:49:28 +00:00
|
|
|
} LineInfo;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* EditLine editor function return codes.
|
|
|
|
* For user-defined function interface
|
|
|
|
*/
|
|
|
|
#define CC_NORM 0
|
|
|
|
#define CC_NEWLINE 1
|
|
|
|
#define CC_EOF 2
|
2001-10-01 21:07:33 +00:00
|
|
|
#define CC_ARGHACK 3
|
|
|
|
#define CC_REFRESH 4
|
1994-08-04 20:49:28 +00:00
|
|
|
#define CC_CURSOR 5
|
|
|
|
#define CC_ERROR 6
|
2001-10-01 21:07:33 +00:00
|
|
|
#define CC_FATAL 7
|
|
|
|
#define CC_REDISPLAY 8
|
2001-10-01 21:06:25 +00:00
|
|
|
#define CC_REFRESH_BEEP 9
|
1994-08-04 20:49:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialization, cleanup, and resetting
|
|
|
|
*/
|
2001-10-01 21:07:33 +00:00
|
|
|
EditLine *el_init(const char *, FILE *, FILE *, FILE *);
|
|
|
|
void el_end(EditLine *);
|
2005-08-07 20:55:59 +00:00
|
|
|
void el_reset(EditLine *);
|
1994-08-04 20:49:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get a line, a character or push a string back in the input queue
|
|
|
|
*/
|
2001-10-01 21:07:33 +00:00
|
|
|
const char *el_gets(EditLine *, int *);
|
|
|
|
int el_getc(EditLine *, char *);
|
2005-08-07 20:55:59 +00:00
|
|
|
void el_push(EditLine *, char *);
|
1994-08-04 20:49:28 +00:00
|
|
|
|
2001-10-01 21:06:25 +00:00
|
|
|
/*
|
|
|
|
* Beep!
|
|
|
|
*/
|
|
|
|
void el_beep(EditLine *);
|
|
|
|
|
1994-08-04 20:49:28 +00:00
|
|
|
/*
|
|
|
|
* High level function internals control
|
|
|
|
* Parses argc, argv array and executes builtin editline commands
|
|
|
|
*/
|
2005-08-07 20:55:59 +00:00
|
|
|
int el_parse(EditLine *, int, const char **);
|
1994-08-04 20:49:28 +00:00
|
|
|
|
|
|
|
/*
|
2001-10-01 21:07:33 +00:00
|
|
|
* Low level editline access functions
|
1994-08-04 20:49:28 +00:00
|
|
|
*/
|
2001-10-01 21:07:33 +00:00
|
|
|
int el_set(EditLine *, int, ...);
|
Merge NetBSD changes, among them:
el.c 1.44, el.h 1.17, editline.3 1.53, histedit.h 1.31:
# add EL_GETFP, and EL_SETFP.
el.c 1.42, term.c 1.46, term.h 1.18, editline.3 1.52, histedit.h 1.29:
# - Add more readline functions, enough for gdb-6.5
# - Make el_get varyadic, and implement EL_GETTC.
# - XXX: the EL_SETTC api will change in the future.
Note: The latter change breaks the ABI of the el_get() function.
Approved by: re (kensmith)
2007-06-10 19:06:09 +00:00
|
|
|
int el_get(EditLine *, int, ...);
|
2005-08-07 20:55:59 +00:00
|
|
|
#if 0
|
|
|
|
unsigned char _el_fn_complete(EditLine *, int);
|
|
|
|
#endif
|
1994-08-04 20:49:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* el_set/el_get parameters
|
|
|
|
*/
|
2001-10-01 21:07:33 +00:00
|
|
|
#define EL_PROMPT 0 /* , el_pfunc_t); */
|
|
|
|
#define EL_TERMINAL 1 /* , const char *); */
|
|
|
|
#define EL_EDITOR 2 /* , const char *); */
|
|
|
|
#define EL_SIGNAL 3 /* , int); */
|
1994-08-04 20:49:28 +00:00
|
|
|
#define EL_BIND 4 /* , const char *, ..., NULL); */
|
|
|
|
#define EL_TELLTC 5 /* , const char *, ..., NULL); */
|
|
|
|
#define EL_SETTC 6 /* , const char *, ..., NULL); */
|
|
|
|
#define EL_ECHOTC 7 /* , const char *, ..., NULL); */
|
|
|
|
#define EL_SETTY 8 /* , const char *, ..., NULL); */
|
|
|
|
#define EL_ADDFN 9 /* , const char *, const char * */
|
|
|
|
/* , el_func_t); */
|
2001-10-01 21:07:33 +00:00
|
|
|
#define EL_HIST 10 /* , hist_fun_t, const char *); */
|
2001-10-01 21:06:25 +00:00
|
|
|
#define EL_EDITMODE 11 /* , int); */
|
|
|
|
#define EL_RPROMPT 12 /* , el_pfunc_t); */
|
2005-08-07 20:55:59 +00:00
|
|
|
#define EL_GETCFN 13 /* , el_rfunc_t); */
|
|
|
|
#define EL_CLIENTDATA 14 /* , void *); */
|
|
|
|
#define EL_UNBUFFERED 15 /* , int); */
|
|
|
|
#define EL_PREP_TERM 16 /* , int); */
|
Merge NetBSD changes, among them:
el.c 1.44, el.h 1.17, editline.3 1.53, histedit.h 1.31:
# add EL_GETFP, and EL_SETFP.
el.c 1.42, term.c 1.46, term.h 1.18, editline.3 1.52, histedit.h 1.29:
# - Add more readline functions, enough for gdb-6.5
# - Make el_get varyadic, and implement EL_GETTC.
# - XXX: the EL_SETTC api will change in the future.
Note: The latter change breaks the ABI of the el_get() function.
Approved by: re (kensmith)
2007-06-10 19:06:09 +00:00
|
|
|
#define EL_GETTC 17 /* , const char *, ..., NULL); */
|
2007-06-11 06:25:19 +00:00
|
|
|
#define EL_GETFP 18 /* , int, FILE **) */
|
|
|
|
#define EL_SETFP 19 /* , int, FILE *) */
|
2005-08-07 20:55:59 +00:00
|
|
|
|
2007-06-11 06:25:19 +00:00
|
|
|
#define EL_BUILTIN_GETCFN (NULL)
|
1994-08-04 20:49:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Source named file or $PWD/.editrc or $HOME/.editrc
|
|
|
|
*/
|
2001-10-01 21:07:33 +00:00
|
|
|
int el_source(EditLine *, const char *);
|
1994-08-04 20:49:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Must be called when the terminal changes size; If EL_SIGNAL
|
|
|
|
* is set this is done automatically otherwise it is the responsibility
|
|
|
|
* of the application
|
|
|
|
*/
|
2001-10-01 21:07:33 +00:00
|
|
|
void el_resize(EditLine *);
|
1994-08-04 20:49:28 +00:00
|
|
|
|
|
|
|
|
2002-06-16 08:29:35 +00:00
|
|
|
/*
|
|
|
|
* Set user private data.
|
|
|
|
*/
|
|
|
|
void el_data_set __P((EditLine *, void *));
|
|
|
|
void * el_data_get __P((EditLine *));
|
|
|
|
|
1994-08-04 20:49:28 +00:00
|
|
|
/*
|
|
|
|
* User-defined function interface.
|
|
|
|
*/
|
2001-10-01 21:07:33 +00:00
|
|
|
const LineInfo *el_line(EditLine *);
|
|
|
|
int el_insertstr(EditLine *, const char *);
|
|
|
|
void el_deletestr(EditLine *, int);
|
1994-08-04 20:49:28 +00:00
|
|
|
|
2005-08-07 20:55:59 +00:00
|
|
|
|
1994-08-04 20:49:28 +00:00
|
|
|
/*
|
|
|
|
* ==== History ====
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct history History;
|
|
|
|
|
|
|
|
typedef struct HistEvent {
|
2001-10-01 21:07:33 +00:00
|
|
|
int num;
|
|
|
|
const char *str;
|
1994-08-04 20:49:28 +00:00
|
|
|
} HistEvent;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* History access functions.
|
|
|
|
*/
|
2001-10-01 21:07:33 +00:00
|
|
|
History * history_init(void);
|
|
|
|
void history_end(History *);
|
1994-08-04 20:49:28 +00:00
|
|
|
|
2001-10-01 21:07:33 +00:00
|
|
|
int history(History *, HistEvent *, int, ...);
|
1994-08-04 20:49:28 +00:00
|
|
|
|
2001-10-01 21:07:33 +00:00
|
|
|
#define H_FUNC 0 /* , UTSL */
|
2001-10-01 21:06:25 +00:00
|
|
|
#define H_SETSIZE 1 /* , const int); */
|
2007-06-11 06:25:19 +00:00
|
|
|
#define H_EVENT 1 /* , const int); */
|
2001-10-01 21:06:25 +00:00
|
|
|
#define H_GETSIZE 2 /* , void); */
|
|
|
|
#define H_FIRST 3 /* , void); */
|
|
|
|
#define H_LAST 4 /* , void); */
|
|
|
|
#define H_PREV 5 /* , void); */
|
|
|
|
#define H_NEXT 6 /* , void); */
|
|
|
|
#define H_CURR 8 /* , const int); */
|
2005-08-07 20:55:59 +00:00
|
|
|
#define H_SET 7 /* , int); */
|
2001-10-01 21:06:25 +00:00
|
|
|
#define H_ADD 9 /* , const char *); */
|
|
|
|
#define H_ENTER 10 /* , const char *); */
|
|
|
|
#define H_APPEND 11 /* , const char *); */
|
|
|
|
#define H_END 12 /* , void); */
|
|
|
|
#define H_NEXT_STR 13 /* , const char *); */
|
|
|
|
#define H_PREV_STR 14 /* , const char *); */
|
|
|
|
#define H_NEXT_EVENT 15 /* , const int); */
|
|
|
|
#define H_PREV_EVENT 16 /* , const int); */
|
|
|
|
#define H_LOAD 17 /* , const char *); */
|
|
|
|
#define H_SAVE 18 /* , const char *); */
|
|
|
|
#define H_CLEAR 19 /* , void); */
|
2005-08-07 20:55:59 +00:00
|
|
|
#define H_SETUNIQUE 20 /* , int); */
|
|
|
|
#define H_GETUNIQUE 21 /* , void); */
|
|
|
|
#define H_DEL 22 /* , int); */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ==== Tokenization ====
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct tokenizer Tokenizer;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* String tokenization functions, using simplified sh(1) quoting rules
|
|
|
|
*/
|
|
|
|
Tokenizer *tok_init(const char *);
|
|
|
|
void tok_end(Tokenizer *);
|
|
|
|
void tok_reset(Tokenizer *);
|
|
|
|
int tok_line(Tokenizer *, const LineInfo *,
|
|
|
|
int *, const char ***, int *, int *);
|
|
|
|
int tok_str(Tokenizer *, const char *,
|
|
|
|
int *, const char ***);
|
1994-08-04 20:49:28 +00:00
|
|
|
|
2003-07-14 16:31:20 +00:00
|
|
|
__END_DECLS
|
|
|
|
|
2001-10-01 21:07:33 +00:00
|
|
|
#endif /* _HISTEDIT_H_ */
|