2000-10-29 22:56:16 +08:00
|
|
|
%{
|
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2002-01-06 23:21:36 +08:00
|
|
|
| Copyright (c) 1998-2002 Zend Technologies Ltd. (http://www.zend.com) |
|
2000-10-29 22:56:16 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:16:21 +08:00
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
2000-10-29 22:56:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available at through the world-wide-web at |
|
2001-12-11 23:16:21 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
2000-10-29 22:56:16 +08:00
|
|
|
| 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> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2001-08-17 04:38:56 +08:00
|
|
|
#define yyleng SCNG(yy_leng)
|
|
|
|
#define yytext SCNG(yy_text)
|
|
|
|
#define yytext_ptr SCNG(yy_text)
|
2001-09-20 06:34:11 +08:00
|
|
|
#define yyin SCNG(yy_in)
|
|
|
|
#define yyout SCNG(yy_out)
|
2001-09-22 08:09:24 +08:00
|
|
|
#define yy_last_accepting_state SCNG(_yy_last_accepting_state)
|
|
|
|
#define yy_last_accepting_cpos SCNG(_yy_last_accepting_cpos)
|
|
|
|
#define yy_more_flag SCNG(_yy_more_flag)
|
|
|
|
#define yy_more_len SCNG(_yy_more_len)
|
2001-08-17 04:38:56 +08:00
|
|
|
|
2002-01-14 01:51:18 +08:00
|
|
|
#include <errno.h>
|
2000-10-29 22:56:16 +08:00
|
|
|
#include "zend.h"
|
2000-10-30 02:23:51 +08:00
|
|
|
#include "zend_globals.h"
|
2000-10-29 22:56:16 +08:00
|
|
|
#include "zend_ini_parser.h"
|
2000-10-29 23:13:20 +08:00
|
|
|
#include "zend_ini_scanner.h"
|
2000-10-29 22:56:16 +08:00
|
|
|
|
|
|
|
#undef YYSTYPE
|
|
|
|
#define YYSTYPE zval
|
|
|
|
|
2001-08-06 21:48:51 +08:00
|
|
|
#define YY_DECL int ini_lex(zval *ini_lval TSRMLS_DC)
|
2000-10-29 22:56:16 +08:00
|
|
|
|
2001-08-06 21:48:51 +08:00
|
|
|
/* Globals Macros */
|
|
|
|
#define SCNG INI_SCNG
|
|
|
|
#ifdef ZTS
|
|
|
|
ZEND_API ts_rsrc_id ini_scanner_globals_id;
|
|
|
|
#else
|
|
|
|
ZEND_API zend_scanner_globals ini_scanner_globals;
|
|
|
|
#endif
|
2000-12-27 06:15:13 +08:00
|
|
|
|
|
|
|
|
2000-10-31 07:19:48 +08:00
|
|
|
static char *ini_filename;
|
|
|
|
|
2000-10-30 20:14:37 +08:00
|
|
|
void init_ini_scanner()
|
2000-10-29 22:56:16 +08:00
|
|
|
{
|
2000-10-30 02:23:51 +08:00
|
|
|
ini_lineno=1;
|
2000-10-29 22:56:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-06 21:48:51 +08:00
|
|
|
int zend_ini_scanner_get_lineno(TSRMLS_D)
|
2000-10-30 02:23:51 +08:00
|
|
|
{
|
|
|
|
return ini_lineno;
|
|
|
|
}
|
2000-10-29 22:56:16 +08:00
|
|
|
|
2000-10-31 07:19:48 +08:00
|
|
|
|
2001-07-31 14:07:25 +08:00
|
|
|
char *zend_ini_scanner_get_filename(TSRMLS_D)
|
2000-10-31 07:19:48 +08:00
|
|
|
{
|
|
|
|
return ini_filename;
|
|
|
|
}
|
|
|
|
|
2000-10-29 22:56:16 +08:00
|
|
|
|
2001-07-31 14:07:25 +08:00
|
|
|
int zend_ini_open_file_for_scanning(zend_file_handle *fh TSRMLS_DC)
|
2000-10-30 06:40:01 +08:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
switch (fh->type) {
|
|
|
|
case ZEND_HANDLE_FP:
|
|
|
|
fp = fh->handle.fp;
|
|
|
|
break;
|
|
|
|
case ZEND_HANDLE_FILENAME:
|
|
|
|
fp = zend_fopen(fh->filename, NULL);
|
2000-10-30 07:10:04 +08:00
|
|
|
fh->type = ZEND_HANDLE_FP;
|
2000-10-30 06:40:01 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return FAILURE;
|
|
|
|
}
|
|
|
|
|
2000-10-30 20:14:37 +08:00
|
|
|
init_ini_scanner();
|
2000-10-30 06:40:01 +08:00
|
|
|
yyin = fp;
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE TSRMLS_CC) TSRMLS_CC);
|
2000-10-31 07:19:48 +08:00
|
|
|
ini_filename = fh->filename;
|
2000-10-30 06:40:01 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
2000-10-30 07:10:04 +08:00
|
|
|
|
2001-07-31 14:07:25 +08:00
|
|
|
void zend_ini_close_file(zend_file_handle *fh TSRMLS_DC)
|
2000-10-30 07:10:04 +08:00
|
|
|
{
|
|
|
|
switch (fh->type) {
|
|
|
|
case ZEND_HANDLE_FP:
|
|
|
|
fclose(fh->handle.fp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-10-30 02:23:51 +08:00
|
|
|
%}
|
2000-10-29 22:56:16 +08:00
|
|
|
|
2001-05-03 05:52:30 +08:00
|
|
|
NEWLINE ("\r"|"\n"|"\r\n")
|
|
|
|
|
2000-10-30 02:23:51 +08:00
|
|
|
%option noyywrap
|
|
|
|
%option yylineno
|
2000-10-29 22:56:16 +08:00
|
|
|
|
2000-10-30 02:23:51 +08:00
|
|
|
%%
|
2000-10-29 22:56:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
<INITIAL>[ ]*("true"|"on"|"yes")[ ]* {
|
2001-08-11 23:56:40 +08:00
|
|
|
ini_lval->value.str.val = zend_strndup("1", 1);
|
2000-10-30 02:23:51 +08:00
|
|
|
ini_lval->value.str.len = 1;
|
|
|
|
ini_lval->type = IS_STRING;
|
2000-10-29 22:56:16 +08:00
|
|
|
return CFG_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
<INITIAL>[ ]*("false"|"off"|"no"|"none")[ ]* {
|
2001-08-11 23:56:40 +08:00
|
|
|
ini_lval->value.str.val = zend_strndup("", 0);
|
2000-10-30 02:23:51 +08:00
|
|
|
ini_lval->value.str.len = 0;
|
|
|
|
ini_lval->type = IS_STRING;
|
2000-10-29 22:56:16 +08:00
|
|
|
return CFG_FALSE;
|
|
|
|
}
|
|
|
|
|
2002-06-05 05:58:05 +08:00
|
|
|
<INITIAL>[[][^[]+[\]][ ]*{NEWLINE}? {
|
2000-10-29 22:56:16 +08:00
|
|
|
/* SECTION */
|
|
|
|
|
2002-06-05 05:58:05 +08:00
|
|
|
/* eat trailng and spaces ] */
|
|
|
|
while (yyleng>0 && (yytext[yyleng-1]=='\n' || yytext[yyleng-1]=='\r' || yytext[yyleng-1]==']' || yytext[yyleng-1]==' ')) {
|
2000-10-29 22:56:16 +08:00
|
|
|
yyleng--;
|
|
|
|
yytext[yyleng]=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* eat leading [ */
|
|
|
|
yytext++;
|
|
|
|
yyleng--;
|
|
|
|
|
2001-08-11 23:56:40 +08:00
|
|
|
ini_lval->value.str.val = zend_strndup(yytext, yyleng);
|
2000-10-30 02:23:51 +08:00
|
|
|
ini_lval->value.str.len = yyleng;
|
|
|
|
ini_lval->type = IS_STRING;
|
2000-10-29 22:56:16 +08:00
|
|
|
return SECTION;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
<INITIAL>["][^\n\r"]*["] {
|
|
|
|
/* ENCAPSULATED TC_STRING */
|
|
|
|
|
|
|
|
/* eat trailing " */
|
|
|
|
yytext[yyleng-1]=0;
|
|
|
|
|
|
|
|
/* eat leading " */
|
|
|
|
yytext++;
|
|
|
|
|
2000-10-30 02:23:51 +08:00
|
|
|
ini_lval->value.str.val = zend_strndup(yytext, yyleng - 2);
|
|
|
|
ini_lval->value.str.len = yyleng - 2;
|
|
|
|
ini_lval->type = IS_STRING;
|
2000-10-29 22:56:16 +08:00
|
|
|
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) {
|
2001-08-11 23:56:40 +08:00
|
|
|
ini_lval->value.str.val = zend_strndup(yytext, yyleng);
|
2000-10-30 02:23:51 +08:00
|
|
|
ini_lval->value.str.len = yyleng;
|
|
|
|
ini_lval->type = IS_STRING;
|
2000-10-29 22:56:16 +08:00
|
|
|
return TC_STRING;
|
|
|
|
} else {
|
|
|
|
/* whitespace */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<INITIAL>[=\n] {
|
|
|
|
return yytext[0];
|
|
|
|
}
|
|
|
|
|
2001-05-03 05:52:30 +08:00
|
|
|
<INITIAL>{NEWLINE} {
|
2000-10-29 22:56:16 +08:00
|
|
|
return '\n';
|
|
|
|
}
|
|
|
|
|
2001-05-03 05:52:30 +08:00
|
|
|
<INITIAL>[;][^\r\n]*{NEWLINE}? {
|
2000-10-29 22:56:16 +08:00
|
|
|
/* comment */
|
|
|
|
return '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
<INITIAL>[ \t] {
|
|
|
|
/* eat whitespace */
|
|
|
|
}
|
|
|
|
|
|
|
|
<INITIAL>. {
|
|
|
|
#if DEBUG
|
2001-08-11 23:56:40 +08:00
|
|
|
php_error(E_NOTICE,"Unexpected character on line %d: '%s' (ASCII %d)\n", yylineno, yytext, yytext[0]);
|
2000-10-29 22:56:16 +08:00
|
|
|
#endif
|
|
|
|
}
|
2000-11-03 10:45:55 +08:00
|
|
|
|
|
|
|
<<EOF>> {
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER TSRMLS_CC);
|
2000-11-03 10:45:55 +08:00
|
|
|
yyterminate();
|
|
|
|
}
|