-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTypeChecker.php
84 lines (69 loc) · 2.21 KB
/
TypeChecker.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
<?php
namespace Fervo\TypeChecker;
class TypeChecker
{
private static $parser;
private static $cache = [];
private static function getParser(): TypeParser
{
if (!self::$parser) {
self::$parser = new TypeParser();
}
return self::$parser;
}
private static function getTypeData(string $type): array
{
if (!isset(self::$cache[$type])) {
self::$cache[$type] = self::getParser()->parse($type);
}
return self::$cache[$type];
}
public static function checkType(string $type, $value): bool
{
$typeData = self::getTypeData($type);
return self::checkTypeData($typeData, $value);
}
public static function assertType(string $type, $value)
{
if (!self::checkType($type, $value)) {
throw new \InvalidArgumentException("Expected a value of type \"".$type."\"");
}
}
private static function checkTypeData(array $typeData, $value): bool
{
switch ($typeData['name']) {
case 'boolean':
$correctType = is_bool($value);
break;
case 'string':
case 'integer':
case 'double':
case 'array':
$checker = 'is_' . $typeData['name'];
$correctType = $checker($value);
break;
default:
$correctType = $value instanceof $typeData['name'];
break;
}
if (!$correctType) {
return false;
}
if (is_array($value) || $value instanceof \Traversable) {
if (count($typeData['params']) == 1) {
foreach ($value as $elem) {
if (!self::checkTypeData($typeData['params'][0], $elem)) {
return false;
}
}
} elseif (count($typeData['params']) == 2) {
foreach ($value as $key => $elem) {
if (!self::checkTypeData($typeData['params'][0], $key) || !self::checkTypeData($typeData['params'][1], $elem)) {
return false;
}
}
}
}
return true;
}
}