This repository has been archived by the owner on Jun 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Model.php
671 lines (564 loc) · 17.1 KB
/
Model.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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
<?php
/**
* Hoa
*
*
* @license
*
* New BSD License
*
* Copyright © 2007-2017, Hoa community. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Hoa nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* 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 HOLDERS AND 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.
*/
namespace Hoa\Model;
use Hoa\Consistency;
use Hoa\Praspel;
use Hoa\Xyl;
/**
* Class \Hoa\Model\Exception.
*
* Represent a model/document with attributes and relations.
*
* @copyright Copyright © 2007-2017 Hoa community
* @license New BSD License
*/
abstract class Model
implements Xyl\Data\Datable,
\ArrayAccess,
\IteratorAggregate,
\Countable
{
/**
* Whether we should check Praspel and validate*().
*
* @var bool
*/
private $__validation = true;
/**
* Bucket of all model attributes.
*
* @var array
*/
private $__attributes = [];
/**
* Current attribute in an array access.
*
* @var string
*/
private $__currentAccess = null;
/**
* Mapping layers.
*
* @var array
*/
protected static $__mappingLayer = ['_default' => null];
/**
* Initialize the model.
*
*/
final public function __construct()
{
$class = new \ReflectionClass($this);
$ucfirst = function (array $matches) {
return ucfirst($matches[1]);
};
$default = $class->getDefaultProperties();
foreach ($class->getProperties() as $property) {
$_name = $property->getName();
if ('_' !== $_name[0]
|| '_' === $_name[1]) {
continue;
}
$name = substr($_name, 1);
$comment = $property->getDocComment();
$comment = preg_replace('#^(\s*/\*\*\s*)#', '', $comment);
$comment = preg_replace('#(\s*\*/)#', '', $comment);
$comment = preg_replace('#^(\s*\*\s*)#m', '', $comment);
$relation = false !== strpos($comment, 'relation(');
$validator = 'validate' . ucfirst(preg_replace_callback(
'#_(.)#',
$ucfirst,
strtolower($name)
));
$this->__attributes[$name] = [
'comment' => $comment ?: false,
'name' => $name,
'_name' => $_name,
'validator' => method_exists($this, $validator)
? $validator
: null,
'contract' => null, // be lazy
'default' => $default[$_name],
'value' => &$this->$_name,
'relation' => $relation
];
if (true === $relation && empty($this->$_name)) {
$this->$_name = [];
}
}
$this->construct();
return;
}
/**
* User constructor.
*
* @return void
*/
protected function construct()
{
return;
}
/**
* Open many documents.
*
* @param array $constraints Contraints.
* @return void
*/
public function openMany(array $constraints = [])
{
return;
}
/**
* Open one document.
*
* @param array $constraints Contraints.
* @return void
*/
public function open(array $constraints = [])
{
return;
}
/**
* Save the document.
*
* @return void
*/
public function save()
{
return;
}
/**
* Map data to attributes.
*
* @param array $data Data.
* @param array $map Map: data name to attribute name.
* @return \Hoa\Model
*/
protected function map(array $data, array $map = null)
{
if (null !== $this->__currentAccess) {
return $this->mapRelation(
substr($this->__currentAccess, 1),
$data,
$map
);
}
if (empty($map)) {
$map = array_combine($handle = array_keys($data), $handle);
}
foreach ($data as $name => $value) {
if (array_key_exists($name, $map)) {
$name = $map[$name];
}
if ($value == $this->$name) {
continue;
}
$this->$name = $value;
}
return $this;
}
/**
* Map data to a relation attribute.
*
* @param array $name Relation name.
* @param array $data Data.
* @param array $map Map: data name to attribute name.
* @return \Hoa\Model
*/
protected function mapRelation($name, array $data, array $map = null)
{
if (!isset($this->$name)) {
throw new Exception(
'Cannot map relation %s because it does not exist.', 42, $name);
}
$attribute = &$this->getAttribute($name);
if (true !== $attribute['relation']) {
throw new Exception(
'Cannot map relation %s because it is not a relation.',
43, $name);
}
if (null === $attribute['contract']) {
$attribute['contract'] = Praspel::interpret($attribute['comment']);
}
$realdom = $attribute['contract']
->getClause('invariant')
->getVariable($name)
->getDomains()
->offsetGet(0);
$classname = $realdom['classname']->getConstantValue();
$_name = '_' . $name;
foreach ($data as $i => $d) {
$this->__currentAccess = $_name;
$class = new $classname();
$this->offsetSet($i, $class->map($d, $map));
}
$this->__currentAccess = null;
return $this;
}
/**
* Get constraints, i.e. all attributes values that defer from their default
* values. We could include the default values if the only argument is set
* to true.
*
* @param bool $defaultValues Whether we include default values.
* @return array
*/
protected function getConstraints($defaultValues = false)
{
$out = [];
foreach ($this->__attributes as $name => $attribute) {
if (false === $attribute['relation']
&& (true === $defaultValues
|| $attribute['default'] !== $attribute['value'])) {
$out[$name] = $attribute['value'];
}
}
return $out;
}
/**
* Check if an attribute exists and is set.
*
* @param string $name Attribute name.
* @return bool
*/
public function __isset($name)
{
return array_key_exists($name, $this->__attributes);
}
/**
* Set a value to an attribute.
*
* @param string $name Name.
* @param mixed $value Value.
* @return void
* @throws \Hoa\Model\Exception
*/
public function __set($name, $value)
{
if (!isset($this->$name)) {
return null;
}
$_name = '_' . $name;
$attribute = &$this->getAttribute($name);
if (true === $attribute['relation']) {
if (!is_array($value)) {
$value = [$value];
}
$this->__currentAccess = $_name;
foreach ($value as $k => $v) {
$this->offsetSet($k, $v);
}
$this->__currentAccess = null;
return;
}
if (is_numeric($value)) {
if ($value == $_value = (int) $value) {
$value = $_value;
} else {
$value = (float) $value;
}
}
if (false === $this->isValidationEnabled()) {
$old = $this->$_name;
$this->$_name = $value;
return $old;
}
if (false !== $attribute['comment']) {
if (null === $attribute['contract']) {
$attribute['contract'] = Praspel::interpret($attribute['comment']);
}
$verdict = $attribute['contract']
->getClause('invariant')
->getVariable($name)
->predicate($value);
if (false === $verdict) {
throw new Exception(
'Try to set the %s attribute with an invalid data.',
0, $name);
}
}
if ((null !== $validator = $attribute['validator'])
&& false === $this->{$validator}($value)) {
throw new Exception(
'Try to set the %s attribute with an invalid data.',
1, $name);
}
$old = $this->$_name;
$this->$_name = $value;
return;
}
/**
* Get an attribute value.
*
* @param string $name Name.
* @return mixed
*/
public function __get($name)
{
if (!isset($this->$name)) {
return null;
}
$attribute = &$this->getAttribute($name);
if (true === $attribute['relation']) {
$this->__currentAccess = '_' . $name;
return $this;
} elseif (null !== $this->__currentAccess) {
$this->__currentAccess = null;
}
return $this->{'_' . $name};
}
/**
* Check if an offset exists on an attribute.
*
* @param int $offset Offset.
* @return bool
*/
private function _offsetExists($offset)
{
if (null === $this->__currentAccess) {
return false;
}
return array_key_exists($offset, $this->{$this->__currentAccess});
}
/**
* Check if an offset exists on an attribute.
*
* @param int $offset Offset.
* @return bool
*/
public function offsetExists($offset)
{
$out = $this->_offsetExists($offset);
$this->__currentAccess = null;
return $out;
}
/**
* Set a value to a specific offset of the current attribute.
*
* @param int $offset Offset.
* @param mixed $value Value.
* @return bool
* @throws \Hoa\Model\Exception
*/
public function offsetSet($offset, $value)
{
if (false === $this->isValidationEnabled()) {
$this->{$this->__currentAccess}[$offset] = $value;
return null;
}
$oldOffset = false !== $this->_offsetExists($offset)
? $this->{$this->__currentAccess}[$offset]
: null;
$this->{$this->__currentAccess}[$offset] = $value;
$name = substr($this->__currentAccess, 1);
$attribute = &$this->getAttribute($name);
if (false !== $attribute['comment']) {
if (null === $attribute['contract']) {
$attribute['contract'] = Praspel::interpret($attribute['comment']);
}
$verdict = $attribute['contract']
->getClause('invariant')
->getVariable($name)
->predicate($this->{$this->__currentAccess});
} else {
$verdict = true;
}
if (false === $verdict) {
if (null !== $oldOffset) {
$this->{$this->__currentAccess}[$offset] = $oldOffset;
} else {
unset($this->{$this->__currentAccess}[$offset]);
}
throw new Exception(
'Try to set the %s attribute with an invalid data.', 2, $name);
}
if ((null !== $validator = $attribute['validator'])
&& false === $this->{$validator}($value)) {
if (null !== $oldOffset) {
$this->{$this->__currentAccess}[$offset] = $oldOffset;
}
throw new Exception(
'Try to set the %s attribute with an invalid data.',
3, $name);
}
return $this->__currentAccess = null;
}
/**
* Get a value from a specific offset of the current attribute.
*
* @param int $offset Offset.
* @return mixed
*/
public function offsetGet($offset)
{
if (false === $this->_offsetExists($offset)) {
return $this->__currentAccess = null;
}
$out = &$this->{$this->__currentAccess}[$offset];
$this->__currentAccess = null;
return $out;
}
/**
* Unset a specific offset of the current attribute.
*
* @param int $offset Offset.
* @return void
*/
public function offsetUnset($offset)
{
if (false !== $this->_offsetExists($offset)) {
unset($this->__currentAccess[$offset]);
}
$this->__currentAccess = null;
return;
}
/**
* Iterate a relation.
*
* @return \ArrayIterator
*/
public function getIterator()
{
if (null === $this->__currentAccess) {
return null;
}
return new \ArrayIterator($this->{$this->__currentAccess});
}
/**
* Count number of attributes.
*
* @return int
*/
public function count()
{
if (null === $this->__currentAccess) {
return count($this->__attributes);
}
$out = count($this->{$this->__currentAccess});
$this->__currentAccess = null;
return $out;
}
/**
* Get an attribute in the bucket.
*
* @param string $name Name.
* @return array
*/
private function &getAttribute($name)
{
if (!isset($this->$name)) {
$out = null;
return $out;
}
return $this->__attributes[$name];
}
/**
* Enable validation or not (i.e. execute Praspel and validate*() methods).
*
* @param bool $enable Enable or not.
* @return bool
*/
public function setEnableValidation($enable)
{
$old = $this->__validation;
$this->__validation = $enable;
return $old;
}
/**
* Check if validation is enabled or not.
*
* @return bool
*/
public function isValidationEnabled()
{
return $this->__validation;
}
/**
* Set a mapping layer.
*
* @param object $layer Layer (e.g. \Hoa\Database\Dal).
* @param string $name Name.
* @return object
*/
protected static function setMappingLayer($layer, $name = '_default')
{
$old = null;
if (array_key_exists($name, static::$__mappingLayer)) {
$old = static::$__mappingLayer[$name];
}
static::$__mappingLayer[$name] = $layer;
return $old;
}
/**
* Get a mapping layer.
*
* @param string $name Name.
* @return object
*/
public static function getMappingLayer($name = '_default')
{
if (!array_key_exists($name, static::$__mappingLayer)) {
return null;
}
return static::$__mappingLayer[$name];
}
/**
* Transform data as an array.
*
* @return array
*/
public function toArray()
{
if (null === $this->__currentAccess) {
$out = [];
foreach ($this->__attributes as $attribute) {
if (false === $attribute['relation']) {
$out[$attribute['name']] = $attribute['value'];
}
}
return $out;
}
$out = [];
foreach ($this->{$this->__currentAccess} as $i => $value) {
$out[$i] = $value->toArray();
}
$this->__currentAccess = null;
return $out;
}
}
/**
* Flex entity.
*/
Consistency::flexEntity('Hoa\Model\Model');