This repository has been archived by the owner on Feb 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PSortDescriptor.php
125 lines (90 loc) · 2.64 KB
/
PSortDescriptor.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
<?php
namespace Poundation;
class PSortDescriptor extends PObject
{
private $descriptor;
private $sortDirection;
private $publicProperty = null;
private $publicAccessor = null;
public function __construct($property, $sortDirection = SORT_ASC)
{
$this->descriptor = $property;
$this->sortDirection = $sortDirection;
}
public function getDescriptor()
{
return $this->descriptor;
}
public function getSortDirection()
{
return $this->sortDirection;
}
public function cmpObjectsByDescriptor($a, $b)
{
$property = $this->getDescriptor();
$canCompare = false;
$valueA = null;
$valueB = null;
if (is_null($this->publicProperty) && is_null($this->publicAccessor)) {
$reflectionClass = new \ReflectionClass($a);
if (property_exists($a, $this->descriptor) && property_exists($b, $this->descriptor)) {
$propertyClass = $reflectionClass->getProperty($property);
if ($propertyClass->isPublic()) {
$this->publicProperty = $property;
} else {
$this->publicProperty = false;
}
}
if (is_null($this->publicProperty) || $this->publicProperty === false) {
$method = 'get' . PString::createFromString($property)->uppercaseAtBeginning();
if (method_exists($a, $method)) {
$methodClass = $reflectionClass->getMethod($method);
if ($methodClass->isPublic()) {
$this->publicAccessor = $method;
} else {
$this->publicAccessor = false;
}
}
}
if ((is_null($this->publicProperty) && is_null($this->publicAccessor)) || ($this->publicProperty === false && $this->publicAccessor === false)) {
$method = $property;
if (method_exists($a, $method)) {
$methodClass = $reflectionClass->getMethod($method);
if ($methodClass->isPublic()) {
$this->publicAccessor = $method;
} else {
$this->publicAccessor = false;
}
}
}
}
if (is_string($this->publicProperty)) {
$canCompare = true;
$valueA = $a->$property;
$valueB = $b->$property;
} else if (is_string($this->publicAccessor)) {
$canCompare = true;
$valueA = call_user_func(array(
$a,
$this->publicAccessor
));
$valueB = call_user_func(array(
$b,
$this->publicAccessor
));
}
if ($canCompare) {
if ($valueA instanceof \DateTime && $valueB instanceof \DateTime) {
$valueA = $valueA->format('U');
$valueB = $valueB->format('U');
}
$compareValue = strcasecmp((string)$valueA, (string)$valueB);
if ($this->sortDirection == SORT_DESC) {
$compareValue *= -1;
}
return $compareValue;
} else {
throw new \Exception('Descriptor does not match a property.');
}
}
}