1998-11-28 03:33:53 +08:00
|
|
|
m4_divert(-1)m4_dnl
|
|
|
|
#
|
|
|
|
# BIRD -- Generator of Configuration Grammar
|
|
|
|
#
|
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.
1999-11-01 01:47:47 +08:00
|
|
|
# (c) 1998--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
|
1998-11-28 03:33:53 +08:00
|
|
|
#
|
|
|
|
# Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Diversions used:
|
|
|
|
# 1 includes
|
|
|
|
# 2 types etc.
|
|
|
|
# 3 rules
|
|
|
|
# 4 C code
|
|
|
|
|
|
|
|
# Common aliases
|
|
|
|
m4_define(DNL, `m4_dnl')
|
|
|
|
|
|
|
|
# Define macros for defining sections
|
|
|
|
m4_define(CF_ZONE, `m4_divert($1)/* $2 from m4___file__ */')
|
|
|
|
m4_define(CF_HDR, `CF_ZONE(1, Headers)')
|
2000-04-28 23:11:10 +08:00
|
|
|
m4_define(CF_DEFINES, `CF_ZONE(1, Defines)')
|
1998-11-28 03:33:53 +08:00
|
|
|
m4_define(CF_DECLS, `CF_ZONE(2, Declarations)')
|
|
|
|
m4_define(CF_GRAMMAR, `CF_ZONE(3, Grammar)')
|
|
|
|
m4_define(CF_CODE, `CF_ZONE(4, C Code)')
|
|
|
|
m4_define(CF_END, `m4_divert(-1)')
|
|
|
|
|
|
|
|
# Simple iterator
|
|
|
|
m4_define(CF_itera, `m4_ifelse($#, 1, [[CF_iter($1)]], [[CF_iter($1)[[]]CF_itera(m4_shift($@))]])')
|
|
|
|
m4_define(CF_iterate, `m4_define([[CF_iter]], m4_defn([[$1]]))CF_itera($2)')
|
|
|
|
|
|
|
|
# Keywords act as untyped %token
|
|
|
|
m4_define(CF_keywd, `m4_ifdef([[CF_tok_$1]],,[[m4_define([[CF_tok_$1]],1)m4_define([[CF_toks]],CF_toks $1)]])')
|
|
|
|
m4_define(CF_KEYWORDS, `m4_define([[CF_toks]],[[]])CF_iterate([[CF_keywd]], [[$@]])m4_ifelse(CF_toks,,,%token[[]]CF_toks
|
|
|
|
)DNL')
|
|
|
|
|
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.
1999-11-01 01:47:47 +08:00
|
|
|
# CLI commands
|
|
|
|
m4_define(CF_CLI, `m4_define([[CF_cmd]], cmd_[[]]m4_translit($1, [[ ]], _))DNL
|
|
|
|
m4_divert(2)CF_KEYWORDS(m4_translit($1, [[ ]], [[,]]))
|
2018-06-26 20:29:03 +08:00
|
|
|
m4_divert(3)cli_cmd: CF_cmd
|
1999-11-17 20:00:21 +08:00
|
|
|
CF_cmd: $1 $2 END')
|
2012-12-26 19:40:48 +08:00
|
|
|
m4_define(CF_CLI_CMD, `')
|
1999-11-17 20:00:21 +08:00
|
|
|
m4_define(CF_CLI_HELP, `')
|
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.
1999-11-01 01:47:47 +08:00
|
|
|
|
1999-11-15 19:35:41 +08:00
|
|
|
# ENUM declarations are ignored
|
|
|
|
m4_define(CF_ENUM, `')
|
2019-11-04 03:26:54 +08:00
|
|
|
m4_define(CF_ENUM_PX, `')
|
1999-11-15 19:35:41 +08:00
|
|
|
|
1998-11-28 03:33:53 +08:00
|
|
|
# After all configuration templates end, we finally generate the grammar file.
|
|
|
|
m4_m4wrap(`
|
|
|
|
m4_divert(0)DNL
|
|
|
|
%{
|
|
|
|
m4_undivert(1)DNL
|
|
|
|
%}
|
|
|
|
|
|
|
|
m4_undivert(2)DNL
|
|
|
|
|
|
|
|
%%
|
|
|
|
m4_undivert(3)DNL
|
|
|
|
|
|
|
|
%%
|
|
|
|
m4_undivert(4)DNL
|
|
|
|
')
|
|
|
|
|
|
|
|
# As we are processing C source, we must access all M4 primitives via
|
|
|
|
# m4_* and also set different quoting convention: `[[' and ']]'
|
|
|
|
m4_changequote([[,]])
|