1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace mindplay\sql\model\components; |
4
|
|
|
|
5
|
|
|
use mindplay\sql\framework\Indexer; |
6
|
|
|
use mindplay\sql\framework\indexers\CallbackIndexer; |
7
|
|
|
use mindplay\sql\framework\indexers\ValueIndexer; |
8
|
|
|
use mindplay\sql\framework\Mapper; |
9
|
|
|
use mindplay\sql\framework\mappers\BatchMapper; |
10
|
|
|
use mindplay\sql\framework\mappers\RecordMapper; |
11
|
|
|
use mindplay\sql\model\schema\Column; |
12
|
|
|
use UnexpectedValueException; |
13
|
|
|
|
14
|
|
|
/** |
15
|
|
|
* This trait implements support for mapping and indexing of results. |
16
|
|
|
*/ |
17
|
|
|
trait Mappers |
18
|
|
|
{ |
19
|
|
|
/** |
20
|
|
|
* @var Mapper[] list of Mappers |
21
|
|
|
*/ |
22
|
|
|
protected $mappers = []; |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* @var Indexer|null |
26
|
|
|
*/ |
27
|
|
|
protected $indexer; |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* Append a Mapper instance to apply when each batch of a record-set is fetched. |
31
|
|
|
* |
32
|
|
|
* @param Mapper $mapper |
33
|
|
|
* |
34
|
|
|
* @see mapRecords() to map an anonymous function against every record |
35
|
|
|
* @see mapBatches() to map an anonymous function against each batch of records |
36
|
|
|
* |
37
|
|
|
* @return $this |
38
|
|
|
*/ |
39
|
|
|
public function map(Mapper $mapper) |
40
|
|
|
{ |
41
|
|
|
$this->mappers[] = $mapper; |
42
|
|
|
|
43
|
|
|
return $this; |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
/** |
47
|
|
|
* Map an anonymous function against every record. |
48
|
|
|
* |
49
|
|
|
* @param callable $mapper function (mixed $record) : mixed |
50
|
|
|
* |
51
|
|
|
* @see mapBatches() to map an anonymous function against each batch of records |
52
|
|
|
* |
53
|
|
|
* @return $this |
54
|
|
|
*/ |
55
|
1 |
|
public function mapRecords(callable $mapper) |
56
|
|
|
{ |
57
|
1 |
|
$this->mappers[] = new RecordMapper($mapper); |
58
|
|
|
|
59
|
1 |
|
return $this; |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* Map an anonymous function against each batch of records. |
64
|
|
|
* |
65
|
|
|
* @param callable $mapper function (array $record_set) : array |
66
|
|
|
* |
67
|
|
|
* @see mapRecords() to map an anonymous function against every record |
68
|
|
|
* |
69
|
|
|
* @return $this |
70
|
|
|
*/ |
71
|
|
|
public function mapBatches(callable $mapper) |
72
|
|
|
{ |
73
|
|
|
$this->mappers[] = new BatchMapper($mapper); |
74
|
|
|
|
75
|
|
|
return $this; |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
/** |
79
|
|
|
* Define an {@see Indexer}, callable, Column, or Column-name to use |
80
|
|
|
* to compute an index-value for the returned records. |
81
|
|
|
* |
82
|
|
|
* @param Indexer|Column|callable|string $indexer |
83
|
|
|
* |
84
|
|
|
* @return $this |
85
|
|
|
*/ |
86
|
1 |
|
public function index($indexer) |
87
|
|
|
{ |
88
|
1 |
|
if ($indexer instanceof Indexer) { |
89
|
1 |
|
$this->indexer = $indexer; |
90
|
|
|
} elseif ($indexer instanceof Column) { |
91
|
1 |
|
$this->indexer = new ValueIndexer($indexer->getAlias() ?: $indexer->getName()); |
92
|
1 |
|
} elseif (is_string($indexer)) { |
93
|
1 |
|
$this->indexer = new ValueIndexer($indexer); |
94
|
1 |
|
} elseif (is_callable($indexer, true)) { |
95
|
1 |
|
$this->indexer = new CallbackIndexer($indexer); |
96
|
|
|
} else { |
97
|
|
|
throw new UnexpectedValueException("unsupported indexer: " . print_r($indexer, true)); |
98
|
|
|
} |
99
|
|
|
|
100
|
1 |
|
return $this; |
101
|
|
|
} |
102
|
|
|
} |
103
|
|
|
|