-
Notifications
You must be signed in to change notification settings - Fork 0
/
QueryPartCollection.php
150 lines (130 loc) · 5.68 KB
/
QueryPartCollection.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?php
namespace FpDbTest;
/**
* Коллекция частей запроса, включающая весь запрос целиком. При вызове конструктора происходит разбор запроса на части,
* при использовании в качестве строки возвращает готовый запрос с подставленными значениями.
*/
class QueryPartCollection
{
/**
* @var QueryPartInterface[] $queryParts
*/
protected array $queryParts = [];
protected bool $needToTestForSkipping = false;
private string $specialValueForMarkingSkippedBlocksInQueries;
/**
* Когда структура проекта прояснится, эту константу можно вынести на верхний уровень, чтобы закрыть данный класс
* от изменений (SOLID Open/Closed Principle) в случае добавления новых спецификаторов
*/
private const array SPECIFIER_TO_CLASS_MAP = [
'?d' => IntQueryPart::class,
'?f' => FloatQueryPart::class,
'?#' => IdentifierQueryPart::class,
'?a' => ArrayQueryPart::class,
'?' => GenericScalarQueryPart::class,
];
/**
* @throws \Exception
*/
public function __construct(
string $queryTemplateString,
array $queryParameterValues,
$specialValueForMarkingSkippedBlocksInQueries,
bool $needToTestForSkipping = false
) {
$this->needToTestForSkipping = $needToTestForSkipping;
$this->specialValueForMarkingSkippedBlocksInQueries = $specialValueForMarkingSkippedBlocksInQueries;
if ($this->countSpecifiersInString($queryTemplateString) !== count($queryParameterValues)) {
throw new \Exception('Количество параметров не совпадает с количеством спецификаторов в запросе');
}
if ($this->needToTestForSkipping && $this->containsSpecialValueForSkippedBlocks($queryParameterValues)
) {
return;
}
$this->buildQueryParts(
$queryParameterValues,
$queryTemplateString,
$specialValueForMarkingSkippedBlocksInQueries
);
}
public function __toString(): string
{
$queryPartsStrings = [];
foreach ($this->queryParts as $queryPart) {
$queryPartsStrings[] = (string)$queryPart;
}
return implode('', $queryPartsStrings);
}
/**
* @throws \Exception
*/
protected function buildQueryParts(
array $queryParameterValues,
string $queryTemplateString,
$specialValueForMarkingSkippedBlocksInQueries
): void {
$queryParameterValues = array_values($queryParameterValues);
$parameterIndex = 0;
$queryPartStrings = $this->splitQueryTemplateToProcessableParts($queryTemplateString);
foreach ($queryPartStrings as $queryPartString) {
if ($this->isQueryPartASpecifier($queryPartString)) {
$specifierClass = $this->getSpecifierClassName($queryPartString);
if ($specifierClass === null) {
throw new \Exception('Неизвестный спецификатор в запросе');
} else {
$this->queryParts[] = new $specifierClass(
$queryPartString,
$queryParameterValues[$parameterIndex]
);
}
$parameterIndex++;
} elseif ($this->isBlock($queryPartString)) {
$queryPartString = StringHelper::removeSurroundingCharacters($queryPartString);
$argumentsInBlockTally = $this->countSpecifiersInString($queryPartString);
$blockParameterValues = array_values(
array_slice($queryParameterValues, $parameterIndex, $argumentsInBlockTally)
);
$this->queryParts[] = new QueryPartCollection(
$queryPartString,
$blockParameterValues,
$specialValueForMarkingSkippedBlocksInQueries,
true
);
$parameterIndex += $argumentsInBlockTally;
} else {
$this->queryParts[] = new TextQueryPart($queryPartString);
}
}
}
private function countSpecifiersInString(string $query): int
{
return substr_count($query, '?');
}
protected function splitQueryTemplateToProcessableParts(string $query): array
{
$parts = preg_split('~(\?[#daf]?|\{.*}?+)~u', $query, null, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
return $parts;
}
protected function getSpecifierClassName(string $queryPartString): ?string
{
foreach (self::SPECIFIER_TO_CLASS_MAP as $specifierType => $specifierClass) {
if (str_starts_with($queryPartString, $specifierType)) {
return $specifierClass;
}
}
return null;
}
protected function isQueryPartASpecifier(string $queryPartString): bool
{
return str_starts_with($queryPartString, '?');
}
protected function isBlock($queryPartString): bool
{
return str_starts_with($queryPartString, '{');
}
protected function containsSpecialValueForSkippedBlocks(array $blockParameterValues): bool
{
$result = in_array($this->specialValueForMarkingSkippedBlocksInQueries, $blockParameterValues, true);
return $result;
}
}