forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemplateTypeTrait.php
More file actions
395 lines (335 loc) · 9.77 KB
/
TemplateTypeTrait.php
File metadata and controls
395 lines (335 loc) · 9.77 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
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
<?php declare(strict_types = 1);
namespace PHPStan\Type\Generic;
use PHPStan\PhpDocParser\Ast\Type\IdentifierTypeNode;
use PHPStan\PhpDocParser\Ast\Type\TypeNode;
use PHPStan\TrinaryLogic;
use PHPStan\Type\AcceptsResult;
use PHPStan\Type\ErrorType;
use PHPStan\Type\IntersectionType;
use PHPStan\Type\IsSuperTypeOfResult;
use PHPStan\Type\MixedType;
use PHPStan\Type\NeverType;
use PHPStan\Type\RecursionGuard;
use PHPStan\Type\SubtractableType;
use PHPStan\Type\Type;
use PHPStan\Type\TypeCombinator;
use PHPStan\Type\TypeUtils;
use PHPStan\Type\UnionType;
use PHPStan\Type\VerbosityLevel;
use function count;
use function sprintf;
/**
* @template TBound of Type
*/
trait TemplateTypeTrait
{
/** @var non-empty-string */
private string $name;
private TemplateTypeScope $scope;
private TemplateTypeStrategy $strategy;
private TemplateTypeVariance $variance;
/** @var TBound */
private Type $bound;
private ?Type $default;
/** @return non-empty-string */
public function getName(): string
{
return $this->name;
}
public function getScope(): TemplateTypeScope
{
return $this->scope;
}
/** @return TBound */
public function getBound(): Type
{
return $this->bound;
}
public function getDefault(): ?Type
{
return $this->default;
}
public function describe(VerbosityLevel $level): string
{
$basicDescription = function () use ($level): string {
// @phpstan-ignore booleanAnd.alwaysFalse, instanceof.alwaysFalse, booleanAnd.alwaysFalse, instanceof.alwaysFalse, instanceof.alwaysTrue
if ($this->bound instanceof MixedType && $this->bound->getSubtractedType() === null && !$this->bound instanceof TemplateMixedType) {
$boundDescription = '';
} else {
$boundDescription = sprintf(' of %s', $this->bound->describe($level));
}
$defaultDescription = '';
if ($this->default !== null) {
$recursionGuard = RecursionGuard::runOnObjectIdentity($this->default, fn () => $this->default->describe($level));
if (!$recursionGuard instanceof ErrorType) {
$defaultDescription .= sprintf(' = %s', $recursionGuard);
}
}
return sprintf(
'%s%s%s',
$this->name,
$boundDescription,
$defaultDescription,
);
};
return $level->handle(
$basicDescription,
$basicDescription,
fn (): string => sprintf('%s (%s, %s)', $basicDescription(), $this->scope->describe(), $this->isArgument() ? 'argument' : 'parameter'),
);
}
public function isArgument(): bool
{
return $this->strategy->isArgument();
}
public function toArgument(): TemplateType
{
return new self(
$this->scope,
new TemplateTypeArgumentStrategy(),
$this->variance,
$this->name,
TemplateTypeHelper::toArgument($this->getBound()),
$this->default !== null ? TemplateTypeHelper::toArgument($this->default) : null,
);
}
public function isValidVariance(Type $a, Type $b): IsSuperTypeOfResult
{
return $this->variance->isValidVariance($this, $a, $b);
}
public function subtract(Type $typeToRemove): Type
{
$removedBound = TypeCombinator::remove($this->getBound(), $typeToRemove);
return TemplateTypeFactory::create(
$this->getScope(),
$this->getName(),
$removedBound,
$this->getVariance(),
$this->getStrategy(),
$this->getDefault(),
);
}
public function getTypeWithoutSubtractedType(): Type
{
$bound = $this->getBound();
if (!$bound instanceof SubtractableType) { // @phpstan-ignore instanceof.alwaysTrue
return $this;
}
return TemplateTypeFactory::create(
$this->getScope(),
$this->getName(),
$bound->getTypeWithoutSubtractedType(),
$this->getVariance(),
$this->getStrategy(),
$this->getDefault(),
);
}
public function changeSubtractedType(?Type $subtractedType): Type
{
$bound = $this->getBound();
if (!$bound instanceof SubtractableType) { // @phpstan-ignore instanceof.alwaysTrue
return $this;
}
return TemplateTypeFactory::create(
$this->getScope(),
$this->getName(),
$bound->changeSubtractedType($subtractedType),
$this->getVariance(),
$this->getStrategy(),
$this->getDefault(),
);
}
public function getSubtractedType(): ?Type
{
$bound = $this->getBound();
if (!$bound instanceof SubtractableType) { // @phpstan-ignore instanceof.alwaysTrue
return null;
}
return $bound->getSubtractedType();
}
public function equals(Type $type): bool
{
return $type instanceof self
&& $type->scope->equals($this->scope)
&& $type->name === $this->name
&& $this->bound->equals($type->bound)
&& (
($this->default === null && $type->default === null)
|| ($this->default !== null && $type->default !== null && $this->default->equals($type->default))
);
}
public function isAcceptedBy(Type $acceptingType, bool $strictTypes): AcceptsResult
{
/** @var TBound $bound */
$bound = $this->getBound();
if (
!$acceptingType instanceof $bound
&& !$this instanceof $acceptingType
&& !$acceptingType instanceof TemplateType
&& ($acceptingType instanceof UnionType || $acceptingType instanceof IntersectionType)
) {
return $acceptingType->accepts($this, $strictTypes);
}
if (!$acceptingType instanceof TemplateType) {
return $acceptingType->accepts($this->getBound(), $strictTypes);
}
if ($this->getScope()->equals($acceptingType->getScope()) && $this->getName() === $acceptingType->getName()) {
return $acceptingType->getBound()->accepts($this->getBound(), $strictTypes);
}
return $acceptingType->getBound()->accepts($this->getBound(), $strictTypes)
->and(new AcceptsResult(TrinaryLogic::createMaybe(), []));
}
public function accepts(Type $type, bool $strictTypes): AcceptsResult
{
return $this->strategy->accepts($this, $type, $strictTypes);
}
public function isSuperTypeOf(Type $type): IsSuperTypeOfResult
{
if ($type instanceof TemplateType || $type instanceof IntersectionType) {
return $type->isSubTypeOf($this);
}
if ($type instanceof NeverType) {
return IsSuperTypeOfResult::createYes();
}
return $this->getBound()->isSuperTypeOf($type)
->and(IsSuperTypeOfResult::createMaybe());
}
public function isSubTypeOf(Type $type): IsSuperTypeOfResult
{
/** @var TBound $bound */
$bound = $this->getBound();
if (
!$type instanceof $bound
&& !$this instanceof $type
&& !$type instanceof TemplateType
&& ($type instanceof UnionType || $type instanceof IntersectionType)
) {
return $type->isSuperTypeOf($this);
}
if (!$type instanceof TemplateType) {
return $type->isSuperTypeOf($this->getBound());
}
if ($this->getScope()->equals($type->getScope()) && $this->getName() === $type->getName()) {
return $type->getBound()->isSuperTypeOf($this->getBound());
}
return $type->getBound()->isSuperTypeOf($this->getBound())
->and(IsSuperTypeOfResult::createMaybe());
}
public function toArrayKey(): Type
{
return $this;
}
public function toCoercedArgumentType(bool $strictTypes): Type
{
return $this;
}
public function inferTemplateTypes(Type $receivedType): TemplateTypeMap
{
if (
$receivedType instanceof TemplateType
&& $this->getBound()->isSuperTypeOf($receivedType->getBound())->yes()
) {
return new TemplateTypeMap([
$this->name => $receivedType,
]);
}
$map = $this->getBound()->inferTemplateTypes($receivedType);
$resolvedBound = TypeUtils::resolveLateResolvableTypes(TemplateTypeHelper::resolveTemplateTypes(
$this->getBound(),
$map,
TemplateTypeVarianceMap::createEmpty(),
TemplateTypeVariance::createStatic(),
));
if ($resolvedBound->isSuperTypeOf($receivedType)->yes()) {
return (new TemplateTypeMap([
$this->name => $receivedType,
]))->union($map);
}
if ($receivedType instanceof UnionType) {
$matchingTypes = [];
foreach ($receivedType->getTypes() as $innerType) {
if (!$resolvedBound->isSuperTypeOf($innerType)->yes()) {
continue;
}
$matchingTypes[] = $innerType;
}
if (count($matchingTypes) > 0) {
$filteredType = TypeCombinator::union(...$matchingTypes);
return (new TemplateTypeMap([
$this->name => $filteredType,
]))->union($map);
}
}
return $map;
}
public function getReferencedTemplateTypes(TemplateTypeVariance $positionVariance): array
{
return [new TemplateTypeReference($this, $positionVariance)];
}
public function getVariance(): TemplateTypeVariance
{
return $this->variance;
}
public function getStrategy(): TemplateTypeStrategy
{
return $this->strategy;
}
public function traverse(callable $cb): Type
{
$bound = $cb($this->getBound());
$default = $this->getDefault() !== null ? $cb($this->getDefault()) : null;
if ($this->getBound() === $bound && $this->getDefault() === $default) {
return $this;
}
return TemplateTypeFactory::create(
$this->getScope(),
$this->getName(),
$bound,
$this->getVariance(),
$this->getStrategy(),
$default,
);
}
public function traverseSimultaneously(Type $right, callable $cb): Type
{
if (!$right instanceof TemplateType) {
return $this;
}
$bound = $cb($this->getBound(), $right->getBound());
$default = $this->getDefault() !== null && $right->getDefault() !== null ? $cb($this->getDefault(), $right->getDefault()) : null;
if ($this->getBound() === $bound && $this->getDefault() === $default) {
return $this;
}
return TemplateTypeFactory::create(
$this->getScope(),
$this->getName(),
$bound,
$this->getVariance(),
$this->getStrategy(),
$default,
);
}
public function tryRemove(Type $typeToRemove): ?Type
{
$bound = TypeCombinator::remove($this->getBound(), $typeToRemove);
if ($this->getBound() === $bound) {
return null;
}
return TemplateTypeFactory::create(
$this->getScope(),
$this->getName(),
$bound,
$this->getVariance(),
$this->getStrategy(),
$this->getDefault(),
);
}
public function toPhpDocNode(): TypeNode
{
return new IdentifierTypeNode($this->name);
}
public function hasTemplateOrLateResolvableType(): bool
{
return true;
}
}