1999-04-08 02:10:10 +08:00
|
|
|
%{
|
|
|
|
|
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2006-01-05 07:54:12 +08:00
|
|
|
| Copyright (c) 1998-2006 Zend Technologies Ltd. (http://www.zend.com) |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:16:21 +08:00
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
2003-02-01 15:32:09 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2001-12-11 23:16:21 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
1999-07-16 22:58: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. |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2003-02-01 09:49:15 +08:00
|
|
|
/* $Id$ */
|
|
|
|
|
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
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
%}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
%x ST_IN_SCRIPTING
|
|
|
|
%x ST_DOUBLE_QUOTES
|
|
|
|
%x ST_BACKQUOTE
|
|
|
|
%x ST_HEREDOC
|
|
|
|
%x ST_LOOKING_FOR_PROPERTY
|
|
|
|
%x ST_LOOKING_FOR_VARNAME
|
|
|
|
%x ST_COMMENT
|
2003-03-20 05:17:47 +08:00
|
|
|
%x ST_DOC_COMMENT
|
2000-12-18 04:03:35 +08:00
|
|
|
%x ST_ONE_LINE_COMMENT
|
1999-04-08 02:10:10 +08:00
|
|
|
%option stack
|
|
|
|
|
|
|
|
%{
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include "zend.h"
|
|
|
|
#include "zend_alloc.h"
|
2004-12-30 23:18:24 +08:00
|
|
|
#include <zend_language_parser.h>
|
1999-04-08 02:10:10 +08:00
|
|
|
#include "zend_compile.h"
|
2000-10-29 22:35:34 +08:00
|
|
|
#include "zend_language_scanner.h"
|
1999-04-08 02:10:10 +08:00
|
|
|
#include "zend_highlight.h"
|
|
|
|
#include "zend_constants.h"
|
|
|
|
#include "zend_variables.h"
|
|
|
|
#include "zend_operators.h"
|
2004-07-16 14:50:57 +08:00
|
|
|
#include "zend_API.h"
|
2004-11-04 07:13:32 +08:00
|
|
|
#include "zend_strtod.h"
|
2005-08-12 07:35:03 +08:00
|
|
|
#include "zend_unicode.h"
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-09-07 00:14:08 +08:00
|
|
|
#ifdef HAVE_STDARG_H
|
|
|
|
# include <stdarg.h>
|
1999-04-08 02:10:10 +08:00
|
|
|
#endif
|
|
|
|
|
1999-09-07 00:14:08 +08:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
1999-05-12 01:50:37 +08:00
|
|
|
#endif
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
#define YY_DECL int lex_scan(zval *zendlval TSRMLS_DC)
|
2000-10-29 23:13:20 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#define ECHO { ZEND_WRITE( yytext, yyleng ); }
|
|
|
|
|
1999-04-23 11:32:33 +08:00
|
|
|
#ifdef ZTS
|
1999-04-08 02:10:10 +08:00
|
|
|
# define MY_INPUT yyinput
|
|
|
|
#else
|
|
|
|
# define MY_INPUT input
|
|
|
|
#endif
|
|
|
|
|
2001-08-06 21:48:51 +08:00
|
|
|
|
|
|
|
/* Globals Macros */
|
|
|
|
#define SCNG LANG_SCNG
|
|
|
|
#ifdef ZTS
|
|
|
|
ZEND_API ts_rsrc_id language_scanner_globals_id;
|
|
|
|
#else
|
|
|
|
ZEND_API zend_scanner_globals language_scanner_globals;
|
|
|
|
#endif
|
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
#define YY_INPUT(buf, result, max_size) \
|
|
|
|
if ( ((result = zend_unicode_yyinput(yyin, buf, max_size TSRMLS_CC)) == 0) \
|
|
|
|
&& zend_stream_ferror( yyin TSRMLS_CC) ) \
|
|
|
|
YY_FATAL_ERROR( "input in flex scanner failed" );
|
1999-09-28 19:54:02 +08:00
|
|
|
|
1999-05-07 03:13:13 +08:00
|
|
|
#define YY_FATAL_ERROR zend_fatal_scanner_error
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-08-11 23:56:40 +08:00
|
|
|
#define HANDLE_NEWLINES(s, l) \
|
2001-05-09 03:42:14 +08:00
|
|
|
do { \
|
2001-08-11 23:56:40 +08:00
|
|
|
char *p = (s), *boundary = p+(l); \
|
2001-05-09 03:42:14 +08:00
|
|
|
\
|
|
|
|
while (p<boundary) { \
|
|
|
|
if (*p == '\n') { \
|
|
|
|
CG(zend_lineno)++; \
|
|
|
|
} else if ((*p == '\r') && (p+1 < boundary) && (*(p+1) != '\n')) { \
|
|
|
|
CG(zend_lineno)++; \
|
|
|
|
} \
|
|
|
|
p++; \
|
|
|
|
} \
|
2001-04-28 02:53:25 +08:00
|
|
|
} while (0)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#define HANDLE_NEWLINE(c) \
|
|
|
|
{ \
|
2001-05-09 03:42:14 +08:00
|
|
|
if (c == '\n' || c == '\r') { \
|
1999-04-08 02:10:10 +08:00
|
|
|
CG(zend_lineno)++; \
|
|
|
|
} \
|
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2000-12-18 04:23:24 +08:00
|
|
|
#define ZEND_IS_OCT(c) ((c)>='0' && (c)<='7')
|
1999-05-14 19:29:34 +08:00
|
|
|
#define ZEND_IS_HEX(c) (((c)>='0' && (c)<='9') || ((c)>='a' && (c)<='f') || ((c)>='A' && (c)<='F'))
|
|
|
|
|
1999-05-07 03:13:13 +08:00
|
|
|
|
|
|
|
void zend_fatal_scanner_error(char *message)
|
|
|
|
{
|
2003-09-22 12:21:44 +08:00
|
|
|
zend_error(E_COMPILE_ERROR, "%s", message);
|
1999-05-07 03:13:13 +08:00
|
|
|
}
|
|
|
|
|
1999-04-23 11:32:33 +08:00
|
|
|
BEGIN_EXTERN_C()
|
2001-07-28 18:51:54 +08:00
|
|
|
void startup_scanner(TSRMLS_D)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
CG(heredoc) = NULL;
|
2005-06-09 16:52:51 +08:00
|
|
|
CG(heredoc_len) = 0;
|
|
|
|
CG(doc_comment) = NULL;
|
|
|
|
CG(doc_comment_len) = 0;
|
2002-08-15 08:25:27 +08:00
|
|
|
SCNG(yy_start_stack_ptr) = 0;
|
|
|
|
SCNG(yy_start_stack_depth) = 0;
|
2005-01-03 18:01:03 +08:00
|
|
|
SCNG(current_buffer) = NULL;
|
2005-08-12 07:35:03 +08:00
|
|
|
|
|
|
|
SCNG(input_conv) = NULL;
|
|
|
|
SCNG(output_conv) = NULL;
|
|
|
|
SCNG(encoding_checked) = 0;
|
|
|
|
SCNG(rest_str) = NULL;
|
|
|
|
SCNG(rest_len) = 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void shutdown_scanner(TSRMLS_D)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
if (CG(heredoc)) {
|
|
|
|
efree(CG(heredoc));
|
|
|
|
CG(heredoc_len)=0;
|
|
|
|
}
|
2005-01-18 01:20:56 +08:00
|
|
|
if (SCNG(yy_start_stack)) {
|
|
|
|
yy_flex_free(SCNG(yy_start_stack));
|
|
|
|
SCNG(yy_start_stack) = NULL;
|
|
|
|
}
|
2003-04-03 00:51:49 +08:00
|
|
|
RESET_DOC_COMMENT();
|
2005-08-12 07:35:03 +08:00
|
|
|
|
|
|
|
if (SCNG(input_conv)) {
|
|
|
|
ucnv_close(SCNG(input_conv));
|
|
|
|
SCNG(input_conv) = NULL;
|
|
|
|
}
|
|
|
|
if (SCNG(output_conv)) {
|
|
|
|
ucnv_close(SCNG(output_conv));
|
|
|
|
SCNG(output_conv) = NULL;
|
|
|
|
}
|
|
|
|
SCNG(encoding_checked) = 0;
|
|
|
|
if (SCNG(rest_str)) {
|
|
|
|
efree(SCNG(rest_str));
|
|
|
|
SCNG(rest_str) = NULL;
|
|
|
|
}
|
|
|
|
SCNG(rest_len) = 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
1999-04-23 11:32:33 +08:00
|
|
|
END_EXTERN_C()
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
2001-12-19 03:56:23 +08:00
|
|
|
ZEND_API void zend_save_lexical_state(zend_lex_state *lex_state TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2001-08-11 23:56:40 +08:00
|
|
|
memcpy(&lex_state->buffer_state, &YY_CURRENT_BUFFER, sizeof(YY_BUFFER_STATE));
|
2001-09-20 06:34:11 +08:00
|
|
|
lex_state->in = SCNG(yy_in);
|
1999-04-08 02:10:10 +08:00
|
|
|
lex_state->state = YYSTATE;
|
2001-07-28 18:51:54 +08:00
|
|
|
lex_state->filename = zend_get_compiled_filename(TSRMLS_C);
|
2000-06-17 22:12:58 +08:00
|
|
|
lex_state->lineno = CG(zend_lineno);
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
lex_state->input_conv = SCNG(input_conv);
|
|
|
|
lex_state->output_conv = SCNG(output_conv);
|
|
|
|
lex_state->encoding_checked = SCNG(encoding_checked);
|
|
|
|
lex_state->rest_str = SCNG(rest_str);
|
|
|
|
lex_state->rest_len = SCNG(rest_len);
|
|
|
|
SCNG(input_conv) = NULL;
|
|
|
|
SCNG(output_conv) = NULL;
|
|
|
|
SCNG(encoding_checked) = 0;
|
|
|
|
SCNG(rest_str) = NULL;
|
|
|
|
SCNG(rest_len) = 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2001-12-19 03:56:23 +08:00
|
|
|
ZEND_API void zend_restore_lexical_state(zend_lex_state *lex_state TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
YY_BUFFER_STATE original_buffer_state = YY_CURRENT_BUFFER;
|
|
|
|
|
|
|
|
if (lex_state->buffer_state) {
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_switch_to_buffer(lex_state->buffer_state TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
|
|
|
YY_CURRENT_BUFFER = NULL;
|
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_delete_buffer(original_buffer_state TSRMLS_CC);
|
2001-09-20 06:34:11 +08:00
|
|
|
SCNG(yy_in) = lex_state->in;
|
1999-04-08 02:10:10 +08:00
|
|
|
BEGIN(lex_state->state);
|
2000-06-17 22:12:58 +08:00
|
|
|
CG(zend_lineno) = lex_state->lineno;
|
2001-07-30 15:43:02 +08:00
|
|
|
zend_restore_compiled_filename(lex_state->filename TSRMLS_CC);
|
2005-08-25 04:42:09 +08:00
|
|
|
zend_restore_compiled_script_encoding(lex_state->script_encoding TSRMLS_CC);
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
if (SCNG(input_conv)) {
|
|
|
|
ucnv_close(SCNG(input_conv));
|
2004-03-05 06:50:55 +08:00
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
SCNG(input_conv) = lex_state->input_conv;
|
|
|
|
if (SCNG(output_conv)) {
|
|
|
|
ucnv_close(SCNG(output_conv));
|
2004-03-05 06:50:55 +08:00
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
SCNG(output_conv) = lex_state->output_conv;
|
|
|
|
SCNG(encoding_checked) = lex_state->encoding_checked;
|
|
|
|
if (SCNG(rest_str)) {
|
|
|
|
efree(SCNG(rest_str));
|
|
|
|
}
|
|
|
|
SCNG(rest_str) = lex_state->rest_str;
|
|
|
|
SCNG(rest_len) = lex_state->rest_len;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-04-23 11:32:33 +08:00
|
|
|
BEGIN_EXTERN_C()
|
1999-05-22 10:13:01 +08:00
|
|
|
|
|
|
|
|
2000-08-14 02:00:50 +08:00
|
|
|
ZEND_API void zend_file_handle_dtor(zend_file_handle *fh)
|
1999-05-11 04:46:42 +08:00
|
|
|
{
|
2003-02-18 17:37:54 +08:00
|
|
|
TSRMLS_FETCH();
|
|
|
|
|
1999-11-27 07:45:22 +08:00
|
|
|
switch (fh->type) {
|
|
|
|
case ZEND_HANDLE_FP:
|
|
|
|
fclose(fh->handle.fp);
|
|
|
|
break;
|
2003-02-18 17:37:54 +08:00
|
|
|
case ZEND_HANDLE_STREAM:
|
2005-06-06 09:51:48 +08:00
|
|
|
if (fh->handle.stream.closer) {
|
|
|
|
fh->handle.stream.closer(fh->handle.stream.handle TSRMLS_CC);
|
|
|
|
}
|
2003-02-18 17:37:54 +08:00
|
|
|
break;
|
1999-12-04 22:26:26 +08:00
|
|
|
case ZEND_HANDLE_FILENAME:
|
|
|
|
/* We're only supposed to get here when destructing the used_files hash,
|
|
|
|
* which doesn't really contain open files, but references to their names/paths
|
|
|
|
*/
|
|
|
|
break;
|
1999-11-27 07:45:22 +08:00
|
|
|
}
|
1999-12-04 21:26:57 +08:00
|
|
|
if (fh->opened_path) {
|
2000-09-01 06:24:20 +08:00
|
|
|
efree(fh->opened_path);
|
2003-02-18 17:37:54 +08:00
|
|
|
fh->opened_path = NULL;
|
1999-12-04 21:26:57 +08:00
|
|
|
}
|
|
|
|
if (fh->free_filename && fh->filename) {
|
|
|
|
efree(fh->filename);
|
2003-02-18 17:37:54 +08:00
|
|
|
fh->filename = NULL;
|
1999-12-04 21:26:57 +08:00
|
|
|
}
|
1999-05-22 10:13:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-27 07:45:22 +08:00
|
|
|
int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2)
|
1999-05-22 10:13:01 +08:00
|
|
|
{
|
1999-11-27 07:45:22 +08:00
|
|
|
if (fh1->type != fh2->type) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
switch (fh1->type) {
|
|
|
|
case ZEND_HANDLE_FP:
|
|
|
|
return fh1->handle.fp==fh2->handle.fp;
|
|
|
|
break;
|
2003-02-18 17:37:54 +08:00
|
|
|
case ZEND_HANDLE_STREAM:
|
|
|
|
return fh1->handle.stream.handle == fh2->handle.stream.handle;
|
|
|
|
break;
|
1999-11-27 07:48:04 +08:00
|
|
|
}
|
1999-11-27 07:45:22 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
ZEND_API void zend_destroy_file_handle(zend_file_handle *file_handle TSRMLS_DC)
|
1999-11-27 07:45:22 +08:00
|
|
|
{
|
|
|
|
zend_llist_del_element(&CG(open_files), file_handle, (int (*)(void *, void *)) zend_compare_file_handles);
|
1999-05-11 04:46:42 +08:00
|
|
|
}
|
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
/* Convert one octal digit to a numeric value 0..7, or -1 on failure */
|
|
|
|
static inline int8_t zend_get_octal_digit(UChar c) {
|
|
|
|
if (c >= 0x0030 && c <= 0x0037) {
|
|
|
|
return (int8_t)(c - 0x0030);
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
1999-05-22 10:13:01 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
/*
|
|
|
|
* Convert one hex digit to a numeric value 0..F, or -1 on failure.
|
|
|
|
* Borrowed from ICU.
|
|
|
|
*/
|
|
|
|
static inline int8_t zend_get_hex_digit(UChar c) {
|
|
|
|
if (c >= 0x0030 && c <= 0x0039) {
|
|
|
|
return (int8_t)(c - 0x0030);
|
|
|
|
}
|
|
|
|
if (c >= 0x0041 && c <= 0x0046) {
|
|
|
|
return (int8_t)(c - (0x0041 - 10));
|
|
|
|
}
|
|
|
|
if (c >= 0x0061 && c <= 0x0066) {
|
|
|
|
return (int8_t)(c - (0x0061 - 10));
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline zend_bool zend_digits_to_codepoint(char *s, char *end, UChar32 *c, int8_t digits)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2005-08-12 07:35:03 +08:00
|
|
|
int8_t n = 0;
|
|
|
|
int8_t digit = 0;
|
|
|
|
UChar32 codepoint = 0;
|
2000-07-27 23:36:54 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
while (s < end && n < digits) {
|
|
|
|
digit = zend_get_hex_digit((UChar)*s);
|
|
|
|
if (digit < 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
codepoint = (codepoint << 4) | digit;
|
|
|
|
++s;
|
|
|
|
++n;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2001-03-12 23:42:18 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
if (n < digits) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*c = codepoint;
|
|
|
|
return 1;
|
|
|
|
}
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
static inline zend_bool zend_udigits_to_codepoint(UChar *s, UChar *end, UChar32 *c, int8_t digits)
|
|
|
|
{
|
|
|
|
int8_t n = 0;
|
|
|
|
int8_t digit = 0;
|
|
|
|
UChar32 codepoint = 0;
|
|
|
|
|
|
|
|
while (s < end && n < digits) {
|
|
|
|
digit = zend_get_hex_digit(*s);
|
|
|
|
if (digit < 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
codepoint = (codepoint << 4) | digit;
|
|
|
|
++s;
|
|
|
|
++n;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n < digits) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*c = codepoint;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int zend_uchar_from_name(char *name, UChar32 *c)
|
|
|
|
{
|
|
|
|
UChar32 codepoint = 0;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
|
|
|
|
codepoint = u_charFromName(U_UNICODE_CHAR_NAME, name, &status);
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
*c = codepoint;
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int zend_uchar_from_uname(UChar *name, int32_t name_len, UChar32 *c)
|
|
|
|
{
|
|
|
|
UChar32 codepoint = 0;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
char buf[128];
|
|
|
|
|
|
|
|
u_UCharsToChars(name, buf, name_len);
|
|
|
|
buf[name_len] = 0;
|
|
|
|
codepoint = u_charFromName(U_UNICODE_CHAR_NAME, buf, &status);
|
|
|
|
if (U_SUCCESS(status)) {
|
|
|
|
*c = codepoint;
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int zend_parse_charname_sequence(UChar **s, UChar *end, UChar32 *c)
|
|
|
|
{
|
|
|
|
UChar *start;
|
|
|
|
|
|
|
|
if (**s == '{') {
|
|
|
|
start = ++(*s);
|
|
|
|
while ((*s)++ != end) {
|
|
|
|
if (**s == '}') {
|
|
|
|
if (zend_uchar_from_uname(start, *s - start, c)) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
/* safe, since *s points to '}' */
|
|
|
|
**s = 0;
|
|
|
|
zend_error(E_COMPILE_WARNING, "Invalid Unicode character name: '%r'", start);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int zend_copy_string_value(zval *zendlval, char *str, zend_uint str_len, zend_uchar type TSRMLS_DC)
|
|
|
|
{
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
int32_t consumed = 0;
|
|
|
|
|
|
|
|
if (type == IS_UNICODE) {
|
|
|
|
consumed = zend_convert_scanner_output(&zendlval->value.ustr.val, &zendlval->value.ustr.len, str, str_len, &status TSRMLS_CC);
|
|
|
|
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
zend_error(E_COMPILE_WARNING,"Illegal or truncated character in input: offset %d, state=%d", consumed, YYSTATE);
|
|
|
|
efree(zendlval->value.ustr.val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
zendlval->type = IS_UNICODE;
|
|
|
|
} else {
|
|
|
|
zendlval->value.str.val = (char *)estrndup(str, str_len);
|
|
|
|
zendlval->value.str.len = str_len;
|
|
|
|
zendlval->type = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int zend_check_and_normalize_identifier(zval *zendlval)
|
|
|
|
{
|
|
|
|
UChar *norm;
|
|
|
|
int32_t norm_len;
|
|
|
|
|
|
|
|
if (!zend_is_valid_identifier(Z_USTRVAL_P(zendlval), Z_USTRLEN_P(zendlval))) {
|
|
|
|
zend_error(E_COMPILE_WARNING, "Invalid identifier syntax: %r", Z_USTRVAL_P(zendlval));
|
|
|
|
efree(Z_USTRVAL_P(zendlval));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!zend_normalize_identifier(&norm, &norm_len, Z_USTRVAL_P(zendlval), Z_USTRLEN_P(zendlval), 0)) {
|
|
|
|
zend_error(E_COMPILE_WARNING, "Could not normalize identifier: %r", Z_USTRVAL_P(zendlval));
|
|
|
|
efree(Z_USTRVAL_P(zendlval));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (norm != Z_USTRVAL_P(zendlval)) {
|
|
|
|
efree(Z_USTRVAL_P(zendlval));
|
|
|
|
ZVAL_UNICODEL(zendlval, norm, norm_len, 0);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void zend_scanner_output_callback(
|
|
|
|
const void *context,
|
|
|
|
UConverterToUnicodeArgs *toUArgs,
|
|
|
|
const char *codeUnits,
|
|
|
|
int32_t length,
|
|
|
|
UConverterCallbackReason reason,
|
|
|
|
UErrorCode *err
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (*err == U_TRUNCATED_CHAR_FOUND ||
|
|
|
|
*err == U_ILLEGAL_CHAR_FOUND ||
|
|
|
|
*err == U_INVALID_CHAR_FOUND) {
|
|
|
|
*(const char **)context = toUArgs->source - length;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int is_encoding_flex_compatible(const char *enc TSRMLS_DC)
|
|
|
|
{
|
|
|
|
int key_len = strlen(enc)+1;
|
|
|
|
unsigned char ret;
|
|
|
|
unsigned char *ret_ptr;
|
|
|
|
|
|
|
|
if (zend_hash_find(&UG(flex_compatible), (char*)enc, key_len, (void**)&ret_ptr) == SUCCESS) {
|
|
|
|
return *ret_ptr;
|
|
|
|
} else {
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
UConverter *conv = ucnv_open(enc, &status);
|
|
|
|
|
|
|
|
if (U_FAILURE(status)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ucnv_getType(conv)) {
|
|
|
|
case UCNV_DBCS:
|
|
|
|
case UCNV_UTF16_BigEndian:
|
|
|
|
case UCNV_UTF16_LittleEndian:
|
|
|
|
case UCNV_UTF32_BigEndian:
|
|
|
|
case UCNV_UTF32_LittleEndian:
|
|
|
|
case UCNV_EBCDIC_STATEFUL:
|
|
|
|
case UCNV_ISO_2022:
|
|
|
|
case UCNV_LMBCS_1:
|
|
|
|
case UCNV_LMBCS_2:
|
|
|
|
case UCNV_LMBCS_3:
|
|
|
|
case UCNV_LMBCS_4:
|
|
|
|
case UCNV_LMBCS_5:
|
|
|
|
case UCNV_LMBCS_6:
|
|
|
|
case UCNV_LMBCS_8:
|
|
|
|
case UCNV_LMBCS_11:
|
|
|
|
case UCNV_LMBCS_16:
|
|
|
|
case UCNV_LMBCS_17:
|
|
|
|
case UCNV_LMBCS_18:
|
|
|
|
case UCNV_LMBCS_19:
|
|
|
|
case UCNV_HZ:
|
|
|
|
case UCNV_SCSU:
|
|
|
|
case UCNV_UTF7:
|
|
|
|
case UCNV_BOCU1:
|
|
|
|
case UCNV_UTF16:
|
|
|
|
case UCNV_UTF32:
|
|
|
|
case UCNV_IMAP_MAILBOX:
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
case UCNV_LATIN_1:
|
|
|
|
case UCNV_UTF8:
|
|
|
|
case UCNV_ISCII:
|
|
|
|
case UCNV_US_ASCII:
|
|
|
|
case UCNV_CESU8:
|
|
|
|
ret = 1;
|
|
|
|
break;
|
|
|
|
default: {
|
|
|
|
static const UChar ascii[] = {
|
|
|
|
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
|
|
|
|
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F,
|
|
|
|
0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, 0x2C, 0x2D, 0x2E, 0x2F,
|
|
|
|
0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, 0x3D, 0x3E, 0x3F,
|
|
|
|
0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x4B, 0x4C, 0x4D, 0x4E, 0x4F,
|
|
|
|
0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x5B, 0x5C, 0x5D, 0x5E, 0x5F,
|
|
|
|
0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,
|
|
|
|
0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x7B, 0x7C, 0x7D, 0x7E
|
|
|
|
};
|
|
|
|
static const char expected[] =
|
|
|
|
"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F"
|
|
|
|
"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"
|
|
|
|
"\x20\x21\x22\x23\x24\x25\x26\x27\x28\x29\x2A\x2B\x2C\x2D\x2E\x2F"
|
|
|
|
"\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3A\x3B\x3C\x3D\x3E\x3F"
|
|
|
|
"\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4A\x4B\x4C\x4D\x4E\x4F"
|
|
|
|
"\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5A\x5B\x5C\x5D\x5E\x5F"
|
|
|
|
"\x60\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6A\x6B\x6C\x6D\x6E\x6F"
|
|
|
|
"\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7A\x7B\x7C\x7D\x7E";
|
|
|
|
char output[sizeof(expected)];
|
|
|
|
|
|
|
|
if (ucnv_fromUChars(conv,
|
|
|
|
output, sizeof(output),
|
|
|
|
ascii, sizeof(expected),
|
|
|
|
&status) != sizeof(expected) ||
|
|
|
|
U_FAILURE(status)) {
|
|
|
|
ret = 0;
|
|
|
|
} else {
|
|
|
|
ret = (memcmp(expected, output, sizeof(expected)) == 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ucnv_close(conv);
|
|
|
|
|
|
|
|
zend_hash_add(&UG(flex_compatible), (char*)enc, key_len, (void**)&ret, sizeof(ret), NULL);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ZEND_API int zend_prepare_scanner_converters(const char *onetime_encoding, int run_time TSRMLS_DC)
|
|
|
|
{
|
|
|
|
const char *encoding = NULL;
|
|
|
|
|
|
|
|
if (SCNG(input_conv)) {
|
|
|
|
/* Script is already converted to UTF-8 */
|
|
|
|
return zend_set_converter_encoding(&SCNG(output_conv), "UTF-8");
|
|
|
|
} else {
|
|
|
|
encoding = onetime_encoding;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We need to convert the input stream only if script_encoding is not ASCII compatible */
|
|
|
|
if (!is_encoding_flex_compatible(encoding TSRMLS_CC)) {
|
|
|
|
if (zend_set_converter_encoding(&SCNG(input_conv), encoding) == FAILURE) {
|
2003-08-11 13:24:42 +08:00
|
|
|
return FAILURE;
|
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
if (run_time) {
|
|
|
|
/* Convert rest of the buffer to unicode.runtime_encoding. */
|
|
|
|
YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
|
|
|
|
int offset, length, size;
|
|
|
|
const char *src, *old_src;
|
|
|
|
char rt_buf[8192];
|
|
|
|
char *target = rt_buf;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
|
|
|
|
old_src = src = yy_c_buf_p;
|
|
|
|
offset = yy_c_buf_p - b->yy_ch_buf;
|
|
|
|
length = b->yy_n_chars - offset;
|
|
|
|
size = b->yy_buf_size - offset;
|
|
|
|
|
|
|
|
ucnv_convertEx(UG(utf8_conv),
|
|
|
|
SCNG(input_conv),
|
|
|
|
&target, rt_buf+size-2,
|
|
|
|
&src, src+length,
|
|
|
|
NULL, NULL, NULL, NULL,
|
|
|
|
TRUE, TRUE,
|
|
|
|
&status);
|
|
|
|
|
|
|
|
if (src - old_src < length) {
|
|
|
|
/* Cannot fit into buffer. Schedule for next read. */
|
|
|
|
SCNG(rest_len) = length - (src - old_src);
|
|
|
|
SCNG(rest_str) = emalloc(SCNG(rest_len));
|
|
|
|
memcpy(SCNG(rest_str), src, SCNG(rest_len));
|
|
|
|
}
|
|
|
|
length = target - rt_buf;
|
|
|
|
memcpy(yy_c_buf_p, rt_buf, length);
|
|
|
|
SCNG(yy_n_chars) = b->yy_n_chars = length + offset;
|
|
|
|
b->yy_ch_buf[b->yy_n_chars] = YY_END_OF_BUFFER_CHAR;
|
|
|
|
b->yy_ch_buf[b->yy_n_chars+1] = YY_END_OF_BUFFER_CHAR;
|
|
|
|
}
|
|
|
|
encoding = "UTF-8";
|
|
|
|
}
|
|
|
|
return zend_set_converter_encoding(&SCNG(output_conv), encoding);
|
|
|
|
}
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
ZEND_API int32_t zend_convert_scanner_output(UChar **target, int32_t *target_len, const char *source, int32_t source_len, UErrorCode *status TSRMLS_DC)
|
|
|
|
{
|
|
|
|
const char *source_consumed = NULL;
|
|
|
|
|
|
|
|
/* set our custom callback with context */
|
|
|
|
ucnv_setToUCallBack(SCNG(output_conv), zend_scanner_output_callback, &source_consumed, NULL, NULL, status);
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
/* reset the error and perform conversion */
|
|
|
|
*status = U_ZERO_ERROR;
|
|
|
|
zend_convert_to_unicode(SCNG(output_conv), target, target_len, source, source_len, status);
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
/* figure out how many source bytes were consumed */
|
|
|
|
if (U_SUCCESS(*status)) {
|
|
|
|
return source_len;
|
|
|
|
} else if (source_consumed) {
|
|
|
|
return source_consumed - source;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int zend_unicode_yyinput(zend_file_handle *file_handle, char *buf, size_t len TSRMLS_DC)
|
|
|
|
{
|
|
|
|
size_t n;
|
|
|
|
int c = '*';
|
|
|
|
const char *src = buf;
|
|
|
|
|
|
|
|
/* Look of we have rest from previous call */
|
|
|
|
if (SCNG(rest_str)) {
|
|
|
|
if (len >= SCNG(rest_len)) {
|
|
|
|
memcpy(buf, SCNG(rest_str), SCNG(rest_len));
|
|
|
|
efree(SCNG(rest_str));
|
|
|
|
SCNG(rest_str) = NULL;
|
|
|
|
n = SCNG(rest_len);
|
|
|
|
SCNG(rest_len) = 0;
|
2003-08-11 13:24:42 +08:00
|
|
|
} else {
|
2005-08-12 07:35:03 +08:00
|
|
|
memcpy(buf, SCNG(rest_str), len);
|
|
|
|
memcpy(SCNG(rest_str), SCNG(rest_str)+len, SCNG(rest_len)-len);
|
|
|
|
n = len;
|
|
|
|
SCNG(rest_len) -= len;
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
|
|
|
} else {
|
2005-08-12 07:35:03 +08:00
|
|
|
if (file_handle->handle.stream.interactive) {
|
|
|
|
for (n = 0; n < sizeof(buf) && (c = zend_stream_getc(yyin TSRMLS_CC)) != EOF && c != '\n'; ++n) {
|
|
|
|
buf[n] = (char)c;
|
|
|
|
}
|
|
|
|
if (c == '\n') {
|
|
|
|
buf[n++] = (char) c;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
n = zend_stream_read(file_handle, buf, len TSRMLS_CC);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't make any conversions if unicode=off */
|
|
|
|
if (!UG(unicode)) {
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Autodetect encoding */
|
|
|
|
if (!SCNG(encoding_checked)) {
|
|
|
|
int32_t signatureLength;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
const char *encoding;
|
|
|
|
|
|
|
|
encoding = ucnv_detectUnicodeSignature(buf, n, &signatureLength, &status);
|
|
|
|
if (encoding && U_SUCCESS(status)) {
|
|
|
|
src += signatureLength;
|
|
|
|
n -= signatureLength;
|
|
|
|
if (is_encoding_flex_compatible(encoding TSRMLS_CC)) {
|
|
|
|
if (SCNG(input_conv)) {
|
|
|
|
ucnv_close(SCNG(input_conv));
|
|
|
|
SCNG(input_conv) = NULL;
|
|
|
|
}
|
|
|
|
zend_set_converter_encoding(&SCNG(output_conv), encoding);
|
|
|
|
if (signatureLength > 0) {
|
|
|
|
memcpy(buf, src, n);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
zend_set_converter_encoding(&SCNG(input_conv), encoding);
|
|
|
|
zend_set_converter_encoding(&SCNG(output_conv), "UTF-8");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
status = U_ZERO_ERROR;
|
|
|
|
SCNG(encoding_checked) = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SCNG(input_conv) && n >= 0) {
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
char rt_buf[8192];
|
|
|
|
char *target = rt_buf;
|
|
|
|
const char *old_src = src;
|
|
|
|
|
|
|
|
ucnv_convertEx(UG(utf8_conv),
|
|
|
|
SCNG(input_conv),
|
|
|
|
&target, rt_buf+len,
|
|
|
|
&src, src+n,
|
|
|
|
NULL, NULL, NULL, NULL,
|
|
|
|
TRUE, TRUE,
|
|
|
|
&status);
|
|
|
|
if (src - old_src < n) {
|
|
|
|
/* Cannot fit into buffer. Schedule for next read. */
|
|
|
|
SCNG(rest_len) = n - (src - old_src);
|
|
|
|
SCNG(rest_str) = emalloc(SCNG(rest_len));
|
|
|
|
memcpy(SCNG(rest_str), src, SCNG(rest_len));
|
|
|
|
}
|
|
|
|
n = target - rt_buf;
|
|
|
|
memcpy(buf, rt_buf, n);
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
ZEND_API int open_file_for_scanning(zend_file_handle *file_handle TSRMLS_DC)
|
|
|
|
{
|
|
|
|
char *file_path=NULL;
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
|
|
|
|
if (FAILURE == zend_stream_fixup(file_handle TSRMLS_CC)) {
|
|
|
|
return FAILURE;
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
|
|
|
|
zend_llist_add_element(&CG(open_files), file_handle);
|
|
|
|
|
|
|
|
/* Reset the scanner for scanning the new file */
|
|
|
|
SCNG(yy_in) = file_handle;
|
|
|
|
|
|
|
|
zend_prepare_scanner_converters(ucnv_getName(ZEND_U_CONVERTER(UG(script_encoding_conv)), &status), 0 TSRMLS_CC);
|
2001-09-20 06:34:11 +08:00
|
|
|
yy_switch_to_buffer(yy_create_buffer(SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC) TSRMLS_CC);
|
2003-08-11 13:24:42 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
BEGIN(INITIAL);
|
2001-03-12 23:42:18 +08:00
|
|
|
|
2001-04-28 02:51:56 +08:00
|
|
|
if (file_handle->opened_path) {
|
2003-02-01 15:32:09 +08:00
|
|
|
file_path = file_handle->opened_path;
|
2001-03-12 23:42:18 +08:00
|
|
|
} else {
|
|
|
|
file_path = file_handle->filename;
|
|
|
|
}
|
|
|
|
|
2001-07-30 15:43:02 +08:00
|
|
|
zend_set_compiled_filename(file_path TSRMLS_CC);
|
2005-08-25 04:42:09 +08:00
|
|
|
zend_set_compiled_script_encoding((char*)ucnv_getName(SCNG(output_conv), &status) TSRMLS_CC);
|
2003-02-01 15:32:09 +08:00
|
|
|
|
2003-01-06 00:09:59 +08:00
|
|
|
if (CG(start_lineno)) {
|
|
|
|
CG(zend_lineno) = CG(start_lineno);
|
|
|
|
CG(start_lineno) = 0;
|
2002-11-06 06:01:35 +08:00
|
|
|
} else {
|
|
|
|
CG(zend_lineno) = 1;
|
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
|
2001-08-06 22:36:46 +08:00
|
|
|
CG(increment_lineno) = 0;
|
1999-04-23 18:21:00 +08:00
|
|
|
return SUCCESS;
|
1999-04-23 11:32:33 +08:00
|
|
|
}
|
|
|
|
END_EXTERN_C()
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-04-15 03:53:33 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
ZEND_API zend_op_array *compile_file(zend_file_handle *file_handle, int type TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
zend_lex_state original_lex_state;
|
|
|
|
zend_op_array *op_array = (zend_op_array *) emalloc(sizeof(zend_op_array));
|
|
|
|
zend_op_array *original_active_op_array = CG(active_op_array);
|
|
|
|
zend_op_array *retval=NULL;
|
1999-05-12 01:50:37 +08:00
|
|
|
int compiler_result;
|
2000-08-10 03:22:35 +08:00
|
|
|
zend_bool compilation_successful=0;
|
2000-03-13 22:15:23 +08:00
|
|
|
znode retval_znode;
|
2000-02-04 22:45:58 +08:00
|
|
|
zend_bool original_in_compilation = CG(in_compilation);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2000-03-13 22:15:23 +08:00
|
|
|
retval_znode.op_type = IS_CONST;
|
|
|
|
retval_znode.u.constant.type = IS_LONG;
|
|
|
|
retval_znode.u.constant.value.lval = 1;
|
|
|
|
retval_znode.u.constant.is_ref = 0;
|
|
|
|
retval_znode.u.constant.refcount = 1;
|
|
|
|
|
2001-12-19 03:56:23 +08:00
|
|
|
zend_save_lexical_state(&original_lex_state TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-05-12 01:50:37 +08:00
|
|
|
retval = op_array; /* success oriented */
|
2000-03-16 01:32:29 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
if (open_file_for_scanning(file_handle TSRMLS_CC)==FAILURE) {
|
2000-08-16 00:44:40 +08:00
|
|
|
if (type==ZEND_REQUIRE) {
|
|
|
|
zend_message_dispatcher(ZMSG_FAILED_REQUIRE_FOPEN, file_handle->filename);
|
2003-02-01 15:32:09 +08:00
|
|
|
zend_bailout();
|
2000-08-16 00:44:40 +08:00
|
|
|
} else {
|
|
|
|
zend_message_dispatcher(ZMSG_FAILED_INCLUDE_FOPEN, file_handle->filename);
|
|
|
|
}
|
2000-08-10 03:22:35 +08:00
|
|
|
compilation_successful=0;
|
|
|
|
} else {
|
2001-07-28 18:51:54 +08:00
|
|
|
init_op_array(op_array, ZEND_USER_FUNCTION, INITIAL_OP_ARRAY_SIZE TSRMLS_CC);
|
2000-08-10 03:22:35 +08:00
|
|
|
CG(in_compilation) = 1;
|
|
|
|
CG(active_op_array) = op_array;
|
2001-07-28 18:51:54 +08:00
|
|
|
compiler_result = zendparse(TSRMLS_C);
|
|
|
|
zend_do_return(&retval_znode, 0 TSRMLS_CC);
|
2004-02-03 20:17:09 +08:00
|
|
|
zend_do_handle_exception(TSRMLS_C);
|
2000-08-10 03:22:35 +08:00
|
|
|
CG(in_compilation) = original_in_compilation;
|
|
|
|
if (compiler_result==1) { /* parser error */
|
2004-02-03 22:32:02 +08:00
|
|
|
zend_bailout();
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2000-08-10 03:22:35 +08:00
|
|
|
compilation_successful=1;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
1999-05-12 01:50:37 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
if (retval) {
|
2000-08-10 03:22:35 +08:00
|
|
|
CG(active_op_array) = original_active_op_array;
|
|
|
|
if (compilation_successful) {
|
2001-07-31 15:12:15 +08:00
|
|
|
pass_two(op_array TSRMLS_CC);
|
1999-06-11 22:51:44 +08:00
|
|
|
} else {
|
|
|
|
efree(op_array);
|
|
|
|
retval = NULL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
2001-01-04 07:00:01 +08:00
|
|
|
if (compilation_successful) {
|
2001-12-19 03:56:23 +08:00
|
|
|
zend_restore_lexical_state(&original_lex_state TSRMLS_CC);
|
2001-01-04 07:00:01 +08:00
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
zend_op_array *compile_filename(int type, zval *filename TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
zend_file_handle file_handle;
|
|
|
|
zval tmp;
|
|
|
|
zend_op_array *retval;
|
2002-11-03 00:52:59 +08:00
|
|
|
char *opened_path = NULL;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
if (filename->type != IS_STRING) {
|
|
|
|
tmp = *filename;
|
|
|
|
zval_copy_ctor(&tmp);
|
|
|
|
convert_to_string(&tmp);
|
|
|
|
filename = &tmp;
|
|
|
|
}
|
|
|
|
file_handle.filename = filename->value.str.val;
|
1999-12-04 21:26:57 +08:00
|
|
|
file_handle.free_filename = 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
file_handle.type = ZEND_HANDLE_FILENAME;
|
1999-12-02 22:37:16 +08:00
|
|
|
file_handle.opened_path = NULL;
|
2005-07-19 02:32:36 +08:00
|
|
|
file_handle.handle.fp = NULL;
|
1999-12-23 23:03:25 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
retval = zend_compile_file(&file_handle, type TSRMLS_CC);
|
2003-02-18 17:37:54 +08:00
|
|
|
if (retval && file_handle.handle.stream.handle) {
|
2000-10-06 01:58:46 +08:00
|
|
|
int dummy = 1;
|
2003-02-01 15:32:09 +08:00
|
|
|
|
2002-11-02 13:44:10 +08:00
|
|
|
if (!file_handle.opened_path) {
|
2002-11-03 00:52:59 +08:00
|
|
|
file_handle.opened_path = opened_path = estrndup(filename->value.str.val, filename->value.str.len);
|
2003-02-01 15:32:09 +08:00
|
|
|
}
|
|
|
|
|
2000-10-06 01:58:46 +08:00
|
|
|
zend_hash_add(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1, (void *)&dummy, sizeof(int), NULL);
|
2003-02-01 15:32:09 +08:00
|
|
|
|
2002-11-03 00:52:59 +08:00
|
|
|
if (opened_path) {
|
|
|
|
efree(opened_path);
|
|
|
|
}
|
2000-10-06 01:58:46 +08:00
|
|
|
}
|
2001-07-28 18:51:54 +08:00
|
|
|
zend_destroy_file_handle(&file_handle TSRMLS_CC);
|
1999-12-23 23:03:25 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
if (filename==&tmp) {
|
|
|
|
zval_dtor(&tmp);
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2001-12-19 03:56:23 +08:00
|
|
|
ZEND_API int zend_prepare_string_for_scanning(zval *str, char *filename TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2005-08-12 07:35:03 +08:00
|
|
|
const char *encoding;
|
2005-08-25 04:42:09 +08:00
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
2005-08-12 07:35:03 +08:00
|
|
|
|
|
|
|
if (Z_TYPE_P(str) == IS_UNICODE) {
|
|
|
|
convert_to_string_with_converter(str, UG(utf8_conv));
|
|
|
|
encoding = "UTF-8";
|
|
|
|
} else {
|
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
|
|
encoding = ucnv_getName(ZEND_U_CONVERTER(UG(runtime_encoding_conv)), &status);
|
|
|
|
}
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
/* enforce two trailing NULLs for flex... */
|
1999-12-22 04:30:04 +08:00
|
|
|
STR_REALLOC(str->value.str.val, str->value.str.len+2);
|
1999-04-23 18:21:00 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
str->value.str.val[str->value.str.len+1]=0;
|
|
|
|
|
2001-09-20 06:34:11 +08:00
|
|
|
SCNG(yy_in)=NULL;
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
zend_prepare_scanner_converters(encoding, 0 TSRMLS_CC);
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_scan_buffer(str->value.str.val, str->value.str.len+2 TSRMLS_CC);
|
1999-04-23 18:21:00 +08:00
|
|
|
|
2001-07-30 15:43:02 +08:00
|
|
|
zend_set_compiled_filename(filename TSRMLS_CC);
|
2005-08-25 04:42:09 +08:00
|
|
|
zend_set_compiled_script_encoding((char*)ucnv_getName(SCNG(output_conv), &status) TSRMLS_CC);
|
2000-06-18 00:50:38 +08:00
|
|
|
CG(zend_lineno) = 1;
|
2001-08-28 17:23:22 +08:00
|
|
|
CG(increment_lineno) = 0;
|
1999-04-08 02:10:10 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-05 00:16:19 +08:00
|
|
|
ZEND_API int zend_get_scanned_file_offset(TSRMLS_D)
|
|
|
|
{
|
|
|
|
if (yyin) {
|
|
|
|
int offset_in_buffer = (yy_c_buf_p - (YY_CURRENT_BUFFER)->yy_ch_buf);
|
2005-06-16 21:31:21 +08:00
|
|
|
int read_bytes = SCNG(yy_n_chars);
|
2005-06-05 00:16:19 +08:00
|
|
|
int offset_from_the_end = read_bytes - offset_in_buffer;
|
|
|
|
|
|
|
|
return zend_stream_ftell(yyin TSRMLS_CC) - offset_from_the_end;
|
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
zend_op_array *compile_string(zval *source_string, char *filename TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
zend_lex_state original_lex_state;
|
|
|
|
zend_op_array *op_array = (zend_op_array *) emalloc(sizeof(zend_op_array));
|
|
|
|
zend_op_array *original_active_op_array = CG(active_op_array);
|
|
|
|
zend_op_array *retval;
|
|
|
|
zval tmp;
|
1999-05-12 01:50:37 +08:00
|
|
|
int compiler_result;
|
2000-02-04 22:45:58 +08:00
|
|
|
zend_bool original_in_compilation = CG(in_compilation);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
tmp = *source_string;
|
|
|
|
zval_copy_ctor(&tmp);
|
|
|
|
if (Z_TYPE(tmp) != IS_STRING && Z_TYPE(tmp) != IS_UNICODE) {
|
|
|
|
convert_to_text(&tmp);
|
|
|
|
}
|
|
|
|
source_string = &tmp;
|
|
|
|
|
|
|
|
if (Z_USTRLEN_P(source_string)==0) {
|
1999-05-12 01:50:37 +08:00
|
|
|
efree(op_array);
|
2005-08-12 07:35:03 +08:00
|
|
|
zval_dtor(&tmp);
|
1999-05-12 01:50:37 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2000-02-04 22:45:58 +08:00
|
|
|
|
|
|
|
CG(in_compilation) = 1;
|
|
|
|
|
2001-12-19 03:56:23 +08:00
|
|
|
zend_save_lexical_state(&original_lex_state TSRMLS_CC);
|
|
|
|
if (zend_prepare_string_for_scanning(source_string, filename TSRMLS_CC)==FAILURE) {
|
1999-04-08 02:10:10 +08:00
|
|
|
efree(op_array);
|
|
|
|
retval = NULL;
|
|
|
|
} else {
|
2001-07-28 18:51:54 +08:00
|
|
|
init_op_array(op_array, ZEND_EVAL_CODE, INITIAL_OP_ARRAY_SIZE TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
CG(active_op_array) = op_array;
|
1999-05-22 01:31:49 +08:00
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
2001-07-28 18:51:54 +08:00
|
|
|
compiler_result = zendparse(TSRMLS_C);
|
2003-02-01 15:32:09 +08:00
|
|
|
|
1999-05-12 01:50:37 +08:00
|
|
|
if (compiler_result==1) {
|
2000-01-30 01:19:47 +08:00
|
|
|
CG(active_op_array) = original_active_op_array;
|
1999-05-12 01:50:37 +08:00
|
|
|
CG(unclean_shutdown)=1;
|
1999-04-08 02:10:10 +08:00
|
|
|
retval = NULL;
|
|
|
|
} else {
|
2001-07-28 18:51:54 +08:00
|
|
|
zend_do_return(NULL, 0 TSRMLS_CC);
|
2004-02-03 20:17:09 +08:00
|
|
|
zend_do_handle_exception(TSRMLS_C);
|
2000-01-30 01:19:47 +08:00
|
|
|
CG(active_op_array) = original_active_op_array;
|
2001-07-31 15:12:15 +08:00
|
|
|
pass_two(op_array TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
retval = op_array;
|
|
|
|
}
|
2001-12-19 03:56:23 +08:00
|
|
|
zend_restore_lexical_state(&original_lex_state TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
zval_dtor(&tmp);
|
2000-02-04 22:45:58 +08:00
|
|
|
CG(in_compilation) = original_in_compilation;
|
1999-04-08 02:10:10 +08:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-04-23 11:32:33 +08:00
|
|
|
BEGIN_EXTERN_C()
|
2001-07-30 12:54:16 +08:00
|
|
|
int highlight_file(char *filename, zend_syntax_highlighter_ini *syntax_highlighter_ini TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
zend_lex_state original_lex_state;
|
|
|
|
zend_file_handle file_handle;
|
|
|
|
|
|
|
|
file_handle.type = ZEND_HANDLE_FILENAME;
|
|
|
|
file_handle.filename = filename;
|
1999-12-04 21:26:57 +08:00
|
|
|
file_handle.free_filename = 0;
|
1999-12-03 22:07:00 +08:00
|
|
|
file_handle.opened_path = NULL;
|
2001-12-19 03:56:23 +08:00
|
|
|
zend_save_lexical_state(&original_lex_state TSRMLS_CC);
|
2001-07-28 18:51:54 +08:00
|
|
|
if (open_file_for_scanning(&file_handle TSRMLS_CC)==FAILURE) {
|
1999-04-08 02:10:10 +08:00
|
|
|
zend_message_dispatcher(ZMSG_FAILED_HIGHLIGHT_FOPEN, filename);
|
|
|
|
return FAILURE;
|
|
|
|
}
|
2001-07-30 17:05:42 +08:00
|
|
|
zend_highlight(syntax_highlighter_ini TSRMLS_CC);
|
2001-07-28 18:51:54 +08:00
|
|
|
zend_destroy_file_handle(&file_handle TSRMLS_CC);
|
2001-12-19 03:56:23 +08:00
|
|
|
zend_restore_lexical_state(&original_lex_state TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
return SUCCESS;
|
|
|
|
}
|
|
|
|
|
2001-07-30 12:54:16 +08:00
|
|
|
int highlight_string(zval *str, zend_syntax_highlighter_ini *syntax_highlighter_ini, char *str_name TSRMLS_DC)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
zend_lex_state original_lex_state;
|
|
|
|
zval tmp = *str;
|
|
|
|
|
|
|
|
str = &tmp;
|
|
|
|
zval_copy_ctor(str);
|
2001-12-19 03:56:23 +08:00
|
|
|
zend_save_lexical_state(&original_lex_state TSRMLS_CC);
|
|
|
|
if (zend_prepare_string_for_scanning(str, str_name TSRMLS_CC)==FAILURE) {
|
1999-04-08 02:10:10 +08:00
|
|
|
return FAILURE;
|
|
|
|
}
|
2005-10-21 17:33:04 +08:00
|
|
|
BEGIN(INITIAL);
|
2001-07-30 17:05:42 +08:00
|
|
|
zend_highlight(syntax_highlighter_ini TSRMLS_CC);
|
2001-12-19 03:56:23 +08:00
|
|
|
zend_restore_lexical_state(&original_lex_state TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
zval_dtor(str);
|
|
|
|
return SUCCESS;
|
|
|
|
}
|
1999-04-24 17:08:03 +08:00
|
|
|
END_EXTERN_C()
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
#define zend_copy_value(zendlval, yytext, yyleng) \
|
|
|
|
zendlval->value.str.val = (char *)estrndup(yytext, yyleng); \
|
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
|
|
|
|
int zend_scan_unicode_double_string(zval *zendlval TSRMLS_DC)
|
2003-08-11 13:24:42 +08:00
|
|
|
{
|
2005-08-12 07:35:03 +08:00
|
|
|
register UChar *s, *t, c;
|
|
|
|
UChar *end;
|
|
|
|
UChar32 codepoint = 0;
|
|
|
|
int8_t digit;
|
|
|
|
int8_t min_digits = 0, max_digits = 0;
|
|
|
|
int8_t bits;
|
|
|
|
int8_t n;
|
|
|
|
|
|
|
|
HANDLE_NEWLINES(yytext, yyleng);
|
|
|
|
|
|
|
|
if (!zend_copy_string_value(zendlval, yytext+1, yyleng-2, IS_UNICODE TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* convert escape sequences */
|
|
|
|
s = t = zendlval->value.ustr.val;
|
|
|
|
end = s+zendlval->value.ustr.len;
|
|
|
|
while (s<end) {
|
|
|
|
if (*s==0x5C /*'\\'*/) {
|
|
|
|
s++;
|
|
|
|
c = *s;
|
|
|
|
if (s>=end) {
|
|
|
|
continue;
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
|
|
|
|
min_digits = 0;
|
|
|
|
codepoint = 0;
|
|
|
|
bits = 4;
|
|
|
|
n = 0;
|
|
|
|
|
|
|
|
switch(c) {
|
|
|
|
case 0x6E: /*'n'*/
|
|
|
|
*t++ = (UChar) 0x0A; /*'\n'*/
|
|
|
|
zendlval->value.ustr.len--;
|
|
|
|
break;
|
|
|
|
case 0x72: /*'r'*/
|
|
|
|
*t++ = (UChar) 0x0D; /*'\r'*/
|
|
|
|
zendlval->value.ustr.len--;
|
|
|
|
break;
|
|
|
|
case 0x74: /*'t'*/
|
|
|
|
*t++ = (UChar) 0x09; /*'\t'*/
|
|
|
|
zendlval->value.ustr.len--;
|
|
|
|
break;
|
|
|
|
case 0x5C: /*'\\'*/
|
|
|
|
case 0x24: /*'$'*/
|
|
|
|
case 0x22: /*'"'*/
|
|
|
|
*t++ = *s;
|
|
|
|
zendlval->value.ustr.len--;
|
|
|
|
break;
|
|
|
|
case 0x43: /*'C'*/
|
|
|
|
{
|
|
|
|
UChar *p = s+1;
|
|
|
|
if (p < end && zend_parse_charname_sequence(&p, end, &codepoint)) {
|
|
|
|
zendlval->value.ustr.len -= p - s + 1;
|
|
|
|
s = p;
|
|
|
|
if (U_IS_BMP(codepoint)) {
|
|
|
|
*t++ = (UChar) codepoint;
|
|
|
|
} else {
|
|
|
|
*t++ = (UChar) U16_LEAD(codepoint);
|
|
|
|
*t++ = (UChar) U16_TRAIL(codepoint);
|
|
|
|
zendlval->value.ustr.len++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
zend_error(E_COMPILE_WARNING, "Invalid \\C{..} sequence");
|
|
|
|
efree(zendlval->value.ustr.val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0x75: /*'u'*/
|
|
|
|
min_digits = 4;
|
|
|
|
max_digits = 4;
|
|
|
|
zendlval->value.ustr.len--;
|
|
|
|
break;
|
|
|
|
case 0x55: /*'U'*/
|
|
|
|
min_digits = 6;
|
|
|
|
max_digits = 6;
|
|
|
|
zendlval->value.ustr.len--;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
digit = zend_get_octal_digit(*s);
|
|
|
|
if (digit >= 0) {
|
|
|
|
min_digits = 1;
|
|
|
|
max_digits = 3;
|
|
|
|
bits = 3;
|
|
|
|
n = 1; /* already have one digit */
|
|
|
|
codepoint = digit;
|
|
|
|
} else if (c == 0x78 /*'x'*/
|
|
|
|
&& (s+1) < end && (digit = zend_get_hex_digit(*(s+1))) >= 0) {
|
|
|
|
min_digits = 1;
|
|
|
|
max_digits = 2;
|
|
|
|
zendlval->value.ustr.len--;
|
|
|
|
s++;
|
|
|
|
n = 1; /* already have one digit */
|
|
|
|
codepoint = digit;
|
|
|
|
} else {
|
|
|
|
*t++ = 0x5C; /*'\\'*/
|
|
|
|
*t++ = *s;
|
|
|
|
}
|
|
|
|
break;
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
/* need to parse a number for one of the escape sequences */
|
|
|
|
if (min_digits != 0) {
|
|
|
|
while (s++ < end && n < max_digits) {
|
|
|
|
digit = (bits == 4) ? zend_get_hex_digit(*s) : zend_get_octal_digit(*s);
|
|
|
|
if (digit < 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
codepoint = (codepoint << bits) | digit;
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n < min_digits) {
|
|
|
|
/* can only happen for \u and \U sequences */
|
|
|
|
zend_error(E_COMPILE_WARNING,"\\%c escape sequence requires exactly %d hexadecimal digits", (char) c, min_digits);
|
|
|
|
efree(zendlval->value.ustr.val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (U_IS_BMP(codepoint)) {
|
|
|
|
*t++ = (UChar) codepoint;
|
|
|
|
zendlval->value.ustr.len -= n;
|
|
|
|
} else if (codepoint <= 0x10FFFF) {
|
|
|
|
*t++ = (UChar) U16_LEAD(codepoint);
|
|
|
|
*t++ = (UChar) U16_TRAIL(codepoint);
|
|
|
|
zendlval->value.ustr.len -= n-1;
|
|
|
|
} else {
|
|
|
|
zend_error(E_COMPILE_WARNING,"\\U%06x is above the highest valid codepoint 0x10FFFF", codepoint);
|
|
|
|
efree(zendlval->value.ustr.val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*t++ = *s++;
|
|
|
|
}
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
*t = 0;
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
return T_CONSTANT_ENCAPSED_STRING;
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
int zend_scan_unicode_single_string(zval *zendlval TSRMLS_DC)
|
2003-08-11 13:24:42 +08:00
|
|
|
{
|
2005-08-12 07:35:03 +08:00
|
|
|
register UChar *s, *t;
|
|
|
|
UChar *end;
|
|
|
|
UChar32 codepoint = 0;
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
HANDLE_NEWLINES(yytext, yyleng);
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext+1, yyleng-2, IS_UNICODE TSRMLS_CC)) {
|
|
|
|
return 0;
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
/* convert escape sequences */
|
|
|
|
s = t = zendlval->value.ustr.val;
|
|
|
|
end = s+zendlval->value.ustr.len;
|
|
|
|
while (s<end) {
|
|
|
|
if (*s==0x5C /*'\\'*/) {
|
|
|
|
s++;
|
|
|
|
if (s>=end) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch(*s) {
|
|
|
|
case 0x5C: /*'\\'*/
|
|
|
|
case 0x27: /*'\''*/
|
|
|
|
*t++ = *s;
|
|
|
|
zendlval->value.ustr.len--;
|
|
|
|
break;
|
|
|
|
case 0x43: /*'C'*/
|
|
|
|
{
|
|
|
|
UChar *p = s+1;
|
|
|
|
if (p < end && zend_parse_charname_sequence(&p, end, &codepoint)) {
|
|
|
|
zendlval->value.ustr.len -= p - s + 1;
|
|
|
|
s = p;
|
|
|
|
if (U_IS_BMP(codepoint)) {
|
|
|
|
*t++ = (UChar) codepoint;
|
|
|
|
} else {
|
|
|
|
*t++ = (UChar) U16_LEAD(codepoint);
|
|
|
|
*t++ = (UChar) U16_TRAIL(codepoint);
|
|
|
|
zendlval->value.ustr.len++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
zend_error(E_COMPILE_WARNING, "Invalid \\C{..} sequence");
|
|
|
|
efree(zendlval->value.ustr.val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0x75 /*'u'*/:
|
|
|
|
{
|
|
|
|
codepoint = 0;
|
|
|
|
if (zend_udigits_to_codepoint(s+1, end, &codepoint, 4)) {
|
|
|
|
*t++ = (UChar) codepoint;
|
|
|
|
s += 4;
|
|
|
|
zendlval->value.ustr.len -= 5;
|
|
|
|
} else {
|
|
|
|
zend_error(E_COMPILE_WARNING,"\\u escape sequence requires exactly 4 hexadecimal digits");
|
|
|
|
efree(zendlval->value.ustr.val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0x55 /*'U'*/:
|
|
|
|
{
|
|
|
|
codepoint = 0;
|
|
|
|
if (zend_udigits_to_codepoint(s+1, end, &codepoint, 6)) {
|
|
|
|
if (U_IS_BMP(codepoint)) {
|
|
|
|
*t++ = (UChar) codepoint;
|
|
|
|
zendlval->value.ustr.len -= 7;
|
|
|
|
} else if (codepoint <= 0x10FFFF) {
|
|
|
|
*t++ = (UChar) U16_LEAD(codepoint);
|
|
|
|
*t++ = (UChar) U16_TRAIL(codepoint);
|
|
|
|
zendlval->value.ustr.len -= 6;
|
|
|
|
} else {
|
|
|
|
zend_error(E_COMPILE_WARNING,"\\U%06x is above the highest valid codepoint 0x10FFFF", codepoint);
|
|
|
|
efree(zendlval->value.ustr.val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
s += 6;
|
|
|
|
} else {
|
|
|
|
zend_error(E_COMPILE_WARNING,"\\U escape sequence requires exactly 6 hexadecimal digits");
|
|
|
|
efree(zendlval->value.ustr.val);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
*t++ = 0x5C; /*'\\'*/
|
|
|
|
*t++ = *s;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
} else {
|
|
|
|
*t++ = *s++;
|
|
|
|
}
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
*t = 0;
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
return T_CONSTANT_ENCAPSED_STRING;
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
int zend_scan_binary_double_string(zval *zendlval TSRMLS_DC)
|
2003-08-11 13:24:42 +08:00
|
|
|
{
|
2005-08-12 07:35:03 +08:00
|
|
|
register char *s, *t;
|
|
|
|
char *end;
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
zendlval->value.str.val = estrndup(yytext+1, yyleng-2);
|
|
|
|
zendlval->value.str.len = yyleng-2;
|
|
|
|
zendlval->type = UG(unicode) ? IS_BINARY : IS_STRING;
|
|
|
|
HANDLE_NEWLINES(yytext, yyleng);
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
/* convert escape sequences */
|
|
|
|
s = t = zendlval->value.str.val;
|
|
|
|
end = s+zendlval->value.str.len;
|
|
|
|
while (s<end) {
|
|
|
|
if (*s=='\\') {
|
|
|
|
s++;
|
|
|
|
if (s>=end) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch(*s) {
|
|
|
|
case 'n':
|
|
|
|
*t++ = '\n';
|
|
|
|
zendlval->value.str.len--;
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
*t++ = '\r';
|
|
|
|
zendlval->value.str.len--;
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
*t++ = '\t';
|
|
|
|
zendlval->value.str.len--;
|
|
|
|
break;
|
|
|
|
case '\\':
|
|
|
|
case '$':
|
|
|
|
case '"':
|
|
|
|
*t++ = *s;
|
|
|
|
zendlval->value.str.len--;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* check for an octal */
|
|
|
|
if (ZEND_IS_OCT(*s)) {
|
|
|
|
char octal_buf[4] = { 0, 0, 0, 0 };
|
|
|
|
|
|
|
|
octal_buf[0] = *s;
|
|
|
|
zendlval->value.str.len--;
|
|
|
|
if ((s+1)<end && ZEND_IS_OCT(*(s+1))) {
|
|
|
|
octal_buf[1] = *(++s);
|
|
|
|
zendlval->value.str.len--;
|
|
|
|
if ((s+1)<end && ZEND_IS_OCT(*(s+1))) {
|
|
|
|
octal_buf[2] = *(++s);
|
|
|
|
zendlval->value.str.len--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*t++ = (char) strtol(octal_buf, NULL, 8);
|
|
|
|
} else if (*s=='x' && (s+1)<end && ZEND_IS_HEX(*(s+1))) {
|
|
|
|
char hex_buf[3] = { 0, 0, 0};
|
|
|
|
|
|
|
|
zendlval->value.str.len--; /* for the 'x' */
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
hex_buf[0] = *(++s);
|
|
|
|
zendlval->value.str.len--;
|
|
|
|
if ((s+1)<end && ZEND_IS_HEX(*(s+1))) {
|
|
|
|
hex_buf[1] = *(++s);
|
|
|
|
zendlval->value.str.len--;
|
|
|
|
}
|
|
|
|
*t++ = (char) strtol(hex_buf, NULL, 16);
|
|
|
|
} else {
|
|
|
|
*t++ = '\\';
|
|
|
|
*t++ = *s;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s++;
|
2003-08-11 13:24:42 +08:00
|
|
|
} else {
|
2005-08-12 07:35:03 +08:00
|
|
|
*t++ = *s++;
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
*t = 0;
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
return T_CONSTANT_ENCAPSED_STRING;
|
|
|
|
}
|
|
|
|
|
|
|
|
int zend_scan_binary_single_string(zval *zendlval TSRMLS_DC)
|
|
|
|
{
|
|
|
|
register char *s, *t;
|
|
|
|
char *end;
|
|
|
|
|
|
|
|
zendlval->value.str.val = estrndup(yytext+1, yyleng-2);
|
|
|
|
zendlval->value.str.len = yyleng-2;
|
|
|
|
zendlval->type = UG(unicode) ? IS_BINARY : IS_STRING;
|
|
|
|
HANDLE_NEWLINES(yytext, yyleng);
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
/* convert escape sequences */
|
|
|
|
s = t = zendlval->value.str.val;
|
|
|
|
end = s+zendlval->value.str.len;
|
|
|
|
while (s<end) {
|
|
|
|
if (*s=='\\') {
|
|
|
|
s++;
|
|
|
|
if (s>=end) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
switch(*s) {
|
|
|
|
case '\\':
|
|
|
|
case '\'':
|
|
|
|
*t++ = *s;
|
|
|
|
zendlval->value.str.len--;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
*t++ = '\\';
|
|
|
|
*t++ = *s;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
} else {
|
|
|
|
*t++ = *s++;
|
|
|
|
}
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
*t = 0;
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
return T_CONSTANT_ENCAPSED_STRING;
|
2003-08-11 13:24:42 +08:00
|
|
|
}
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
%}
|
|
|
|
|
|
|
|
LNUM [0-9]+
|
|
|
|
DNUM ([0-9]*[\.][0-9]+)|([0-9]+[\.][0-9]*)
|
|
|
|
EXPONENT_DNUM (({LNUM}|{DNUM})[eE][+-]?{LNUM})
|
|
|
|
HNUM "0x"[0-9a-fA-F]+
|
|
|
|
LABEL [a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*
|
|
|
|
WHITESPACE [ \n\r\t]+
|
|
|
|
TABS_AND_SPACES [ \t]*
|
|
|
|
TOKENS [;:,.\[\]()|^&+-/*=%!~$<>?@]
|
|
|
|
ENCAPSED_TOKENS [\[\]{}$]
|
|
|
|
ESCAPED_AND_WHITESPACE [\n\t\r #'.:;,()|^&+-/*=%!~<>?@]+
|
2000-07-07 00:19:36 +08:00
|
|
|
ANY_CHAR (.|[\n])
|
2001-05-03 05:48:07 +08:00
|
|
|
NEWLINE ("\r"|"\n"|"\r\n")
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
%option noyylineno
|
|
|
|
%option noyywrap
|
|
|
|
%%
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"exit" {
|
1999-04-08 02:10:10 +08:00
|
|
|
return T_EXIT;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"die" {
|
1999-04-08 02:10:10 +08:00
|
|
|
return T_EXIT;
|
|
|
|
}
|
|
|
|
|
2002-11-06 02:25:09 +08:00
|
|
|
<ST_IN_SCRIPTING>"function" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_FUNCTION;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"const" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CONST;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"return" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_RETURN;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2001-08-30 23:26:30 +08:00
|
|
|
<ST_IN_SCRIPTING>"try" {
|
|
|
|
return T_TRY;
|
|
|
|
}
|
|
|
|
|
|
|
|
<ST_IN_SCRIPTING>"catch" {
|
|
|
|
return T_CATCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
<ST_IN_SCRIPTING>"throw" {
|
|
|
|
return T_THROW;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"if" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_IF;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"elseif" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ELSEIF;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"endif" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ENDIF;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"else" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ELSE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"while" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_WHILE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"endwhile" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ENDWHILE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"do" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_DO;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"for" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_FOR;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"endfor" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ENDFOR;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"foreach" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_FOREACH;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"endforeach" {
|
1999-04-08 02:10:10 +08:00
|
|
|
return T_ENDFOREACH;
|
|
|
|
}
|
|
|
|
|
2000-01-25 03:00:30 +08:00
|
|
|
<ST_IN_SCRIPTING>"declare" {
|
|
|
|
return T_DECLARE;
|
|
|
|
}
|
|
|
|
|
|
|
|
<ST_IN_SCRIPTING>"enddeclare" {
|
|
|
|
return T_ENDDECLARE;
|
|
|
|
}
|
|
|
|
|
2003-01-15 05:29:23 +08:00
|
|
|
<ST_IN_SCRIPTING>"instanceof" {
|
|
|
|
return T_INSTANCEOF;
|
2002-07-30 12:07:15 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"as" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_AS;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"switch" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_SWITCH;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"endswitch" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ENDSWITCH;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"case" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CASE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"default" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_DEFAULT;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"break" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_BREAK;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"continue" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CONTINUE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"echo" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ECHO;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"print" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_PRINT;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"class" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CLASS;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2003-03-05 19:14:44 +08:00
|
|
|
<ST_IN_SCRIPTING>"interface" {
|
|
|
|
return T_INTERFACE;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"extends" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_EXTENDS;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2003-03-05 19:14:44 +08:00
|
|
|
<ST_IN_SCRIPTING>"implements" {
|
|
|
|
return T_IMPLEMENTS;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING,ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>"->" {
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_push_state(ST_LOOKING_FOR_PROPERTY TSRMLS_CC);
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_OBJECT_OPERATOR;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_LOOKING_FOR_PROPERTY>{LABEL} {
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_pop_state(TSRMLS_C);
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, UG(unicode)?IS_UNICODE:IS_STRING TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (UG(unicode) && !zend_check_and_normalize_identifier(zendlval)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_STRING;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2000-07-07 00:19:36 +08:00
|
|
|
<ST_LOOKING_FOR_PROPERTY>{ANY_CHAR} {
|
1999-05-01 01:35:38 +08:00
|
|
|
yyless(0);
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_pop_state(TSRMLS_C);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"::" {
|
1999-04-08 02:10:10 +08:00
|
|
|
return T_PAAMAYIM_NEKUDOTAYIM;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"new" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_NEW;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2004-02-02 20:28:19 +08:00
|
|
|
<ST_IN_SCRIPTING>"clone" {
|
|
|
|
return T_CLONE;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"var" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_VAR;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"("{TABS_AND_SPACES}("int"|"integer"){TABS_AND_SPACES}")" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_INT_CAST;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"("{TABS_AND_SPACES}("real"|"double"|"float"){TABS_AND_SPACES}")" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_DOUBLE_CAST;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"("{TABS_AND_SPACES}"string"{TABS_AND_SPACES}")" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_STRING_CAST;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
<ST_IN_SCRIPTING>"("{TABS_AND_SPACES}"unicode"{TABS_AND_SPACES}")" {
|
|
|
|
return T_UNICODE_CAST;
|
|
|
|
}
|
|
|
|
|
|
|
|
<ST_IN_SCRIPTING>"("{TABS_AND_SPACES}"binary"{TABS_AND_SPACES}")" {
|
|
|
|
return T_BINARY_CAST;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"("{TABS_AND_SPACES}"array"{TABS_AND_SPACES}")" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ARRAY_CAST;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"("{TABS_AND_SPACES}"object"{TABS_AND_SPACES}")" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_OBJECT_CAST;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-06-11 19:17:43 +08:00
|
|
|
<ST_IN_SCRIPTING>"("{TABS_AND_SPACES}("bool"|"boolean"){TABS_AND_SPACES}")" {
|
|
|
|
return T_BOOL_CAST;
|
|
|
|
}
|
|
|
|
|
1999-12-31 21:56:59 +08:00
|
|
|
<ST_IN_SCRIPTING>"("{TABS_AND_SPACES}("unset"){TABS_AND_SPACES}")" {
|
|
|
|
return T_UNSET_CAST;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"eval" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_EVAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"include" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_INCLUDE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2000-03-10 23:01:21 +08:00
|
|
|
<ST_IN_SCRIPTING>"include_once" {
|
|
|
|
return T_INCLUDE_ONCE;
|
1999-12-01 04:15:04 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"require" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_REQUIRE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2000-03-10 23:01:21 +08:00
|
|
|
<ST_IN_SCRIPTING>"require_once" {
|
|
|
|
return T_REQUIRE_ONCE;
|
|
|
|
}
|
|
|
|
|
1999-12-01 04:15:04 +08:00
|
|
|
<ST_IN_SCRIPTING>"use" {
|
|
|
|
return T_USE;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"global" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_GLOBAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"isset" {
|
1999-04-08 02:10:10 +08:00
|
|
|
return T_ISSET;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"empty" {
|
1999-04-08 02:10:10 +08:00
|
|
|
return T_EMPTY;
|
|
|
|
}
|
|
|
|
|
2005-06-05 00:16:19 +08:00
|
|
|
<ST_IN_SCRIPTING>"__halt_compiler" {
|
|
|
|
return T_HALT_COMPILER;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"static" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_STATIC;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2002-11-21 02:00:23 +08:00
|
|
|
<ST_IN_SCRIPTING>"abstract" {
|
|
|
|
return T_ABSTRACT;
|
|
|
|
}
|
|
|
|
|
2003-02-24 20:05:58 +08:00
|
|
|
<ST_IN_SCRIPTING>"final" {
|
|
|
|
return T_FINAL;
|
|
|
|
}
|
|
|
|
|
2002-02-21 19:50:44 +08:00
|
|
|
<ST_IN_SCRIPTING>"private" {
|
|
|
|
return T_PRIVATE;
|
|
|
|
}
|
|
|
|
|
2002-07-16 02:09:56 +08:00
|
|
|
<ST_IN_SCRIPTING>"protected" {
|
|
|
|
return T_PROTECTED;
|
|
|
|
}
|
|
|
|
|
2002-07-17 03:11:14 +08:00
|
|
|
<ST_IN_SCRIPTING>"public" {
|
2002-12-07 01:09:44 +08:00
|
|
|
return T_PUBLIC;
|
2002-07-17 03:11:14 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"unset" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_UNSET;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"=>" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_DOUBLE_ARROW;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"list" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_LIST;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"array" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ARRAY;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"++" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_INC;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"--" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_DEC;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-10-19 21:33:17 +08:00
|
|
|
<ST_IN_SCRIPTING>"===" {
|
|
|
|
return T_IS_IDENTICAL;
|
|
|
|
}
|
|
|
|
|
2000-03-30 06:05:19 +08:00
|
|
|
<ST_IN_SCRIPTING>"!==" {
|
|
|
|
return T_IS_NOT_IDENTICAL;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"==" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_IS_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"!="|"<>" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_IS_NOT_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"<=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_IS_SMALLER_OR_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>">=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_IS_GREATER_OR_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"+=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_PLUS_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"-=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_MINUS_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"*=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_MUL_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"/=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_DIV_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>".=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CONCAT_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"%=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_MOD_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"<<=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_SL_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>">>=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_SR_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"&=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_AND_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"|=" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_OR_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"^=" {
|
2000-06-09 21:36:36 +08:00
|
|
|
return T_XOR_EQUAL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"||" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_BOOLEAN_OR;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"&&" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_BOOLEAN_AND;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"OR" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_LOGICAL_OR;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"AND" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_LOGICAL_AND;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"XOR" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_LOGICAL_XOR;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"<<" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_SL;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>">>" {
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_SR;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>{TOKENS} {
|
1999-04-08 02:10:10 +08:00
|
|
|
return yytext[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"{" {
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_push_state(ST_IN_SCRIPTING TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
return '{';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>"${" {
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_push_state(ST_LOOKING_FOR_VARNAME TSRMLS_CC);
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_DOLLAR_OPEN_CURLY_BRACES;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"}" {
|
2005-02-13 21:50:48 +08:00
|
|
|
RESET_DOC_COMMENT();
|
1999-05-20 17:02:03 +08:00
|
|
|
/* This is a temporary fix which is dependant on flex and it's implementation */
|
|
|
|
if (yy_start_stack_ptr) {
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_pop_state(TSRMLS_C);
|
1999-05-20 17:02:03 +08:00
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
return '}';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_LOOKING_FOR_VARNAME>{LABEL} {
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, UG(unicode)?IS_UNICODE:IS_STRING TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (UG(unicode) && !zend_check_and_normalize_identifier(zendlval)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_pop_state(TSRMLS_C);
|
|
|
|
yy_push_state(ST_IN_SCRIPTING TSRMLS_CC);
|
1999-05-01 01:29:18 +08:00
|
|
|
return T_STRING_VARNAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-07 00:19:36 +08:00
|
|
|
<ST_LOOKING_FOR_VARNAME>{ANY_CHAR} {
|
1999-05-01 01:35:38 +08:00
|
|
|
yyless(0);
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_pop_state(TSRMLS_C);
|
|
|
|
yy_push_state(ST_IN_SCRIPTING TSRMLS_CC);
|
1999-05-01 01:29:18 +08:00
|
|
|
}
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2000-11-15 01:54:11 +08:00
|
|
|
<ST_IN_SCRIPTING>{LNUM} {
|
1999-04-08 02:10:10 +08:00
|
|
|
errno = 0;
|
2000-11-15 01:54:11 +08:00
|
|
|
zendlval->value.lval = strtol(yytext, NULL, 0);
|
1999-04-08 02:10:10 +08:00
|
|
|
if (errno == ERANGE) { /* overflow */
|
2004-11-04 07:13:32 +08:00
|
|
|
zendlval->value.dval = zend_strtod(yytext, NULL);
|
2000-11-15 01:54:11 +08:00
|
|
|
zendlval->type = IS_DOUBLE;
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_DNUMBER;
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
|
|
|
zendlval->type = IS_LONG;
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_LNUMBER;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-11-15 01:54:11 +08:00
|
|
|
<ST_IN_SCRIPTING>{HNUM} {
|
|
|
|
errno = 0;
|
|
|
|
zendlval->value.lval = strtoul(yytext, NULL, 16);
|
|
|
|
if (errno == ERANGE) { /* overflow */
|
2000-11-15 02:33:58 +08:00
|
|
|
/* not trying strtod - it returns trash on 0x-es */
|
2000-11-15 01:54:11 +08:00
|
|
|
zendlval->value.lval = LONG_MAX; /* maximal long */
|
2001-08-11 23:56:40 +08:00
|
|
|
zend_error(E_NOTICE,"Hex number is too big: %s", yytext);
|
2000-11-15 01:54:11 +08:00
|
|
|
} else {
|
2001-04-28 02:51:56 +08:00
|
|
|
if (zendlval->value.lval < 0) {
|
2000-11-15 02:33:58 +08:00
|
|
|
/* maintain consistency with the old way */
|
|
|
|
zendlval->value.dval = (unsigned long) zendlval->value.lval;
|
|
|
|
zendlval->type = IS_DOUBLE;
|
|
|
|
return T_DNUMBER;
|
|
|
|
}
|
2000-11-15 01:54:11 +08:00
|
|
|
zendlval->type = IS_LONG;
|
|
|
|
}
|
|
|
|
zendlval->type = IS_LONG;
|
|
|
|
return T_LNUMBER;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>{LNUM}|{HNUM} { /* treat numbers (almost) as strings inside encapsulated strings */
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_NUM_STRING;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>{DNUM}|{EXPONENT_DNUM} {
|
2004-11-04 07:13:32 +08:00
|
|
|
zendlval->value.dval = zend_strtod(yytext, NULL);
|
1999-04-08 02:10:10 +08:00
|
|
|
zendlval->type = IS_DOUBLE;
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_DNUMBER;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2002-04-11 05:23:01 +08:00
|
|
|
<ST_IN_SCRIPTING>"__CLASS__" {
|
2002-11-02 17:06:23 +08:00
|
|
|
char *class_name = NULL;
|
|
|
|
|
|
|
|
if (CG(active_class_entry)) {
|
|
|
|
class_name = CG(active_class_entry)->name;
|
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
|
2005-08-19 18:54:26 +08:00
|
|
|
if (!class_name) {
|
|
|
|
ZVAL_EMPTY_TEXT(zendlval);
|
2005-08-12 07:35:03 +08:00
|
|
|
} else {
|
2005-08-19 18:54:26 +08:00
|
|
|
ZVAL_TEXT(zendlval, class_name, 1);
|
2002-04-11 05:23:01 +08:00
|
|
|
}
|
|
|
|
return T_CLASS_C;
|
|
|
|
}
|
|
|
|
|
|
|
|
<ST_IN_SCRIPTING>"__FUNCTION__" {
|
2003-04-08 06:51:28 +08:00
|
|
|
char *func_name = NULL;
|
|
|
|
|
|
|
|
if (CG(active_op_array)) {
|
|
|
|
func_name = CG(active_op_array)->function_name;
|
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
|
2002-04-11 05:23:01 +08:00
|
|
|
if (!func_name) {
|
|
|
|
func_name = "";
|
|
|
|
}
|
2005-08-19 18:54:26 +08:00
|
|
|
if (!func_name) {
|
|
|
|
ZVAL_EMPTY_TEXT(zendlval);
|
2005-08-12 07:35:03 +08:00
|
|
|
} else {
|
2005-08-19 18:54:26 +08:00
|
|
|
ZVAL_TEXT(zendlval, func_name, 1);
|
2005-08-12 07:35:03 +08:00
|
|
|
}
|
2002-04-11 05:23:01 +08:00
|
|
|
return T_FUNC_C;
|
|
|
|
}
|
|
|
|
|
2003-05-27 04:45:22 +08:00
|
|
|
<ST_IN_SCRIPTING>"__METHOD__" {
|
|
|
|
char *class_name = CG(active_class_entry) ? CG(active_class_entry)->name : NULL;
|
2003-07-27 20:25:50 +08:00
|
|
|
char *func_name = CG(active_op_array)? CG(active_op_array)->function_name : NULL;
|
2003-05-29 20:59:43 +08:00
|
|
|
size_t len = 0;
|
2003-05-27 04:45:22 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
if (UG(unicode)) {
|
|
|
|
size_t len1;
|
2003-05-27 04:45:22 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
if (class_name) {
|
|
|
|
len += len1 = u_strlen((UChar*)class_name);
|
|
|
|
len += 2;
|
|
|
|
}
|
|
|
|
if (func_name) {
|
|
|
|
len += u_strlen((UChar*)func_name);
|
|
|
|
} else {
|
2005-08-25 04:42:09 +08:00
|
|
|
func_name = (char*)EMPTY_STR;
|
2005-08-12 07:35:03 +08:00
|
|
|
}
|
|
|
|
zendlval->value.str.len = len;
|
|
|
|
Z_USTRVAL_P(zendlval) = eumalloc(len+1);
|
|
|
|
if (class_name) {
|
|
|
|
u_strcpy(Z_USTRVAL_P(zendlval), (UChar*)class_name);
|
|
|
|
Z_USTRVAL_P(zendlval)[len1] = 0x3a; /* ':' */
|
|
|
|
Z_USTRVAL_P(zendlval)[len1+1] = 0x3a; /* ':' */
|
|
|
|
Z_USTRVAL_P(zendlval)[len1+2] = 0;
|
|
|
|
} else {
|
|
|
|
Z_USTRVAL_P(zendlval)[0] = 0;
|
|
|
|
}
|
|
|
|
u_strcat(Z_USTRVAL_P(zendlval), (UChar*)func_name);
|
|
|
|
zendlval->type = IS_UNICODE;
|
|
|
|
} else {
|
|
|
|
if (class_name) {
|
|
|
|
len += strlen(class_name) + 2;
|
|
|
|
}
|
|
|
|
if (func_name) {
|
|
|
|
len += strlen(func_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
zendlval->value.str.val = emalloc(len+1);
|
|
|
|
zendlval->value.str.len = sprintf(zendlval->value.str.val, "%s%s%s",
|
|
|
|
class_name ? class_name : "",
|
|
|
|
class_name && func_name ? "::" : "",
|
|
|
|
func_name ? func_name : ""
|
|
|
|
);
|
|
|
|
zendlval->value.str.len = strlen(zendlval->value.str.val);
|
|
|
|
zendlval->type = IS_STRING;
|
|
|
|
}
|
2004-02-27 03:59:49 +08:00
|
|
|
return T_METHOD_C;
|
2003-05-27 04:45:22 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"__LINE__" {
|
1999-04-08 02:10:10 +08:00
|
|
|
zendlval->value.lval = CG(zend_lineno);
|
|
|
|
zendlval->type = IS_LONG;
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_LINE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"__FILE__" {
|
2001-07-28 18:51:54 +08:00
|
|
|
char *filename = zend_get_compiled_filename(TSRMLS_C);
|
2003-02-01 15:32:09 +08:00
|
|
|
|
1999-07-04 00:05:58 +08:00
|
|
|
if (!filename) {
|
|
|
|
filename = "";
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
zendlval->value.str.len = strlen(filename);
|
2000-12-18 04:23:24 +08:00
|
|
|
zendlval->value.str.val = estrndup(filename, zendlval->value.str.len);
|
1999-04-08 02:10:10 +08:00
|
|
|
zendlval->type = IS_STRING;
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_FILE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
<INITIAL>(([^<]|"<"[^?%s<]){1,400})|"<s"|"<" {
|
|
|
|
zendlval->value.str.val = (char *) estrndup(yytext, yyleng);
|
|
|
|
zendlval->value.str.len = yyleng;
|
2005-08-12 07:35:03 +08:00
|
|
|
zendlval->type = IS_BINARY;
|
2000-12-18 04:23:24 +08:00
|
|
|
HANDLE_NEWLINES(yytext, yyleng);
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_INLINE_HTML;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
<INITIAL>"<?"|"<script"{WHITESPACE}+"language"{WHITESPACE}*"="{WHITESPACE}*("php"|"\"php\""|"\'php\'"){WHITESPACE}*">" {
|
2001-08-11 23:56:40 +08:00
|
|
|
HANDLE_NEWLINES(yytext, yyleng);
|
1999-04-08 02:10:10 +08:00
|
|
|
if (CG(short_tags) || yyleng>2) { /* yyleng>2 means it's not <? but <script> */
|
|
|
|
zendlval->value.str.val = yytext; /* no copying - intentional */
|
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
zendlval->type = IS_STRING;
|
1999-05-22 01:31:49 +08:00
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_OPEN_TAG;
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
|
|
|
zendlval->value.str.val = (char *) estrndup(yytext, yyleng);
|
|
|
|
zendlval->value.str.len = yyleng;
|
2005-08-12 07:35:03 +08:00
|
|
|
zendlval->type = IS_BINARY;
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_INLINE_HTML;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-06-11 21:56:04 +08:00
|
|
|
<INITIAL>"<%="|"<?=" {
|
2001-05-18 00:33:45 +08:00
|
|
|
if ((yytext[1]=='%' && CG(asp_tags)) || (yytext[1]=='?' && CG(short_tags))) {
|
1999-04-08 02:10:10 +08:00
|
|
|
zendlval->value.str.val = yytext; /* no copying - intentional */
|
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
zendlval->type = IS_STRING;
|
1999-05-22 01:31:49 +08:00
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_OPEN_TAG_WITH_ECHO;
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
|
|
|
zendlval->value.str.val = (char *) estrndup(yytext, yyleng);
|
|
|
|
zendlval->value.str.len = yyleng;
|
2005-08-12 07:35:03 +08:00
|
|
|
zendlval->type = IS_BINARY;
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_INLINE_HTML;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
<INITIAL>"<%" {
|
|
|
|
if (CG(asp_tags)) {
|
|
|
|
zendlval->value.str.val = yytext; /* no copying - intentional */
|
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
zendlval->type = IS_STRING;
|
1999-05-22 01:31:49 +08:00
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
2000-06-23 07:00:01 +08:00
|
|
|
return T_OPEN_TAG;
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
|
|
|
zendlval->value.str.val = (char *) estrndup(yytext, yyleng);
|
|
|
|
zendlval->value.str.len = yyleng;
|
2005-08-12 07:35:03 +08:00
|
|
|
zendlval->type = IS_BINARY;
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_INLINE_HTML;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-09 03:42:14 +08:00
|
|
|
<INITIAL>"<?php"([ \t]|{NEWLINE}) {
|
1999-04-08 02:10:10 +08:00
|
|
|
zendlval->value.str.val = yytext; /* no copying - intentional */
|
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
zendlval->type = IS_STRING;
|
|
|
|
HANDLE_NEWLINE(yytext[yyleng-1]);
|
1999-05-22 01:31:49 +08:00
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_OPEN_TAG;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-06-01 02:33:12 +08:00
|
|
|
<ST_IN_SCRIPTING,ST_DOUBLE_QUOTES,ST_HEREDOC,ST_BACKQUOTE>"$"{LABEL} {
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, (yytext+1), (yyleng-1), UG(unicode)?IS_UNICODE:IS_STRING TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (UG(unicode) && !zend_check_and_normalize_identifier(zendlval)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_VARIABLE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>{LABEL} {
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, UG(unicode)?IS_UNICODE:IS_STRING TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (UG(unicode) && !zend_check_and_normalize_identifier(zendlval)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_STRING;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2003-04-25 18:13:51 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>{LABEL} {
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_STRING;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>{WHITESPACE} {
|
1999-04-08 02:10:10 +08:00
|
|
|
zendlval->value.str.val = yytext; /* no copying - intentional */
|
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
zendlval->type = IS_STRING;
|
2001-08-11 23:56:40 +08:00
|
|
|
HANDLE_NEWLINES(yytext, yyleng);
|
1999-04-08 02:10:10 +08:00
|
|
|
return T_WHITESPACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-12-18 04:23:24 +08:00
|
|
|
<ST_IN_SCRIPTING>"#"|"//" {
|
2000-12-18 04:03:35 +08:00
|
|
|
BEGIN(ST_ONE_LINE_COMMENT);
|
|
|
|
yymore();
|
|
|
|
}
|
|
|
|
|
2005-03-08 00:48:49 +08:00
|
|
|
<ST_ONE_LINE_COMMENT>"?"|"%"|">" {
|
2000-12-18 04:03:35 +08:00
|
|
|
yymore();
|
|
|
|
}
|
|
|
|
|
2005-12-08 11:12:34 +08:00
|
|
|
<ST_ONE_LINE_COMMENT>[^\n\r?%>]+{ANY_CHAR} {
|
|
|
|
switch (yytext[yyleng-1]) {
|
|
|
|
case '?': case '%': case '>':
|
|
|
|
yyless(yyleng-1);
|
|
|
|
yymore();
|
|
|
|
break;
|
|
|
|
case '\n':
|
|
|
|
CG(zend_lineno)++;
|
|
|
|
/* intentional fall through */
|
|
|
|
default:
|
|
|
|
zendlval->value.str.val = yytext; /* no copying - intentional */
|
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
zendlval->type = IS_STRING;
|
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
|
|
|
return T_COMMENT;
|
|
|
|
}
|
2005-11-19 17:43:19 +08:00
|
|
|
}
|
|
|
|
|
2001-05-03 05:48:07 +08:00
|
|
|
<ST_ONE_LINE_COMMENT>{NEWLINE} {
|
2000-12-18 04:03:35 +08:00
|
|
|
zendlval->value.str.val = yytext; /* no copying - intentional */
|
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
zendlval->type = IS_STRING;
|
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
|
|
|
CG(zend_lineno)++;
|
|
|
|
return T_COMMENT;
|
|
|
|
}
|
|
|
|
|
2000-12-19 20:57:38 +08:00
|
|
|
<ST_ONE_LINE_COMMENT>"?>"|"%>" {
|
2001-04-28 02:51:56 +08:00
|
|
|
if (CG(asp_tags) || yytext[yyleng-2] != '%') { /* asp comment? */
|
2000-12-19 20:57:38 +08:00
|
|
|
zendlval->value.str.val = yytext; /* no copying - intentional */
|
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
zendlval->type = IS_STRING;
|
|
|
|
yyless(yyleng-2);
|
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
|
|
|
return T_COMMENT;
|
|
|
|
} else {
|
|
|
|
yymore();
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2004-06-15 03:09:42 +08:00
|
|
|
<ST_IN_SCRIPTING>"/**"{WHITESPACE} {
|
2003-03-20 05:17:47 +08:00
|
|
|
CG(comment_start_line) = CG(zend_lineno);
|
2005-06-08 02:11:56 +08:00
|
|
|
RESET_DOC_COMMENT();
|
2003-03-20 05:17:47 +08:00
|
|
|
BEGIN(ST_DOC_COMMENT);
|
|
|
|
yymore();
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>"/*" {
|
1999-11-23 00:30:23 +08:00
|
|
|
CG(comment_start_line) = CG(zend_lineno);
|
1999-05-22 01:31:49 +08:00
|
|
|
BEGIN(ST_COMMENT);
|
|
|
|
yymore();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-20 05:17:47 +08:00
|
|
|
<ST_COMMENT,ST_DOC_COMMENT>[^*]+ {
|
1999-05-22 01:31:49 +08:00
|
|
|
yymore();
|
|
|
|
}
|
|
|
|
|
2003-03-20 05:17:47 +08:00
|
|
|
<ST_DOC_COMMENT>"*/" {
|
2005-06-08 02:11:56 +08:00
|
|
|
CG(doc_comment) = estrndup(yytext, yyleng);
|
2003-04-03 00:51:49 +08:00
|
|
|
CG(doc_comment_len) = yyleng;
|
2003-03-20 05:17:47 +08:00
|
|
|
HANDLE_NEWLINES(yytext, yyleng);
|
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
|
|
|
return T_DOC_COMMENT;
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_COMMENT>"*/" {
|
1999-06-06 02:47:36 +08:00
|
|
|
HANDLE_NEWLINES(yytext, yyleng);
|
1999-05-22 01:31:49 +08:00
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_COMMENT;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2003-03-20 05:17:47 +08:00
|
|
|
<ST_COMMENT,ST_DOC_COMMENT>"*" {
|
1999-05-22 01:31:49 +08:00
|
|
|
yymore();
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2005-03-08 00:48:49 +08:00
|
|
|
<ST_IN_SCRIPTING>("?>"|"</script"{WHITESPACE}*">"){NEWLINE}? {
|
1999-04-08 02:10:10 +08:00
|
|
|
zendlval->value.str.val = yytext; /* no copying - intentional */
|
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
zendlval->type = IS_STRING;
|
|
|
|
BEGIN(INITIAL);
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CLOSE_TAG; /* implicit ';' at php-end tag */
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-03 05:48:07 +08:00
|
|
|
<ST_IN_SCRIPTING>"%>"{NEWLINE}? {
|
1999-04-08 02:10:10 +08:00
|
|
|
if (CG(asp_tags)) {
|
|
|
|
BEGIN(INITIAL);
|
2000-12-18 04:10:16 +08:00
|
|
|
zendlval->value.str.len = yyleng;
|
|
|
|
zendlval->type = IS_STRING;
|
2000-05-17 23:50:30 +08:00
|
|
|
zendlval->value.str.val = yytext; /* no copying - intentional */
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CLOSE_TAG; /* implicit ';' at php-end tag */
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
2000-12-18 04:10:16 +08:00
|
|
|
yyless(1);
|
|
|
|
return yytext[0];
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>(["]([^$"\\]|("\\".))*["]) {
|
2005-08-12 07:35:03 +08:00
|
|
|
if (UG(unicode)) {
|
|
|
|
return zend_scan_unicode_double_string(zendlval TSRMLS_CC);
|
|
|
|
} else {
|
|
|
|
return zend_scan_binary_double_string(zendlval TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
<ST_IN_SCRIPTING>(b["]([^$"\\]|("\\".))*["]) {
|
|
|
|
yytext++; /* adjust for 'b' */
|
|
|
|
yyleng--;
|
|
|
|
return zend_scan_binary_double_string(zendlval TSRMLS_CC);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>([']([^'\\]|("\\".))*[']) {
|
2005-08-12 07:35:03 +08:00
|
|
|
if (UG(unicode)) {
|
|
|
|
return zend_scan_unicode_single_string(zendlval TSRMLS_CC);
|
|
|
|
} else {
|
|
|
|
return zend_scan_binary_single_string(zendlval TSRMLS_CC);
|
1999-04-30 18:46:48 +08:00
|
|
|
}
|
2005-08-12 07:35:03 +08:00
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
|
2003-08-11 13:24:42 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
<ST_IN_SCRIPTING>("b'"([^'\\]|("\\".))*[']) {
|
|
|
|
yytext++; /* adjust for 'b' */
|
|
|
|
yyleng--;
|
|
|
|
return zend_scan_binary_single_string(zendlval TSRMLS_CC);
|
1999-04-30 18:46:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>["] {
|
|
|
|
BEGIN(ST_DOUBLE_QUOTES);
|
1999-04-08 02:10:10 +08:00
|
|
|
return '\"';
|
|
|
|
}
|
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
<ST_IN_SCRIPTING>b["] {
|
|
|
|
BEGIN(ST_DOUBLE_QUOTES);
|
|
|
|
return T_BINARY_DOUBLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
<ST_IN_SCRIPTING>b"<<<"{TABS_AND_SPACES}{LABEL}{NEWLINE} {
|
|
|
|
char *s;
|
|
|
|
CG(zend_lineno)++;
|
|
|
|
CG(heredoc_len) = yyleng-4-1-(yytext[yyleng-2]=='\r'?1:0);
|
|
|
|
s = yytext+4;
|
|
|
|
while ((*s == ' ') || (*s == '\t')) {
|
|
|
|
s++;
|
|
|
|
CG(heredoc_len)--;
|
|
|
|
}
|
|
|
|
CG(heredoc) = estrndup(s, CG(heredoc_len));
|
|
|
|
BEGIN(ST_HEREDOC);
|
|
|
|
return T_BINARY_HEREDOC;
|
|
|
|
}
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-05-03 05:48:07 +08:00
|
|
|
<ST_IN_SCRIPTING>"<<<"{TABS_AND_SPACES}{LABEL}{NEWLINE} {
|
1999-04-10 04:47:29 +08:00
|
|
|
char *s;
|
1999-06-04 05:06:03 +08:00
|
|
|
CG(zend_lineno)++;
|
1999-04-10 04:47:29 +08:00
|
|
|
CG(heredoc_len) = yyleng-3-1-(yytext[yyleng-2]=='\r'?1:0);
|
|
|
|
s = yytext+3;
|
|
|
|
while ((*s == ' ') || (*s == '\t')) {
|
|
|
|
s++;
|
|
|
|
CG(heredoc_len)--;
|
|
|
|
}
|
|
|
|
CG(heredoc) = estrndup(s, CG(heredoc_len));
|
1999-05-22 01:31:49 +08:00
|
|
|
BEGIN(ST_HEREDOC);
|
2000-02-08 02:39:14 +08:00
|
|
|
return T_START_HEREDOC;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_IN_SCRIPTING>[`] {
|
|
|
|
BEGIN(ST_BACKQUOTE);
|
1999-04-08 02:10:10 +08:00
|
|
|
return '`';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-03 05:48:07 +08:00
|
|
|
<ST_HEREDOC>^{LABEL}(";")?{NEWLINE} {
|
1999-04-08 02:10:10 +08:00
|
|
|
int label_len;
|
|
|
|
|
|
|
|
if (yytext[yyleng-2]=='\r') {
|
|
|
|
label_len = yyleng-2;
|
|
|
|
} else {
|
|
|
|
label_len = yyleng-1;
|
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
|
1999-04-09 19:19:03 +08:00
|
|
|
if (yytext[label_len-1]==';') {
|
|
|
|
label_len--;
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
if (label_len==CG(heredoc_len) && !memcmp(yytext, CG(heredoc), label_len)) {
|
2003-11-30 03:05:14 +08:00
|
|
|
zendlval->value.str.val = estrndup(yytext, label_len); /* unput destroys yytext */
|
|
|
|
zendlval->value.str.len = label_len;
|
2005-12-14 05:00:49 +08:00
|
|
|
yyless(yyleng - (yyleng - label_len));
|
1999-04-08 02:10:10 +08:00
|
|
|
efree(CG(heredoc));
|
|
|
|
CG(heredoc)=NULL;
|
|
|
|
CG(heredoc_len)=0;
|
1999-05-22 01:31:49 +08:00
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
2000-02-08 02:39:14 +08:00
|
|
|
return T_END_HEREDOC;
|
1999-04-08 02:10:10 +08:00
|
|
|
} else {
|
2006-01-17 17:39:33 +08:00
|
|
|
CG(zend_lineno)++;
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_STRING;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-18 13:27:46 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>{ESCAPED_AND_WHITESPACE} {
|
2001-08-11 23:56:40 +08:00
|
|
|
HANDLE_NEWLINES(yytext, yyleng);
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ENCAPSED_AND_WHITESPACE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES>[`]+ {
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ENCAPSED_AND_WHITESPACE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_BACKQUOTE>["]+ {
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ENCAPSED_AND_WHITESPACE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>"$"[^a-zA-Z_\x7f-\xff{] {
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = (long) yytext[0];
|
1999-04-08 02:10:10 +08:00
|
|
|
if (yyleng == 2) {
|
1999-04-23 14:14:06 +08:00
|
|
|
yyless(1);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
return T_CHARACTER;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>{ENCAPSED_TOKENS} {
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = (long) yytext[0];
|
1999-04-08 02:10:10 +08:00
|
|
|
return yytext[0];
|
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>"{$" {
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = (long) yytext[0];
|
2001-08-06 21:48:51 +08:00
|
|
|
yy_push_state(ST_IN_SCRIPTING TSRMLS_CC);
|
1999-04-23 14:14:06 +08:00
|
|
|
yyless(1);
|
1999-04-08 02:10:10 +08:00
|
|
|
return T_CURLY_OPEN;
|
|
|
|
}
|
|
|
|
|
1999-05-01 01:29:18 +08:00
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES>"\\\"" {
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = (long) '"';
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CHARACTER;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_BACKQUOTE>"\\`" {
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = (long) '`';
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CHARACTER;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>"\\"[0-7]{1,3} {
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = strtol(yytext+1, NULL, 8);
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CHARACTER;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>"\\x"[0-9A-Fa-f]{1,2} {
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = strtol (yytext+2, NULL, 16);
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CHARACTER;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
|
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>"\\u"[0-9A-Fa-f]{0,6} {
|
|
|
|
UChar32 codepoint;
|
|
|
|
int req_digits = (yytext[1] == 'U') ? 6 : 4;
|
|
|
|
|
|
|
|
if (CG(literal_type) == IS_UNICODE) {
|
|
|
|
if (zend_digits_to_codepoint(yytext+2, yytext+yyleng, &codepoint, req_digits)) {
|
|
|
|
if (codepoint <= 0x10FFFF) {
|
|
|
|
zendlval->value.lval = (long) codepoint;
|
|
|
|
/* give back if we grabbed more than needed for \u case */
|
|
|
|
if (yyleng > req_digits + 2) {
|
|
|
|
yyless(req_digits + 2);
|
|
|
|
}
|
|
|
|
return T_CHARACTER;
|
|
|
|
} else {
|
|
|
|
zend_error(E_COMPILE_WARNING,"\\U%06x is above the highest valid codepoint 0x10FFFF", codepoint);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
zend_error(E_COMPILE_WARNING,"\\%c escape sequence requires exactly %d hexadecimal digits", yytext[1], req_digits);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC);
|
|
|
|
return T_STRING;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>"\\C"("{"[A-Z0-9 -]+"}")? {
|
|
|
|
UChar32 codepoint;
|
|
|
|
|
|
|
|
if (CG(literal_type) == IS_UNICODE && (yytext[1] == 'C')) {
|
|
|
|
/* minimum valid string is \C{.} */
|
|
|
|
if (yyleng >= 5) {
|
|
|
|
/* safe, since we have } at the end */
|
|
|
|
yytext[yyleng-1] = 0;
|
|
|
|
if (zend_uchar_from_name(yytext+3, &codepoint)) {
|
|
|
|
zendlval->value.lval = (long) codepoint;
|
|
|
|
return T_CHARACTER;
|
|
|
|
} else {
|
|
|
|
zend_error(E_COMPILE_WARNING, "Invalid Unicode character name: '%s'", yytext+3);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
zend_error(E_COMPILE_WARNING, "Invalid \\C{..} sequence");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC);
|
|
|
|
return T_STRING;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-08 11:12:34 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>"\\{" {
|
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC)) {
|
2005-10-24 15:17:16 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2005-10-21 21:22:10 +08:00
|
|
|
return T_STRING;
|
|
|
|
}
|
|
|
|
|
2000-07-07 00:19:36 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>"\\"{ANY_CHAR} {
|
1999-04-08 02:10:10 +08:00
|
|
|
switch (yytext[1]) {
|
|
|
|
case 'n':
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = (long) '\n';
|
1999-04-08 02:10:10 +08:00
|
|
|
break;
|
|
|
|
case 't':
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = (long) '\t';
|
1999-04-08 02:10:10 +08:00
|
|
|
break;
|
|
|
|
case 'r':
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = (long) '\r';
|
1999-04-08 02:10:10 +08:00
|
|
|
break;
|
|
|
|
case '\\':
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = (long) '\\';
|
1999-04-08 02:10:10 +08:00
|
|
|
break;
|
|
|
|
case '$':
|
2000-05-12 03:18:11 +08:00
|
|
|
zendlval->value.lval = (long) yytext[1];
|
1999-04-08 02:10:10 +08:00
|
|
|
break;
|
|
|
|
default:
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_BAD_CHARACTER;
|
1999-04-08 02:10:10 +08:00
|
|
|
break;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_CHARACTER;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_HEREDOC>["'`]+ {
|
2005-08-12 07:35:03 +08:00
|
|
|
if (!zend_copy_string_value(zendlval, yytext, yyleng, CG(literal_type) TSRMLS_CC)) {
|
|
|
|
return 0;
|
|
|
|
}
|
1999-04-23 07:08:42 +08:00
|
|
|
return T_ENCAPSED_AND_WHITESPACE;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES>["] {
|
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
1999-04-08 02:10:10 +08:00
|
|
|
return '\"';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_BACKQUOTE>[`] {
|
|
|
|
BEGIN(ST_IN_SCRIPTING);
|
1999-04-08 02:10:10 +08:00
|
|
|
return '`';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-22 01:31:49 +08:00
|
|
|
<ST_DOUBLE_QUOTES,ST_BACKQUOTE,INITIAL,ST_IN_SCRIPTING,ST_LOOKING_FOR_PROPERTY><<EOF>> {
|
1999-04-08 02:10:10 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-20 05:17:47 +08:00
|
|
|
<ST_COMMENT,ST_DOC_COMMENT><<EOF>> {
|
1999-11-23 00:30:23 +08:00
|
|
|
zend_error(E_COMPILE_WARNING,"Unterminated comment starting line %d", CG(comment_start_line));
|
|
|
|
return 0;
|
|
|
|
}
|
2003-02-01 15:32:09 +08:00
|
|
|
|
1999-11-23 00:30:23 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2005-08-12 07:35:03 +08:00
|
|
|
<ST_IN_SCRIPTING,INITIAL,ST_DOUBLE_QUOTES,ST_BACKQUOTE,ST_HEREDOC>{ANY_CHAR} {
|
2001-08-11 23:56:40 +08:00
|
|
|
zend_error(E_COMPILE_WARNING,"Unexpected character in input: '%c' (ASCII=%d) state=%d", yytext[0], yytext[0], YYSTATE);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|