2009-06-02 22:05:26 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
2012-05-26 16:37:00 +04:00
|
|
|
* and is licensed under the MIT license. For more information, see
|
2012-06-19 22:17:08 +04:00
|
|
|
* <http://www.doctrine-project.org>.
|
2009-06-02 22:05:26 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Doctrine\ORM\Query\AST;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Join ::= ["LEFT" ["OUTER"] | "INNER"] "JOIN" JoinAssociationPathExpression
|
|
|
|
* ["AS"] AliasIdentificationVariable [("ON" | "WITH") ConditionalExpression]
|
|
|
|
*
|
2009-08-07 01:42:07 +04:00
|
|
|
* @link www.doctrine-project.org
|
|
|
|
* @since 2.0
|
|
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
|
|
* @author Jonathan Wage <jonwage@gmail.com>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2009-06-02 22:05:26 +04:00
|
|
|
*/
|
|
|
|
class Join extends Node
|
|
|
|
{
|
2012-06-11 00:14:25 +04:00
|
|
|
const JOIN_TYPE_LEFT = 1;
|
2009-06-02 22:05:26 +04:00
|
|
|
const JOIN_TYPE_LEFTOUTER = 2;
|
2012-06-11 00:14:25 +04:00
|
|
|
const JOIN_TYPE_INNER = 3;
|
2009-06-02 22:05:26 +04:00
|
|
|
|
2012-12-13 15:52:19 +04:00
|
|
|
/**
|
|
|
|
* @var int
|
|
|
|
*/
|
2011-12-20 01:56:19 +04:00
|
|
|
public $joinType = self::JOIN_TYPE_INNER;
|
2012-12-13 15:52:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Node|null
|
|
|
|
*/
|
2012-06-11 00:14:25 +04:00
|
|
|
public $joinAssociationDeclaration = null;
|
2012-12-13 15:52:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var ConditionalExpression|null
|
|
|
|
*/
|
2009-08-07 01:42:07 +04:00
|
|
|
public $conditionalExpression = null;
|
2009-06-02 22:05:26 +04:00
|
|
|
|
2012-12-13 15:52:19 +04:00
|
|
|
/**
|
|
|
|
* @param int $joinType
|
|
|
|
* @param Node $joinAssociationDeclaration
|
|
|
|
*/
|
2012-06-11 00:14:25 +04:00
|
|
|
public function __construct($joinType, $joinAssociationDeclaration)
|
2009-06-02 22:05:26 +04:00
|
|
|
{
|
2009-08-07 01:42:07 +04:00
|
|
|
$this->joinType = $joinType;
|
2012-06-11 00:14:25 +04:00
|
|
|
$this->joinAssociationDeclaration = $joinAssociationDeclaration;
|
2009-06-02 22:05:26 +04:00
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2012-12-13 15:52:19 +04:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
2009-06-02 22:05:26 +04:00
|
|
|
public function dispatch($sqlWalker)
|
|
|
|
{
|
|
|
|
return $sqlWalker->walkJoin($this);
|
|
|
|
}
|
2012-05-26 16:37:00 +04:00
|
|
|
}
|