diff --git a/draft/Doctrine/Query/Parser.php b/draft/Doctrine/Query/Parser.php new file mode 100644 index 000000000..a4f03e67c --- /dev/null +++ b/draft/Doctrine/Query/Parser.php @@ -0,0 +1,156 @@ +_scanner = new Doctrine_Query_Scanner($input); + $this->_printer = new Doctrine_Query_Printer(true); + } + + public function getProduction($name) + { + if ( ! isset($this->_productions[$name])) { + $class = 'Doctrine_Query_Production_' . $name; + $this->_productions[$name] = new $class($this); + } + + return $this->_productions[$name]; + } + + /** + * Attempts to match the given token with the current lookahead token. + * + * If they match, updates the lookahead token; otherwise raises a syntax + * error. + * + * @param int|string token type or value + */ + public function match($token) + { + if (is_string($token)) { + $isMatch = ($this->lookahead['value'] === $token); + } else { + $isMatch = ($this->lookahead['type'] === $token); + } + + if ($isMatch) { + //$this->_printer->println($this->lookahead['value']); + $this->lookahead = $this->_scanner->scan(); + $this->_errorDistance++; + } else { + $this->syntaxError(); + } + } + + public function syntaxError() + { + $this->_error('Unexpected "' . $this->lookahead['value'] . '"'); + } + + public function semanticalError($message) + { + $this->_error($message); + } + + protected function _error($message) + { + if ($this->_errorDistance >= self::MIN_ERROR_DISTANCE) { + $message .= 'at line ' . $this->lookahead['line'] + . ', column ' . $this->lookahead['column']; + $this->_errors[] = $message; + } + + $this->_errorDistance = 0; + } + + /** + * Returns the scanner object associated with this object. + * + * @return Doctrine_Query_Scanner + */ + public function getScanner() + { + return $this->_scanner; + } + + public function getPrinter() + { + return $this->_printer; + } + + /** + * Parses a query string. + * + * @throws Doctrine_Query_Parser_Exception if errors were detected in the query string + */ + public function parse() + { + $this->lookahead = $this->_scanner->scan(); + + $this->getProduction('QueryLanguage')->execute(); + + $this->match(Doctrine_Query_Token::T_EOS); + + if (count($this->_errors)) { + $msg = 'Query string parsing failed (' + . implode('; ', $this->_errors) . ').'; + throw new Doctrine_Query_Parser_Exception($msg); + } + } +} diff --git a/draft/Doctrine/Query/Parser/Exception.php b/draft/Doctrine/Query/Parser/Exception.php new file mode 100644 index 000000000..d906f0988 --- /dev/null +++ b/draft/Doctrine/Query/Parser/Exception.php @@ -0,0 +1,4 @@ +_silent = $silent; + } + + public function startProduction($name) + { + $this->println('(' . $name); + $this->_indent++; + } + + public function endProduction() + { + $this->_indent--; + $this->println(')'); + } + + public function println($str) + { + if ( ! $this->_silent) { + echo str_repeat(' ', $this->_indent), $str, "\n"; + } + } +} diff --git a/draft/Doctrine/Query/Production.php b/draft/Doctrine/Query/Production.php new file mode 100644 index 000000000..e3083343a --- /dev/null +++ b/draft/Doctrine/Query/Production.php @@ -0,0 +1,65 @@ +_parser = $parser; + } + + protected function _isNextToken($token) + { + $la = $this->_parser->lookahead; + return ($la['type'] === $token || $la['value'] === $token); + } + + /** + * Executes a production with specified name and parameters. + * + * @param string $name production name + * @param array $params an associative array containing parameter names and + * their values + * @return mixed + */ + public function __call($method, $args) + { + return $this->_parser->getProduction($method)->execute($args); + $this->_parser->getPrinter()->startProduction($name); + $retval = $this->_parser->getProduction($method)->execute($args); + $this->_parser->getPrinter()->endProduction(); + + return $retval; + } + + /** + * Executes this production using the specified parameters. + * + * @param array $params an associative array containing parameter names and + * their values + * @return mixed + */ + abstract public function execute(array $params = array()); + + protected function _isSubquery() + { + $lookahead = $this->_parser->lookahead; + $next = $this->_parser->getScanner()->peek(); + + return $lookahead['value'] === '(' && $next['type'] === Doctrine_Query_Token::T_SELECT; + } + +} diff --git a/draft/Doctrine/Query/Production/Atom.php b/draft/Doctrine/Query/Production/Atom.php new file mode 100644 index 000000000..6c36e6d2b --- /dev/null +++ b/draft/Doctrine/Query/Production/Atom.php @@ -0,0 +1,23 @@ +_parser->lookahead['type']) { + case Doctrine_Query_Token::T_STRING: + $this->_parser->match(Doctrine_Query_Token::T_STRING); + break; + case Doctrine_Query_Token::T_NUMERIC: + $this->_parser->match(Doctrine_Query_Token::T_NUMERIC); + break; + case Doctrine_Query_Token::T_INPUT_PARAMETER: + $this->_parser->match(Doctrine_Query_Token::T_INPUT_PARAMETER); + break; + default: + $this->_parser->syntaxError(); + } + } +} diff --git a/draft/Doctrine/Query/Production/BetweenExpression.php b/draft/Doctrine/Query/Production/BetweenExpression.php new file mode 100644 index 000000000..c8598faf6 --- /dev/null +++ b/draft/Doctrine/Query/Production/BetweenExpression.php @@ -0,0 +1,18 @@ +_isNextToken(Doctrine_Query_Token::T_NOT)) { + $this->_parser->match(Doctrine_Query_Token::T_NOT); + } + + $this->_parser->match(Doctrine_Query_Token::T_BETWEEN); + $this->Expression(); + $this->_parser->match(Doctrine_Query_Token::T_AND); + $this->Expression(); + } +} diff --git a/draft/Doctrine/Query/Production/ComparisonExpression.php b/draft/Doctrine/Query/Production/ComparisonExpression.php new file mode 100644 index 000000000..1a93cce97 --- /dev/null +++ b/draft/Doctrine/Query/Production/ComparisonExpression.php @@ -0,0 +1,27 @@ +ComparisonOperator(); + + if ($this->_isSubquery()) { + $this->_parser->match('('); + $this->Subselect(); + $this->_parser->match(')'); + } else { + switch ($this->_parser->lookahead['type']) { + case Doctrine_Query_Token::T_ALL: + case Doctrine_Query_Token::T_SOME: + case Doctrine_Query_Token::T_NONE: + $this->QuantifiedExpression(); + break; + default: + $this->Expression(); + } + } + } +} diff --git a/draft/Doctrine/Query/Production/ComparisonOperator.php b/draft/Doctrine/Query/Production/ComparisonOperator.php new file mode 100644 index 000000000..315a0e4a1 --- /dev/null +++ b/draft/Doctrine/Query/Production/ComparisonOperator.php @@ -0,0 +1,31 @@ +" | ">" | ">=" + */ +class Doctrine_Query_Production_ComparisonOperator extends Doctrine_Query_Production +{ + public function execute(array $params = array()) + { + switch ($this->_parser->lookahead['value']) { + case '=': + $this->_parser->match('='); + break; + case '<': + $this->_parser->match('<'); + if ($this->_isNextToken('=')) { + $this->_parser->match('='); + } elseif ($this->_isNextToken('>')) { + $this->_parser->match('>'); + } + break; + case '>': + $this->_parser->match('>'); + if ($this->_isNextToken('=')) { + $this->_parser->match('='); + } + break; + default: + $this->_parser->syntaxError(); + } + } +} diff --git a/draft/Doctrine/Query/Production/ConditionalExpression.php b/draft/Doctrine/Query/Production/ConditionalExpression.php new file mode 100644 index 000000000..407e0a069 --- /dev/null +++ b/draft/Doctrine/Query/Production/ConditionalExpression.php @@ -0,0 +1,16 @@ +ConditionalTerm(); + + while ($this->_isNextToken(Doctrine_Query_Token::T_OR)) { + $this->_parser->match(Doctrine_Query_Token::T_OR); + $this->ConditionalTerm(); + } + } +} diff --git a/draft/Doctrine/Query/Production/ConditionalFactor.php b/draft/Doctrine/Query/Production/ConditionalFactor.php new file mode 100644 index 000000000..577b0dba8 --- /dev/null +++ b/draft/Doctrine/Query/Production/ConditionalFactor.php @@ -0,0 +1,15 @@ +_isNextToken(Doctrine_Query_Token::T_NOT)) { + $this->_parser->match(Doctrine_Query_Token::T_NOT); + } + + $this->ConditionalPrimary(); + } +} diff --git a/draft/Doctrine/Query/Production/ConditionalPrimary.php b/draft/Doctrine/Query/Production/ConditionalPrimary.php new file mode 100644 index 000000000..ed93b9e45 --- /dev/null +++ b/draft/Doctrine/Query/Production/ConditionalPrimary.php @@ -0,0 +1,17 @@ +_isNextToken('(')) { + $this->_parser->match('('); + $this->ConditionalExpression(); + $this->_parser->match(')'); + } else { + $this->SimpleConditionalExpression(); + } + } +} diff --git a/draft/Doctrine/Query/Production/ConditionalTerm.php b/draft/Doctrine/Query/Production/ConditionalTerm.php new file mode 100644 index 000000000..dc354a923 --- /dev/null +++ b/draft/Doctrine/Query/Production/ConditionalTerm.php @@ -0,0 +1,16 @@ +ConditionalFactor(); + + while ($this->_isNextToken(Doctrine_Query_Token::T_AND)) { + $this->_parser->match(Doctrine_Query_Token::T_AND); + $this->ConditionalFactor(); + } + } +} diff --git a/draft/Doctrine/Query/Production/DeleteClause.php b/draft/Doctrine/Query/Production/DeleteClause.php new file mode 100644 index 000000000..698efc359 --- /dev/null +++ b/draft/Doctrine/Query/Production/DeleteClause.php @@ -0,0 +1,13 @@ +_parser->match(Doctrine_Query_Token::T_DELETE); + $this->_parser->match(Doctrine_Query_Token::T_FROM); + $this->RangeVariableDeclaration(); + } +} diff --git a/draft/Doctrine/Query/Production/DeleteStatement.php b/draft/Doctrine/Query/Production/DeleteStatement.php new file mode 100644 index 000000000..56d0223cd --- /dev/null +++ b/draft/Doctrine/Query/Production/DeleteStatement.php @@ -0,0 +1,23 @@ +DeleteClause(); + + if ($this->_isNextToken(Doctrine_Query_Token::T_WHERE)) { + $this->WhereClause(); + } + + if ($this->_isNextToken(Doctrine_Query_Token::T_ORDER)) { + $this->OrderByClause(); + } + + if ($this->_isNextToken(Doctrine_Query_Token::T_LIMIT)) { + $this->LimitClause(); + } + } +} diff --git a/draft/Doctrine/Query/Production/Expression.php b/draft/Doctrine/Query/Production/Expression.php new file mode 100644 index 000000000..84b99e2e0 --- /dev/null +++ b/draft/Doctrine/Query/Production/Expression.php @@ -0,0 +1,20 @@ +Term(); + + while ($this->_isNextToken('+') || $this->_isNextToken('-')) { + if ($this->_isNextToken('+')) { + $this->_parser->match('+'); + } else{ + $this->_parser->match('-'); + } + $this->Term(); + } + } +} diff --git a/draft/Doctrine/Query/Production/Factor.php b/draft/Doctrine/Query/Production/Factor.php new file mode 100644 index 000000000..d3fedea09 --- /dev/null +++ b/draft/Doctrine/Query/Production/Factor.php @@ -0,0 +1,17 @@ +_isNextToken('+')) { + $this->_parser->match('+'); + } elseif ($this->_isNextToken('-')) { + $this->_parser->match('-'); + } + + $this->Primary(); + } +} diff --git a/draft/Doctrine/Query/Production/FromClause.php b/draft/Doctrine/Query/Production/FromClause.php new file mode 100644 index 000000000..8ceab3572 --- /dev/null +++ b/draft/Doctrine/Query/Production/FromClause.php @@ -0,0 +1,18 @@ +_parser->match(Doctrine_Query_Token::T_FROM); + + $this->IdentificationVariableDeclaration(); + + while ($this->_isNextToken(',')) { + $this->_parser->match(','); + $this->IdentificationVariableDeclaration(); + } + } +} diff --git a/draft/Doctrine/Query/Production/GroupByClause.php b/draft/Doctrine/Query/Production/GroupByClause.php new file mode 100644 index 000000000..741dfa197 --- /dev/null +++ b/draft/Doctrine/Query/Production/GroupByClause.php @@ -0,0 +1,19 @@ +_parser->match(Doctrine_Query_Token::T_GROUP); + $this->_parser->match(Doctrine_Query_Token::T_BY); + + $this->GroupByItem(); + + while ($this->_isNextToken(',')) { + $this->_parser->match(','); + $this->GroupByItem(); + } + } +} diff --git a/draft/Doctrine/Query/Production/GroupByItem.php b/draft/Doctrine/Query/Production/GroupByItem.php new file mode 100644 index 000000000..1a04b47be --- /dev/null +++ b/draft/Doctrine/Query/Production/GroupByItem.php @@ -0,0 +1,11 @@ +PathExpression(); + } +} diff --git a/draft/Doctrine/Query/Production/HavingClause.php b/draft/Doctrine/Query/Production/HavingClause.php new file mode 100644 index 000000000..cf13dfbf1 --- /dev/null +++ b/draft/Doctrine/Query/Production/HavingClause.php @@ -0,0 +1,13 @@ +_parser->match(Doctrine_Query_Token::T_HAVING); + + $this->ConditionalExpression(); + } +} diff --git a/draft/Doctrine/Query/Production/IdentificationVariableDeclaration.php b/draft/Doctrine/Query/Production/IdentificationVariableDeclaration.php new file mode 100644 index 000000000..bd388a914 --- /dev/null +++ b/draft/Doctrine/Query/Production/IdentificationVariableDeclaration.php @@ -0,0 +1,17 @@ +RangeVariableDeclaration(); + + while ($this->_isNextToken(Doctrine_Query_Token::T_LEFT) || + $this->_isNextToken(Doctrine_Query_Token::T_INNER) || + $this->_isNextToken(Doctrine_Query_Token::T_JOIN)) { + $this->Join(); + } + } +} diff --git a/draft/Doctrine/Query/Production/Join.php b/draft/Doctrine/Query/Production/Join.php new file mode 100644 index 000000000..77a7fd848 --- /dev/null +++ b/draft/Doctrine/Query/Production/Join.php @@ -0,0 +1,27 @@ +_isNextToken(Doctrine_Query_Token::T_LEFT)) { + $this->_parser->match(Doctrine_Query_Token::T_LEFT); + + if ($this->_isNextToken(Doctrine_Query_Token::T_OUTER)) { + $this->_parser->match(Doctrine_Query_Token::T_OUTER); + } + + } elseif ($this->_isNextToken(Doctrine_Query_Token::T_INNER)) { + $this->_parser->match(Doctrine_Query_Token::T_INNER); + } + + $this->_parser->match(Doctrine_Query_Token::T_JOIN); + + $this->PathExpression(); + + $this->_parser->match(Doctrine_Query_Token::T_AS); + $this->_parser->match(Doctrine_Query_Token::T_IDENTIFIER); + } +} diff --git a/draft/Doctrine/Query/Production/OrderByClause.php b/draft/Doctrine/Query/Production/OrderByClause.php new file mode 100644 index 000000000..3a3cc0b62 --- /dev/null +++ b/draft/Doctrine/Query/Production/OrderByClause.php @@ -0,0 +1,19 @@ +_parser->match(Doctrine_Query_Token::T_ORDER); + $this->_parser->match(Doctrine_Query_Token::T_BY); + + $this->OrderByItem(); + + while ($this->_isNextToken(',')) { + $this->_parser->match(','); + $this->OrderByItem(); + } + } +} diff --git a/draft/Doctrine/Query/Production/OrderByItem.php b/draft/Doctrine/Query/Production/OrderByItem.php new file mode 100644 index 000000000..a41ea93a7 --- /dev/null +++ b/draft/Doctrine/Query/Production/OrderByItem.php @@ -0,0 +1,17 @@ +PathExpression(); + + if ($this->_isNextToken(Doctrine_Query_Token::T_ASC)) { + $this->_parser->match(Doctrine_Query_Token::T_ASC); + } elseif ($this->_isNextToken(Doctrine_Query_Token::T_DESC)) { + $this->_parser->match(Doctrine_Query_Token::T_DESC); + } + } +} diff --git a/draft/Doctrine/Query/Production/PathExpression.php b/draft/Doctrine/Query/Production/PathExpression.php new file mode 100644 index 000000000..109269765 --- /dev/null +++ b/draft/Doctrine/Query/Production/PathExpression.php @@ -0,0 +1,16 @@ +_parser->match(Doctrine_Query_Token::T_IDENTIFIER); + + while ($this->_isNextToken('.')) { + $this->_parser->match('.'); + $this->_parser->match(Doctrine_Query_Token::T_IDENTIFIER); + } + } +} diff --git a/draft/Doctrine/Query/Production/Primary.php b/draft/Doctrine/Query/Production/Primary.php new file mode 100644 index 000000000..87de3028b --- /dev/null +++ b/draft/Doctrine/Query/Production/Primary.php @@ -0,0 +1,55 @@ +_parser->lookahead['type']) { + case Doctrine_Query_Token::T_IDENTIFIER: + // @todo: custom functions + $this->PathExpression(); + break; + case Doctrine_Query_Token::T_STRING: + case Doctrine_Query_Token::T_NUMERIC: + case Doctrine_Query_Token::T_INPUT_PARAMETER: + $this->Atom(); + break; + case Doctrine_Query_Token::T_LENGTH: + case Doctrine_Query_Token::T_LOCATE: + case Doctrine_Query_Token::T_ABS: + case Doctrine_Query_Token::T_SQRT: + case Doctrine_Query_Token::T_MOD: + case Doctrine_Query_Token::T_SIZE: + case Doctrine_Query_Token::T_CURRENT_DATE: + case Doctrine_Query_Token::T_CURRENT_TIMESTAMP: + case Doctrine_Query_Token::T_CURRENT_TIME: + case Doctrine_Query_Token::T_SUBSTRING: + case Doctrine_Query_Token::T_CONCAT: + case Doctrine_Query_Token::T_TRIM: + case Doctrine_Query_Token::T_LOWER: + case Doctrine_Query_Token::T_UPPER: + $this->Function(); + break; + case Doctrine_Query_Token::T_AVG: + case Doctrine_Query_Token::T_MAX: + case Doctrine_Query_Token::T_MIN: + case Doctrine_Query_Token::T_SUM: + case Doctrine_Query_Token::T_MOD: + case Doctrine_Query_Token::T_SIZE: + $this->AggregateExpression(); + break; + case Doctrine_Query_Token::T_NONE: + if ($this->_isNextToken('(')) { + $this->_parser->match('('); + $this->Expression(); + $this->_parser->match(')'); + break; + } + default: + $this->_parser->syntaxError(); + } + } +} diff --git a/draft/Doctrine/Query/Production/QuantifiedExpression.php b/draft/Doctrine/Query/Production/QuantifiedExpression.php new file mode 100644 index 000000000..9023c7689 --- /dev/null +++ b/draft/Doctrine/Query/Production/QuantifiedExpression.php @@ -0,0 +1,27 @@ +_parser->lookahead['type']) { + case Doctrine_Query_Token::T_ALL: + $this->_parser->match(Doctrine_Query_Token::T_ALL); + break; + case Doctrine_Query_Token::T_ANY: + $this->_parser->match(Doctrine_Query_Token::T_ANY); + break; + case Doctrine_Query_Token::T_SOME: + $this->_parser->match(Doctrine_Query_Token::T_SOME); + break; + default: + $this->syntaxError(); + } + + $this->_parser->match('('); + $this->Subselect(); + $this->_parser->match(')'); + } +} diff --git a/draft/Doctrine/Query/Production/QueryLanguage.php b/draft/Doctrine/Query/Production/QueryLanguage.php new file mode 100644 index 000000000..0f44291b4 --- /dev/null +++ b/draft/Doctrine/Query/Production/QueryLanguage.php @@ -0,0 +1,24 @@ +_parser->lookahead['type']) { + case Doctrine_Query_Token::T_SELECT: + case Doctrine_Query_Token::T_FROM: + $this->SelectStatement(); + break; + case Doctrine_Query_Token::T_UPDATE: + $this->UpdateStatement(); + break; + case Doctrine_Query_Token::T_DELETE: + $this->DeleteStatement(); + break; + default: + $this->_parser->syntaxError(); + } + } +} diff --git a/draft/Doctrine/Query/Production/RangeVariableDeclaration.php b/draft/Doctrine/Query/Production/RangeVariableDeclaration.php new file mode 100644 index 000000000..bdb8f9098 --- /dev/null +++ b/draft/Doctrine/Query/Production/RangeVariableDeclaration.php @@ -0,0 +1,18 @@ +PathExpression(); + + if ($this->_isNextToken(Doctrine_Query_Token::T_AS)) { + $this->_parser->match(Doctrine_Query_Token::T_AS); + $this->_parser->match(Doctrine_Query_Token::T_IDENTIFIER); + } elseif ($this->_isNextToken(Doctrine_Query_Token::T_IDENTIFIER)) { + $this->_parser->match(Doctrine_Query_Token::T_IDENTIFIER); + } + } +} diff --git a/draft/Doctrine/Query/Production/SelectClause.php b/draft/Doctrine/Query/Production/SelectClause.php new file mode 100644 index 000000000..5b14a897c --- /dev/null +++ b/draft/Doctrine/Query/Production/SelectClause.php @@ -0,0 +1,22 @@ +_parser->match(Doctrine_Query_Token::T_SELECT); + + if ($this->_isNextToken(Doctrine_Query_Token::T_DISTINCT)) { + $this->_parser->match(Doctrine_Query_Token::T_DISTINCT); + } + + $this->SelectExpression(); + + while ($this->_isNextToken(',')) { + $this->_parser->match(','); + $this->SelectExpression(); + } + } +} diff --git a/draft/Doctrine/Query/Production/SelectExpression.php b/draft/Doctrine/Query/Production/SelectExpression.php new file mode 100644 index 000000000..e505f32f1 --- /dev/null +++ b/draft/Doctrine/Query/Production/SelectExpression.php @@ -0,0 +1,24 @@ +_isSubquery()) { + $this->_parser->match('('); + $this->Subselect(); + $this->_parser->match(')'); + } else { + $this->Expression(); + } + + if ($this->_isNextToken(Doctrine_Query_Token::T_AS)) { + $this->_parser->match(Doctrine_Query_Token::T_AS); + $this->_parser->match(Doctrine_Query_Token::T_IDENTIFIER); + } elseif ($this->_isNextToken(Doctrine_Query_Token::T_IDENTIFIER)) { + $this->_parser->match(Doctrine_Query_Token::T_IDENTIFIER); + } + } +} diff --git a/draft/Doctrine/Query/Production/SelectStatement.php b/draft/Doctrine/Query/Production/SelectStatement.php new file mode 100644 index 000000000..c89c3cf8a --- /dev/null +++ b/draft/Doctrine/Query/Production/SelectStatement.php @@ -0,0 +1,36 @@ +_isNextToken(Doctrine_Query_Token::T_SELECT)) { + $this->SelectClause(); + } + + $this->FromClause(); + + if ($this->_isNextToken(Doctrine_Query_Token::T_WHERE)) { + $this->WhereClause(); + } + + if ($this->_isNextToken(Doctrine_Query_Token::T_GROUP)) { + $this->GroupByClause(); + } + + if ($this->_isNextToken(Doctrine_Query_Token::T_HAVING)) { + $this->HavingClause(); + } + + if ($this->_isNextToken(Doctrine_Query_Token::T_ORDER)) { + $this->OrderByClause(); + } + + if ($this->_isNextToken(Doctrine_Query_Token::T_LIMIT)) { + $this->LimitClause(); + } + } +} diff --git a/draft/Doctrine/Query/Production/SimpleConditionalExpression.php b/draft/Doctrine/Query/Production/SimpleConditionalExpression.php new file mode 100644 index 000000000..417c455c5 --- /dev/null +++ b/draft/Doctrine/Query/Production/SimpleConditionalExpression.php @@ -0,0 +1,50 @@ +_isNextToken(Doctrine_Query_Token::T_NOT)) { + $token = $this->_parser->getScanner()->peek(); + $this->_parser->getScanner()->resetPeek(); + } else { + $token = $this->_parser->lookahead; + } + + return $token['type']; + } + + public function execute(array $params = array()) + { + if ($this->_getExpressionType() === Doctrine_Query_Token::T_EXISTS) { + $this->ExistsExpression(); + } else { + $this->Expression(); + + switch ($this->_getExpressionType()) { + case Doctrine_Query_Token::T_BETWEEN: + $this->BetweenExpression(); + break; + case Doctrine_Query_Token::T_LIKE: + $this->LikeExpression(); + break; + case Doctrine_Query_Token::T_IN: + $this->InExpression(); + break; + case Doctrine_Query_Token::T_IS: + $this->NullComparisonExpression(); + break; + case Doctrine_Query_Token::T_NONE: + $this->ComparisonExpression(); + break; + default: + $this->_parser->syntaxError(); + } + } + + } +} diff --git a/draft/Doctrine/Query/Production/Term.php b/draft/Doctrine/Query/Production/Term.php new file mode 100644 index 000000000..a68bf65d6 --- /dev/null +++ b/draft/Doctrine/Query/Production/Term.php @@ -0,0 +1,20 @@ +Factor(); + + while ($this->_isNextToken('*') || $this->_isNextToken('/')) { + if ($this->_isNextToken('*')) { + $this->_parser->match('*'); + } else { + $this->_parser->match('/'); + } + $this->Factor(); + } + } +} diff --git a/draft/Doctrine/Query/Production/UpdateClause.php b/draft/Doctrine/Query/Production/UpdateClause.php new file mode 100644 index 000000000..200666038 --- /dev/null +++ b/draft/Doctrine/Query/Production/UpdateClause.php @@ -0,0 +1,19 @@ +_parser->match(Doctrine_Query_Token::T_UPDATE); + $this->RangeVariableDeclaration(); + $this->_parser->match(Doctrine_Query_Token::T_SET); + + $this->RangeVariableDeclaration(); + while ($this->_isNextToken(',')) { + $this->_parser->match(','); + $this->RangeVariableDeclaration(); + } + } +} diff --git a/draft/Doctrine/Query/Production/UpdateStatement.php b/draft/Doctrine/Query/Production/UpdateStatement.php new file mode 100644 index 000000000..b25e4ecf0 --- /dev/null +++ b/draft/Doctrine/Query/Production/UpdateStatement.php @@ -0,0 +1,23 @@ +UpdateClause(); + + if ($this->_isNextToken(Doctrine_Query_Token::T_WHERE)) { + $this->WhereClause(); + } + + if ($this->_isNextToken(Doctrine_Query_Token::T_ORDER)) { + $this->OrderByClause(); + } + + if ($this->_isNextToken(Doctrine_Query_Token::T_LIMIT)) { + $this->LimitClause(); + } + } +} diff --git a/draft/Doctrine/Query/Production/WhereClause.php b/draft/Doctrine/Query/Production/WhereClause.php new file mode 100644 index 000000000..b95f42c15 --- /dev/null +++ b/draft/Doctrine/Query/Production/WhereClause.php @@ -0,0 +1,13 @@ +_parser->match(Doctrine_Query_Token::T_WHERE); + + $this->ConditionalExpression(); + } +} diff --git a/draft/Doctrine/Query/Scanner.php b/draft/Doctrine/Query/Scanner.php new file mode 100644 index 000000000..8be9ff83f --- /dev/null +++ b/draft/Doctrine/Query/Scanner.php @@ -0,0 +1,173 @@ + '/^[a-z][a-z0-9_]*/i', + 'numeric' => '/^[+-]?([0-9]+([\.][0-9]+)?)(e[+-]?[0-9]+)?/i', + 'string' => "/^'([^']|'')*'/", + 'input_parameter' => '/^\?|:[a-z]+/' + ); + + /** + * Creates a new query scanner object. + * + * @param string $input a query string + */ + public function __construct($input) + { + $this->_input = $input; + $this->_length = strlen($input); + } + + /** + * Checks if an identifier is a keyword and returns its correct type. + * + * @param string $identifier identifier name + * @return int token type + */ + public function _checkLiteral($identifier) + { + $name = 'Doctrine_Query_Token::T_' . strtoupper($identifier); + + if (defined($name)) { + $type = constant($name); + + if ($type > 100) { + return $type; + } + } + + return Doctrine_Query_Token::T_IDENTIFIER; + } + + /** + * Returns the next token in the input string. + * + * The returned token is an associative array containing the following keys: + * 'type' : type of the token; @see Doctrine_Query_Token::T_* constants + * 'value' : string value of the token in the input string + * 'position' : start position of the token in the input string + * 'line' : + * 'column' : + * + * @return array the next token + */ + protected function _nextToken() + { + // ignore whitespace + while ($this->_position < $this->_length + && ctype_space($this->_input[$this->_position])) { + if ($this->_input[$this->_position] === "\n") { + $this->_line++; + $this->_column = 1; + } else { + $this->_column++; + } + $this->_position++; + } + + if ($this->_position < $this->_length) { + $subject = substr($this->_input, $this->_position); + + if (preg_match(self::$_regex['identifier'], $subject, $matches)) { + $value = $matches[0]; + $type = $this->_checkLiteral($value); + } elseif (preg_match(self::$_regex['numeric'], $subject, $matches)) { + $value = $matches[0]; + $type = Doctrine_Query_Token::T_NUMERIC; + } elseif (preg_match(self::$_regex['string'], $subject, $matches)) { + $value = $matches[0]; + $type = Doctrine_Query_Token::T_STRING; + } elseif (preg_match(self::$_regex['input_parameter'], $subject, $matches)) { + $value = $matches[0]; + $type = Doctrine_Query_Token::T_INPUT_PARAMETER; + } else { + $value = $subject[0]; + $type = Doctrine_Query_Token::T_NONE; + } + } else { + $value = ''; + $type = Doctrine_Query_Token::T_EOS; + } + + $token = array( + 'type' => $type, + 'value' => $value, + 'position' => $this->_position, + 'line' => $this->_line, + 'column' => $this->_column + ); + + + $increment = strlen($value); + $this->_position += $increment; + $this->_column += $increment; + + return $token; + } + + /** + * Returns the next token without removing it from the input string. + * + * @return array the next token + */ + public function peek() + { + if ($this->_peekPosition >= count($this->_tokens)) { + $this->_tokens[] = $this->_nextToken(); + } + + return $this->_tokens[$this->_peekPosition++]; + } + + public function resetPeek() + { + $this->_peekPosition = 0; + } + + /** + * Returns the next token in the input string. + * + * @return array the next token + */ + public function scan() + { + if (count($this->_tokens) > 0) { + $this->resetPeek(); + return array_shift($this->_tokens); + } else { + return $this->_nextToken(); + } + } +} diff --git a/draft/Doctrine/Query/Token.php b/draft/Doctrine/Query/Token.php new file mode 100644 index 000000000..eea0855c9 --- /dev/null +++ b/draft/Doctrine/Query/Token.php @@ -0,0 +1,61 @@ +] + +Join = ["LEFT" | "INNER"] "JOIN" PathExpression "AS" identifier + +ConditionalExpression = ConditionalTerm {"OR" ConditionalTerm} +ConditionalTerm = ConditionalFactor {"AND" ConditionalFactor} +ConditionalFactor = ["NOT"] ConditionalPrimary +ConditionalPrimary = SimpleConditionalExpression | "(" ConditionalExpression ")" +SimpleConditionalExpression + = Expression (ComparisonExpression | BetweenExpression | LikeExpression + | InExpression | NullComparisonExpression) | ExistsExpression + +Atom = string-literal | numeric-constant | input-parameter + +Expression = Expression {("+" | "-" | "*" | "/") Expression} +Expression = ("+" | "-") Expression +Expression = "(" Expression ")" +Expression = PathExpression | Atom | | Function | AggregateExpression + +SelectExpression = (Expression | "(" Subselect ")" ) [["AS"] identifier] +PathExpression = identifier {"." identifier} + +AggregateExpression = ("AVG" | "MAX" | "MIN" | "SUM") "(" ["DISTINCT"] Expression ")" + | "COUNT" "(" ["DISTINCT"] (Expression | "*") ")" + +QuantifiedExpression = ("ALL" | "ANY" | "SOME") "(" Subselect ")" +BetweenExpression = ["NOT"] "BETWEEN" Expression "AND" Expression +ComparisonExpression = ComparisonOperator ( QuantifiedExpression | Expression | "(" Subselect ")" ) +InExpression = ["NOT"] "IN" "(" (Atom {"," Atom} | Subselect) ")" +LikeExpression = ["NOT"] "LIKE" Expression ["ESCAPE" escape_character] +NullComparisonExpression = "IS" ["NOT"] "NULL" +ExistsExpression = ["NOT"] "EXISTS" "(" Subselect ")" + + +Function = + "CURRENT_DATE" | + "CURRENT_TIME" | + "CURRENT_TIMESTAMP" | + "LENGTH" "(" Expression ")" | + "LOCATE" "(" Expression "," Expression ["," Expression] ")" | + "ABS" "(" Expression ")" | + "SQRT" "(" Expression ")" | + "MOD" "(" Expression "," Expression ")" | + "SIZE" "(" Expression ")" | + "CONCAT" "(" Expression "," Expression ")" | + "SUBSTRING" "(" Expression "," Expression "," "Expression" ")" | + "TRIM" "(" [[TrimSpecification] [trim_character] "FROM"] string_primary ")" | + "LOWER" "(" string_primary ")" | + "UPPER" "(" string_primary ")" | + identifier "(" [Expression {"," Expression}]")" // Custom function + +TrimSpecification = "LEADING" | "TRAILING" | "BOTH" diff --git a/draft/test.php b/draft/test.php new file mode 100644 index 000000000..d968f58e6 --- /dev/null +++ b/draft/test.php @@ -0,0 +1,20 @@ +parse();*/ + $scanner = new Doctrine_Query_Scanner('SELECT u.name, u.age FROM User u WHERE u.id = ?'); + do { + $token = $scanner->scan(); + } while ($token['type'] !== Doctrine_Query_Token::T_EOS); + +} +$end = microtime(true); + +printf("Parsed %d queries: %.3f ms per query\n", $n, ($end - $start) / $n * 1000); diff --git a/draft/tests/ScannerTest.php b/draft/tests/ScannerTest.php new file mode 100644 index 000000000..0479d91dd --- /dev/null +++ b/draft/tests/ScannerTest.php @@ -0,0 +1,107 @@ +scan(); + $this->assertEquals(Doctrine_Query_Token::T_IDENTIFIER, $token->getType()); + $this->assertEquals('u', $token->getValue()); + } + + public function testScannerRecognizesIdentifierConsistingOfLetters() + { + $scanner = new Doctrine_Query_Scanner('someIdentifier'); + + $token = $scanner->scan(); + $this->assertEquals(Doctrine_Query_Token::T_IDENTIFIER, $token->getType()); + $this->assertEquals('someIdentifier', $token->getValue()); + } + + public function testScannerRecognizesIdentifierIncludingDigits() + { + $scanner = new Doctrine_Query_Scanner('s0m31d3nt1f13r'); + + $token = $scanner->scan(); + $this->assertEquals(Doctrine_Query_Token::T_IDENTIFIER, $token->getType()); + $this->assertEquals('s0m31d3nt1f13r', $token->getValue()); + } + + public function testScannerRecognizesIdentifierIncludingUnderscore() + { + $scanner = new Doctrine_Query_Scanner('some_identifier'); + + $token = $scanner->scan(); + $this->assertEquals(Doctrine_Query_Token::T_IDENTIFIER, $token->getType()); + $this->assertEquals('some_identifier', $token->getValue()); + } + + public function testScannerRecognizesDecimalInteger() + { + $scanner = new Doctrine_Query_Scanner('1234'); + + $token = $scanner->scan(); + $this->assertEquals(Doctrine_Query_Token::T_NUMERIC, $token->getType()); + $this->assertEquals(1234, $token->getValue()); + } + + public function testScannerRecognizesNegativeDecimalInteger() + { + $scanner = new Doctrine_Query_Scanner('-123'); + + $token = $scanner->scan(); + $this->assertEquals(Doctrine_Query_Token::T_NUMERIC, $token->getType()); + $this->assertEquals(-123, $token->getValue()); + } + + public function testScannerRecognizesFloat() + { + $scanner = new Doctrine_Query_Scanner('1.234'); + + $token = $scanner->scan(); + $this->assertEquals(Doctrine_Query_Token::T_NUMERIC, $token->getType()); + $this->assertEquals(1.234, $token->getValue()); + } + + public function testScannerRecognizesFloatWithExponent() + { + $scanner = new Doctrine_Query_Scanner('1.2e3'); + + $token = $scanner->scan(); + $this->assertEquals(Doctrine_Query_Token::T_NUMERIC, $token->getType()); + $this->assertEquals(1.2e3, $token->getValue()); + } + + public function testScannerRecognizesFloatWithNegativeExponent() + { + $scanner = new Doctrine_Query_Scanner('7E-10'); + + $token = $scanner->scan(); + $this->assertEquals(Doctrine_Query_Token::T_NUMERIC, $token->getType()); + $this->assertEquals(7E-10, $token->getValue()); + } + + public function testScannerRecognizesStringContainingWhitespace() + { + $scanner = new Doctrine_Query_Scanner("'This is a string.'"); + + $token = $scanner->scan(); + $this->assertEquals(Doctrine_Query_Token::T_STRING, $token->getType()); + $this->assertEquals("'This is a string.'", $token->getValue()); + } + + public function testScannerRecognizesStringContainingSingleQuotes() + { + $scanner = new Doctrine_Query_Scanner("'abc''defg'''"); + + $token = $scanner->scan(); + $this->assertEquals(Doctrine_Query_Token::T_STRING, $token->getType()); + $this->assertEquals("'abc''defg'''", $token->getValue()); + } + +}