(person.id, :date, 'postcode') where part * should be replace by the part of the address. * * This function return the current address part at the given date, for the * given person (identified by his id) * * The aim of this function is to be used within reports */ abstract class AddressPart extends FunctionNode { public $fields = [ 'address_id', 'streetaddress1', 'streetaddress2', 'validfrom', 'postcode_label', 'postcode_code', 'postcode_id', 'country_name', 'country_code', 'country_id', ]; private null|\Doctrine\ORM\Query\AST\Node|string $date = null; /** * @var \Doctrine\ORM\Query\AST\Node */ private $part; private ?\Doctrine\ORM\Query\AST\PathExpression $pid = null; /** * return the part of the address. * * Should be one value of the "public" amongst * 'address_id', 'streetaddress1', * 'streetaddress2', 'validfrom', 'postcode_label', 'postcode_code', * 'postcode_id', 'country_name', 'country_code', 'country_id', 'isnoaddress' * * @return string */ abstract public function getPart(); public function getSql(SqlWalker $sqlWalker) { return sprintf( 'get_last_address_%s(%s, %s)', $this->getPart(), $this->pid->dispatch($sqlWalker), $this->date->dispatch($sqlWalker) ); } public function parse(Parser $parser) { $a = $parser->match(Lexer::T_IDENTIFIER); $parser->match(Lexer::T_OPEN_PARENTHESIS); // person id $this->pid = $parser->SingleValuedPathExpression(); $parser->match(Lexer::T_COMMA); // date $this->date = $parser->ArithmeticPrimary(); $parser->match(Lexer::T_CLOSE_PARENTHESIS); } }