1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

[2.0] Minor change in *Walker to be able to be used by custom assigned Walkers

This commit is contained in:
guilhermeblanco 2009-08-04 03:33:45 +00:00
parent 0a497062c9
commit 733556b632
4 changed files with 18 additions and 6 deletions

View file

@ -257,7 +257,8 @@ class Parser
} }
// Create TreeWalker who creates the SQL from the AST // Create TreeWalker who creates the SQL from the AST
$treeWalker = $this->_treeWalker ?: new SqlWalker( $treeWalker = $this->_treeWalker ?: new SqlWalker();
$treeWalker->init(
$this->_query, $this->_parserResult, $this->_queryComponents $this->_query, $this->_parserResult, $this->_queryComponents
); );

View file

@ -72,12 +72,9 @@ class SqlWalker implements TreeWalker
private $_useSqlTableAliases = true; private $_useSqlTableAliases = true;
/** /**
* Initializes a new SqlWalker instance with the given Query and ParserResult. * @inheritdoc
*
* @param Query $query The parsed Query.
* @param ParserResult $parserResult The result of the parsing process.
*/ */
public function __construct($query, $parserResult, array $queryComponents) public function init($query, $parserResult, array $queryComponents)
{ {
$this->_rsm = $parserResult->getResultSetMapping(); $this->_rsm = $parserResult->getResultSetMapping();
$this->_query = $query; $this->_query = $query;

View file

@ -29,6 +29,15 @@ namespace Doctrine\ORM\Query;
*/ */
interface TreeWalker interface TreeWalker
{ {
/**
* Initializes TreeWalker with important information about the ASTs to be walked
*
* @param Query $query The parsed Query.
* @param ParserResult $parserResult The result of the parsing process.
* @param array $queryComponents Query components (symbol table)
*/
function init($query, $parserResult, array $queryComponents);
/** /**
* Walks down a SelectStatement AST node, thereby generating the appropriate SQL. * Walks down a SelectStatement AST node, thereby generating the appropriate SQL.
* *

View file

@ -30,6 +30,11 @@ namespace Doctrine\ORM\Query;
*/ */
abstract class TreeWalkerAdapter implements TreeWalker abstract class TreeWalkerAdapter implements TreeWalker
{ {
/**
* @inheritdoc
*/
public function init($query, $parserResult, array $queryComponents) {}
/** /**
* Walks down a SelectStatement AST node, thereby generating the appropriate SQL. * Walks down a SelectStatement AST node, thereby generating the appropriate SQL.
* *