forked from doctrine/mongodb-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSchemaManager.php
464 lines (414 loc) · 16.1 KB
/
SchemaManager.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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the MIT license. For more information, see
* <http://www.doctrine-project.org>.
*/
namespace Doctrine\ODM\MongoDB;
use Doctrine\ODM\MongoDB\Mapping\ClassMetadata;
use Doctrine\ODM\MongoDB\Mapping\ClassMetadataFactory;
class SchemaManager
{
/**
* @var DocumentManager
*/
protected $dm;
/**
*
* @var ClassMetadataFactory
*/
protected $metadataFactory;
/**
* @param DocumentManager $dm
* @param ClassMetadataFactory $cmf
*/
public function __construct(DocumentManager $dm, ClassMetadataFactory $cmf)
{
$this->dm = $dm;
$this->metadataFactory = $cmf;
}
/**
* Ensure indexes are created for all documents that can be loaded with the
* metadata factory.
*
* @param integer $timeout Timeout (ms) for acknowledged index creation
*/
public function ensureIndexes($timeout = null)
{
foreach ($this->metadataFactory->getAllMetadata() as $class) {
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
continue;
}
$this->ensureDocumentIndexes($class->name, $timeout);
}
}
/**
* Ensure indexes exist for all mapped document classes.
*
* Indexes that exist in MongoDB but not the document metadata will be
* deleted.
*
* @param integer $timeout Timeout (ms) for acknowledged index creation
*/
public function updateIndexes($timeout = null)
{
foreach ($this->metadataFactory->getAllMetadata() as $class) {
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
continue;
}
$this->updateDocumentIndexes($class->name, $timeout);
}
}
/**
* Ensure indexes exist for the mapped document class.
*
* Indexes that exist in MongoDB but not the document metadata will be
* deleted.
*
* @param string $documentName
* @param integer $timeout Timeout (ms) for acknowledged index creation
* @throws \InvalidArgumentException
*/
public function updateDocumentIndexes($documentName, $timeout = null)
{
$class = $this->dm->getClassMetadata($documentName);
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
throw new \InvalidArgumentException('Cannot update document indexes for mapped super classes or embedded documents.');
}
$documentIndexes = $this->getDocumentIndexes($documentName);
$collection = $this->dm->getDocumentCollection($documentName);
$mongoIndexes = $collection->getIndexInfo();
/* Determine which Mongo indexes should be deleted. Exclude the ID index
* and those that are equivalent to any in the class metadata.
*/
$self = $this;
$mongoIndexes = array_filter($mongoIndexes, function ($mongoIndex) use ($documentIndexes, $self) {
if ('_id_' === $mongoIndex['name']) {
return false;
}
foreach ($documentIndexes as $documentIndex) {
if ($self->isMongoIndexEquivalentToDocumentIndex($mongoIndex, $documentIndex)) {
return false;
}
}
return true;
});
// Delete indexes that do not exist in class metadata
foreach ($mongoIndexes as $mongoIndex) {
if (isset($mongoIndex['name'])) {
/* Note: MongoCollection::deleteIndex() cannot delete
* custom-named indexes, so use the deleteIndexes command.
*/
$collection->getDatabase()->command(array(
'deleteIndexes' => $collection->getName(),
'index' => $mongoIndex['name'],
));
}
}
$this->ensureDocumentIndexes($documentName, $timeout);
}
/**
* @param string $documentName
* @return array
*/
public function getDocumentIndexes($documentName)
{
$visited = array();
return $this->doGetDocumentIndexes($documentName, $visited);
}
/**
* @param string $documentName
* @param array $visited
* @return array
*/
private function doGetDocumentIndexes($documentName, array &$visited)
{
if (isset($visited[$documentName])) {
return array();
}
$visited[$documentName] = true;
$class = $this->dm->getClassMetadata($documentName);
$indexes = $this->prepareIndexes($class);
// Add indexes from embedded & referenced documents
foreach ($class->fieldMappings as $fieldMapping) {
if (isset($fieldMapping['embedded']) && isset($fieldMapping['targetDocument'])) {
$embeddedIndexes = $this->doGetDocumentIndexes($fieldMapping['targetDocument'], $visited);
foreach ($embeddedIndexes as $embeddedIndex) {
foreach ($embeddedIndex['keys'] as $key => $value) {
$embeddedIndex['keys'][$fieldMapping['name'] . '.' . $key] = $value;
unset($embeddedIndex['keys'][$key]);
}
$indexes[] = $embeddedIndex;
}
} elseif (isset($fieldMapping['reference']) && isset($fieldMapping['targetDocument'])) {
foreach ($indexes as $idx => $index) {
$newKeys = array();
foreach ($index['keys'] as $key => $v) {
if ($key == $fieldMapping['name']) {
$key = $fieldMapping['simple'] ? $key : $key . '.$id';
}
$newKeys[$key] = $v;
}
$indexes[$idx]['keys'] = $newKeys;
}
}
}
return $indexes;
}
/**
* @param ClassMetadata $class
* @return array
*/
private function prepareIndexes(ClassMetadata $class)
{
$persister = $this->dm->getUnitOfWork()->getDocumentPersister($class->name);
$indexes = $class->getIndexes();
$newIndexes = array();
foreach ($indexes as $index) {
$newIndex = array(
'keys' => array(),
'options' => $index['options']
);
foreach ($index['keys'] as $key => $value) {
$key = $persister->prepareFieldName($key);
if (isset($class->discriminatorField) && $key === $class->discriminatorField['name']) {
// The discriminator field may have its own mapping
$newIndex['keys'][$class->discriminatorField['fieldName']] = $value;
} elseif ($class->hasField($key)) {
$mapping = $class->getFieldMapping($key);
$newIndex['keys'][$mapping['name']] = $value;
} else {
$newIndex['keys'][$key] = $value;
}
}
$newIndexes[] = $newIndex;
}
return $newIndexes;
}
/**
* Ensure the given document's indexes are created.
*
* @param string $documentName
* @param integer $timeout Timeout (ms) for acknowledged index creation
* @throws \InvalidArgumentException
*/
public function ensureDocumentIndexes($documentName, $timeout = null)
{
$class = $this->dm->getClassMetadata($documentName);
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
throw new \InvalidArgumentException('Cannot create document indexes for mapped super classes or embedded documents.');
}
if ($indexes = $this->getDocumentIndexes($documentName)) {
$collection = $this->dm->getDocumentCollection($class->name);
foreach ($indexes as $index) {
// TODO: Use "w" for driver versions >= 1.3.0
if ( ! isset($index['options']['safe'])) {
$index['options']['safe'] = true;
}
if ( ! isset($index['options']['timeout']) && isset($timeout)) {
$index['options']['timeout'] = $timeout;
}
$collection->ensureIndex($index['keys'], $index['options']);
}
}
}
/**
* Delete indexes for all documents that can be loaded with the
* metadata factory.
*/
public function deleteIndexes()
{
foreach ($this->metadataFactory->getAllMetadata() as $class) {
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
continue;
}
$this->deleteDocumentIndexes($class->name);
}
}
/**
* Delete the given document's indexes.
*
* @param string $documentName
* @throws \InvalidArgumentException
*/
public function deleteDocumentIndexes($documentName)
{
$class = $this->dm->getClassMetadata($documentName);
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
throw new \InvalidArgumentException('Cannot delete document indexes for mapped super classes or embedded documents.');
}
$this->dm->getDocumentCollection($documentName)->deleteIndexes();
}
/**
* Create all the mapped document collections in the metadata factory.
*/
public function createCollections()
{
foreach ($this->metadataFactory->getAllMetadata() as $class) {
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
continue;
}
$this->createDocumentCollection($class->name);
}
}
/**
* Create the document collection for a mapped class.
*
* @param string $documentName
* @throws \InvalidArgumentException
*/
public function createDocumentCollection($documentName)
{
$class = $this->dm->getClassMetadata($documentName);
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
throw new \InvalidArgumentException('Cannot create document collection for mapped super classes or embedded documents.');
}
if ($class->isFile()) {
$this->dm->getDocumentDatabase($documentName)->createCollection($class->getCollection() . '.files');
$this->dm->getDocumentDatabase($documentName)->createCollection($class->getCollection() . '.chunks');
return;
}
$this->dm->getDocumentDatabase($documentName)->createCollection(
$class->getCollection(),
$class->getCollectionCapped(),
$class->getCollectionSize(),
$class->getCollectionMax()
);
}
/**
* Drop all the mapped document collections in the metadata factory.
*/
public function dropCollections()
{
foreach ($this->metadataFactory->getAllMetadata() as $class) {
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
continue;
}
$this->dropDocumentCollection($class->name);
}
}
/**
* Drop the document collection for a mapped class.
*
* @param string $documentName
* @throws \InvalidArgumentException
*/
public function dropDocumentCollection($documentName)
{
$class = $this->dm->getClassMetadata($documentName);
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
throw new \InvalidArgumentException('Cannot delete document indexes for mapped super classes or embedded documents.');
}
$this->dm->getDocumentDatabase($documentName)->dropCollection(
$class->getCollection()
);
}
/**
* Drop all the mapped document databases in the metadata factory.
*/
public function dropDatabases()
{
foreach ($this->metadataFactory->getAllMetadata() as $class) {
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
continue;
}
$this->dropDocumentDatabase($class->name);
}
}
/**
* Drop the document database for a mapped class.
*
* @param string $documentName
* @throws \InvalidArgumentException
*/
public function dropDocumentDatabase($documentName)
{
$class = $this->dm->getClassMetadata($documentName);
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
throw new \InvalidArgumentException('Cannot drop document database for mapped super classes or embedded documents.');
}
$this->dm->getDocumentDatabase($documentName)->drop();
}
/**
* Create all the mapped document databases in the metadata factory.
*/
public function createDatabases()
{
foreach ($this->metadataFactory->getAllMetadata() as $class) {
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
continue;
}
$this->createDocumentDatabase($class->name);
}
}
/**
* Create the document database for a mapped class.
*
* @param string $documentName
* @throws \InvalidArgumentException
*/
public function createDocumentDatabase($documentName)
{
$class = $this->dm->getClassMetadata($documentName);
if ($class->isMappedSuperclass || $class->isEmbeddedDocument) {
throw new \InvalidArgumentException('Cannot delete document indexes for mapped super classes or embedded documents.');
}
$this->dm->getDocumentDatabase($documentName)->execute("function() { return true; }");
}
/**
* Determine if an index returned by MongoCollection::getIndexInfo() can be
* considered equivalent to an index in class metadata.
*
* Indexes are considered different if:
*
* (a) Key/direction pairs differ or are not in the same order
* (b) Sparse or unique options differ
* (c) Mongo index is unique without dropDups and mapped index is unique
* with dropDups
* (d) Geospatial options differ (bits, max, min)
*
* Regarding (c), the inverse case is not a reason to delete and
* recreate the index, since dropDups only affects creation of
* the unique index. Additionally, the background option is only
* relevant to index creation and is not considered.
*/
public function isMongoIndexEquivalentToDocumentIndex($mongoIndex, $documentIndex)
{
$documentIndexOptions = $documentIndex['options'];
if ($mongoIndex['key'] != $documentIndex['keys']) {
return false;
}
if (empty($mongoIndex['sparse']) xor empty($documentIndexOptions['sparse'])) {
return false;
}
if (empty($mongoIndex['unique']) xor empty($documentIndexOptions['unique'])) {
return false;
}
if ( ! empty($mongoIndex['unique']) && empty($mongoIndex['dropDups']) &&
! empty($documentIndexOptions['unique']) && ! empty($documentIndexOptions['dropDups'])) {
return false;
}
foreach (array('bits', 'max', 'min') as $option) {
if (isset($mongoIndex[$option]) xor isset($documentIndexOptions[$option])) {
return false;
}
if (isset($mongoIndex[$option]) && isset($documentIndexOptions[$option]) &&
$mongoIndex[$option] !== $documentIndexOptions[$option]) {
return false;
}
}
return true;
}
}