1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2016-01-02 17:56:11 +08:00
|
|
|
| Copyright (c) 1998-2016 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, |
|
2015-01-03 17:22:58 +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$ */
|
1999-07-16 22:58:16 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#include "zend.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"
|
|
|
|
#include "zend_highlight.h"
|
|
|
|
#include "zend_ptr_stack.h"
|
|
|
|
#include "zend_globals.h"
|
2015-12-11 23:04:32 +08:00
|
|
|
#include "zend_exceptions.h"
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2010-03-12 18:28:59 +08:00
|
|
|
ZEND_API void zend_html_putc(char c)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
switch (c) {
|
|
|
|
case '\n':
|
2001-06-12 18:51:59 +08:00
|
|
|
ZEND_PUTS("<br />");
|
1999-04-08 02:10:10 +08:00
|
|
|
break;
|
|
|
|
case '<':
|
|
|
|
ZEND_PUTS("<");
|
|
|
|
break;
|
|
|
|
case '>':
|
|
|
|
ZEND_PUTS(">");
|
|
|
|
break;
|
|
|
|
case '&':
|
|
|
|
ZEND_PUTS("&");
|
|
|
|
break;
|
|
|
|
case ' ':
|
|
|
|
ZEND_PUTS(" ");
|
|
|
|
break;
|
|
|
|
case '\t':
|
|
|
|
ZEND_PUTS(" ");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ZEND_PUTC(c);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-12 18:28:59 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API void zend_html_puts(const char *s, size_t len)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
2011-09-13 21:29:35 +08:00
|
|
|
const unsigned char *ptr = (const unsigned char*)s, *end = ptr + len;
|
2014-02-23 21:55:29 +08:00
|
|
|
unsigned char *filtered = NULL;
|
2011-09-13 21:29:35 +08:00
|
|
|
size_t filtered_len;
|
2008-06-29 16:21:35 +08:00
|
|
|
|
|
|
|
if (LANG_SCNG(output_filter)) {
|
2014-12-14 06:06:14 +08:00
|
|
|
LANG_SCNG(output_filter)(&filtered, &filtered_len, ptr, len);
|
2008-06-29 16:21:35 +08:00
|
|
|
ptr = filtered;
|
|
|
|
end = filtered + filtered_len;
|
|
|
|
}
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
while (ptr<end) {
|
2002-05-12 23:59:29 +08:00
|
|
|
if (*ptr==' ') {
|
2005-05-23 00:40:06 +08:00
|
|
|
do {
|
|
|
|
zend_html_putc(*ptr);
|
|
|
|
} while ((++ptr < end) && (*ptr==' '));
|
2002-05-12 23:59:29 +08:00
|
|
|
} else {
|
|
|
|
zend_html_putc(*ptr++);
|
2001-05-06 20:28:17 +08:00
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2008-06-29 16:21:35 +08:00
|
|
|
|
|
|
|
if (LANG_SCNG(output_filter)) {
|
|
|
|
efree(filtered);
|
|
|
|
}
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2010-03-12 18:28:59 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API void zend_highlight(zend_syntax_highlighter_ini *syntax_highlighter_ini)
|
1999-04-08 02:10:10 +08:00
|
|
|
{
|
|
|
|
zval token;
|
|
|
|
int token_type;
|
|
|
|
char *last_color = syntax_highlighter_ini->highlight_html;
|
|
|
|
char *next_color;
|
|
|
|
|
2000-01-15 03:35:29 +08:00
|
|
|
zend_printf("<code>");
|
2004-02-25 22:14:47 +08:00
|
|
|
zend_printf("<span style=\"color: %s\">\n", last_color);
|
1999-04-08 02:10:10 +08:00
|
|
|
/* highlight stuff coming back from zendlex() */
|
2014-04-02 18:34:44 +08:00
|
|
|
ZVAL_UNDEF(&token);
|
2014-12-14 06:06:14 +08:00
|
|
|
while ((token_type=lex_scan(&token))) {
|
1999-04-08 02:10:10 +08:00
|
|
|
switch (token_type) {
|
1999-04-23 07:08:42 +08:00
|
|
|
case T_INLINE_HTML:
|
1999-04-08 02:10:10 +08:00
|
|
|
next_color = syntax_highlighter_ini->highlight_html;
|
|
|
|
break;
|
1999-04-23 07:08:42 +08:00
|
|
|
case T_COMMENT:
|
2003-03-20 05:17:47 +08:00
|
|
|
case T_DOC_COMMENT:
|
1999-04-08 02:10:10 +08:00
|
|
|
next_color = syntax_highlighter_ini->highlight_comment;
|
|
|
|
break;
|
1999-04-23 07:08:42 +08:00
|
|
|
case T_OPEN_TAG:
|
2000-03-10 00:02:05 +08:00
|
|
|
case T_OPEN_TAG_WITH_ECHO:
|
1999-04-23 07:08:42 +08:00
|
|
|
case T_CLOSE_TAG:
|
2014-08-27 07:12:09 +08:00
|
|
|
case T_LINE:
|
|
|
|
case T_FILE:
|
|
|
|
case T_DIR:
|
|
|
|
case T_TRAIT_C:
|
|
|
|
case T_METHOD_C:
|
|
|
|
case T_FUNC_C:
|
|
|
|
case T_NS_C:
|
|
|
|
case T_CLASS_C:
|
1999-04-08 02:10:10 +08:00
|
|
|
next_color = syntax_highlighter_ini->highlight_default;
|
|
|
|
break;
|
2008-07-26 23:30:28 +08:00
|
|
|
case '"':
|
|
|
|
case T_ENCAPSED_AND_WHITESPACE:
|
1999-04-23 07:08:42 +08:00
|
|
|
case T_CONSTANT_ENCAPSED_STRING:
|
1999-04-08 02:10:10 +08:00
|
|
|
next_color = syntax_highlighter_ini->highlight_string;
|
|
|
|
break;
|
|
|
|
case T_WHITESPACE:
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_html_puts((char*)LANG_SCNG(yy_text), LANG_SCNG(yy_leng)); /* no color needed */
|
2014-04-02 18:34:44 +08:00
|
|
|
ZVAL_UNDEF(&token);
|
1999-04-08 02:10:10 +08:00
|
|
|
continue;
|
|
|
|
break;
|
|
|
|
default:
|
2014-04-02 18:34:44 +08:00
|
|
|
if (Z_TYPE(token) == IS_UNDEF) {
|
1999-04-08 02:10:10 +08:00
|
|
|
next_color = syntax_highlighter_ini->highlight_keyword;
|
|
|
|
} else {
|
2003-12-26 02:57:26 +08:00
|
|
|
next_color = syntax_highlighter_ini->highlight_default;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (last_color != next_color) {
|
|
|
|
if (last_color != syntax_highlighter_ini->highlight_html) {
|
2004-02-25 22:14:47 +08:00
|
|
|
zend_printf("</span>");
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
last_color = next_color;
|
|
|
|
if (last_color != syntax_highlighter_ini->highlight_html) {
|
2004-02-25 22:14:47 +08:00
|
|
|
zend_printf("<span style=\"color: %s\">", last_color);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
2009-05-05 09:35:44 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
zend_html_puts((char*)LANG_SCNG(yy_text), LANG_SCNG(yy_leng));
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2014-04-02 18:34:44 +08:00
|
|
|
if (Z_TYPE(token) == IS_STRING) {
|
1999-04-08 02:10:10 +08:00
|
|
|
switch (token_type) {
|
1999-05-12 01:50:37 +08:00
|
|
|
case T_OPEN_TAG:
|
2000-03-10 00:02:05 +08:00
|
|
|
case T_OPEN_TAG_WITH_ECHO:
|
1999-05-12 01:50:37 +08:00
|
|
|
case T_CLOSE_TAG:
|
|
|
|
case T_WHITESPACE:
|
2001-01-12 14:55:57 +08:00
|
|
|
case T_COMMENT:
|
2003-04-03 00:13:12 +08:00
|
|
|
case T_DOC_COMMENT:
|
1999-05-12 01:50:37 +08:00
|
|
|
break;
|
|
|
|
default:
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_string_release(Z_STR(token));
|
1999-05-12 01:50:37 +08:00
|
|
|
break;
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
}
|
2014-04-02 18:34:44 +08:00
|
|
|
ZVAL_UNDEF(&token);
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2007-09-26 23:43:58 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
if (last_color != syntax_highlighter_ini->highlight_html) {
|
2004-02-25 22:14:47 +08:00
|
|
|
zend_printf("</span>\n");
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
2004-02-25 22:14:47 +08:00
|
|
|
zend_printf("</span>\n");
|
2000-01-15 03:35:29 +08:00
|
|
|
zend_printf("</code>");
|
2015-12-11 23:04:32 +08:00
|
|
|
|
|
|
|
/* Discard parse errors thrown during tokenization */
|
|
|
|
zend_clear_exception();
|
1999-04-08 02:10:10 +08:00
|
|
|
}
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API void zend_strip(void)
|
2001-12-11 14:30:30 +08:00
|
|
|
{
|
|
|
|
zval token;
|
|
|
|
int token_type;
|
2003-03-06 23:38:28 +08:00
|
|
|
int prev_space = 0;
|
2001-12-11 14:30:30 +08:00
|
|
|
|
2014-04-02 18:34:44 +08:00
|
|
|
ZVAL_UNDEF(&token);
|
2014-12-14 06:06:14 +08:00
|
|
|
while ((token_type=lex_scan(&token))) {
|
2001-12-11 14:30:30 +08:00
|
|
|
switch (token_type) {
|
|
|
|
case T_WHITESPACE:
|
2003-03-06 23:38:28 +08:00
|
|
|
if (!prev_space) {
|
2004-08-11 06:16:46 +08:00
|
|
|
zend_write(" ", sizeof(" ") - 1);
|
2003-03-06 23:38:28 +08:00
|
|
|
prev_space = 1;
|
2001-12-11 14:30:30 +08:00
|
|
|
}
|
2003-03-06 23:38:28 +08:00
|
|
|
/* lack of break; is intentional */
|
|
|
|
case T_COMMENT:
|
2003-04-03 00:13:12 +08:00
|
|
|
case T_DOC_COMMENT:
|
2014-04-02 18:34:44 +08:00
|
|
|
ZVAL_UNDEF(&token);
|
2001-12-11 14:30:30 +08:00
|
|
|
continue;
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2005-12-14 04:55:42 +08:00
|
|
|
case T_END_HEREDOC:
|
2011-09-13 21:29:35 +08:00
|
|
|
zend_write((char*)LANG_SCNG(yy_text), LANG_SCNG(yy_leng));
|
2005-12-14 04:55:42 +08:00
|
|
|
/* read the following character, either newline or ; */
|
2014-12-14 06:06:14 +08:00
|
|
|
if (lex_scan(&token) != T_WHITESPACE) {
|
2011-09-13 21:29:35 +08:00
|
|
|
zend_write((char*)LANG_SCNG(yy_text), LANG_SCNG(yy_leng));
|
2001-12-11 14:30:30 +08:00
|
|
|
}
|
2005-12-14 04:55:42 +08:00
|
|
|
zend_write("\n", sizeof("\n") - 1);
|
|
|
|
prev_space = 1;
|
2014-04-02 18:34:44 +08:00
|
|
|
ZVAL_UNDEF(&token);
|
2005-12-14 04:55:42 +08:00
|
|
|
continue;
|
|
|
|
|
2003-03-06 23:38:28 +08:00
|
|
|
default:
|
2011-09-13 21:29:35 +08:00
|
|
|
zend_write((char*)LANG_SCNG(yy_text), LANG_SCNG(yy_leng));
|
2003-03-06 23:38:28 +08:00
|
|
|
break;
|
2001-12-11 14:30:30 +08:00
|
|
|
}
|
|
|
|
|
2014-04-02 18:34:44 +08:00
|
|
|
if (Z_TYPE(token) == IS_STRING) {
|
2001-12-11 14:30:30 +08:00
|
|
|
switch (token_type) {
|
|
|
|
case T_OPEN_TAG:
|
|
|
|
case T_OPEN_TAG_WITH_ECHO:
|
|
|
|
case T_CLOSE_TAG:
|
|
|
|
case T_WHITESPACE:
|
|
|
|
case T_COMMENT:
|
2003-04-03 00:13:12 +08:00
|
|
|
case T_DOC_COMMENT:
|
2001-12-11 14:30:30 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2014-08-26 01:24:55 +08:00
|
|
|
zend_string_release(Z_STR(token));
|
2001-12-11 14:30:30 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-04-02 18:34:44 +08:00
|
|
|
prev_space = 0;
|
|
|
|
ZVAL_UNDEF(&token);
|
2001-12-11 14:30:30 +08:00
|
|
|
}
|
2016-03-12 05:45:38 +08:00
|
|
|
|
|
|
|
/* Discard parse errors thrown during tokenization */
|
|
|
|
zend_clear_exception();
|
2001-12-11 14:30:30 +08:00
|
|
|
}
|
2003-02-01 09:49:15 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
2003-02-01 09:49:15 +08:00
|
|
|
* indent-tabs-mode: t
|
1999-04-08 02:10:10 +08:00
|
|
|
* End:
|
|
|
|
*/
|
2010-03-12 18:28:59 +08:00
|
|
|
|