]> git.ipfire.org Git - thirdparty/bird.git/commit - conf/conf.h
Parse CLI commands. We use the same parser as for configuration files (because
authorMartin Mares <mj@ucw.cz>
Sun, 31 Oct 1999 17:47:47 +0000 (17:47 +0000)
committerMartin Mares <mj@ucw.cz>
Sun, 31 Oct 1999 17:47:47 +0000 (17:47 +0000)
commitbc2fb68098faaf09393437a7743285d2af71d102
tree94b82b1648296c7a7fdb35063a524a1a7fe90228
parentb9672a845f7ff7d2441e21746566eacc51f274b7
Parse CLI commands. We use the same parser as for configuration files (because
we want to allow filter and similar complex constructs to be used in commands
and we should avoid code duplication), only with CLI_MARKER token prepended
before the whole input.

Defined macro CF_CLI(cmd, args, help) for defining CLI commands in .Y files.
The first argument specifies the command itself, the remaining two arguments
are copied to the help file (er, will be copied after the help file starts
to exist). This macro automatically creates a skeleton rule for the command,
you only need to append arguments as in:

CF_CLI(STEAL MONEY, <$>, [[Steal <$> US dollars or equivalent in any other currency]]): NUM {
cli_msg(0, "%d$ stolen", $3);
} ;

Also don't forget to reset lexer state between inputs.
conf/cf-lex.l
conf/conf.c
conf/conf.h
conf/confbase.Y
conf/gen_keywords.m4
conf/gen_parser.m4
nest/cli.c
nest/cli.h
nest/config.Y