-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathField.php
More file actions
267 lines (229 loc) · 6.2 KB
/
Field.php
File metadata and controls
267 lines (229 loc) · 6.2 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
<?php
/**
* @author enea dhack <contact@vaened.dev>
* @link https://vaened.dev DevFolio
*/
declare(strict_types=1);
namespace Vaened\DeltaOrchestrator;
use Closure;
use Vaened\DeltaOrchestrator\Bindings\Behavior;
use Vaened\DeltaOrchestrator\Bindings\Optional;
use Vaened\DeltaOrchestrator\Bindings\Required;
use Vaened\DeltaOrchestrator\Comparison\Comparator;
use Vaened\DeltaOrchestrator\Comparison\StrictComparator;
use Vaened\DeltaOrchestrator\Patch\PatchValue;
/**
* @template TValue
* @template TResolved
* @template TCurrent
*
* @implements Behavior<TValue, TResolved, TCurrent>
*/
final class Field implements Behavior
{
/**
* @var LazyValue<TCurrent>
*/
private LazyValue $current;
/**
* @var LazyValue<bool>
*/
private LazyValue $matches;
/**
* @var LazyValue<TResolved>
*/
private LazyValue $value;
/**
* @var Closure(TValue): TResolved
*/
private Closure $transformer;
/**
* @param Comparator|Closure(TResolved, TCurrent): bool|null $comparator
*/
private Comparator|Closure|null $comparator;
/**
* @param PatchValue<TValue> $patch
* @param TCurrent|Closure(): TCurrent $current
* @param Comparator|Closure(TResolved, TCurrent): bool|null $comparator
*/
public function __construct(
private readonly PatchValue $patch,
mixed $current,
Comparator|Closure|null $comparator = null,
)
{
$this->comparator = $comparator;
$this->transformer = static fn(mixed $value): mixed => $value;
$this->current = new LazyValue($this->resolveCurrent($current));
$this->value = new LazyValue($this->resolveValue());
$this->matches = new LazyValue($this->resolve($this->comparator));
}
/**
* @template TFromValue
* @template TFromCurrent
*
* @param PatchValue<TFromValue> $patch
* @param TFromCurrent|Closure(): TFromCurrent $current
* @param Comparator|Closure(TFromValue, TFromCurrent): bool|null $comparator
*
* @return Field<TFromValue, TFromValue, TFromCurrent>
*/
public static function from(
PatchValue $patch,
mixed $current,
Comparator|Closure|null $comparator = null,
): self
{
return new self(
patch : $patch,
current : $current,
comparator: $comparator,
);
}
/**
* @template TIn
* @template TOut
* @param Closure(TIn): TOut $transformer
* @return Closure(TIn|null): (TOut|null)
*/
public static function notNullable(Closure $transformer): Closure
{
return static function (mixed $value) use ($transformer): mixed {
if ($value === null) {
return null;
}
return $transformer($value);
};
}
/**
* @return TResolved
*/
public function value(): mixed
{
return $this->value->get();
}
/**
* @return TCurrent
*/
public function current(): mixed
{
return $this->current->get();
}
public function matches(): bool
{
return $this->matches->get();
}
public function satisfies(): bool
{
return $this->value() !== null;
}
public function changed(): bool
{
return !$this->matches();
}
/**
* @return Delta<TCurrent, TResolved>|null
*/
public function delta(): ?Delta
{
if (!$this->changed()) {
return null;
}
return new Delta(
previous: $this->current(),
next : $this->value(),
);
}
/**
* @return Field<TValue, TResolved, TCurrent>
*/
public function field(): Field
{
return $this;
}
/**
* @return Required<TValue, TResolved, TCurrent>
*/
public function required(): Required
{
return new Required($this);
}
/**
* @return Optional<TValue, TResolved, TCurrent>
*/
public function optional(): Optional
{
return new Optional($this);
}
public function isPresent(): bool
{
return $this->patch()->isPresent();
}
/**
* @param Comparator|Closure(TResolved, TCurrent): bool $comparator
*/
public function using(Comparator|Closure $comparator): self
{
$this->comparator = $comparator;
$this->matches = new LazyValue($this->resolve($this->comparator));
return $this;
}
/**
* @template TNextResolved
* @param Closure(TValue): TNextResolved $transformer
* @return Field<TValue, TNextResolved, TCurrent>
*/
public function transform(Closure $transformer): self
{
$this->transformer = $transformer;
$this->value = new LazyValue($this->resolveValue());
$this->matches = new LazyValue($this->resolve($this->comparator));
return $this;
}
/**
* @return PatchValue<TValue>
*/
private function patch(): PatchValue
{
return $this->patch;
}
private function resolve(Comparator|Closure|null $comparator): callable
{
return function () use ($comparator) {
if (!$this->isPresent()) {
return true;
}
$value = $this->value();
$current = $this->current();
$comparator ??= StrictComparator::create();
if ($comparator instanceof Closure) {
return ($comparator)($value, $current);
}
return $comparator->equals($value, $current);
};
}
/**
* @return Closure(): TResolved
*/
private function resolveValue(): Closure
{
return function () {
$value = $this->patch()->value();
if (!$this->isPresent()) {
return $value;
}
return ($this->transformer)($value);
};
}
/**
* @param TCurrent|Closure(): TCurrent $current
* @return Closure(): TCurrent
*/
private function resolveCurrent(mixed $current): Closure
{
if ($current instanceof Closure) {
return $current;
}
return static fn() => $current;
}
}