-
Notifications
You must be signed in to change notification settings - Fork 0
/
Accessor.php
355 lines (312 loc) · 9.42 KB
/
Accessor.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
<?php
/**
* Fwk
*
* Copyright (c) 2011-2012, Julien Ballestracci <[email protected]>.
* All rights reserved.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* 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.
*
* PHP Version 5.3
*
* @category Core
* @package Fwk\Core
* @author Julien Ballestracci <[email protected]>
* @copyright 2011-2012 Julien Ballestracci <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @link http://www.fwk.pw
*/
namespace Fwk\Core;
/**
* This class is a simple accessor for values of objects
*
* If getters/setters are found, we use them first.
* If not, we try to directly get/set the value (\ArrayAccess or \stdClass)
*
* @category Utilities
* @package Fwk\Core
* @author Julien Ballestracci <[email protected]>
* @license http://www.opensource.org/licenses/bsd-license.php BSD License
* @link http://www.phpfwk.com
*/
class Accessor
{
/**
* The object to access
*
* @var mixed
*/
protected $object;
/**
* Reflector for the object
*
* @var \ReflectionObject
*/
protected $reflector;
/**
* Override properties visibility ?
*
* @var boolean
*/
protected $force = false;
/**
* Constructor
*
* @param mixed $object The object we want to access
*
* @throws \InvalidArgumentException if $object is not an object
* @return void
*/
public function __construct($object)
{
if (!is_object($object)) {
throw new \InvalidArgumentException("Argument is not an object");
}
$this->object = $object;
}
/**
* Try to retrieve a value from the object
*
* @param string $key Propertie's name
*
* @return mixed Actual value if reached or false
*/
public function get($key)
{
$obj = $this->object;
$getter = "get". ucfirst($key);
if (\method_exists($obj, $getter) && \is_callable(array($obj, $getter))) {
return $obj->{$getter}();
} elseif ($obj instanceof \stdClass && isset($obj->{$key})) {
return $obj->{$key};
} elseif ($obj instanceof \ArrayAccess && $obj->offsetExists($key)) {
return $obj->offsetGet($key);
} else {
$this->getReflector();
try {
$props = $this->getClassProperties($this->reflector->getName());
if (!isset($props[$key])) {
return false;
}
$prop = $props[$key];
if (($prop->isPrivate() || $prop->isProtected()) && $this->force) {
$prop->setAccessible(true);
}
return $prop->getValue($obj);
} catch (\ReflectionException $e) {
}
}
return false;
}
/**
* Try to set a value
*
* @param string $key Propertie's name
* @param mixed $value Desired value
*
* @return boolean true if successful
*/
public function set($key, $value)
{
$obj = $this->object;
$setter = "set". ucfirst($key);
if (\method_exists($obj, $setter) && \is_callable(array($obj, $setter))) {
$obj->{$setter}($value);
return true;
}
if ($obj instanceof \stdClass) {
$obj->{$key} = $value;
return true;
}
if ($obj instanceof \ArrayAccess) {
$obj->offsetSet($key, $value);
return true;
}
$reflector = $this->getReflector();
try {
$prop = $reflector->getProperty($key);
if (($prop->isPrivate() || $prop->isProtected()) && $this->force) {
$prop->setAccessible(true);
}
if ($prop->isPublic() || $this->force === true) {
$prop->setValue($obj, $value);
return true;
}
} catch (\ReflectionException $e) {
}
return false;
}
/**
* Set multiple values at once
*
* @param array $values Array of keys->values to be set
*
* @return void
*/
public function setValues(array $values)
{
foreach ($values as $key => $value) {
$this->set($key, $value);
}
}
/**
* Gets a reflector for the object
*
* @return \ReflectionObject
*/
public function getReflector()
{
if (!isset($this->reflector)) {
$this->reflector = new \ReflectionObject($this->object);
}
return $this->reflector;
}
/**
* Make an array of keys->values (eventually filtered by $modifier) from
* object's properties.
*
* @param mixed $modifier Filtering callable
*
* @return array The resulting array
*/
public function toArray($modifier = null)
{
$this->getReflector();
$final = array();
$props = $this->getClassProperties($this->reflector->getName());
foreach ($props as $property) {
$value = $this->get($property->getName());
if (\is_callable($modifier)) {
$value = \call_user_func_array($modifier, array($value));
}
$final[$property->getName()] = $value;
}
return $final;
}
/**
* Recursive function to get an associative array of class properties by
* property name => ReflectionProperty() object including inherited ones
* from extended classes.
*
* @param string $className Class name
* @param integer $filter ReflectionProperty filter
*
* @author muratyaman at gmail dot com
* @return array
*/
protected function getClassProperties($className, $filter = null)
{
$ref = new \ReflectionClass($className);
if (null === $filter) {
$filter = \ReflectionProperty::IS_PUBLIC
| \ReflectionProperty::IS_PRIVATE
| \ReflectionProperty::IS_PROTECTED
| \ReflectionProperty::IS_STATIC;
}
$props = $ref->getProperties($filter);
$props_arr = array();
$parentClass = $ref->getParentClass();
foreach ($props as $prop) {
$f = $prop->getName();
$props_arr[$f] = $prop;
}
if ($parentClass) {
$props_arr = array_merge(
$this->getClassProperties($parentClass->getName(), $filter),
$props_arr
);
}
return $props_arr;
}
/**
* Returns class attributes
*
* @return array The resulting array
*/
public function getAttributes()
{
$reflector = $this->getReflector();
$final = array();
foreach ($reflector->getProperties() as $property) {
$final[] = $property->getName();
}
return $final;
}
/**
* Produces a unique hash code based on values
*
* @param string $algo Desired algorythm
*
* @return string
*/
public function hashCode($algo = 'md5')
{
$old = $this->force;
$this->overrideVisibility(true);
$array = $this->toArray(array($this, 'everythingAsArrayModifier'));
\ksort($array);
$str = \get_class($this->object);
foreach ($array as $value) {
$str .= (is_array($value) ? json_encode($value) : $value);
}
$this->overrideVisibility($old);
return \hash($algo, $str);
}
/**
* Static toArray() modifier to handle objects and relations.
* {@see Accessor::toArray()}
*
* @param mixed $value Actual value
*
* @return mixed Filtered value
*/
public function everythingAsArrayModifier($value)
{
if (is_object($value)) {
$accessor = self::factory($value);
$value = $accessor->toArray(array($this, __METHOD__));
}
if (is_array($value)) {
foreach ($value as $key => $val) {
$value[$key] = $val;
}
}
return $value;
}
/**
* Factory utility
*
* @param mixed $object The object we want to access
*
* @return Accessor
*/
public static function factory($object)
{
return new static($object);
}
/**
* Should we force properties visibility ?
*
* @param boolean $bool yes or no
*
* @return void
*/
public function overrideVisibility($bool)
{
$this->force = (bool) $bool;
}
}