* @copyright 2010-2014 Justin Swanhart and André Rothe * @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) * @version SVN: $Id: SetExpressionBuilder.php 830 2013-12-18 09:35:42Z phosco@gmx.de $ * */ require_once dirname(__FILE__) . '/../utils/ExpressionType.php'; require_once dirname(__FILE__) . '/../exceptions/UnableToCreateSQLException.php'; require_once dirname(__FILE__) . '/ColumnReferenceBuilder.php'; require_once dirname(__FILE__) . '/ConstantBuilder.php'; require_once dirname(__FILE__) . '/OperatorBuilder.php'; require_once dirname(__FILE__) . '/FunctionBuilder.php'; /** * This class implements the builder for the SET part of INSERT statement. * You can overwrite all functions to achieve another handling. * * @author André Rothe * @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) * */ class SetExpressionBuilder { protected function buildColRef($parsed) { $builder = new ColumnReferenceBuilder(); return $builder->build($parsed); } protected function buildConstant($parsed) { $builder = new ConstantBuilder(); return $builder->build($parsed); } protected function buildOperator($parsed) { $builder = new OperatorBuilder(); return $builder->build($parsed); } protected function buildFunction($parsed) { $builder = new FunctionBuilder(); return $builder->build($parsed); } public function build($parsed) { if ($parsed['expr_type'] !== ExpressionType::EXPRESSION) { return ""; } $sql = ""; foreach ($parsed['sub_tree'] as $k => $v) { $len = strlen($sql); $sql .= $this->buildColRef($v); $sql .= $this->buildConstant($v); $sql .= $this->buildOperator($v); $sql .= $this->buildFunction($v); if ($len == strlen($sql)) { throw new UnableToCreateSQLException('SET expression subtree', $k, $v, 'expr_type'); } $sql .= " "; } $sql = substr($sql, 0, -1); return $sql; } } ?>