Completed
Push — v2 ( 58f91a...3b3087 )
by Joschi
05:06
created

PropertyList::toArray()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 2

Importance

Changes 0
Metric Value
cc 2
eloc 7
nc 2
nop 0
dl 0
loc 10
ccs 7
cts 7
cp 1
crap 2
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * micrometa
5
 *
6
 * @category Jkphl
7
 * @package Jkphl\Micrometa
8
 * @subpackage Jkphl\Micrometa\Domain\Item
9
 * @author Joschi Kuphal <[email protected]> / @jkphl
10
 * @copyright Copyright © 2017 Joschi Kuphal <[email protected]> / @jkphl
11
 * @license http://opensource.org/licenses/MIT The MIT License (MIT)
12
 */
13
14
/***********************************************************************************
15
 *  The MIT License (MIT)
16
 *
17
 *  Copyright © 2017 Joschi Kuphal <[email protected]> / @jkphl
18
 *
19
 *  Permission is hereby granted, free of charge, to any person obtaining a copy of
20
 *  this software and associated documentation files (the "Software"), to deal in
21
 *  the Software without restriction, including without limitation the rights to
22
 *  use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
23
 *  the Software, and to permit persons to whom the Software is furnished to do so,
24
 *  subject to the following conditions:
25
 *
26
 *  The above copyright notice and this permission notice shall be included in all
27
 *  copies or substantial portions of the Software.
28
 *
29
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
31
 *  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
32
 *  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
33
 *  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
34
 *  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35
 ***********************************************************************************/
36
37
namespace Jkphl\Micrometa\Domain\Item;
38
39
use Jkphl\Micrometa\Domain\Exceptions\ErrorException;
40
use Jkphl\Micrometa\Domain\Exceptions\OutOfBoundsException;
41
use Jkphl\Micrometa\Domain\Factory\IriFactory;
42
43
/**
44
 * Property list
45
 *
46
 * @package Jkphl\Micrometa
47
 * @subpackage Jkphl\RdfaLiteMicrodata\Domain
48
 */
49
class PropertyList implements PropertyListInterface
50
{
51
    /**
52
     * Property values
53
     *
54
     * @var array[]
55
     */
56
    protected $values = [];
57
    /**
58
     * Property names
59
     *
60
     * @var \stdClass[]
61
     */
62
    protected $names = [];
63
    /**
64
     * Name cursor mapping
65
     *
66
     * @var int[]
67
     */
68
    protected $nameToCursor = [];
69
    /**
70
     * Internal cursor
71
     *
72
     * @var int
73
     */
74
    protected $cursor = 0;
75
76
    /**
77
     * Unset a property
78
     *
79
     * @param \stdClass|string $iri IRI
80
     * @throws ErrorException
81
     */
82 1
    public function offsetUnset($iri)
83
    {
84 1
        throw new ErrorException(
85 1
            sprintf(ErrorException::CANNOT_UNSET_PROPERTY_STR, $iri),
86 1
            ErrorException::CANNOT_UNSET_PROPERTY,
87 1
            E_WARNING
88
        );
89
    }
90
91
    /**
92
     * Return the number of properties
93
     *
94
     * @return int Number of properties
95
     */
96 1
    public function count()
97
    {
98 1
        return count($this->values);
99
    }
100
101
    /**
102
     * Return the current property values
103
     *
104
     * @return array Property values
105
     */
106 7
    public function current()
107
    {
108 7
        return $this->values[$this->cursor];
109
    }
110
111
    /**
112
     * Move forward to next element
113
     */
114 7
    public function next()
115
    {
116 7
        ++$this->cursor;
117 7
    }
118
119
    /**
120
     * Return the current IRI key
121
     *
122
     * @return \stdClass IRI key
123
     */
124 7
    public function key()
125
    {
126 7
        return $this->names[$this->cursor];
1 ignored issue
show
Bug Best Practice introduced by
The return type of return $this->names[$this->cursor]; (stdClass) is incompatible with the return type declared by the interface Iterator::key of type integer|double|string|boolean.

If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.

Let’s take a look at an example:

class Author {
    private $name;

    public function __construct($name) {
        $this->name = $name;
    }

    public function getName() {
        return $this->name;
    }
}

abstract class Post {
    public function getAuthor() {
        return 'Johannes';
    }
}

class BlogPost extends Post {
    public function getAuthor() {
        return new Author('Johannes');
    }
}

class ForumPost extends Post { /* ... */ }

function my_function(Post $post) {
    echo strtoupper($post->getAuthor());
}

Our function my_function expects a Post object, and outputs the author of the post. The base class Post returns a simple string and outputting a simple string will work just fine. However, the child class BlogPost which is a sub-type of Post instead decided to return an object, and is therefore violating the SOLID principles. If a BlogPost were passed to my_function, PHP would not complain, but ultimately fail when executing the strtoupper call in its body.

Loading history...
127
    }
128
129
    /**
130
     * Checks if current position is valid
131
     *
132
     * @return boolean The current position is valid
133
     */
134 15
    public function valid()
135
    {
136 15
        return isset($this->values[$this->cursor]);
137
    }
138
139
    /**
140
     * Rewind the Iterator to the first element
141
     */
142 15
    public function rewind()
143
    {
144 15
        $this->cursor = 0;
145 15
    }
146
147
    /**
148
     * Add a property
149
     *
150
     * @param \stdClass $property Property
151
     */
152 19
    public function add($property)
153
    {
154 19
        $iri = IriFactory::create($property);
155 19
        $values = (is_object($property) && isset($property->values)) ? (array)$property->values : [];
156
157
        // Create the property values list if necessary
158 19
        if (!$this->offsetExists($iri)) {
159 19
            $this->offsetSet($iri, $values);
160 19
            return;
161
        }
162
163 2
        $propertyValues =& $this->offsetGet($iri);
164 2
        $propertyValues = array_merge($propertyValues, $values);
165 2
    }
166
167
    /**
168
     * Return whether a property exists
169
     *
170
     * @param \stdClass|string $iri IRI
171
     * @return boolean Property exists
172
     */
173 19
    public function offsetExists($iri)
174
    {
175 19
        $iri = IriFactory::create($iri);
176 19
        $iriStr = $iri->profile.$iri->name;
177 19
        return array_key_exists($iriStr, $this->nameToCursor);
178
    }
179
180
    /**
181
     * Set a particular property
182
     *
183
     * @param \stdClass|string $iri IRI
184
     * @param array $value Property values
185
     */
186 8
    public function offsetSet($iri, $value)
187
    {
188 8
        $iri = IriFactory::create($iri);
189 8
        $iriStr = $iri->profile.$iri->name;
190 8
        $cursor = array_key_exists($iriStr, $this->nameToCursor) ?
191 8
            $this->nameToCursor[$iriStr] : ($this->nameToCursor[$iriStr] = count($this->nameToCursor));
192 8
        $this->names[$cursor] = $iri;
193 8
        $this->values[$cursor] = $value;
194 8
    }
195
196
    /**
197
     * Get a particular property
198
     *
199
     * @param \stdClass|string $iri IRI
200
     * @return array Property values
201
     * @throws OutOfBoundsException If the property name is unknown
202
     */
203 10
    public function &offsetGet($iri)
204
    {
205 10
        $iri = IriFactory::create($iri);
206 10
        $cursor = ($iri->profile !== '') ?
207 10
            $this->getProfiledPropertyCursor($iri) : $this->getPropertyCursor($iri->name);
208 7
        return $this->values[$cursor];
209
    }
210
211
    /**
212
     * Get a particular property cursor by its profiled name
213
     *
214
     * @param \stdClass $iri IRI
215
     * @return int Property cursor
216
     * @throws OutOfBoundsException If the property name is unknown
217
     */
218 4
    protected function getProfiledPropertyCursor($iri)
219
    {
220 4
        $iriStr = $iri->profile.$iri->name;
221
222
        // If the property name is unknown
223 4
        if (!isset($this->nameToCursor[$iriStr])) {
224 3
            $this->handleUnknownName($iriStr);
225
        }
226
227 3
        return $this->nameToCursor[$iriStr];
228
    }
229
230
    /**
231
     * Handle an unknown property name
232
     *
233
     * @param string $name Property name
234
     * @throws OutOfBoundsException If the property name is unknown
235
     */
236 7
    protected function handleUnknownName($name)
237
    {
238 7
        throw new OutOfBoundsException(
239 7
            sprintf(OutOfBoundsException::UNKNOWN_PROPERTY_NAME_STR, $name),
240 7
            OutOfBoundsException::UNKNOWN_PROPERTY_NAME
241
        );
242
    }
243
244
    /**
245
     * Get a particular property cursor by its name
246
     *
247
     * @param string $name Property name
248
     * @return int Property cursor
249
     */
250 5
    protected function getPropertyCursor($name)
251
    {
252
        // Run through all property names
253 5
        foreach ($this->names as $cursor => $iri) {
254 3
            if ($name === $iri->name) {
255 3
                return $cursor;
256
            }
257
        }
258
259 2
        return $this->handleUnknownName($name);
260
    }
261
}
262