1999-01-16 00:49:17 +08:00
|
|
|
/*
|
|
|
|
* BIRD - filters
|
|
|
|
*
|
|
|
|
* Copyright 1998 Pavel Machek
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CF_HDR
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "filter/filter.h"
|
|
|
|
#include "lib/resource.h"
|
|
|
|
#include "lib/socket.h"
|
|
|
|
#include "lib/timer.h"
|
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "nest/iface.h"
|
|
|
|
#include "nest/route.h"
|
|
|
|
|
|
|
|
CF_DECLS
|
|
|
|
|
|
|
|
CF_KEYWORDS(FUNCTION, FILTER, PRINTDEBUG, INT, PRINT)
|
|
|
|
|
1999-01-16 02:04:28 +08:00
|
|
|
%type <x> term
|
1999-01-16 00:49:17 +08:00
|
|
|
|
|
|
|
CF_GRAMMAR
|
|
|
|
|
|
|
|
config:
|
|
|
|
program {
|
|
|
|
printf( "Wow, we have full program\n" );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
program: /* EMPTY */
|
|
|
|
| program function
|
|
|
|
;
|
|
|
|
|
|
|
|
CF_ADDTO(conf, function)
|
|
|
|
function:
|
1999-01-16 02:04:28 +08:00
|
|
|
FUNCTION SYM '(' ')' '{' term '}' {
|
1999-01-16 00:49:17 +08:00
|
|
|
extern struct f_instruction *last_func;
|
|
|
|
if ($2->class != SYM_VOID) cf_error("Symbol already defined" );
|
|
|
|
$2->class = SYM_FUNCTION;
|
|
|
|
$2->aux = $6;
|
|
|
|
last_func = $6;
|
|
|
|
printf("Hmm, we've got one function here\n");
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
CF_ADDTO(conf, filter)
|
|
|
|
filter:
|
1999-01-16 02:04:28 +08:00
|
|
|
FILTER SYM '{' term '}' {
|
1999-01-16 00:49:17 +08:00
|
|
|
if ($2->class != SYM_VOID) cf_error("Symbol already defined" );
|
|
|
|
$2->class = SYM_FILTER;
|
|
|
|
$2->aux = $4;
|
|
|
|
printf( "We have new filter defined (%s)\n", $2->name )
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
/* Programs */
|
|
|
|
|
1999-01-16 02:04:28 +08:00
|
|
|
term: /* EMPTY */ { $$ = NULL; }
|
|
|
|
| term ';' term {
|
1999-01-16 00:49:17 +08:00
|
|
|
$$ = cfg_alloc(sizeof(struct f_instruction));
|
|
|
|
printf( "We've got statement here\n" );
|
|
|
|
$$->code = ',';
|
|
|
|
$$->arg1 = $1;
|
|
|
|
$$->arg2 = $3;
|
|
|
|
}
|
|
|
|
| INT SYM ';' {
|
|
|
|
if ($2->class != SYM_VOID) cf_error("Symbol already defined, can not use as variable\n" );
|
|
|
|
$2->class = SYM_VARIABLE_INT;
|
|
|
|
printf( "New variable\n" );
|
|
|
|
$$ = NULL;
|
|
|
|
}
|
1999-01-16 02:04:28 +08:00
|
|
|
| SYM '=' expr {
|
1999-01-16 00:49:17 +08:00
|
|
|
$$ = cfg_alloc(sizeof(struct f_instruction));
|
|
|
|
printf( "Ook, we'll set value\n" );
|
|
|
|
if ($1->class != SYM_VARIABLE_INT)
|
|
|
|
cf_error( "You may only set variables\n" );
|
|
|
|
$$->code = '=';
|
|
|
|
$$->arg1 = $1;
|
|
|
|
$$->arg2 = $3;
|
|
|
|
}
|
|
|
|
| PRINT '(' SYM ')' {
|
|
|
|
$$ = cfg_alloc(sizeof(struct f_instruction));
|
|
|
|
printf( "Ook, we'll print something\n" );
|
|
|
|
$$->code = 'p';
|
|
|
|
$$->arg1 = $3;
|
|
|
|
$$->arg2 = NULL;
|
|
|
|
}
|
|
|
|
| PRINTDEBUG {
|
|
|
|
$$ = cfg_alloc(sizeof(struct f_instruction));
|
|
|
|
$$->code = 'D';
|
|
|
|
$$->arg1 = $$->arg2 = NULL;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
CF_END
|