This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
forked from fwk/Db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAccessor.php
295 lines (252 loc) · 7.36 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
<?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
*
* @package Fwk
* @subpackage Db
* @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.phpfwk.com
*/
namespace Fwk\Db;
/**
* 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)
*
*/
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
*/
public function __construct($object)
{
$this->object = $object;
}
/**
* Returns all relations objects from an entity
*
* @return array<ColumnName,Relation>
*/
public function getRelations()
{
$values = $this->toArray();
$final = array();
foreach ($values as $key => $value) {
if ($value instanceof Relation) {
$final[$key] = $value;
}
}
return $final;
}
public static function everythingAsArrayModifier($value)
{
if ($value instanceof Relation) {
/**
* @todo Boucle infinie!!! $value->hasChanged()
*/
$value = sprintf('relation:%s-%u', (/* $value->hasChanged() */ true ? (string) \microtime() : "static"), (string) $value->isFetched());
}
if (\is_array($value)) {
foreach ($value as $key => $val) {
if (is_object($val)) {
$accessor = self::factory($val);
$val = $accessor->toArray();
}
$value[$key] = $val;
}
}
return $value;
}
/**
* Try to retrieve a value from the object
*
* @param string $key
* @return mixed
*/
public function get($key)
{
$obj = $this->object;
$getter = "get". ucfirst($key);
if (\method_exists($obj, $getter) && \is_callable(array($obj, $getter))) {
return \call_user_func(array($obj, $getter));
} elseif (get_class($obj) == 'stdClass' && isset($obj->{$key})) {
return $obj->{$key};
} elseif ($obj instanceof \ArrayAccess && $obj->offsetExists($key)) {
return $obj->offsetGet($key);
} else {
$reflector = $this->getReflector();
try {
$prop = $reflector->getProperty($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
* @param mixed $value
* @return boolean
*/
public function set($key, $value)
{
$obj = $this->object;
$setter = "set". ucfirst($key);
if (\method_exists($obj, $setter) && \is_callable(array($obj, $setter))) {
\call_user_func(array($obj, $setter), $value);
return true;
}
if (get_class($obj) == '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
*
* @param array $values
*
* @return
*/
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;
}
public function toArray($modifier = null)
{
$reflector = $this->getReflector();
$final = array();
foreach ($reflector->getProperties() 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;
}
/**
* Produces a unique hash code based on values
*
*
*/
public function hashCode($algo = 'md5')
{
$array = $this->toArray();
\ksort($array);
$str = \get_class($this->object);
foreach ($array as $key => $value) {
if($value instanceof Relation)
continue;
if (is_object($value)) {
$tmp = self::factory($value);
$value = $tmp->toArray();
}
if (is_array($value)) {
$value = \json_encode($value);
}
$str .= $value;
}
return \hash($algo, $str);
}
/**
*
* @param mixed $object
*
* @throws \InvalidArgumentException
*
* @return Accessor
*/
public static function factory($object)
{
if (!is_object($object)) {
throw new \InvalidArgumentException("Argument is not an object");
}
return new static($object);
}
public function overrideVisibility($bool)
{
$this->force = (bool) $bool;
}
}