. */ namespace Doctrine\ORM\Persisters; use Doctrine\Common\Collections\Expr\ExpressionVisitor; use Doctrine\Common\Collections\Expr\Comparison; use Doctrine\Common\Collections\Expr\Value; use Doctrine\Common\Collections\Expr\CompositeExpression; /** * Visit Expressions and generate SQL WHERE conditions from them. * * @author Benjamin Eberlei * @since 2.3 */ class SqlExpressionVisitor extends ExpressionVisitor { /** * @var \Doctrine\ORM\Persisters\BasicEntityPersister */ private $persister; /** * @param \Doctrine\ORM\Persisters\BasicEntityPersister $persister */ public function __construct(BasicEntityPersister $persister) { $this->persister = $persister; } /** * Convert a comparison expression into the target query language output * * @param \Doctrine\Common\Collections\Expr\Comparison $comparison * * @return mixed */ public function walkComparison(Comparison $comparison) { $field = $comparison->getField(); $value = $comparison->getValue()->getValue(); // shortcut for walkValue() return $this->persister->getSelectConditionStatementSQL($field, $value, null, $comparison->getOperator()); } /** * Convert a composite expression into the target query language output * * @param \Doctrine\Common\Collections\Expr\CompositeExpression $expr * * @return mixed */ 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()); } } /** * Convert a value expression into the target query language part. * * @param \Doctrine\Common\Collections\Expr\Value $value * * @return mixed */ public function walkValue(Value $value) { return '?'; } }