1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
/* servscan.l -- Scanner for dictd server configuration file
* Created: Fri Feb 28 08:23:03 1997 by faith@cs.unc.edu
* Revised: Wed Nov 8 05:57:22 2000 by faith@acm.org
* Copyright 1997, 1999, 2000 Rickard E. Faith (faith@acm.org)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 1, or (at your option) any
* later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Id: servscan.l,v 1.10 2000/11/08 11:00:45 faith Exp $
*
*/
%option stack debug
%{
#include "dictd.h"
#include "servparse.h"
extern int yylex( void );
extern int yydebug;
extern void yyerror( const char *message );
static void include_file( void );
static void include_complete( void );
YY_BUFFER_STATE orig_buffer = NULL;
src_Type orig_source = NULL;
#define RETURN(val) do { \
yylval.token.src = src_get( yyleng ); \
return val; \
} while (0)
%}
%s OTHER
comment #.*
word ([[:alnum:]_/\-\.\*][[:alnum:]_/\-\.\*]*)
string \"(([^\"\n])|\"\")*\"
badstring \"(([^\"\n])|\"\")*
NL \n
WS [[:blank:]]+
%%
<INITIAL>{
.*{NL} src_line(yytext,yyleng); yyless(0); BEGIN(OTHER);
.* src_line(yytext,yyleng); yyless(0); BEGIN(OTHER);
}
include{WS}({word}|{string}) include_file();
access RETURN(T_ACCESS);
allow RETURN(T_ALLOW);
deny RETURN(T_DENY);
group RETURN(T_GROUP);
database RETURN(T_DATABASE);
data RETURN(T_DATA);
index RETURN(T_INDEX);
filter RETURN(T_FILTER);
prefilter RETURN(T_PREFILTER);
postfilter RETURN(T_POSTFILTER);
name RETURN(T_NAME);
user RETURN(T_USER);
authonly RETURN(T_AUTHONLY);
site RETURN(T_SITE);
{word} { yylval.token.string = str_findn(yytext, yyleng);
RETURN(T_STRING);
}
{string} { yylval.token.string
= str_findn(yytext+1, yyleng-2);
RETURN(T_STRING);
}
{NL} BEGIN(INITIAL);
{WS} src_advance( yyleng );
{comment} src_advance( yyleng );
. RETURN(yytext[0]);
<<EOF>> { if (orig_buffer) include_complete();
else RETURN(0);
}
%%
int yywrap( void )
{
return 1;
}
void yyerror( const char *message )
{
src_parse_error( stderr, yylval.token.src, message );
err_fatal( __FUNCTION__, "parse error\n" );
exit( 1 );
}
static void include_file( void ) {
const char *file;
int i;
for ( i = 8; yytext[i] == ' ' || yytext[i] == '\t'; ++i )
; /* advance past include{WS} to filename */
if ( yytext[i] == '"' ) /* process {string} */
file = str_findn(yytext+i+1, yyleng-i-2);
else /* process {word} */
file = str_findn(yytext+i, yyleng-i);
orig_source = src_get( yyleng );
if ( orig_buffer ) {
src_print_error( stderr, orig_source, NULL );
err_fatal( __FUNCTION__, "Nested includes are not permitted\n" );
exit( 1 );
}
orig_buffer = YY_CURRENT_BUFFER;
yyin = fopen( file, "r" );
if ( ! yyin ) {
src_print_error( stderr, orig_source, NULL );
err_fatal( __FUNCTION__, "Cannot open \"%s\" for read\n", file );
exit( 1 );
}
src_new_file( file );
src_new_line ( 0 );
yy_switch_to_buffer(
yy_create_buffer( yyin, YY_BUF_SIZE ) );
BEGIN(INITIAL);
}
static void include_complete( void ) {
const char *orig_line;
yy_delete_buffer( YY_CURRENT_BUFFER );
yy_switch_to_buffer( orig_buffer );
orig_buffer = NULL;
BEGIN(OTHER);
src_new_file( src_filename( orig_source ) );
orig_line = src_source_line( orig_source );
src_line( orig_line, strlen( orig_line ) );
src_new_line( src_linenumber( orig_source ) );
src_advance( src_offset( orig_source ) + src_length( orig_source ) );
orig_source = NULL;
}
|