* @copyright 2010-2014 Justin Swanhart and André Rothe * @license http://www.debian.org/misc/bsd.license BSD License (3 Clause) * @version SVN: $Id: RecordBuilder.php 830 2013-12-18 09:35:42Z phosco@gmx.de $ * */ require_once dirname(__FILE__) . '/../exceptions/UnableToCreateSQLException.php'; require_once dirname(__FILE__) . '/../utils/ExpressionType.php'; require_once dirname(__FILE__) . '/OperatorBuilder.php'; require_once dirname(__FILE__) . '/ConstantBuilder.php'; require_once dirname(__FILE__) . '/FunctionBuilder.php'; /** * This class implements the builder for the records within 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 RecordBuilder { protected function buildOperator($parsed) { $builder = new OperatorBuilder(); return $builder->build($parsed); } protected function buildFunction($parsed) { $builder = new FunctionBuilder(); return $builder->build($parsed); } protected function buildConstant($parsed) { $builder = new ConstantBuilder(); return $builder->build($parsed); } public function build($parsed) { if ($parsed['expr_type'] !== ExpressionType::RECORD) { return ""; } $sql = ""; foreach ($parsed['data'] as $k => $v) { $len = strlen($sql); $sql .= $this->buildConstant($v); $sql .= $this->buildFunction($v); $sql .= $this->buildOperator($v); if ($len == strlen($sql)) { throw new UnableToCreateSQLException(ExpressionType::RECORD, $k, $v, 'expr_type'); } $sql .= ","; } $sql = substr($sql, 0, -1); return "(" . $sql . ")"; } } ?>