| Source for file FormulaParser.phpDocumentation is available at FormulaParser.php 
 * Copyright (c) 2006 - 2011 PHPExcel * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA * @package    PHPExcel_Calculation * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel) * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt    LGPL * @version    1.7.6, 2011-02-27    Copyright (c) 2007 E. W. Bachtal, Inc.    Permission is hereby granted, free of charge, to any person obtaining a copy of this software    and associated documentation files (the "Software"), to deal in the Software without restriction,    including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,    and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,    subject to the following conditions:      The above copyright notice and this permission notice shall be included in all copies or substantial      portions of the Software.    The software is provided "as is", without warranty of any kind, express or implied, including but not    limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In    no event shall the authors or copyright holders be liable for any claim, damages or other liability,    whether in an action of contract, tort or otherwise, arising from, out of or in connection with the    software or the use or other dealings in the software.    http://ewbi.blogs.com/develops/2007/03/excel_formula_p.html    http://ewbi.blogs.com/develops/2004/12/excel_formula_p.html * PHPExcel_Calculation_FormulaParser * @package    PHPExcel_Calculation * @copyright  Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)    /* Character constants */    const QUOTE_DOUBLE  = '"';    const QUOTE_SINGLE  = '\'';    const BRACKET_CLOSE = ']';    const BRACKET_OPEN  = '[';    const OPERATORS_SN             = "+-";    const OPERATORS_INFIX         = "+-*/^&=><";    const OPERATORS_POSTFIX     = "%";     * @var PHPExcel_Calculation_FormulaToken[]     private $_tokens = array();     * Create a new PHPExcel_Calculation_FormulaParser     * @param     string        $pFormula    Formula to parse            throw new Exception("Invalid parameter passed: formula");        $this->_formula = trim($pFormula);     * @param     int        $pId    Token id        if (isset($this->_tokens[$pId])) {            return $this->_tokens[$pId];            throw new Exception("Token with id $pId does not exist.");        return count($this->_tokens);     * @return PHPExcel_Calculation_FormulaToken[]     private function _parseToTokens() {        // No attempt is made to verify formulas; assumes formulas are derived from Excel, where        // they can only exist if valid; stack overflows/underflows sunk as nulls without exceptions.        // Check if the formula has a valid starting =        $formulaLength = strlen($this->_formula);        if ($formulaLength < 2 || $this->_formula{0} != '=') return;        $tokens1    = $tokens2 = $stack = array();        $inString    = $inPath = $inRange = $inError = false;        $token        = $previousToken = $nextToken = null;        $ERRORS             = array("#NULL!", "#DIV/0!", "#VALUE!", "#REF!", "#NAME?", "#NUM!", "#N/A");        $COMPARATORS_MULTI     = array(">=", "<=", "<>");        while ($index < $formulaLength) {            // state-dependent character evaluation (order is important)                    $value .= $this->_formula{$index};            // single-quoted strings (links)            // end does not mark a token                    $value .= $this->_formula{$index};            // bracked strings (R1C1 range index or linked workbook name)            // no embeds (changed to "()" by Excel)            // end does not mark a token                $value .= $this->_formula{$index};            // end marks a token, determined from absolute list of values                $value .= $this->_formula{$index};            // scientific notation check                    if (preg_match("/^[1-9]{1}(\.[0-9]+)?E{1}$/", $this->_formula{$index}) != 0) {                        $value .= $this->_formula{$index};            // independent character evaluation (order not important)            // establish state-dependent character evaluations                if (strlen($value > 0)) {  // unexpected                if (strlen($value) > 0) { // unexpected                if (strlen($value) > 0) { // unexpected            // mark start and end of arrays and array rows                if (strlen($value) > 0) { // unexpected            // multi-character comparators            if (($index + 2) <= $formulaLength) {                if (in_array(substr($this->_formula, $index, 2), $COMPARATORS_MULTI)) {            // standard infix operators            // standard postfix operators (only one)            // start subexpression or function            // function, subexpression, or array parameters, or operand unions            $value .= $this->_formula{$index};        // dump remaining accumulation        // move tokenList to new set, excluding unnecessary white-space tokens and converting necessary ones to intersections        $tokenCount = count($tokens1);        for ($i = 0; $i < $tokenCount; ++$i) {            if (isset($tokens1[$i - 1])) {                $previousToken = $tokens1[$i - 1];            if (isset($tokens1[$i + 1])) {                $nextToken = $tokens1[$i + 1];        // move tokens to final list, switching infix "-" operators to prefix when appropriate, switching infix "+" operators        // to noop when appropriate, identifying operand and infix-operator subtypes, and pulling "@" from function names        $this->_tokens = array();        $tokenCount = count($tokens2);        for ($i = 0; $i < $tokenCount; ++$i) {            if (isset($tokens2[$i - 1])) {                $previousToken = $tokens2[$i - 1];            if (isset($tokens2[$i + 1])) {                $nextToken = $tokens2[$i + 1];                $this->_tokens[] = $token;                $this->_tokens[] = $token;                if (strpos("<>=", substr($token->getValue(), 0, 1)) !== false) {                } else if ($token->getValue() == "&") {                $this->_tokens[] = $token;                $this->_tokens[] = $token;                if (strlen($token->getValue() > 0)) {                    if (substr($token->getValue(), 0, 1) == "@") {                        $token->setValue(substr($token->getValue(), 1));            $this->_tokens[] = $token; |