php-src/Zend/zend_ini_scanner.l

287 lines
5.3 KiB
Plaintext
Raw Normal View History

%{
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
2001-02-26 05:43:27 +00:00
| Copyright (c) 1998-2001 Zend Technologies Ltd. (http://www.zend.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 0.92 of the Zend license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://www.zend.com/license/0_92.txt. |
| If you did not receive a copy of the Zend license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@zend.com so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
#include "zend.h"
2000-10-29 18:23:51 +00:00
#include "zend_globals.h"
#include "zend_ini_parser.h"
#include "zend_ini_scanner.h"
#ifdef ZTS
# ifdef HAVE_STDIOSTR_H
# include <stdiostr.h>
# endif
# ifdef HAVE_STDIOSTREAM_H
# include <stdiostream.h>
# endif
# ifdef ZEND_WIN32
# include <strstrea.h>
# else
# include <strstream.h>
# endif
#endif
#undef YYSTYPE
#define YYSTYPE zval
#ifdef ZTS
2000-10-29 18:23:51 +00:00
#define YY_DECL int ZendIniFlexLexer::lex_scan(zval *ini_lval)
#else
2000-10-29 18:23:51 +00:00
#define YY_DECL int ini_lex(zval *ini_lval)
#endif
#include "zend_istdiostream.h"
#ifndef ZTS
2000-10-30 23:19:48 +00:00
static char *ini_filename;
void init_ini_scanner()
{
2000-10-29 18:23:51 +00:00
ini_lineno=1;
}
2000-10-29 18:23:51 +00:00
int zend_ini_scanner_get_lineno()
{
return ini_lineno;
}
2000-10-30 23:19:48 +00:00
char *zend_ini_scanner_get_filename()
{
return ini_filename;
}
2000-10-29 18:23:51 +00:00
#else /* ZTS */
2001-07-30 04:54:16 +00:00
int zend_ini_scanner_get_lineno(TSRMLS_D)
2000-10-29 18:23:51 +00:00
{
return CG(ini_scanner)->lineno();
}
2000-10-30 23:19:48 +00:00
char *zend_ini_scanner_get_filename()
{
TSRMLS_FETCH();
2000-10-30 23:19:48 +00:00
return CG(ini_scanner)->filename;
}
2000-10-29 18:23:51 +00:00
int ini_lex(zval *ini_lval)
{
TSRMLS_FETCH();
2000-10-29 18:23:51 +00:00
return CG(ini_scanner)->lex_scan(ini_lval);
}
ZendIniFlexLexer::~ZendIniFlexLexer()
{
if (yy_start_stack) {
yy_flex_free(yy_start_stack);
}
}
int yyFlexLexer::yylex()
{
fprintf(stderr, "Error: yyFlexLexer::yylex() called\n");
return -1;
}
2000-10-29 18:23:51 +00:00
#endif
int zend_ini_open_file_for_scanning(zend_file_handle *fh)
{
FILE *fp;
TSRMLS_FETCH();
switch (fh->type) {
case ZEND_HANDLE_FP:
fp = fh->handle.fp;
break;
case ZEND_HANDLE_FILENAME:
fp = zend_fopen(fh->filename, NULL);
2000-10-29 23:10:04 +00:00
fh->type = ZEND_HANDLE_FP;
break;
default:
return FAILURE;
}
#ifdef ZTS
if (!fp) {
return FAILURE;
}
fh->handle.is = new istdiostream(fp);
fh->type = ZEND_HANDLE_STDIOSTREAM;
CG(ini_scanner) = new ZendIniFlexLexer;
CG(ini_scanner)->switch_streams(fh->handle.is, &cout);
2000-10-30 23:19:48 +00:00
CG(ini_scanner)->filename = fh->filename;
#else
init_ini_scanner();
yyin = fp;
yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
2000-10-30 23:19:48 +00:00
ini_filename = fh->filename;
#endif
return SUCCESS;
}
2000-10-29 23:10:04 +00:00
void zend_ini_close_file(zend_file_handle *fh)
{
switch (fh->type) {
case ZEND_HANDLE_FP:
fclose(fh->handle.fp);
break;
2000-10-30 23:19:48 +00:00
#ifdef ZTS
2000-10-29 23:10:04 +00:00
case ZEND_HANDLE_STDIOSTREAM: {
TSRMLS_FETCH();
2000-10-29 23:10:04 +00:00
delete CG(ini_scanner);
}
break;
2000-10-30 23:19:48 +00:00
#endif
2000-10-29 23:10:04 +00:00
}
}
2000-10-29 18:23:51 +00:00
%}
NEWLINE ("\r"|"\n"|"\r\n")
2000-10-29 18:23:51 +00:00
%option noyywrap
%option yylineno
2000-10-29 18:23:51 +00:00
%%
<INITIAL>[ ]*("true"|"on"|"yes")[ ]* {
2000-10-29 18:23:51 +00:00
ini_lval->value.str.val = zend_strndup("1",1);
ini_lval->value.str.len = 1;
ini_lval->type = IS_STRING;
return CFG_TRUE;
}
<INITIAL>[ ]*("false"|"off"|"no"|"none")[ ]* {
2000-10-29 18:23:51 +00:00
ini_lval->value.str.val = zend_strndup("",0);
ini_lval->value.str.len = 0;
ini_lval->type = IS_STRING;
return CFG_FALSE;
}
<INITIAL>[[][^[]+[\]]{NEWLINE}? {
/* SECTION */
/* eat trailng ] */
while (yyleng>0 && (yytext[yyleng-1]=='\n' || yytext[yyleng-1]=='\r' || yytext[yyleng-1]==']')) {
yyleng--;
yytext[yyleng]=0;
}
/* eat leading [ */
yytext++;
yyleng--;
2000-10-29 18:23:51 +00:00
ini_lval->value.str.val = zend_strndup(yytext,yyleng);
ini_lval->value.str.len = yyleng;
ini_lval->type = IS_STRING;
return SECTION;
}
<INITIAL>["][^\n\r"]*["] {
/* ENCAPSULATED TC_STRING */
/* eat trailing " */
yytext[yyleng-1]=0;
/* eat leading " */
yytext++;
2000-10-29 18:23:51 +00:00
ini_lval->value.str.val = zend_strndup(yytext, yyleng - 2);
ini_lval->value.str.len = yyleng - 2;
ini_lval->type = IS_STRING;
return TC_ENCAPSULATED_STRING;
}
<INITIAL>[&|~()!] {
return yytext[0];
}
<INITIAL>[^=\n\r\t;|&~()!"]+ {
/* STRING */
register int i;
/* eat trailing whitespace */
for (i=yyleng-1; i>=0; i--) {
if (yytext[i]==' ' || yytext[i]=='\t') {
yytext[i]=0;
yyleng--;
} else {
break;
}
}
/* eat leading whitespace */
while (yytext[0]) {
if (yytext[0]==' ' || yytext[0]=='\t') {
yytext++;
yyleng--;
} else {
break;
}
}
if (yyleng!=0) {
2000-10-29 18:23:51 +00:00
ini_lval->value.str.val = zend_strndup(yytext,yyleng);
ini_lval->value.str.len = yyleng;
ini_lval->type = IS_STRING;
return TC_STRING;
} else {
/* whitespace */
}
}
<INITIAL>[=\n] {
return yytext[0];
}
<INITIAL>{NEWLINE} {
return '\n';
}
<INITIAL>[;][^\r\n]*{NEWLINE}? {
/* comment */
return '\n';
}
<INITIAL>[ \t] {
/* eat whitespace */
}
<INITIAL>. {
#if DEBUG
php_error(E_NOTICE,"Unexpected character on line %d: '%s' (ASCII %d)\n",yylineno,yytext,yytext[0]);
#endif
}
<<EOF>> {
yy_delete_buffer(YY_CURRENT_BUFFER);
yyterminate();
}