-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTsRank.php
54 lines (44 loc) · 1.57 KB
/
TsRank.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
declare(strict_types=1);
namespace Pfilsx\PostgreSQLDoctrine\ORM\Query\AST\Functions;
use Doctrine\ORM\Query\AST\Functions\FunctionNode;
use Doctrine\ORM\Query\AST\Node;
use Doctrine\ORM\Query\Lexer;
use Doctrine\ORM\Query\Parser;
use Doctrine\ORM\Query\SqlWalker;
/**
* Implementation of PostgreSql TS_RANK() function.
*
* @see https://www.postgresql.org/docs/current/textsearch-controls.html#TEXTSEARCH-RANKING
*
* @example TS_RANK(entity.field, TO_TSQUERY('text'))
* @example TS_RANK(entity.field, TO_TSQUERY('text'), 32)
* @example TS_RANK(TO_TSVECTOR('some text'), TO_TSQUERY('text'), 32)
*/
class TsRank extends FunctionNode
{
protected Node $vector;
protected Node $query;
protected ?Node $normalization = null;
public function parse(Parser $parser): void
{
$parser->match(Lexer::T_IDENTIFIER);
$parser->match(Lexer::T_OPEN_PARENTHESIS);
$this->vector = $parser->StringPrimary();
$parser->match(Lexer::T_COMMA);
$this->query = $parser->StringPrimary();
if ($parser->getLexer()->isNextToken(Lexer::T_COMMA)) {
$parser->match(Lexer::T_COMMA);
$this->normalization = $parser->ArithmeticPrimary();
}
$parser->match(Lexer::T_CLOSE_PARENTHESIS);
}
public function getSql(SqlWalker $sqlWalker): string
{
return sprintf('TS_RANK(%s, %s%s)',
$this->vector->dispatch($sqlWalker),
$this->query->dispatch($sqlWalker),
$this->normalization !== null ? ', ' . $this->normalization->dispatch($sqlWalker) : ''
);
}
}