Completed
Pull Request — master (#1620)
by Maciej
24:08
created

XmlDriver::transformReadPreference()   A

Complexity

Conditions 4
Paths 2

Size

Total Lines 15
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 4

Importance

Changes 0
Metric Value
dl 0
loc 15
ccs 3
cts 3
cp 1
rs 9.2
c 0
b 0
f 0
cc 4
eloc 10
nc 2
nop 1
crap 4
1
<?php
2
/*
3
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
 *
15
 * This software consists of voluntary contributions made by many individuals
16
 * and is licensed under the MIT license. For more information, see
17
 * <http://www.doctrine-project.org>.
18
 */
19
20
namespace Doctrine\ODM\MongoDB\Mapping\Driver;
21
22
use Doctrine\Common\Persistence\Mapping\ClassMetadata;
23
use Doctrine\Common\Persistence\Mapping\Driver\FileDriver;
24
use Doctrine\ODM\MongoDB\Mapping\ClassMetadata as MappingClassMetadata;
25
use Doctrine\ODM\MongoDB\Utility\CollectionHelper;
26
use Doctrine\ODM\MongoDB\Mapping\ClassMetadataInfo;
27
28
/**
29
 * XmlDriver is a metadata driver that enables mapping through XML files.
30
 *
31
 * @since       1.0
32
 */
33
class XmlDriver extends FileDriver
34
{
35
    const DEFAULT_FILE_EXTENSION = '.dcm.xml';
36
37
    /**
38
     * {@inheritDoc}
39
     */
40 15
    public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION)
41
    {
42 15
        parent::__construct($locator, $fileExtension);
43 15
    }
44
45
    /**
46
     * {@inheritDoc}
47
     */
48 9
    public function loadMetadataForClass($className, ClassMetadata $class)
49
    {
50
        /* @var $class ClassMetadataInfo */
51
        /* @var $xmlRoot \SimpleXMLElement */
52 9
        $xmlRoot = $this->getElement($className);
53 9
        if ( ! $xmlRoot) {
54
            return;
55
        }
56
57 9
        if ($xmlRoot->getName() == 'document') {
58 9
            if (isset($xmlRoot['repository-class'])) {
59 9
                $class->setCustomRepositoryClass((string) $xmlRoot['repository-class']);
60
            }
61 3 View Code Duplication
        } elseif ($xmlRoot->getName() == 'mapped-superclass') {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
62 2
            $class->setCustomRepositoryClass(
63 2
                isset($xmlRoot['repository-class']) ? (string) $xmlRoot['repository-class'] : null
64
            );
65 2
            $class->isMappedSuperclass = true;
0 ignored issues
show
Bug introduced by
Accessing isMappedSuperclass on the interface Doctrine\Common\Persistence\Mapping\ClassMetadata suggest that you code against a concrete implementation. How about adding an instanceof check?

If you access a property on an interface, you most likely code against a concrete implementation of the interface.

Available Fixes

  1. Adding an additional type check:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeInterface $object) {
        if ($object instanceof SomeClass) {
            $a = $object->a;
        }
    }
    
  2. Changing the type hint:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeClass $object) {
        $a = $object->a;
    }
    
Loading history...
66 1
        } elseif ($xmlRoot->getName() == 'embedded-document') {
67 1
            $class->isEmbeddedDocument = true;
0 ignored issues
show
Bug introduced by
Accessing isEmbeddedDocument on the interface Doctrine\Common\Persistence\Mapping\ClassMetadata suggest that you code against a concrete implementation. How about adding an instanceof check?

If you access a property on an interface, you most likely code against a concrete implementation of the interface.

Available Fixes

  1. Adding an additional type check:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeInterface $object) {
        if ($object instanceof SomeClass) {
            $a = $object->a;
        }
    }
    
  2. Changing the type hint:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeClass $object) {
        $a = $object->a;
    }
    
Loading history...
68 1
        } elseif ($xmlRoot->getName() == 'query-result-document') {
69 1
            $class->isQueryResultDocument = true;
0 ignored issues
show
Bug introduced by
Accessing isQueryResultDocument on the interface Doctrine\Common\Persistence\Mapping\ClassMetadata suggest that you code against a concrete implementation. How about adding an instanceof check?

If you access a property on an interface, you most likely code against a concrete implementation of the interface.

Available Fixes

  1. Adding an additional type check:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeInterface $object) {
        if ($object instanceof SomeClass) {
            $a = $object->a;
        }
    }
    
  2. Changing the type hint:

    interface SomeInterface { }
    class SomeClass implements SomeInterface {
        public $a;
    }
    
    function someFunction(SomeClass $object) {
        $a = $object->a;
    }
    
Loading history...
70
        }
71 9
        if (isset($xmlRoot['db'])) {
72 4
            $class->setDatabase((string) $xmlRoot['db']);
73
        }
74 9
        if (isset($xmlRoot['collection'])) {
75 8
            if (isset($xmlRoot['capped-collection'])) {
76
                $config = array('name' => (string) $xmlRoot['collection']);
77
                $config['capped'] = (bool) $xmlRoot['capped-collection'];
78
                if (isset($xmlRoot['capped-collection-max'])) {
79
                    $config['max'] = (int) $xmlRoot['capped-collection-max'];
80
                }
81
                if (isset($xmlRoot['capped-collection-size'])) {
82
                    $config['size'] = (int) $xmlRoot['capped-collection-size'];
83
                }
84
                $class->setCollection($config);
85
            } else {
86 8
                $class->setCollection((string) $xmlRoot['collection']);
87
            }
88
        }
89 9
        if (isset($xmlRoot['writeConcern'])) {
90 1
            $class->setWriteConcern((string) $xmlRoot['writeConcern']);
91
        }
92 9
        if (isset($xmlRoot['inheritance-type'])) {
93
            $inheritanceType = (string) $xmlRoot['inheritance-type'];
94
            $class->setInheritanceType(constant(MappingClassMetadata::class . '::INHERITANCE_TYPE_' . $inheritanceType));
95
        }
96 9 View Code Duplication
        if (isset($xmlRoot['change-tracking-policy'])) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
97 2
            $class->setChangeTrackingPolicy(constant(MappingClassMetadata::class . '::CHANGETRACKING_' . strtoupper((string) $xmlRoot['change-tracking-policy'])));
98
        }
99 9
        if (isset($xmlRoot->{'discriminator-field'})) {
100 1
            $discrField = $xmlRoot->{'discriminator-field'};
101
            /* XSD only allows for "name", which is consistent with association
102
             * configurations, but fall back to "fieldName" for BC.
103
             */
104 1
            $class->setDiscriminatorField(
105 1
                isset($discrField['name']) ? (string) $discrField['name'] : (string) $discrField['fieldName']
106
            );
107
        }
108 9 View Code Duplication
        if (isset($xmlRoot->{'discriminator-map'})) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
109 1
            $map = array();
110 1
            foreach ($xmlRoot->{'discriminator-map'}->{'discriminator-mapping'} AS $discrMapElement) {
111 1
                $map[(string) $discrMapElement['value']] = (string) $discrMapElement['class'];
112
            }
113 1
            $class->setDiscriminatorMap($map);
114
        }
115 9
        if (isset($xmlRoot->{'default-discriminator-value'})) {
116 1
            $class->setDefaultDiscriminatorValue((string) $xmlRoot->{'default-discriminator-value'}['value']);
117
        }
118 9
        if (isset($xmlRoot->{'indexes'})) {
119 3
            foreach ($xmlRoot->{'indexes'}->{'index'} as $index) {
120 3
                $this->addIndex($class, $index);
0 ignored issues
show
Compatibility introduced by
$class of type object<Doctrine\Common\P...\Mapping\ClassMetadata> is not a sub-type of object<Doctrine\ODM\Mong...ping\ClassMetadataInfo>. It seems like you assume a concrete implementation of the interface Doctrine\Common\Persistence\Mapping\ClassMetadata to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
121
            }
122
        }
123 9
        if (isset($xmlRoot->{'shard-key'})) {
124 1
            $this->setShardKey($class, $xmlRoot->{'shard-key'}[0]);
0 ignored issues
show
Compatibility introduced by
$class of type object<Doctrine\Common\P...\Mapping\ClassMetadata> is not a sub-type of object<Doctrine\ODM\Mong...ping\ClassMetadataInfo>. It seems like you assume a concrete implementation of the interface Doctrine\Common\Persistence\Mapping\ClassMetadata to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
125
        }
126 9
        if (isset($xmlRoot['require-indexes'])) {
127 1
            $class->setRequireIndexes('true' === (string) $xmlRoot['require-indexes']);
128
        }
129 9
        if (isset($xmlRoot['slave-okay'])) {
130 1
            $class->setSlaveOkay('true' === (string) $xmlRoot['slave-okay']);
131
        }
132 9
        if (isset($xmlRoot['read-only']) && 'true' === (string) $xmlRoot['read-only']) {
133 1
            $class->markReadOnly();
134
        }
135 9
        if (isset($xmlRoot->{'read-preference'})) {
136 9
            $class->setReadPreference(...$this->transformReadPreference($xmlRoot->{'read-preference'}));
137 9
        }
138 9
        if (isset($xmlRoot->field)) {
139 9
            foreach ($xmlRoot->field as $field) {
140 9
                $mapping = array();
141 9
                $attributes = $field->attributes();
142 9
                foreach ($attributes as $key => $value) {
143 9
                    $mapping[$key] = (string) $value;
144
                    $booleanAttributes = array('id', 'reference', 'embed', 'unique', 'sparse', 'file', 'distance');
145
                    if (in_array($key, $booleanAttributes)) {
146 9
                        $mapping[$key] = ('true' === $mapping[$key]);
147 3
                    }
148 3
                }
149 1
                if (isset($mapping['id']) && $mapping['id'] === true && isset($mapping['strategy'])) {
150 1
                    $mapping['options'] = array();
151 1
                    if (isset($field->{'id-generator-option'})) {
152 1
                        foreach ($field->{'id-generator-option'} as $generatorOptions) {
153
                            $attributesGenerator = iterator_to_array($generatorOptions->attributes());
154
                            if (isset($attributesGenerator['name']) && isset($attributesGenerator['value'])) {
155
                                $mapping['options'][(string) $attributesGenerator['name']] = (string) $attributesGenerator['value'];
156
                            }
157
                        }
158 9
                    }
159
                }
160
161
                if (isset($attributes['not-saved'])) {
162 9
                    $mapping['notSaved'] = ('true' === (string) $attributes['not-saved']);
163
                }
164 9
165 1
                if (isset($attributes['also-load'])) {
166 9
                    $mapping['alsoLoadFields'] = explode(',', $attributes['also-load']);
167 1
                } elseif (isset($attributes['version'])) {
168
                    $mapping['version'] = ('true' === (string) $attributes['version']);
169
                } elseif (isset($attributes['lock'])) {
170 9
                    $mapping['lock'] = ('true' === (string) $attributes['lock']);
171
                }
172
173 9
                $this->addFieldMapping($class, $mapping);
0 ignored issues
show
Compatibility introduced by
$class of type object<Doctrine\Common\P...\Mapping\ClassMetadata> is not a sub-type of object<Doctrine\ODM\Mong...ping\ClassMetadataInfo>. It seems like you assume a concrete implementation of the interface Doctrine\Common\Persistence\Mapping\ClassMetadata to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
174 2
            }
175 2
        }
176
        if (isset($xmlRoot->{'embed-one'})) {
177
            foreach ($xmlRoot->{'embed-one'} as $embed) {
178 9
                $this->addEmbedMapping($class, $embed, 'one');
0 ignored issues
show
Compatibility introduced by
$class of type object<Doctrine\Common\P...\Mapping\ClassMetadata> is not a sub-type of object<Doctrine\ODM\Mong...ping\ClassMetadataInfo>. It seems like you assume a concrete implementation of the interface Doctrine\Common\Persistence\Mapping\ClassMetadata to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
179 2
            }
180 2
        }
181
        if (isset($xmlRoot->{'embed-many'})) {
182
            foreach ($xmlRoot->{'embed-many'} as $embed) {
183 9
                $this->addEmbedMapping($class, $embed, 'many');
0 ignored issues
show
Compatibility introduced by
$class of type object<Doctrine\Common\P...\Mapping\ClassMetadata> is not a sub-type of object<Doctrine\ODM\Mong...ping\ClassMetadataInfo>. It seems like you assume a concrete implementation of the interface Doctrine\Common\Persistence\Mapping\ClassMetadata to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
184 4
            }
185 4
        }
186
        if (isset($xmlRoot->{'reference-many'})) {
187
            foreach ($xmlRoot->{'reference-many'} as $reference) {
188 9
                $this->addReferenceMapping($class, $reference, 'many');
0 ignored issues
show
Compatibility introduced by
$class of type object<Doctrine\Common\P...\Mapping\ClassMetadata> is not a sub-type of object<Doctrine\ODM\Mong...ping\ClassMetadataInfo>. It seems like you assume a concrete implementation of the interface Doctrine\Common\Persistence\Mapping\ClassMetadata to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
189 3
            }
190 3
        }
191
        if (isset($xmlRoot->{'reference-one'})) {
192
            foreach ($xmlRoot->{'reference-one'} as $reference) {
193 9
                $this->addReferenceMapping($class, $reference, 'one');
0 ignored issues
show
Compatibility introduced by
$class of type object<Doctrine\Common\P...\Mapping\ClassMetadata> is not a sub-type of object<Doctrine\ODM\Mong...ping\ClassMetadataInfo>. It seems like you assume a concrete implementation of the interface Doctrine\Common\Persistence\Mapping\ClassMetadata to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
194 2
            }
195 2
        }
196
        if (isset($xmlRoot->{'lifecycle-callbacks'})) {
197
            foreach ($xmlRoot->{'lifecycle-callbacks'}->{'lifecycle-callback'} as $lifecycleCallback) {
198 9
                $class->addLifecycleCallback((string) $lifecycleCallback['method'], constant('Doctrine\ODM\MongoDB\Events::' . (string) $lifecycleCallback['type']));
199 1
            }
200 1
        }
201
        if (isset($xmlRoot->{'also-load-methods'})) {
202
            foreach ($xmlRoot->{'also-load-methods'}->{'also-load-method'} as $alsoLoadMethod) {
203 9
                $class->registerAlsoLoadMethod((string) $alsoLoadMethod['method'], (string) $alsoLoadMethod['field']);
204
            }
205 10
        }
206
    }
207 10
208 10
    private function addFieldMapping(ClassMetadataInfo $class, $mapping)
209 1
    {
210 1 View Code Duplication
        if (isset($mapping['name'])) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
211
            $name = $mapping['name'];
212
        } elseif (isset($mapping['fieldName'])) {
213
            $name = $mapping['fieldName'];
214
        } else {
215 10
            throw new \InvalidArgumentException('Cannot infer a MongoDB name from the mapping');
216
        }
217
218 10
        $class->mapField($mapping);
219 10
220
        // Index this field if either "index", "unique", or "sparse" are set
221 View Code Duplication
        if ( ! (isset($mapping['index']) || isset($mapping['unique']) || isset($mapping['sparse']))) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
222 2
            return;
223 2
        }
224
225 2
        $keys = array($name => isset($mapping['order']) ? $mapping['order'] : 'asc');
226
        $options = array();
227
228 2
        if (isset($mapping['background'])) {
229 1
            $options['background'] = (boolean) $mapping['background'];
230
        }
231 2
        if (isset($mapping['drop-dups'])) {
232
            $options['dropDups'] = (boolean) $mapping['drop-dups'];
233
        }
234 2
        if (isset($mapping['index-name'])) {
235
            $options['name'] = (string) $mapping['index-name'];
236
        }
237 2
        if (isset($mapping['safe'])) {
238 1
            $options['safe'] = (boolean) $mapping['safe'];
239
        }
240 2
        if (isset($mapping['sparse'])) {
241 2
            $options['sparse'] = (boolean) $mapping['sparse'];
242
        }
243
        if (isset($mapping['unique'])) {
244 2
            $options['unique'] = (boolean) $mapping['unique'];
245 2
        }
246
247 2
        $class->addIndex($keys, $options);
248
    }
249 2
250 2
    private function addEmbedMapping(ClassMetadataInfo $class, $embed, $type)
251
    {
252 2
        $attributes = $embed->attributes();
253
        $defaultStrategy = $type == 'one' ? ClassMetadataInfo::STORAGE_STRATEGY_SET : CollectionHelper::DEFAULT_STRATEGY;
254 2
        $mapping = array(
255 2
            'type'            => $type,
256 2
            'embedded'        => true,
257 2
            'targetDocument'  => isset($attributes['target-document']) ? (string) $attributes['target-document'] : null,
258
            'collectionClass' => isset($attributes['collection-class']) ? (string) $attributes['collection-class'] : null,
259 2
            'name'            => (string) $attributes['field'],
260 1
            'strategy'        => isset($attributes['strategy']) ? (string) $attributes['strategy'] : $defaultStrategy,
261
        );
262 2
        if (isset($attributes['fieldName'])) {
263 1
            $mapping['fieldName'] = (string) $attributes['fieldName'];
264 1
        }
265 View Code Duplication
        if (isset($embed->{'discriminator-field'})) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
266 2
            $attr = $embed->{'discriminator-field'};
267 1
            $mapping['discriminatorField'] = (string) $attr['name'];
268 1
        }
269 1 View Code Duplication
        if (isset($embed->{'discriminator-map'})) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
270
            foreach ($embed->{'discriminator-map'}->{'discriminator-mapping'} as $discriminatorMapping) {
271
                $attr = $discriminatorMapping->attributes();
272 2
                $mapping['discriminatorMap'][(string) $attr['value']] = (string) $attr['class'];
273 1
            }
274
        }
275 2
        if (isset($embed->{'default-discriminator-value'})) {
276
            $mapping['defaultDiscriminatorValue'] = (string) $embed->{'default-discriminator-value'}['value'];
277
        }
278 2
        if (isset($attributes['not-saved'])) {
279
            $mapping['notSaved'] = ('true' === (string) $attributes['not-saved']);
280
        }
281 2
        if (isset($attributes['also-load'])) {
282 2
            $mapping['alsoLoadFields'] = explode(',', $attributes['also-load']);
283
        }
284 5
        $this->addFieldMapping($class, $mapping);
285
    }
286 5
287 5
    private function addReferenceMapping(ClassMetadataInfo $class, $reference, $type)
288 2
    {
289
        $cascade = array_keys((array) $reference->cascade);
290 5
        if (1 === count($cascade)) {
291 5
            $cascade = current($cascade) ?: next($cascade);
292
        }
293 5
        $attributes = $reference->attributes();
294 5
        $defaultStrategy = $type == 'one' ? ClassMetadataInfo::STORAGE_STRATEGY_SET : CollectionHelper::DEFAULT_STRATEGY;
295 5
        $mapping = array(
296
            'cascade'          => $cascade,
297 5
            'orphanRemoval'    => isset($attributes['orphan-removal']) ? ('true' === (string) $attributes['orphan-removal']) : false,
298 5
            'type'             => $type,
299 5
            'reference'        => true,
300 5
            'simple'           => isset($attributes['simple']) ? ('true' === (string) $attributes['simple']) : false, // deprecated
301 5
            'storeAs'          => isset($attributes['store-as']) ? (string) $attributes['store-as'] : ClassMetadataInfo::REFERENCE_STORE_AS_DB_REF_WITH_DB,
302 5
            'targetDocument'   => isset($attributes['target-document']) ? (string) $attributes['target-document'] : null,
303 5
            'collectionClass'  => isset($attributes['collection-class']) ? (string) $attributes['collection-class'] : null,
304 5
            'name'             => (string) $attributes['field'],
305 5
            'strategy'         => isset($attributes['strategy']) ? (string) $attributes['strategy'] : $defaultStrategy,
306 5
            'inversedBy'       => isset($attributes['inversed-by']) ? (string) $attributes['inversed-by'] : null,
307 5
            'mappedBy'         => isset($attributes['mapped-by']) ? (string) $attributes['mapped-by'] : null,
308
            'repositoryMethod' => isset($attributes['repository-method']) ? (string) $attributes['repository-method'] : null,
309
            'limit'            => isset($attributes['limit']) ? (integer) $attributes['limit'] : null,
310
            'skip'             => isset($attributes['skip']) ? (integer) $attributes['skip'] : null,
311 5
            'prime'            => [],
312 1
        );
313
314 5
        if (isset($attributes['fieldName'])) {
315 1
            $mapping['fieldName'] = (string) $attributes['fieldName'];
316 1
        }
317 View Code Duplication
        if (isset($reference->{'discriminator-field'})) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
318 5
            $attr = $reference->{'discriminator-field'};
319 1
            $mapping['discriminatorField'] = (string) $attr['name'];
320 1
        }
321 1 View Code Duplication
        if (isset($reference->{'discriminator-map'})) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
322
            foreach ($reference->{'discriminator-map'}->{'discriminator-mapping'} as $discriminatorMapping) {
323
                $attr = $discriminatorMapping->attributes();
324 5
                $mapping['discriminatorMap'][(string) $attr['value']] = (string) $attr['class'];
325 1
            }
326
        }
327 5
        if (isset($reference->{'default-discriminator-value'})) {
328
            $mapping['defaultDiscriminatorValue'] = (string) $reference->{'default-discriminator-value'}['value'];
329
        }
330
        if (isset($reference->{'sort'})) {
331 View Code Duplication
            foreach ($reference->{'sort'}->{'sort'} as $sort) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
332
                $attr = $sort->attributes();
333 5
                $mapping['sort'][(string) $attr['field']] = isset($attr['order']) ? (string) $attr['order'] : 'asc';
334
            }
335
        }
336
        if (isset($reference->{'criteria'})) {
337 View Code Duplication
            foreach ($reference->{'criteria'}->{'criteria'} as $criteria) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
338
                $attr = $criteria->attributes();
339 5
                $mapping['criteria'][(string) $attr['field']] = (string) $attr['value'];
340
            }
341
        }
342 5
        if (isset($attributes['not-saved'])) {
343
            $mapping['notSaved'] = ('true' === (string) $attributes['not-saved']);
344
        }
345 5
        if (isset($attributes['also-load'])) {
346 1
            $mapping['alsoLoadFields'] = explode(',', $attributes['also-load']);
347 1
        }
348 1
        if (isset($reference->{'prime'})) {
349
            foreach ($reference->{'prime'}->{'field'} as $field) {
350
                $attr = $field->attributes();
351
                $mapping['prime'][] = (string) $attr['name'];
352 5
            }
353 5
        }
354
355 3
        $this->addFieldMapping($class, $mapping);
356
    }
357 3
358
    private function addIndex(ClassMetadataInfo $class, \SimpleXmlElement $xmlIndex)
359 3
    {
360
        $attributes = $xmlIndex->attributes();
361 3
362 3
        $keys = array();
363
364 View Code Duplication
        foreach ($xmlIndex->{'key'} as $key) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
365 3
            $keys[(string) $key['name']] = isset($key['order']) ? (string) $key['order'] : 'asc';
366
        }
367 3
368
        $options = array();
369
370 3
        if (isset($attributes['background'])) {
371
            $options['background'] = ('true' === (string) $attributes['background']);
372
        }
373 3
        if (isset($attributes['drop-dups'])) {
374
            $options['dropDups'] = ('true' === (string) $attributes['drop-dups']);
375
        }
376 3
        if (isset($attributes['name'])) {
377
            $options['name'] = (string) $attributes['name'];
378
        }
379 3
        if (isset($attributes['safe'])) {
380
            $options['safe'] = ('true' === (string) $attributes['safe']);
381
        }
382 3
        if (isset($attributes['sparse'])) {
383 1
            $options['sparse'] = ('true' === (string) $attributes['sparse']);
384
        }
385
        if (isset($attributes['unique'])) {
386 3
            $options['unique'] = ('true' === (string) $attributes['unique']);
387 1
        }
388 1
389 1 View Code Duplication
        if (isset($xmlIndex->{'option'})) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
390
            foreach ($xmlIndex->{'option'} as $option) {
391 1
                $value = (string) $option['value'];
392 1
                if ($value === 'true') {
393 1
                    $value = true;
394 1
                } elseif ($value === 'false') {
395
                    $value = false;
396 1
                } elseif (is_numeric($value)) {
397
                    $value = preg_match('/^[-]?\d+$/', $value) ? (integer) $value : (float) $value;
398
                }
399
                $options[(string) $option['name']] = $value;
400 3
            }
401 3
        }
402
403 3
        if (isset($xmlIndex->{'partial-filter-expression'})) {
404 2
            $partialFilterExpressionMapping = $xmlIndex->{'partial-filter-expression'};
405 2
406 1
            if (isset($partialFilterExpressionMapping->and)) {
407
                foreach ($partialFilterExpressionMapping->and as $and) {
408
                    if (! isset($and->field)) {
409 2
                        continue;
410 2
                    }
411
412
                    $partialFilterExpression = $this->getPartialFilterExpression($and->field);
413
                    if (! $partialFilterExpression) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $partialFilterExpression of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
414 2
                        continue;
415
                    }
416 2
417 2
                    $options['partialFilterExpression']['$and'][] = $partialFilterExpression;
418
                }
419 2
            } elseif (isset($partialFilterExpressionMapping->field)) {
420 2
                $partialFilterExpression = $this->getPartialFilterExpression($partialFilterExpressionMapping->field);
421
422
                if ($partialFilterExpression) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $partialFilterExpression of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
423
                    $options['partialFilterExpression'] = $partialFilterExpression;
424
                }
425 3
            }
426 3
        }
427
428 3
        $class->addIndex($keys, $options);
429
    }
430 3
431 3
    private function getPartialFilterExpression(\SimpleXMLElement $fields)
432 3
    {
433
        $partialFilterExpression = [];
434 3
        foreach ($fields as $field) {
435 1
            $operator = (string) $field['operator'] ?: null;
436
437
            if (! isset($field['value'])) {
438
                if (! isset($field->field)) {
439 1
                    continue;
440 1
                }
441
442
                $nestedExpression = $this->getPartialFilterExpression($field->field);
443
                if (! $nestedExpression) {
444 1
                    continue;
445
                }
446 3
447
                $value = $nestedExpression;
448
            } else {
449 3
                $value = trim((string) $field['value']);
450
            }
451 3
452
            if ($value === 'true') {
453 3
                $value = true;
454 2
            } elseif ($value === 'false') {
455
                $value = false;
456
            } elseif (is_numeric($value)) {
457 3
                $value = preg_match('/^[-]?\d+$/', $value) ? (integer) $value : (float) $value;
458
            }
459
460 3
            $partialFilterExpression[(string) $field['name']] = $operator ? ['$' . $operator => $value] : $value;
461
        }
462
463 2
        return $partialFilterExpression;
464
    }
465 2
466
    private function setShardKey(ClassMetadataInfo $class, \SimpleXmlElement $xmlShardkey)
467 2
    {
468 2
        $attributes = $xmlShardkey->attributes();
469 2
470 2
        $keys = array();
471
        $options = array();
472 View Code Duplication
        foreach ($xmlShardkey->{'key'} as $key) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
473 2
            $keys[(string) $key['name']] = isset($key['order']) ? (string)$key['order'] : 'asc';
474 1
        }
475
476
        if (isset($attributes['unique'])) {
477 2
            $options['unique'] = ('true' === (string) $attributes['unique']);
478 1
        }
479
480
        if (isset($attributes['numInitialChunks'])) {
481 2
            $options['numInitialChunks'] = (int) $attributes['numInitialChunks'];
482 1
        }
483 1
484 1 View Code Duplication
        if (isset($xmlShardkey->{'option'})) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
485 1
            foreach ($xmlShardkey->{'option'} as $option) {
486 1
                $value = (string) $option['value'];
487
                if ($value === 'true') {
488 1
                    $value = true;
489 1
                } elseif ($value === 'false') {
490
                    $value = false;
491 1
                } elseif (is_numeric($value)) {
492
                    $value = preg_match('/^[-]?\d+$/', $value) ? (integer) $value : (float) $value;
493
                }
494
                $options[(string) $option['name']] = $value;
495 2
            }
496 2
        }
497
498
        $class->setShardKey($keys, $options);
499
    }
500
501 9
    /**
502
     * Parses <read-preference> to a format suitable for the underlying driver.
503 9
     *
504 9
     * list($readPreference, $tags) = $this->transformReadPreference($xml->{read-preference});
505
     *
506 9
     * @param \SimpleXMLElement $xmlReadPreference
507 9
     * @return array
508 9
     */
509 9
    private function transformReadPreference($xmlReadPreference)
510 9
    {
511
        $tags = null;
512
        if (isset($xmlReadPreference->{'tag-set'})) {
513
            $tags = [];
514
            foreach ($xmlReadPreference->{'tag-set'} as $tagSet) {
515 9
                $set = [];
516
                foreach ($tagSet->tag as $tag) {
517
                    $set[(string) $tag['name']] = (string) $tag['value'];
518
                }
519
                $tags[] = $set;
520
            }
521
        }
522
        return [(string) $xmlReadPreference['mode'], $tags];
523
    }
524
525
    /**
526
     * {@inheritDoc}
527
     */
528
    protected function loadMappingFile($file)
529
    {
530
        $result = array();
531
        $xmlElement = simplexml_load_file($file);
532
533
        foreach (array('document', 'embedded-document', 'mapped-superclass', 'query-result-document') as $type) {
534
            if (isset($xmlElement->$type)) {
535
                foreach ($xmlElement->$type as $documentElement) {
536
                    $documentName = (string) $documentElement['name'];
537
                    $result[$documentName] = $documentElement;
538
                }
539
            }
540
        }
541
542
        return $result;
543
    }
544
}
545