-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuery.php
41 lines (33 loc) · 1.21 KB
/
Query.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
<?php
declare(strict_types=1);
namespace Remorhaz\JSON\Patch\Query;
use Remorhaz\JSON\Data\Export\ValueDecoderInterface;
use Remorhaz\JSON\Data\Export\ValueEncoderInterface;
use Remorhaz\JSON\Data\Value\NodeValueInterface;
use Remorhaz\JSON\Patch\Operation\OperationInterface;
use Remorhaz\JSON\Patch\Result\Result;
use Remorhaz\JSON\Patch\Result\ResultInterface;
use Remorhaz\JSON\Pointer\Processor\ProcessorInterface as PointerProcessorInterface;
use function array_values;
final class Query implements QueryInterface
{
/**
* @var list<OperationInterface>
*/
private readonly array $operations;
public function __construct(
private readonly ValueEncoderInterface $encoder,
private readonly ValueDecoderInterface $decoder,
OperationInterface ...$operations,
) {
$this->operations = array_values($operations);
}
public function __invoke(NodeValueInterface $data, PointerProcessorInterface $pointerProcessor): ResultInterface
{
$output = $data;
foreach ($this->operations as $operation) {
$output = $operation->apply($output, $pointerProcessor);
}
return new Result($output, $this->encoder, $this->decoder);
}
}