Вход Регистрация
Файл: concrete5.7.5.6/concrete/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/SqlExpressionVisitor.php
Строк: 131
<?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
 * and is licensed under the MIT license. For more information, see
 * <http://www.doctrine-project.org>.
 */

namespace DoctrineORMPersisters;

use 
DoctrineORMMappingClassMetadata;

use 
DoctrineCommonCollectionsExprExpressionVisitor;
use 
DoctrineCommonCollectionsExprComparison;
use 
DoctrineCommonCollectionsExprValue;
use 
DoctrineCommonCollectionsExprCompositeExpression;

/**
 * Visit Expressions and generate SQL WHERE conditions from them.
 *
 * @author Benjamin Eberlei <kontakt@beberlei.de>
 * @since 2.3
 */
class SqlExpressionVisitor extends ExpressionVisitor
{
    
/**
     * @var DoctrineORMPersistersBasicEntityPersister
     */
    
private $persister;

    
/**
     * @var DoctrineORMMappingClassMetadata
     */
    
private $classMetadata;

    
/**
     * @param DoctrineORMPersistersBasicEntityPersister $persister
     */
    
public function __construct(BasicEntityPersister $persisterClassMetadata $classMetadata)
    {
        
$this->persister $persister;
        
$this->classMetadata $classMetadata;
    }

    
/**
     * Converts a comparison expression into the target query language output.
     *
     * @param DoctrineCommonCollectionsExprComparison $comparison
     *
     * @return mixed
     */
    
public function walkComparison(Comparison $comparison)
    {
        
$field $comparison->getField();
        
$value $comparison->getValue()->getValue(); // shortcut for walkValue()

        
if (isset($this->classMetadata->associationMappings[$field]) &&
            
$value !== null &&
            ! 
is_object($value) &&
            ! 
in_array($comparison->getOperator(), array(Comparison::INComparison::NIN))) {

            throw 
PersisterException::matchingAssocationFieldRequiresObject($this->classMetadata->name$field);
        }

        return 
$this->persister->getSelectConditionStatementSQL($field$valuenull$comparison->getOperator());
    }

    
/**
     * Converts a composite expression into the target query language output.
     *
     * @param DoctrineCommonCollectionsExprCompositeExpression $expr
     *
     * @return mixed
     *
     * @throws RuntimeException
     */
    
public function walkCompositeExpression(CompositeExpression $expr)
    {
        
$expressionList = array();

        foreach (
$expr->getExpressionList() as $child) {
            
$expressionList[] = $this->dispatch($child);
        }

        switch(
$expr->getType()) {
            case 
CompositeExpression::TYPE_AND:
                return 
'(' implode(' AND '$expressionList) . ')';

            case 
CompositeExpression::TYPE_OR:
                return 
'(' implode(' OR '$expressionList) . ')';

            default:
                throw new 
RuntimeException("Unknown composite " $expr->getType());
        }
    }

    
/**
     * Converts a value expression into the target query language part.
     *
     * @param DoctrineCommonCollectionsExprValue $value
     *
     * @return mixed
     */
    
public function walkValue(Value $value)
    {
        return 
'?';
    }
}
Онлайн: 0
Реклама