mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-23 18:21:54 +00:00
85 lines
1.8 KiB
C
85 lines
1.8 KiB
C
/*
|
|
* BIRD Client
|
|
*
|
|
* (c) 1999--2000 Martin Mares <mj@ucw.cz>
|
|
*
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
*/
|
|
|
|
#ifndef _BIRD_CLIENT_H_
|
|
#define _BIRD_CLIENT_H_
|
|
|
|
extern int init, busy, interactive, complete;
|
|
extern int term_lns, term_cls;
|
|
|
|
/* birdc.c / birdcl.c */
|
|
|
|
void input_start_list(void);
|
|
void input_stop_list(void);
|
|
|
|
void input_init(void);
|
|
void input_notify(int prompt);
|
|
void input_read(void);
|
|
|
|
void more_begin(void);
|
|
void more_end(void);
|
|
|
|
void cleanup(void);
|
|
|
|
/* client.c */
|
|
|
|
void submit_command(char *cmd_raw);
|
|
|
|
/* commands.c */
|
|
|
|
void cmd_build_tree(void);
|
|
void cmd_help(const char *cmd, int len);
|
|
int cmd_complete(const char *cmd, int len, char *buf, int again);
|
|
char *cmd_expand(char *cmd);
|
|
|
|
/* complete.c */
|
|
|
|
void complete_init(int argc, char **argv);
|
|
int do_complete(char *cmd);
|
|
#define COMPLETE_ARGC 3
|
|
extern const char *comp_now, *comp_last;
|
|
|
|
/* Client Symbol Flags: Types */
|
|
#define CLI_SF_CONSTANT (1 << 0)
|
|
#define CLI_SF_VARIABLE (1 << 1)
|
|
#define CLI_SF_FILTER (1 << 2)
|
|
#define CLI_SF_FUNCTION (1 << 3)
|
|
#define CLI_SF_PROTOCOL (1 << 4)
|
|
#define CLI_SF_TABLE (1 << 5)
|
|
#define CLI_SF_TEMPLATE (1 << 6)
|
|
#define CLI_SF_INTERFACE (1 << 7)
|
|
|
|
#define CLI_SF_OPTIONAL (1 << 8) /* This node is optional not mandatory */
|
|
#define CLI_SF_PARAMETER (1 << 9) /* A parameter/word will follow after this node */
|
|
|
|
/* Client Symbol Flags: Keywords */
|
|
#define CLI_SF_KW_ALL (1 << 10)
|
|
#define CLI_SF_KW_OFF (1 << 11)
|
|
|
|
|
|
struct cli_symbol
|
|
{
|
|
node n;
|
|
const char *name;
|
|
uint len;
|
|
u32 flags; /* CLI_SF_* */
|
|
};
|
|
|
|
void submit_command(char *cmd_raw);
|
|
|
|
/* die() with system error messages */
|
|
#define DIE(x, y...) die(x ": %s", ##y, strerror(errno))
|
|
|
|
void retrieve_symbols(void);
|
|
void add_keywords_to_symbols(void);
|
|
list *cli_get_symbol_list(void);
|
|
uint cli_get_symbol_maxlen(void);
|
|
void simple_input_read(void);
|
|
|
|
#endif
|