diff --git a/change_log.txt b/change_log.txt index 2657bbb1..075077c5 100644 --- a/change_log.txt +++ b/change_log.txt @@ -2,7 +2,8 @@ 15.12.2013 - bugfix {include} with {block} tag handling (forum topic 24599, 24594, 24682) (Issue 161) Read 3.1.16_RELEASE_NOTES for more details - + - enhancement additional debug output at $smarty->_parserdebug = true; + 07.11.2013 - bugfix too restrictive handling of {include} within {block} tags. 3.1.15 did throw errors where 3.1.14 did not (forum topic 24599) - bugfix compiler could fail if PHP mbstring.func_overload is enabled (Issue 164) diff --git a/libs/sysplugins/smarty_internal_configfilelexer.php b/libs/sysplugins/smarty_internal_configfilelexer.php index 4bc2b9e8..1e84d579 100644 --- a/libs/sysplugins/smarty_internal_configfilelexer.php +++ b/libs/sysplugins/smarty_internal_configfilelexer.php @@ -2,10 +2,10 @@ /** * Smarty Internal Plugin Configfilelexer * -* This is the lexer to break the config file source into tokens +* This is the lexer to break the config file source into tokens * @package Smarty * @subpackage Config -* @author Uwe Tews +* @author Uwe Tews */ /** * Smarty Internal Plugin Configfilelexer @@ -20,17 +20,21 @@ class Smarty_Internal_Configfilelexer public $node; public $line; private $state = 1; + public $yyTraceFILE; + public $yyTracePrompt; + public $state_name = array (1 => 'START', 2 => 'VALUE', 3 => 'NAKED_STRING_VALUE', 4 => 'COMMENT', 5 => 'SECTION', 6 => 'TRIPPLE'); public $smarty_token_names = array ( // Text for parser error messages - ); - - public function __construct($data, $smarty) + ); + + + function __construct($data, $smarty) { // set instance object - self::instance($this); + self::instance($this); $this->data = $data . "\n"; //now all lines are \n-terminated $this->counter = 0; $this->line = 1; - $this->smarty = $smarty; + $this->smarty = $smarty; $this->mbstring_overload = ini_get('mbstring.func_overload') & 2; } public static function &instance($new_instance = null) @@ -38,10 +42,16 @@ class Smarty_Internal_Configfilelexer static $instance = null; if (isset($new_instance) && is_object($new_instance)) $instance = $new_instance; - return $instance; + } + public function PrintTrace() + { + $this->yyTraceFILE = fopen('php://output', 'w'); + $this->yyTracePrompt = '
'; } + + private $_yy_state = 1; private $_yy_stack = array(); @@ -52,20 +62,39 @@ class Smarty_Internal_Configfilelexer public function yypushstate($state) { + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sState push %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); + } array_push($this->_yy_stack, $this->_yy_state); $this->_yy_state = $state; + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%snew State %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); + } } public function yypopstate() { - $this->_yy_state = array_pop($this->_yy_stack); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sState pop %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); + } + $this->_yy_state = array_pop($this->_yy_stack); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%snew State %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); + } + } public function yybegin($state) { - $this->_yy_state = $state; + $this->_yy_state = $state; + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sState set %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); + } } + + + public function yylex1() { $tokenMap = array ( @@ -129,50 +158,54 @@ class Smarty_Internal_Configfilelexer } // end function + const START = 1; - public function yy_r1_1($yy_subpatterns) + function yy_r1_1($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_COMMENTSTART; $this->yypushstate(self::COMMENT); } - public function yy_r1_2($yy_subpatterns) + function yy_r1_2($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_OPENB; $this->yypushstate(self::SECTION); } - public function yy_r1_3($yy_subpatterns) + function yy_r1_3($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_CLOSEB; } - public function yy_r1_4($yy_subpatterns) + function yy_r1_4($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_EQUAL; $this->yypushstate(self::VALUE); } - public function yy_r1_5($yy_subpatterns) + function yy_r1_5($yy_subpatterns) { + return false; } - public function yy_r1_6($yy_subpatterns) + function yy_r1_6($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NEWLINE; } - public function yy_r1_7($yy_subpatterns) + function yy_r1_7($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_ID; } - public function yy_r1_8($yy_subpatterns) + function yy_r1_8($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_OTHER; } + + public function yylex2() { $tokenMap = array ( @@ -237,61 +270,62 @@ class Smarty_Internal_Configfilelexer } // end function + const VALUE = 2; - public function yy_r2_1($yy_subpatterns) + function yy_r2_1($yy_subpatterns) { + return false; } - public function yy_r2_2($yy_subpatterns) + function yy_r2_2($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_FLOAT; $this->yypopstate(); } - public function yy_r2_3($yy_subpatterns) + function yy_r2_3($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_INT; $this->yypopstate(); } - public function yy_r2_4($yy_subpatterns) + function yy_r2_4($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_TRIPPLE_QUOTES; $this->yypushstate(self::TRIPPLE); } - public function yy_r2_5($yy_subpatterns) + function yy_r2_5($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_SINGLE_QUOTED_STRING; $this->yypopstate(); } - public function yy_r2_6($yy_subpatterns) + function yy_r2_6($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_DOUBLE_QUOTED_STRING; $this->yypopstate(); } - public function yy_r2_7($yy_subpatterns) + function yy_r2_7($yy_subpatterns) { if (!$this->smarty->config_booleanize || !in_array(strtolower($this->value), Array("true", "false", "on", "off", "yes", "no")) ) { $this->yypopstate(); $this->yypushstate(self::NAKED_STRING_VALUE); - return true; //reprocess in new state } else { $this->token = Smarty_Internal_Configfileparser::TPC_BOOL; $this->yypopstate(); } } - public function yy_r2_8($yy_subpatterns) + function yy_r2_8($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NAKED_STRING; $this->yypopstate(); } - public function yy_r2_9($yy_subpatterns) + function yy_r2_9($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NAKED_STRING; @@ -299,6 +333,8 @@ class Smarty_Internal_Configfilelexer $this->yypopstate(); } + + public function yylex3() { $tokenMap = array ( @@ -355,14 +391,17 @@ class Smarty_Internal_Configfilelexer } // end function + const NAKED_STRING_VALUE = 3; - public function yy_r3_1($yy_subpatterns) + function yy_r3_1($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NAKED_STRING; $this->yypopstate(); } + + public function yylex4() { $tokenMap = array ( @@ -421,23 +460,27 @@ class Smarty_Internal_Configfilelexer } // end function + const COMMENT = 4; - public function yy_r4_1($yy_subpatterns) + function yy_r4_1($yy_subpatterns) { + return false; } - public function yy_r4_2($yy_subpatterns) + function yy_r4_2($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NAKED_STRING; } - public function yy_r4_3($yy_subpatterns) + function yy_r4_3($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_NEWLINE; $this->yypopstate(); } + + public function yylex5() { $tokenMap = array ( @@ -495,19 +538,21 @@ class Smarty_Internal_Configfilelexer } // end function + const SECTION = 5; - public function yy_r5_1($yy_subpatterns) + function yy_r5_1($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_DOT; } - public function yy_r5_2($yy_subpatterns) + function yy_r5_2($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_SECTION; $this->yypopstate(); } + public function yylex6() { $tokenMap = array ( @@ -565,15 +610,16 @@ class Smarty_Internal_Configfilelexer } // end function + const TRIPPLE = 6; - public function yy_r6_1($yy_subpatterns) + function yy_r6_1($yy_subpatterns) { $this->token = Smarty_Internal_Configfileparser::TPC_TRIPPLE_QUOTES_END; $this->yypopstate(); $this->yypushstate(self::START); } - public function yy_r6_2($yy_subpatterns) + function yy_r6_2($yy_subpatterns) { if ($this->mbstring_overload) { @@ -586,7 +632,7 @@ class Smarty_Internal_Configfilelexer $to = $match[0][1]; } else { $this->compiler->trigger_template_error ("missing or misspelled literal closing tag"); - } + } if ($this->mbstring_overload) { $this->value = mb_substr($this->data,$this->counter,$to-$this->counter,'latin1'); } else { @@ -595,4 +641,6 @@ class Smarty_Internal_Configfilelexer $this->token = Smarty_Internal_Configfileparser::TPC_TRIPPLE_TEXT; } + } + diff --git a/libs/sysplugins/smarty_internal_configfileparser.php b/libs/sysplugins/smarty_internal_configfileparser.php index 99cd2e18..2bfd1302 100644 --- a/libs/sysplugins/smarty_internal_configfileparser.php +++ b/libs/sysplugins/smarty_internal_configfileparser.php @@ -83,8 +83,9 @@ class TPC_yyStackEntry ** is the value of the token */ }; + #line 12 "smarty_internal_configfileparser.y" -class Smarty_Internal_Configfileparser#line 79 "smarty_internal_configfileparser.php" +class Smarty_Internal_Configfileparser#line 80 "smarty_internal_configfileparser.php" { #line 14 "smarty_internal_configfileparser.y" @@ -94,12 +95,11 @@ class Smarty_Internal_Configfileparser#line 79 "smarty_internal_configfileparser private $lex; private $internalError = false; - public function __construct($lex, $compiler) - { + function __construct($lex, $compiler) { // set instance object - self::instance($this); + self::instance($this); $this->lex = $lex; - $this->smarty = $compiler->smarty; + $this->smarty = $compiler->smarty; $this->compiler = $compiler; } public static function &instance($new_instance = null) @@ -107,25 +107,21 @@ class Smarty_Internal_Configfileparser#line 79 "smarty_internal_configfileparser static $instance = null; if (isset($new_instance) && is_object($new_instance)) $instance = $new_instance; - return $instance; } - private function parse_bool($str) - { + private function parse_bool($str) { if (in_array(strtolower($str) ,array('on','yes','true'))) { $res = true; } else { $res = false; } - return $res; } private static $escapes_single = Array('\\' => '\\', '\'' => '\''); - private static function parse_single_quoted_string($qstr) - { + private static function parse_single_quoted_string($qstr) { $escaped_string = substr($qstr, 1, strlen($qstr)-2); //remove outer quotes $ss = preg_split('/(\\\\.)/', $escaped_string, -1, PREG_SPLIT_DELIM_CAPTURE); @@ -144,20 +140,16 @@ class Smarty_Internal_Configfileparser#line 79 "smarty_internal_configfileparser return $str; } - private static function parse_double_quoted_string($qstr) - { + private static function parse_double_quoted_string($qstr) { $inner_str = substr($qstr, 1, strlen($qstr)-2); - return stripcslashes($inner_str); } - private static function parse_tripple_double_quoted_string($qstr) - { + private static function parse_tripple_double_quoted_string($qstr) { return stripcslashes($qstr); } - private function set_var(Array $var, Array &$target_array) - { + private function set_var(Array $var, Array &$target_array) { $key = $var["key"]; $value = $var["value"]; @@ -169,8 +161,7 @@ class Smarty_Internal_Configfileparser#line 79 "smarty_internal_configfileparser } } - private function add_global_vars(Array $vars) - { + private function add_global_vars(Array $vars) { if (!isset($this->compiler->config_data['vars'])) { $this->compiler->config_data['vars'] = Array(); } @@ -179,8 +170,7 @@ class Smarty_Internal_Configfileparser#line 79 "smarty_internal_configfileparser } } - private function add_section_vars($section_name, Array $vars) - { + private function add_section_vars($section_name, Array $vars) { if (!isset($this->compiler->config_data['sections'][$section_name]['vars'])) { $this->compiler->config_data['sections'][$section_name]['vars'] = Array(); } @@ -188,7 +178,7 @@ class Smarty_Internal_Configfileparser#line 79 "smarty_internal_configfileparser $this->set_var($var, $this->compiler->config_data['sections'][$section_name]); } } -#line 173 "smarty_internal_configfileparser.php" +#line 174 "smarty_internal_configfileparser.php" const TPC_OPENB = 1; const TPC_SECTION = 2; @@ -219,7 +209,7 @@ static public $yy_action = array( /* 20 */ 15, 17, 23, 18, 27, 26, 4, 5, 6, 32, /* 30 */ 2, 11, 28, 22, 16, 9, 7, 10, ); - public static $yy_lookahead = array( + static public $yy_lookahead = array( /* 0 */ 7, 8, 9, 10, 11, 12, 5, 27, 15, 16, /* 10 */ 20, 21, 23, 23, 17, 18, 13, 14, 17, 18, /* 20 */ 15, 2, 17, 4, 25, 26, 6, 3, 3, 14, @@ -227,17 +217,17 @@ static public $yy_action = array( ); const YY_SHIFT_USE_DFLT = -8; const YY_SHIFT_MAX = 19; - public static $yy_shift_ofst = array( + static public $yy_shift_ofst = array( /* 0 */ -8, 1, 1, 1, -7, -3, -3, 30, -8, -8, /* 10 */ -8, 19, 5, 3, 15, 16, 24, 25, 32, 20, ); const YY_REDUCE_USE_DFLT = -21; const YY_REDUCE_MAX = 10; - public static $yy_reduce_ofst = array( + static public $yy_reduce_ofst = array( /* 0 */ -10, -1, -1, -1, -20, 10, 12, 8, 14, 7, /* 10 */ -11, ); - public static $yyExpectedTokens = array( + static public $yyExpectedTokens = array( /* 0 */ array(), /* 1 */ array(5, 17, 18, ), /* 2 */ array(5, 17, 18, ), @@ -275,7 +265,7 @@ static public $yy_action = array( /* 34 */ array(), /* 35 */ array(), ); - public static $yy_default = array( + static public $yy_default = array( /* 0 */ 44, 37, 41, 40, 58, 58, 58, 36, 39, 44, /* 10 */ 44, 58, 58, 58, 58, 58, 58, 58, 58, 58, /* 20 */ 55, 54, 57, 56, 50, 45, 43, 42, 38, 46, @@ -290,37 +280,37 @@ static public $yy_action = array( const YYFALLBACK = 0; public static $yyFallback = array( ); - public static function Trace($TraceFILE, $zTracePrompt) + public function Trace($TraceFILE, $zTracePrompt) { if (!$TraceFILE) { $zTracePrompt = 0; } elseif (!$zTracePrompt) { $TraceFILE = 0; } - self::$yyTraceFILE = $TraceFILE; - self::$yyTracePrompt = $zTracePrompt; + $this->yyTraceFILE = $TraceFILE; + $this->yyTracePrompt = $zTracePrompt; } - public static function PrintTrace() + public function PrintTrace() { - self::$yyTraceFILE = fopen('php://output', 'w'); - self::$yyTracePrompt = '
'; + $this->yyTraceFILE = fopen('php://output', 'w'); + $this->yyTracePrompt = '
'; } - public static $yyTraceFILE; - public static $yyTracePrompt; + public $yyTraceFILE; + public $yyTracePrompt; public $yyidx; /* Index of top element in stack */ public $yyerrcnt; /* Shifts left before out of the error */ public $yystack = array(); /* The parser's stack */ public $yyTokenName = array( - '$', 'OPENB', 'SECTION', 'CLOSEB', - 'DOT', 'ID', 'EQUAL', 'FLOAT', + '$', 'OPENB', 'SECTION', 'CLOSEB', + 'DOT', 'ID', 'EQUAL', 'FLOAT', 'INT', 'BOOL', 'SINGLE_QUOTED_STRING', 'DOUBLE_QUOTED_STRING', 'TRIPPLE_QUOTES', 'TRIPPLE_TEXT', 'TRIPPLE_QUOTES_END', 'NAKED_STRING', - 'OTHER', 'NEWLINE', 'COMMENTSTART', 'error', - 'start', 'global_vars', 'sections', 'var_list', - 'section', 'newline', 'var', 'value', + 'OTHER', 'NEWLINE', 'COMMENTSTART', 'error', + 'start', 'global_vars', 'sections', 'var_list', + 'section', 'newline', 'var', 'value', ); public static $yyRuleName = array( @@ -373,9 +363,9 @@ static public $yy_action = array( return; } $yytos = array_pop($this->yystack); - if (self::$yyTraceFILE && $this->yyidx >= 0) { - fwrite(self::$yyTraceFILE, - self::$yyTracePrompt . 'Popping ' . $this->yyTokenName[$yytos->major] . + if ($this->yyTraceFILE && $this->yyidx >= 0) { + fwrite($this->yyTraceFILE, + $this->yyTracePrompt . 'Popping ' . $this->yyTokenName[$yytos->major] . "\n"); } $yymajor = $yytos->major; @@ -390,8 +380,8 @@ static public $yy_action = array( while ($this->yystack !== Array()) { $this->yy_pop_parser_stack(); } - if (is_resource(self::$yyTraceFILE)) { - fclose(self::$yyTraceFILE); + if (is_resource($this->yyTraceFILE)) { + fclose($this->yyTraceFILE); } } @@ -559,8 +549,8 @@ static public $yy_action = array( self::$yy_lookahead[$i] != $iLookAhead) { if (count(self::$yyFallback) && $iLookAhead < count(self::$yyFallback) && ($iFallback = self::$yyFallback[$iLookAhead]) != 0) { - if (self::$yyTraceFILE) { - fwrite(self::$yyTraceFILE, self::$yyTracePrompt . "FALLBACK " . + if ($this->yyTraceFILE) { + fwrite($this->yyTraceFILE, $this->yyTracePrompt . "FALLBACK " . $this->yyTokenName[$iLookAhead] . " => " . $this->yyTokenName[$iFallback] . "\n"); } @@ -602,8 +592,8 @@ static public $yy_action = array( $this->yyidx++; if ($this->yyidx >= self::YYSTACKDEPTH) { $this->yyidx--; - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sStack Overflow!\n", self::$yyTracePrompt); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sStack Overflow!\n", $this->yyTracePrompt); } while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); @@ -612,7 +602,7 @@ static public $yy_action = array( $this->internalError = true; $this->compiler->trigger_config_file_error("Stack overflow in configfile parser"); -#line 593 "smarty_internal_configfileparser.php" +#line 601 "smarty_internal_configfileparser.php" return; } @@ -621,15 +611,15 @@ static public $yy_action = array( $yytos->major = $yyMajor; $yytos->minor = $yypMinor; array_push($this->yystack, $yytos); - if (self::$yyTraceFILE && $this->yyidx > 0) { - fprintf(self::$yyTraceFILE, "%sShift %d\n", self::$yyTracePrompt, + if ($this->yyTraceFILE && $this->yyidx > 0) { + fprintf($this->yyTraceFILE, "%sShift %d\n", $this->yyTracePrompt, $yyNewState); - fprintf(self::$yyTraceFILE, "%sStack:", self::$yyTracePrompt); + fprintf($this->yyTraceFILE, "%sStack:", $this->yyTracePrompt); for ($i = 1; $i <= $this->yyidx; $i++) { - fprintf(self::$yyTraceFILE, " %s", + fprintf($this->yyTraceFILE, " %s", $this->yyTokenName[$this->yystack[$i]->major]); } - fwrite(self::$yyTraceFILE,"\n"); + fwrite($this->yyTraceFILE,"\n"); } } @@ -683,115 +673,99 @@ static public $yy_action = array( 18 => 17, ); #line 131 "smarty_internal_configfileparser.y" - public function yy_r0() - { + function yy_r0(){ $this->_retvalue = null; } -#line 666 "smarty_internal_configfileparser.php" +#line 675 "smarty_internal_configfileparser.php" #line 136 "smarty_internal_configfileparser.y" - public function yy_r1() - { + function yy_r1(){ $this->add_global_vars($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = null; } -#line 671 "smarty_internal_configfileparser.php" +#line 680 "smarty_internal_configfileparser.php" #line 149 "smarty_internal_configfileparser.y" - public function yy_r4() - { + function yy_r4(){ $this->add_section_vars($this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = null; } -#line 677 "smarty_internal_configfileparser.php" +#line 686 "smarty_internal_configfileparser.php" #line 154 "smarty_internal_configfileparser.y" - public function yy_r5() - { + function yy_r5(){ if ($this->smarty->config_read_hidden) { $this->add_section_vars($this->yystack[$this->yyidx + -3]->minor, $this->yystack[$this->yyidx + 0]->minor); } $this->_retvalue = null; } -#line 685 "smarty_internal_configfileparser.php" +#line 694 "smarty_internal_configfileparser.php" #line 162 "smarty_internal_configfileparser.y" - public function yy_r6() - { + function yy_r6(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 690 "smarty_internal_configfileparser.php" +#line 699 "smarty_internal_configfileparser.php" #line 166 "smarty_internal_configfileparser.y" - public function yy_r7() - { + function yy_r7(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor, Array($this->yystack[$this->yyidx + 0]->minor)); } -#line 695 "smarty_internal_configfileparser.php" +#line 704 "smarty_internal_configfileparser.php" #line 170 "smarty_internal_configfileparser.y" - public function yy_r8() - { + function yy_r8(){ $this->_retvalue = Array(); } -#line 700 "smarty_internal_configfileparser.php" +#line 709 "smarty_internal_configfileparser.php" #line 176 "smarty_internal_configfileparser.y" - public function yy_r9() - { + function yy_r9(){ $this->_retvalue = Array("key" => $this->yystack[$this->yyidx + -2]->minor, "value" => $this->yystack[$this->yyidx + 0]->minor); } -#line 705 "smarty_internal_configfileparser.php" +#line 714 "smarty_internal_configfileparser.php" #line 181 "smarty_internal_configfileparser.y" - public function yy_r10() - { + function yy_r10(){ $this->_retvalue = (float) $this->yystack[$this->yyidx + 0]->minor; } -#line 710 "smarty_internal_configfileparser.php" +#line 719 "smarty_internal_configfileparser.php" #line 185 "smarty_internal_configfileparser.y" - public function yy_r11() - { + function yy_r11(){ $this->_retvalue = (int) $this->yystack[$this->yyidx + 0]->minor; } -#line 715 "smarty_internal_configfileparser.php" +#line 724 "smarty_internal_configfileparser.php" #line 189 "smarty_internal_configfileparser.y" - public function yy_r12() - { + function yy_r12(){ $this->_retvalue = $this->parse_bool($this->yystack[$this->yyidx + 0]->minor); } -#line 720 "smarty_internal_configfileparser.php" +#line 729 "smarty_internal_configfileparser.php" #line 193 "smarty_internal_configfileparser.y" - public function yy_r13() - { + function yy_r13(){ $this->_retvalue = self::parse_single_quoted_string($this->yystack[$this->yyidx + 0]->minor); } -#line 725 "smarty_internal_configfileparser.php" +#line 734 "smarty_internal_configfileparser.php" #line 197 "smarty_internal_configfileparser.y" - public function yy_r14() - { + function yy_r14(){ $this->_retvalue = self::parse_double_quoted_string($this->yystack[$this->yyidx + 0]->minor); } -#line 730 "smarty_internal_configfileparser.php" +#line 739 "smarty_internal_configfileparser.php" #line 201 "smarty_internal_configfileparser.y" - public function yy_r15() - { + function yy_r15(){ $this->_retvalue = self::parse_tripple_double_quoted_string($this->yystack[$this->yyidx + -1]->minor); } -#line 735 "smarty_internal_configfileparser.php" +#line 744 "smarty_internal_configfileparser.php" #line 205 "smarty_internal_configfileparser.y" - public function yy_r16() - { + function yy_r16(){ $this->_retvalue = ''; } -#line 740 "smarty_internal_configfileparser.php" +#line 749 "smarty_internal_configfileparser.php" #line 209 "smarty_internal_configfileparser.y" - public function yy_r17() - { + function yy_r17(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 745 "smarty_internal_configfileparser.php" +#line 754 "smarty_internal_configfileparser.php" private $_retvalue; public function yy_reduce($yyruleno) { $yymsp = $this->yystack[$this->yyidx]; - if (self::$yyTraceFILE && $yyruleno >= 0 + if ($this->yyTraceFILE && $yyruleno >= 0 && $yyruleno < count(self::$yyRuleName)) { - fprintf(self::$yyTraceFILE, "%sReduce (%d) [%s].\n", - self::$yyTracePrompt, $yyruleno, + fprintf($this->yyTraceFILE, "%sReduce (%d) [%s].\n", + $this->yyTracePrompt, $yyruleno, self::$yyRuleName[$yyruleno]); } @@ -811,7 +785,7 @@ static public $yy_action = array( } $yyact = $this->yy_find_reduce_action($this->yystack[$this->yyidx]->stateno, $yygoto); if ($yyact < self::YYNSTATE) { - if (!self::$yyTraceFILE && $yysize) { + if (!$this->yyTraceFILE && $yysize) { $this->yyidx++; $x = new TPC_yyStackEntry; $x->stateno = $yyact; @@ -828,8 +802,8 @@ static public $yy_action = array( public function yy_parse_failed() { - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sFail!\n", self::$yyTracePrompt); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sFail!\n", $this->yyTracePrompt); } while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); } @@ -842,13 +816,13 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_config_file_error(); -#line 808 "smarty_internal_configfileparser.php" +#line 816 "smarty_internal_configfileparser.php" } public function yy_accept() { - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sAccept!\n", self::$yyTracePrompt); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sAccept!\n", $this->yyTracePrompt); } while ($this->yyidx >= 0) { $stack = $this->yy_pop_parser_stack(); } @@ -858,7 +832,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 826 "smarty_internal_configfileparser.php" +#line 833 "smarty_internal_configfileparser.php" } public function doParse($yymajor, $yytokenvalue) @@ -876,9 +850,9 @@ static public $yy_action = array( } $yyendofinput = ($yymajor==0); - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sInput %s\n", - self::$yyTracePrompt, $this->yyTokenName[$yymajor]); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sInput %s\n", + $this->yyTracePrompt, $this->yyTokenName[$yymajor]); } do { @@ -899,9 +873,9 @@ static public $yy_action = array( } elseif ($yyact < self::YYNSTATE + self::YYNRULE) { $this->yy_reduce($yyact - self::YYNSTATE); } elseif ($yyact == self::YY_ERROR_ACTION) { - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sSyntax Error!\n", - self::$yyTracePrompt); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sSyntax Error!\n", + $this->yyTracePrompt); } if (self::YYERRORSYMBOL) { if ($this->yyerrcnt < 0) { @@ -909,9 +883,9 @@ static public $yy_action = array( } $yymx = $this->yystack[$this->yyidx]->major; if ($yymx == self::YYERRORSYMBOL || $yyerrorhit) { - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sDiscard input token %s\n", - self::$yyTracePrompt, $this->yyTokenName[$yymajor]); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sDiscard input token %s\n", + $this->yyTracePrompt, $this->yyTokenName[$yymajor]); } $this->yy_destructor($yymajor, $yytokenvalue); $yymajor = self::YYNOCODE; diff --git a/libs/sysplugins/smarty_internal_smartytemplatecompiler.php b/libs/sysplugins/smarty_internal_smartytemplatecompiler.php index 8e0d22f1..9453ef4c 100644 --- a/libs/sysplugins/smarty_internal_smartytemplatecompiler.php +++ b/libs/sysplugins/smarty_internal_smartytemplatecompiler.php @@ -98,8 +98,10 @@ class Smarty_Internal_SmartyTemplateCompiler extends Smarty_Internal_TemplateCom // start state on child templates $this->lex->yypushstate(Smarty_Internal_Templatelexer::CHILDBODY); } - if ($this->smarty->_parserdebug) + if ($this->smarty->_parserdebug) { $this->parser->PrintTrace(); + $this->lex->PrintTrace(); + } // get tokens from lexer and parse them while ($this->lex->yylex() && !$this->abort_and_recompile) { if ($this->smarty->_parserdebug) { diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index f15f50b1..aeb1bd4d 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -21,6 +21,9 @@ class Smarty_Internal_Templatelexer public $taglineno; public $state = 1; private $heredoc_id_stack = Array(); + public $yyTraceFILE; + public $yyTracePrompt; + public $state_name = array (1 => 'TEXT', 2 => 'SMARTY', 3 => 'LITERAL', 4 => 'DOUBLEQUOTEDSTRING', 5 => 'CHILDBODY'); public $smarty_token_names = array ( // Text for parser error messages 'IDENTITY' => '===', 'NONEIDENTITY' => '!==', @@ -91,6 +94,12 @@ class Smarty_Internal_Templatelexer $this->mbstring_overload = ini_get('mbstring.func_overload') & 2; } + public function PrintTrace() + { + $this->yyTraceFILE = fopen('php://output', 'w'); + $this->yyTracePrompt = '
'; + } + private $_yy_state = 1; private $_yy_stack = array(); @@ -102,18 +111,34 @@ class Smarty_Internal_Templatelexer public function yypushstate($state) { + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sState push %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); + } array_push($this->_yy_stack, $this->_yy_state); $this->_yy_state = $state; + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%snew State %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); + } } public function yypopstate() { - $this->_yy_state = array_pop($this->_yy_stack); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sState pop %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); + } + $this->_yy_state = array_pop($this->_yy_stack); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%snew State %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); + } + } public function yybegin($state) { - $this->_yy_state = $state; + $this->_yy_state = $state; + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sState set %s\n", $this->yyTracePrompt, isset($this->state_name[$this->_yy_state]) ? $this->state_name[$this->_yy_state] : $this->_yy_state); + } } diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index 06ec28e4..00d2f247 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -1179,25 +1179,25 @@ static public $yy_action = array( const YYFALLBACK = 0; public static $yyFallback = array( ); - public static function Trace($TraceFILE, $zTracePrompt) + public function Trace($TraceFILE, $zTracePrompt) { if (!$TraceFILE) { $zTracePrompt = 0; } elseif (!$zTracePrompt) { $TraceFILE = 0; } - self::$yyTraceFILE = $TraceFILE; - self::$yyTracePrompt = $zTracePrompt; + $this->yyTraceFILE = $TraceFILE; + $this->yyTracePrompt = $zTracePrompt; } - public static function PrintTrace() + public function PrintTrace() { - self::$yyTraceFILE = fopen('php://output', 'w'); - self::$yyTracePrompt = '
'; + $this->yyTraceFILE = fopen('php://output', 'w'); + $this->yyTracePrompt = '
'; } - public static $yyTraceFILE; - public static $yyTracePrompt; + public $yyTraceFILE; + public $yyTracePrompt; public $yyidx; /* Index of top element in stack */ public $yyerrcnt; /* Shifts left before out of the error */ public $yystack = array(); /* The parser's stack */ @@ -1469,9 +1469,9 @@ static public $yy_action = array( return; } $yytos = array_pop($this->yystack); - if (self::$yyTraceFILE && $this->yyidx >= 0) { - fwrite(self::$yyTraceFILE, - self::$yyTracePrompt . 'Popping ' . $this->yyTokenName[$yytos->major] . + if ($this->yyTraceFILE && $this->yyidx >= 0) { + fwrite($this->yyTraceFILE, + $this->yyTracePrompt . 'Popping ' . $this->yyTokenName[$yytos->major] . "\n"); } $yymajor = $yytos->major; @@ -1486,8 +1486,8 @@ static public $yy_action = array( while ($this->yystack !== Array()) { $this->yy_pop_parser_stack(); } - if (is_resource(self::$yyTraceFILE)) { - fclose(self::$yyTraceFILE); + if (is_resource($this->yyTraceFILE)) { + fclose($this->yyTraceFILE); } } @@ -1655,8 +1655,8 @@ static public $yy_action = array( self::$yy_lookahead[$i] != $iLookAhead) { if (count(self::$yyFallback) && $iLookAhead < count(self::$yyFallback) && ($iFallback = self::$yyFallback[$iLookAhead]) != 0) { - if (self::$yyTraceFILE) { - fwrite(self::$yyTraceFILE, self::$yyTracePrompt . "FALLBACK " . + if ($this->yyTraceFILE) { + fwrite($this->yyTraceFILE, $this->yyTracePrompt . "FALLBACK " . $this->yyTokenName[$iLookAhead] . " => " . $this->yyTokenName[$iFallback] . "\n"); } @@ -1698,8 +1698,8 @@ static public $yy_action = array( $this->yyidx++; if ($this->yyidx >= self::YYSTACKDEPTH) { $this->yyidx--; - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sStack Overflow!\n", self::$yyTracePrompt); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sStack Overflow!\n", $this->yyTracePrompt); } while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); @@ -1717,15 +1717,15 @@ static public $yy_action = array( $yytos->major = $yyMajor; $yytos->minor = $yypMinor; array_push($this->yystack, $yytos); - if (self::$yyTraceFILE && $this->yyidx > 0) { - fprintf(self::$yyTraceFILE, "%sShift %d\n", self::$yyTracePrompt, + if ($this->yyTraceFILE && $this->yyidx > 0) { + fprintf($this->yyTraceFILE, "%sShift %d\n", $this->yyTracePrompt, $yyNewState); - fprintf(self::$yyTraceFILE, "%sStack:", self::$yyTracePrompt); + fprintf($this->yyTraceFILE, "%sStack:", $this->yyTracePrompt); for ($i = 1; $i <= $this->yyidx; $i++) { - fprintf(self::$yyTraceFILE, " %s", + fprintf($this->yyTraceFILE, " %s", $this->yyTokenName[$this->yystack[$i]->major]); } - fwrite(self::$yyTraceFILE,"\n"); + fwrite($this->yyTraceFILE,"\n"); } } @@ -3079,10 +3079,10 @@ static public $yy_action = array( public function yy_reduce($yyruleno) { $yymsp = $this->yystack[$this->yyidx]; - if (self::$yyTraceFILE && $yyruleno >= 0 + if ($this->yyTraceFILE && $yyruleno >= 0 && $yyruleno < count(self::$yyRuleName)) { - fprintf(self::$yyTraceFILE, "%sReduce (%d) [%s].\n", - self::$yyTracePrompt, $yyruleno, + fprintf($this->yyTraceFILE, "%sReduce (%d) [%s].\n", + $this->yyTracePrompt, $yyruleno, self::$yyRuleName[$yyruleno]); } @@ -3102,7 +3102,7 @@ static public $yy_action = array( } $yyact = $this->yy_find_reduce_action($this->yystack[$this->yyidx]->stateno, $yygoto); if ($yyact < self::YYNSTATE) { - if (!self::$yyTraceFILE && $yysize) { + if (!$this->yyTraceFILE && $yysize) { $this->yyidx++; $x = new TP_yyStackEntry; $x->stateno = $yyact; @@ -3119,8 +3119,8 @@ static public $yy_action = array( public function yy_parse_failed() { - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sFail!\n", self::$yyTracePrompt); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sFail!\n", $this->yyTracePrompt); } while ($this->yyidx >= 0) { $this->yy_pop_parser_stack(); } @@ -3138,8 +3138,8 @@ static public $yy_action = array( public function yy_accept() { - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sAccept!\n", self::$yyTracePrompt); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sAccept!\n", $this->yyTracePrompt); } while ($this->yyidx >= 0) { $stack = $this->yy_pop_parser_stack(); } @@ -3167,9 +3167,9 @@ static public $yy_action = array( } $yyendofinput = ($yymajor==0); - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sInput %s\n", - self::$yyTracePrompt, $this->yyTokenName[$yymajor]); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sInput %s\n", + $this->yyTracePrompt, $this->yyTokenName[$yymajor]); } do { @@ -3190,9 +3190,9 @@ static public $yy_action = array( } elseif ($yyact < self::YYNSTATE + self::YYNRULE) { $this->yy_reduce($yyact - self::YYNSTATE); } elseif ($yyact == self::YY_ERROR_ACTION) { - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sSyntax Error!\n", - self::$yyTracePrompt); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sSyntax Error!\n", + $this->yyTracePrompt); } if (self::YYERRORSYMBOL) { if ($this->yyerrcnt < 0) { @@ -3200,9 +3200,9 @@ static public $yy_action = array( } $yymx = $this->yystack[$this->yyidx]->major; if ($yymx == self::YYERRORSYMBOL || $yyerrorhit) { - if (self::$yyTraceFILE) { - fprintf(self::$yyTraceFILE, "%sDiscard input token %s\n", - self::$yyTracePrompt, $this->yyTokenName[$yymajor]); + if ($this->yyTraceFILE) { + fprintf($this->yyTraceFILE, "%sDiscard input token %s\n", + $this->yyTracePrompt, $this->yyTokenName[$yymajor]); } $this->yy_destructor($yymajor, $yytokenvalue); $yymajor = self::YYNOCODE;