mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Defined CF_ENUM.
This commit is contained in:
parent
cbc3183007
commit
944f008af7
@ -9,14 +9,14 @@
|
||||
%{
|
||||
#undef REJECT /* Avoid name clashes */
|
||||
|
||||
#include "filter/filter.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "nest/bird.h"
|
||||
#include "nest/route.h"
|
||||
#include "filter/filter.h"
|
||||
#include "conf/conf.h"
|
||||
#include "conf/cf-parse.tab.h"
|
||||
|
||||
@ -119,7 +119,15 @@ WHITE [ \t]
|
||||
while (k)
|
||||
{
|
||||
if (!strcmp(k->name, yytext))
|
||||
return k->value;
|
||||
{
|
||||
if (k->value > 0)
|
||||
return k->value;
|
||||
else
|
||||
{
|
||||
cf_lval.i = -k->value;
|
||||
return ENUM;
|
||||
}
|
||||
}
|
||||
k=k->next;
|
||||
}
|
||||
cf_lval.s = cf_find_sym(yytext, h);
|
||||
|
@ -38,7 +38,7 @@ CF_DECLS
|
||||
}
|
||||
|
||||
%token END CLI_MARKER
|
||||
%token <i> NUM
|
||||
%token <i> NUM ENUM
|
||||
%token <i32> RTRID
|
||||
%token <a> IPA
|
||||
%token <s> SYM
|
||||
|
@ -22,6 +22,11 @@ m4_define(CF_KEYWORDS, `m4_define([[CF_toks]],[[]])CF_iterate([[CF_keywd]], [[$@
|
||||
m4_define(CF_CLI, `CF_KEYWORDS(m4_translit($1, [[ ]], [[,]]))
|
||||
')
|
||||
|
||||
# Enums are translated to C initializers: use CF_ENUM(typename, prefix, values)
|
||||
m4_define(CF_enum, `m4_divert(0){ "CF_enum_prefix[[]]$1", -((CF_enum_type<<16) | CF_enum_prefix[[]]$1) },
|
||||
m4_divert(-1)')
|
||||
m4_define(CF_ENUM, `m4_define([[CF_enum_type]],$1)m4_define([[CF_enum_prefix]],$2)CF_iterate([[CF_enum]], [[m4_shift(m4_shift($@))]])DNL')
|
||||
|
||||
# As we are processing C source, we must access all M4 primitives via
|
||||
# m4_* and also set different quoting convention: `[[' and ']]'
|
||||
m4_changequote([[,]])
|
||||
|
@ -44,6 +44,9 @@ m4_divert(2)CF_KEYWORDS(m4_translit($1, [[ ]], [[,]]))
|
||||
m4_divert(3)CF_ADDTO(cli_cmd, CF_cmd)
|
||||
CF_cmd: $1 ')
|
||||
|
||||
# ENUM declarations are ignored
|
||||
m4_define(CF_ENUM, `')
|
||||
|
||||
# After all configuration templates end, we finally generate the grammar file.
|
||||
m4_m4wrap(`
|
||||
m4_divert(0)DNL
|
||||
|
Loading…
Reference in New Issue
Block a user