forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypeUtils.php
More file actions
255 lines (211 loc) · 5.49 KB
/
TypeUtils.php
File metadata and controls
255 lines (211 loc) · 5.49 KB
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
<?php declare(strict_types = 1);
namespace PHPStan\Type;
use PHPStan\Internal\CombinationsHelper;
use PHPStan\Type\Accessory\AccessoryType;
use PHPStan\Type\Accessory\HasPropertyType;
use PHPStan\Type\Constant\ConstantIntegerType;
use PHPStan\Type\Generic\TemplateBenevolentUnionType;
use PHPStan\Type\Generic\TemplateType;
use PHPStan\Type\Generic\TemplateUnionType;
use PHPStan\Type\Traverser\LateResolvableTraverser;
use function array_filter;
use function array_map;
use function array_merge;
use function iterator_to_array;
/**
* @api
*/
final class TypeUtils
{
/**
* @return list<ConstantIntegerType>
*/
public static function getConstantIntegers(Type $type): array
{
return self::map(ConstantIntegerType::class, $type, false);
}
/**
* @return list<IntegerRangeType>
*/
public static function getIntegerRanges(Type $type): array
{
return self::map(IntegerRangeType::class, $type, false);
}
/**
* @return list<mixed>
*/
private static function map(
string $typeClass,
Type $type,
bool $inspectIntersections,
bool $stopOnUnmatched = true,
): array
{
if ($type instanceof $typeClass) {
return [$type];
}
if ($type instanceof UnionType) {
$matchingTypes = [];
foreach ($type->getTypes() as $innerType) {
$matchingInner = self::map($typeClass, $innerType, $inspectIntersections, $stopOnUnmatched);
if ($matchingInner === []) {
if ($stopOnUnmatched) {
return [];
}
continue;
}
foreach ($matchingInner as $innerMapped) {
$matchingTypes[] = $innerMapped;
}
}
return $matchingTypes;
}
if ($inspectIntersections && $type instanceof IntersectionType) {
$matchingTypes = [];
foreach ($type->getTypes() as $innerType) {
if (!$innerType instanceof $typeClass) {
if ($stopOnUnmatched) {
return [];
}
continue;
}
$matchingTypes[] = $innerType;
}
return $matchingTypes;
}
return [];
}
public static function toBenevolentUnion(Type $type): Type
{
if ($type instanceof BenevolentUnionType) {
return $type;
}
if ($type instanceof UnionType) {
return new BenevolentUnionType($type->getTypes());
}
return $type;
}
/**
* @return ($type is UnionType ? UnionType : Type)
*/
public static function toStrictUnion(Type $type): Type
{
if ($type instanceof TemplateBenevolentUnionType) {
return new TemplateUnionType(
$type->getScope(),
$type->getStrategy(),
$type->getVariance(),
$type->getName(),
static::toStrictUnion($type->getBound()),
$type->getDefault(),
);
}
if ($type instanceof BenevolentUnionType) {
return new UnionType($type->getTypes());
}
return $type;
}
/**
* @return Type[]
*/
public static function flattenTypes(Type $type): array
{
if ($type instanceof UnionType) {
$types = [];
foreach ($type->getTypes() as $innerType) {
$flattenTypes = self::flattenTypes($innerType);
foreach ($flattenTypes as $flattenType) {
$types[] = $flattenType;
}
}
return $types;
}
$constantArrays = $type->getConstantArrays();
if ($constantArrays !== []) {
$newTypes = [];
foreach ($constantArrays as $constantArray) {
$newTypes[] = $constantArray->getAllArrays();
}
return array_filter(
array_map(
static fn (array $types): Type => TypeCombinator::intersect(...$types),
iterator_to_array(CombinationsHelper::combinations($newTypes)),
),
static fn (Type $type): bool => !$type instanceof NeverType,
);
}
return [$type];
}
public static function findThisType(Type $type): ?ThisType
{
if ($type instanceof ThisType) {
return $type;
}
if ($type instanceof UnionType || $type instanceof IntersectionType) {
foreach ($type->getTypes() as $innerType) {
$thisType = self::findThisType($innerType);
if ($thisType !== null) {
return $thisType;
}
}
}
return null;
}
public static function findCallableType(Type $type): ?Type
{
if ($type->isCallable()->yes()) {
return $type;
}
if ($type instanceof UnionType) {
foreach ($type->getTypes() as $innerType) {
$callableType = self::findCallableType($innerType);
if ($callableType !== null) {
return $callableType;
}
}
}
return null;
}
/**
* @return HasPropertyType[]
*/
public static function getHasPropertyTypes(Type $type): array
{
if ($type instanceof HasPropertyType) {
return [$type];
}
if ($type instanceof UnionType || $type instanceof IntersectionType) {
$hasPropertyTypes = [[]];
foreach ($type->getTypes() as $innerType) {
$hasPropertyTypes[] = self::getHasPropertyTypes($innerType);
}
return array_merge(...$hasPropertyTypes);
}
return [];
}
/**
* @return list<AccessoryType>
*/
public static function getAccessoryTypes(Type $type): array
{
return self::map(AccessoryType::class, $type, inspectIntersections: true, stopOnUnmatched: false);
}
public static function containsTemplateType(Type $type): bool
{
$containsTemplateType = false;
TypeTraverser::map($type, static function (Type $type, callable $traverse) use (&$containsTemplateType): Type {
if ($type instanceof TemplateType) {
$containsTemplateType = true;
}
return $containsTemplateType ? $type : $traverse($type);
});
return $containsTemplateType;
}
public static function resolveLateResolvableTypes(Type $type, bool $resolveUnresolvableTypes = true): Type
{
if (!$type->hasTemplateOrLateResolvableType()) {
return $type;
}
return TypeTraverser::map($type, new LateResolvableTraverser($resolveUnresolvableTypes));
}
}