-
Notifications
You must be signed in to change notification settings - Fork 2
/
IndexSynchronizer.php
207 lines (174 loc) · 5.96 KB
/
IndexSynchronizer.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<?php
declare(strict_types=1);
namespace MeiliSearchBundle\Index;
use MeiliSearchBundle\Health\HealthEntryPointInterface;
use MeiliSearchBundle\Metadata\IndexMetadata;
use MeiliSearchBundle\Metadata\IndexMetadataInterface;
use MeiliSearchBundle\Metadata\IndexMetadataRegistryInterface;
use MeiliSearchBundle\Settings\SettingsEntryPointInterface;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use Throwable;
use function array_filter;
use function array_walk;
use function sprintf;
/**
* @author Guillaume Loulier <[email protected]>
*/
final class IndexSynchronizer implements IndexSynchronizerInterface
{
/**
* @var HealthEntryPointInterface
*/
private $healthEntryPoint;
/**
* @var IndexOrchestratorInterface
*/
private $indexOrchestrator;
/**
* @var IndexMetadataRegistryInterface
*/
private $indexMetadataRegistry;
/**
* @var SettingsEntryPointInterface
*/
private $settingsEntryPoint;
/**
* @var LoggerInterface
*/
private $logger;
public function __construct(
IndexOrchestratorInterface $indexOrchestrator,
IndexMetadataRegistryInterface $indexMetadataRegistry,
HealthEntryPointInterface $healthEntryPoint,
SettingsEntryPointInterface $settingsEntryPoint,
?LoggerInterface $logger = null
) {
$this->indexOrchestrator = $indexOrchestrator;
$this->indexMetadataRegistry = $indexMetadataRegistry;
$this->healthEntryPoint = $healthEntryPoint;
$this->settingsEntryPoint = $settingsEntryPoint;
$this->logger = $logger ?: new NullLogger();
}
/**
* {@inheritdoc}
*/
public function createIndexes(array $indexes, ?string $prefix = null): void
{
if ($this->isSynchronized() && null === $prefix) {
$this->logger->info('The indexes cannot be created as the instance and the local storage are already synchronized');
return;
}
$this->handleMetadataIndexes($indexes, $prefix);
$instanceIndexes = $this->indexOrchestrator->getIndexes();
$nonPersistedIndexes = array_filter($this->indexMetadataRegistry->toArray(), function (IndexMetadataInterface $indexMetadata) use ($instanceIndexes): bool {
return !$instanceIndexes->has($indexMetadata->getUid());
});
if (empty($nonPersistedIndexes)) {
return;
}
try {
foreach ($nonPersistedIndexes as $nonPersistedIndex) {
$this->indexOrchestrator->addIndex(
$nonPersistedIndex->getUid(),
$nonPersistedIndex->getPrimaryKey(),
$nonPersistedIndex->toArray()
);
}
} catch (Throwable $throwable) {
$this->logger->critical('An error occurred when creating the indexes', [
'error' => $throwable->getMessage(),
]);
throw $throwable;
}
}
/**
* {@inheritdoc}
*/
public function updateIndexes(array $indexes, ?string $prefix = null): void
{
$this->handleMetadataIndexes($indexes, $prefix, true);
try {
foreach ($this->indexMetadataRegistry->toArray() as $index) {
$this->indexOrchestrator->update(
$index->getUid(),
$index->toArray()
);
}
} catch (Throwable $throwable) {
$this->logger->critical('An error occurred when updating the indexes', [
'error' => $throwable->getMessage(),
]);
throw $throwable;
}
}
/**
* {@inheritdoc}
*/
public function dropIndexes(): void
{
try {
$this->indexOrchestrator->removeIndexes();
} catch (Throwable $throwable) {
$this->logger->critical('The indexes cannot be dropped', [
'error' => $throwable->getMessage(),
]);
throw $throwable;
}
$this->indexMetadataRegistry->clear();
}
/**
* {@inheritdoc}
*/
public function dropIndex(string $index): void
{
try {
$this->indexOrchestrator->removeIndex($index);
} catch (Throwable $throwable) {
$this->logger->critical('The index cannot be dropped', [
'index' => $index,
'error' => $throwable->getMessage(),
]);
throw $throwable;
}
$this->indexMetadataRegistry->remove($index);
}
public function isSynchronized(): bool
{
if (!$this->isUp()) {
return false;
}
$count = $this->indexMetadataRegistry->count();
if (0 === $count) {
return false;
}
$instanceIndexes = $this->indexOrchestrator->getIndexes();
return $count === $instanceIndexes->count();
}
private function isUp(): bool
{
return $this->healthEntryPoint->isUp();
}
private function handleMetadataIndexes(array $indexes, ?string $prefix = null, bool $override = false): void
{
array_walk($indexes, function (array $index, string $key) use ($prefix, $override): void {
$indexName = null !== $prefix ? sprintf('%s%s', $prefix, $key) : $key;
$indexMetadata = new IndexMetadata(
$indexName,
$index['async'] ?? false,
$index['primaryKey'] ?? null,
$index['rankingRules'] ?? [],
$index['stopWords'] ?? [],
$index['distinctAttribute'] ?? null,
$index['facetedAttributes'] ?? [],
$index['searchableAttributes'] ?? [],
$index['displayedAttributes'] ?? [],
$index['synonyms'] ?? []
);
$override ?
$this->indexMetadataRegistry->override($indexName, $indexMetadata)
: $this->indexMetadataRegistry->add($indexName, $indexMetadata)
;
});
}
}