Completed
Pull Request — master (#1395)
by Andreas
08:36
created

ClassMetadata   A

Complexity

Total Complexity 19

Size/Duplication

Total Lines 164
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 19
c 2
b 0
f 0
lcom 2
cbo 2
dl 0
loc 164
ccs 53
cts 53
cp 1
rs 10

5 Methods

Rating   Name   Duplication   Size   Complexity  
A newInstance() 0 4 1
A __construct() 0 8 1
A mapField() 0 8 1
F __sleep() 0 74 12
A __wakeup() 0 16 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;
21
22
use Doctrine\Instantiator\Instantiator;
23
24
/**
25
 * A <tt>ClassMetadata</tt> instance holds all the object-document mapping metadata
26
 * of a document and it's references.
27
 *
28
 * Once populated, ClassMetadata instances are usually cached in a serialized form.
29
 *
30
 * <b>IMPORTANT NOTE:</b>
31
 *
32
 * The fields of this class are only public for 2 reasons:
33
 * 1) To allow fast READ access.
34
 * 2) To drastically reduce the size of a serialized instance (private/protected members
35
 *    get the whole class name, namespace inclusive, prepended to every property in
36
 *    the serialized representation).
37
 *
38
 * @since       1.0
39
 */
40
class ClassMetadata extends ClassMetadataInfo
41
{
42
    /**
43
     * The ReflectionProperty instances of the mapped class.
44
     *
45
     * @var \ReflectionProperty[]
46
     */
47
    public $reflFields = array();
48
49
    /**
50
     * @var \Doctrine\Instantiator\InstantiatorInterface|null
51
     */
52
    private $instantiator;
53
54
    /**
55
     * Initializes a new ClassMetadata instance that will hold the object-document mapping
56
     * metadata of the class with the given name.
57
     *
58
     * @param string $documentName The name of the document class the new instance is used for.
59
     */
60 846
    public function __construct($documentName)
61
    {
62 846
        parent::__construct($documentName);
63 846
        $this->reflClass = new \ReflectionClass($documentName);
64 846
        $this->namespace = $this->reflClass->getNamespaceName();
65 846
        $this->setCollection($this->reflClass->getShortName());
66 846
        $this->instantiator = new Instantiator();
67 846
    }
68
69
    /**
70
     * Map a field.
71
     *
72
     * @param array $mapping The mapping information.
73
     * @return void
74
     */
75 836
    public function mapField(array $mapping)
76
    {
77 836
        $mapping = parent::mapField($mapping);
78
79 835
        $reflProp = $this->reflClass->getProperty($mapping['fieldName']);
80 834
        $reflProp->setAccessible(true);
81 834
        $this->reflFields[$mapping['fieldName']] = $reflProp;
82 834
    }
83
84
    /**
85
     * Determines which fields get serialized.
86
     *
87
     * It is only serialized what is necessary for best unserialization performance.
88
     * That means any metadata properties that are not set or empty or simply have
89
     * their default value are NOT serialized.
90
     *
91
     * Parts that are also NOT serialized because they can not be properly unserialized:
92
     *      - reflClass (ReflectionClass)
93
     *      - reflFields (ReflectionProperty array)
94
     *
95
     * @return array The names of all the fields that should be serialized.
96
     */
97 3
    public function __sleep()
98
    {
99
        // This metadata is always serialized/cached.
100
        $serialized = array(
101 3
            'fieldMappings',
102
            'associationMappings',
103
            'identifier',
104
            'name',
105
            'namespace', // TODO: REMOVE
106
            'db',
107
            'collection',
108
            'rootDocumentName',
109
            'generatorType',
110
            'generatorOptions',
111
            'idGenerator',
112
            'indexes',
113
        );
114
115
        // The rest of the metadata is only serialized if necessary.
116 3
        if ($this->changeTrackingPolicy != self::CHANGETRACKING_DEFERRED_IMPLICIT) {
117
            $serialized[] = 'changeTrackingPolicy';
118
        }
119
120 3
        if ($this->customRepositoryClassName) {
121 1
            $serialized[] = 'customRepositoryClassName';
122
        }
123
124 3
        if ($this->inheritanceType != self::INHERITANCE_TYPE_NONE) {
125 1
            $serialized[] = 'inheritanceType';
126 1
            $serialized[] = 'discriminatorField';
127 1
            $serialized[] = 'discriminatorValue';
128 1
            $serialized[] = 'discriminatorMap';
129 1
            $serialized[] = 'defaultDiscriminatorValue';
130 1
            $serialized[] = 'parentClasses';
131 1
            $serialized[] = 'subClasses';
132
        }
133
134 3
        if ($this->isMappedSuperclass) {
135
            $serialized[] = 'isMappedSuperclass';
136
        }
137
138 3
        if ($this->isEmbeddedDocument) {
139
            $serialized[] = 'isEmbeddedDocument';
140
        }
141
142 3
        if ($this->isVersioned) {
143
            $serialized[] = 'isVersioned';
144
            $serialized[] = 'versionField';
145
        }
146
147 3
        if ($this->lifecycleCallbacks) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $this->lifecycleCallbacks 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...
148
            $serialized[] = 'lifecycleCallbacks';
149
        }
150
151 3
        if ($this->file) {
152 1
            $serialized[] = 'file';
153
        }
154
155 3
        if ($this->slaveOkay) {
156 1
            $serialized[] = 'slaveOkay';
157
        }
158
159 3
        if ($this->distance) {
160 1
            $serialized[] = 'distance';
161
        }
162
163 3
        if ($this->collectionCapped) {
164 1
            $serialized[] = 'collectionCapped';
165 1
            $serialized[] = 'collectionSize';
166 1
            $serialized[] = 'collectionMax';
167
        }
168
169 3
        return $serialized;
170
    }
171
172
    /**
173
     * Restores some state that can not be serialized/unserialized.
174
     *
175
     * @return void
176
     */
177 3
    public function __wakeup()
178
    {
179
        // Restore ReflectionClass and properties
180 3
        $this->reflClass = new \ReflectionClass($this->name);
181 3
        $this->instantiator = $this->instantiator ?: new Instantiator();
182
183 3
        foreach ($this->fieldMappings as $field => $mapping) {
184 3
            if (isset($mapping['declared'])) {
185 1
                $reflField = new \ReflectionProperty($mapping['declared'], $field);
186
            } else {
187 3
                $reflField = $this->reflClass->getProperty($field);
188
            }
189 3
            $reflField->setAccessible(true);
190 3
            $this->reflFields[$field] = $reflField;
191
        }
192 3
    }
193
194
    /**
195
     * Creates a new instance of the mapped class, without invoking the constructor.
196
     *
197
     * @return object
198
     */
199 379
    public function newInstance()
200
    {
201 379
        return $this->instantiator->instantiate($this->name);
202
    }
203
}
204