1998-11-27 19:33:26 +00:00
|
|
|
m4_divert(-1)m4_dnl
|
|
|
|
#
|
|
|
|
# BIRD -- Generator of Configuration Keyword List
|
|
|
|
#
|
2000-04-28 15:12:03 +00:00
|
|
|
# (c) 1998--2000 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
|
1998-11-27 19:33:26 +00:00
|
|
|
#
|
|
|
|
# Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
#
|
|
|
|
|
2000-04-28 15:12:03 +00:00
|
|
|
# Common aliases
|
|
|
|
m4_define(DNL, `m4_dnl')
|
|
|
|
|
|
|
|
# Diversions used:
|
|
|
|
# 1 keywords
|
|
|
|
|
1998-11-27 19:33:26 +00:00
|
|
|
# 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)')
|
|
|
|
|
2000-04-28 15:12:03 +00:00
|
|
|
# We include all the headers
|
|
|
|
m4_define(CF_HDR, `m4_divert(0)')
|
|
|
|
m4_define(CF_DECLS, `m4_divert(-1)')
|
|
|
|
m4_define(CF_DEFINES, `m4_divert(-1)')
|
|
|
|
|
1998-11-27 19:33:26 +00:00
|
|
|
# Keywords are translated to C initializers
|
Filter: Methods rework
Methods can now be called as x.m(y), as long as x can have its type
inferred in config time. If used as a command, it modifies the object,
if used as a value, it keeps the original object intact.
Also functions add(x,y), delete(x,y), filter(x,y) and prepend(x,y) now
spit a warning and are considered deprecated.
It's also possible to call a method on a constant, see filter/test.conf
for examples like bgp_path = +empty+.prepend(1).
Inside instruction definitions (filter/f-inst.c), a METHOD_CONSTRUCTOR()
call is added, which registers the instruction as a method for the type
of its first argument. Each type has its own method symbol table and
filter parser switches between them based on the inferred type of the
object calling the method.
Also FI_CLIST_(ADD|DELETE|FILTER) instructions have been split to allow
for this method dispatch. With type inference, it's now possible.
2023-06-16 15:35:37 +00:00
|
|
|
m4_define(CF_handle_kw, `m4_divert(1){ "m4_translit($1,[[A-Z]],[[a-z]])", $1 },
|
1998-11-27 19:33:26 +00:00
|
|
|
m4_divert(-1)')
|
Filter: Methods rework
Methods can now be called as x.m(y), as long as x can have its type
inferred in config time. If used as a command, it modifies the object,
if used as a value, it keeps the original object intact.
Also functions add(x,y), delete(x,y), filter(x,y) and prepend(x,y) now
spit a warning and are considered deprecated.
It's also possible to call a method on a constant, see filter/test.conf
for examples like bgp_path = +empty+.prepend(1).
Inside instruction definitions (filter/f-inst.c), a METHOD_CONSTRUCTOR()
call is added, which registers the instruction as a method for the type
of its first argument. Each type has its own method symbol table and
filter parser switches between them based on the inferred type of the
object calling the method.
Also FI_CLIST_(ADD|DELETE|FILTER) instructions have been split to allow
for this method dispatch. With type inference, it's now possible.
2023-06-16 15:35:37 +00:00
|
|
|
m4_define(CF_keywd, `m4_ifdef([[CF_tok_$1]],,[[m4_define([[CF_tok_$1]],1)CF_handle_kw($1)]])')
|
|
|
|
m4_define(CF_KEYWORDS, `CF_iterate([[CF_keywd]], [[$@]])DNL')
|
2022-12-13 18:31:46 +00:00
|
|
|
m4_define(CF_KEYWORDS_EXCLUSIVE, `CF_KEYWORDS($@)')
|
1998-11-27 19:33:26 +00:00
|
|
|
|
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-10-31 17:47:47 +00:00
|
|
|
# CLI commands generate keywords as well
|
|
|
|
m4_define(CF_CLI, `CF_KEYWORDS(m4_translit($1, [[ ]], [[,]]))
|
|
|
|
')
|
|
|
|
|
1999-11-15 11:35:41 +00:00
|
|
|
# Enums are translated to C initializers: use CF_ENUM(typename, prefix, values)
|
2019-11-03 19:26:54 +00:00
|
|
|
# For different prefix: CF_ENUM_PX(typename, external prefix, C prefix, values)
|
2023-06-09 10:49:19 +00:00
|
|
|
m4_define(CF_enum, `m4_divert(1){ "CF_enum_prefix_ext[[]]$1", -((CF_enum_type<<16) | CF_enum_prefix_int[[]]$1) },
|
1999-11-15 11:35:41 +00:00
|
|
|
m4_divert(-1)')
|
2019-11-03 19:26:54 +00:00
|
|
|
m4_define(CF_ENUM, `m4_define([[CF_enum_type]],$1)m4_define([[CF_enum_prefix_ext]],$2)m4_define([[CF_enum_prefix_int]],$2)CF_iterate([[CF_enum]], [[m4_shift(m4_shift($@))]])DNL')
|
|
|
|
m4_define(CF_ENUM_PX, `m4_define([[CF_enum_type]],$1)m4_define([[CF_enum_prefix_ext]],$2)m4_define([[CF_enum_prefix_int]],$3)CF_iterate([[CF_enum]], [[m4_shift(m4_shift(m4_shift($@)))]])DNL')
|
1999-11-15 11:35:41 +00:00
|
|
|
|
2000-04-28 15:12:03 +00:00
|
|
|
# After all configuration templates end, we generate the
|
|
|
|
m4_m4wrap(`
|
|
|
|
m4_divert(0)
|
2023-06-09 10:49:19 +00:00
|
|
|
static const struct keyword keyword_list[] = {
|
|
|
|
m4_undivert(1){ NULL, -1 } };
|
2000-04-28 15:12:03 +00:00
|
|
|
')
|
|
|
|
|
1998-11-27 19:33:26 +00:00
|
|
|
# As we are processing C source, we must access all M4 primitives via
|
|
|
|
# m4_* and also set different quoting convention: `[[' and ']]'
|
|
|
|
m4_changequote([[,]])
|