-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathEagerLoader.php
875 lines (782 loc) · 30.5 KB
/
EagerLoader.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
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\ORM;
use Cake\Database\Statement\BufferedStatement;
use Cake\Database\Statement\CallbackStatement;
use Cake\Database\StatementInterface;
use Closure;
use InvalidArgumentException;
/**
* Exposes the methods for storing the associations that should be eager loaded
* for a table once a query is provided and delegates the job of creating the
* required joins and decorating the results so that those associations can be
* part of the result set.
*/
class EagerLoader
{
/**
* Nested array describing the association to be fetched
* and the options to apply for each of them, if any
*
* @var array
*/
protected $_containments = [];
/**
* Contains a nested array with the compiled containments tree
* This is a normalized version of the user provided containments array.
*
* @var \Cake\ORM\EagerLoadable[]|\Cake\ORM\EagerLoadable|null
*/
protected $_normalized;
/**
* List of options accepted by associations in contain()
* index by key for faster access
*
* @var array
*/
protected $_containOptions = [
'associations' => 1,
'foreignKey' => 1,
'conditions' => 1,
'fields' => 1,
'sort' => 1,
'matching' => 1,
'queryBuilder' => 1,
'finder' => 1,
'joinType' => 1,
'strategy' => 1,
'negateMatch' => 1,
];
/**
* A list of associations that should be loaded with a separate query
*
* @var \Cake\ORM\EagerLoadable[]
*/
protected $_loadExternal = [];
/**
* Contains a list of the association names that are to be eagerly loaded
*
* @var array
*/
protected $_aliasList = [];
/**
* Another EagerLoader instance that will be used for 'matching' associations.
*
* @var \Cake\ORM\EagerLoader|null
*/
protected $_matching;
/**
* A map of table aliases pointing to the association objects they represent
* for the query.
*
* @var array
*/
protected $_joinsMap = [];
/**
* Controls whether or not fields from associated tables
* will be eagerly loaded. When set to false, no fields will
* be loaded from associations.
*
* @var bool
*/
protected $_autoFields = true;
/**
* Sets the list of associations that should be eagerly loaded along for a
* specific table using when a query is provided. The list of associated tables
* passed to this method must have been previously set as associations using the
* Table API.
*
* Associations can be arbitrarily nested using dot notation or nested arrays,
* this allows this object to calculate joins or any additional queries that
* must be executed to bring the required associated data.
*
* Accepted options per passed association:
*
* - foreignKey: Used to set a different field to match both tables, if set to false
* no join conditions will be generated automatically
* - fields: An array with the fields that should be fetched from the association
* - queryBuilder: Equivalent to passing a callable instead of an options array
* - matching: Whether to inform the association class that it should filter the
* main query by the results fetched by that class.
* - joinType: For joinable associations, the SQL join type to use.
* - strategy: The loading strategy to use (join, select, subquery)
*
* @param array|string $associations list of table aliases to be queried.
* When this method is called multiple times it will merge previous list with
* the new one.
* @param callable|null $queryBuilder The query builder callable
* @return array Containments.
* @throws \InvalidArgumentException When using $queryBuilder with an array of $associations
*/
public function contain($associations, ?callable $queryBuilder = null): array
{
if ($queryBuilder) {
if (!is_string($associations)) {
throw new InvalidArgumentException(
sprintf('Cannot set containments. To use $queryBuilder, $associations must be a string')
);
}
$associations = [
$associations => [
'queryBuilder' => $queryBuilder,
],
];
}
$associations = (array)$associations;
$associations = $this->_reformatContain($associations, $this->_containments);
$this->_normalized = null;
$this->_loadExternal = [];
$this->_aliasList = [];
return $this->_containments = $associations;
}
/**
* Gets the list of associations that should be eagerly loaded along for a
* specific table using when a query is provided. The list of associated tables
* passed to this method must have been previously set as associations using the
* Table API.
*
* @return array Containments.
*/
public function getContain(): array
{
return $this->_containments;
}
/**
* Remove any existing non-matching based containments.
*
* This will reset/clear out any contained associations that were not
* added via matching().
*
* @return void
*/
public function clearContain(): void
{
$this->_containments = [];
$this->_normalized = null;
$this->_loadExternal = [];
$this->_aliasList = [];
}
/**
* Sets whether or not contained associations will load fields automatically.
*
* @param bool $enable The value to set.
* @return $this
*/
public function enableAutoFields(bool $enable = true)
{
$this->_autoFields = $enable;
return $this;
}
/**
* Disable auto loading fields of contained associations.
*
* @return $this
*/
public function disableAutoFields()
{
$this->_autoFields = false;
return $this;
}
/**
* Gets whether or not contained associations will load fields automatically.
*
* @return bool The current value.
*/
public function isAutoFieldsEnabled(): bool
{
return $this->_autoFields;
}
/**
* Adds a new association to the list that will be used to filter the results of
* any given query based on the results of finding records for that association.
* You can pass a dot separated path of associations to this method as its first
* parameter, this will translate in setting all those associations with the
* `matching` option.
*
* ### Options
*
* - 'joinType': INNER, OUTER, ...
* - 'fields': Fields to contain
*
* @param string $assoc A single association or a dot separated path of associations.
* @param callable|null $builder the callback function to be used for setting extra
* options to the filtering query
* @param array $options Extra options for the association matching.
* @return $this
*/
public function setMatching(string $assoc, ?callable $builder = null, array $options = [])
{
if ($this->_matching === null) {
$this->_matching = new static();
}
if (!isset($options['joinType'])) {
$options['joinType'] = Query::JOIN_TYPE_INNER;
}
$assocs = explode('.', $assoc);
$last = array_pop($assocs);
$containments = [];
$pointer = &$containments;
$opts = ['matching' => true] + $options;
/** @psalm-suppress InvalidArrayOffset */
unset($opts['negateMatch']);
foreach ($assocs as $name) {
$pointer[$name] = $opts;
$pointer = &$pointer[$name];
}
$pointer[$last] = ['queryBuilder' => $builder, 'matching' => true] + $options;
$this->_matching->contain($containments);
return $this;
}
/**
* Returns the current tree of associations to be matched.
*
* @return array The resulting containments array
*/
public function getMatching(): array
{
if ($this->_matching === null) {
$this->_matching = new static();
}
return $this->_matching->getContain();
}
/**
* Returns the fully normalized array of associations that should be eagerly
* loaded for a table. The normalized array will restructure the original array
* by sorting all associations under one key and special options under another.
*
* Each of the levels of the associations tree will converted to a Cake\ORM\EagerLoadable
* object, that contains all the information required for the association objects
* to load the information from the database.
*
* Additionally it will set an 'instance' key per association containing the
* association instance from the corresponding source table
*
* @param \Cake\ORM\Table $repository The table containing the association that
* will be normalized
* @return array
*/
public function normalized(Table $repository): array
{
if ($this->_normalized !== null || empty($this->_containments)) {
return (array)$this->_normalized;
}
$contain = [];
foreach ($this->_containments as $alias => $options) {
if (!empty($options['instance'])) {
$contain = $this->_containments;
break;
}
$contain[$alias] = $this->_normalizeContain(
$repository,
$alias,
$options,
['root' => null]
);
}
return $this->_normalized = $contain;
}
/**
* Formats the containments array so that associations are always set as keys
* in the array. This function merges the original associations array with
* the new associations provided
*
* @param array $associations user provided containments array
* @param array $original The original containments array to merge
* with the new one
* @return array
*/
protected function _reformatContain(array $associations, array $original): array
{
$result = $original;
foreach ($associations as $table => $options) {
$pointer = &$result;
if (is_int($table)) {
$table = $options;
$options = [];
}
if ($options instanceof EagerLoadable) {
$options = $options->asContainArray();
$table = key($options);
$options = current($options);
}
if (isset($this->_containOptions[$table])) {
$pointer[$table] = $options;
continue;
}
if (strpos($table, '.')) {
$path = explode('.', $table);
$table = array_pop($path);
foreach ($path as $t) {
$pointer += [$t => []];
$pointer = &$pointer[$t];
}
}
if (is_array($options)) {
$options = isset($options['config']) ?
$options['config'] + $options['associations'] :
$options;
$options = $this->_reformatContain(
$options,
$pointer[$table] ?? []
);
}
if ($options instanceof Closure) {
$options = ['queryBuilder' => $options];
}
$pointer += [$table => []];
if (isset($options['queryBuilder'], $pointer[$table]['queryBuilder'])) {
$first = $pointer[$table]['queryBuilder'];
$second = $options['queryBuilder'];
$options['queryBuilder'] = function ($query) use ($first, $second) {
return $second($first($query));
};
}
if (!is_array($options)) {
/** @psalm-suppress InvalidArrayOffset */
$options = [$options => []];
}
$pointer[$table] = $options + $pointer[$table];
}
return $result;
}
/**
* Modifies the passed query to apply joins or any other transformation required
* in order to eager load the associations described in the `contain` array.
* This method will not modify the query for loading external associations, i.e.
* those that cannot be loaded without executing a separate query.
*
* @param \Cake\ORM\Query $query The query to be modified
* @param \Cake\ORM\Table $repository The repository containing the associations
* @param bool $includeFields whether to append all fields from the associations
* to the passed query. This can be overridden according to the settings defined
* per association in the containments array
* @return void
*/
public function attachAssociations(Query $query, Table $repository, bool $includeFields): void
{
if (empty($this->_containments) && $this->_matching === null) {
return;
}
$attachable = $this->attachableAssociations($repository);
$processed = [];
do {
foreach ($attachable as $alias => $loadable) {
$config = $loadable->getConfig() + [
'aliasPath' => $loadable->aliasPath(),
'propertyPath' => $loadable->propertyPath(),
'includeFields' => $includeFields,
];
$loadable->instance()->attachTo($query, $config);
$processed[$alias] = true;
}
$newAttachable = $this->attachableAssociations($repository);
$attachable = array_diff_key($newAttachable, $processed);
} while (!empty($attachable));
}
/**
* Returns an array with the associations that can be fetched using a single query,
* the array keys are the association aliases and the values will contain an array
* with Cake\ORM\EagerLoadable objects.
*
* @param \Cake\ORM\Table $repository The table containing the associations to be
* attached
* @return \Cake\ORM\EagerLoadable[]
*/
public function attachableAssociations(Table $repository): array
{
$contain = $this->normalized($repository);
$matching = $this->_matching ? $this->_matching->normalized($repository) : [];
$this->_fixStrategies();
$this->_loadExternal = [];
return $this->_resolveJoins($contain, $matching);
}
/**
* Returns an array with the associations that need to be fetched using a
* separate query, each array value will contain a Cake\ORM\EagerLoadable object.
*
* @param \Cake\ORM\Table $repository The table containing the associations
* to be loaded
* @return \Cake\ORM\EagerLoadable[]
*/
public function externalAssociations(Table $repository): array
{
if ($this->_loadExternal) {
return $this->_loadExternal;
}
$this->attachableAssociations($repository);
return $this->_loadExternal;
}
/**
* Auxiliary function responsible for fully normalizing deep associations defined
* using `contain()`
*
* @param \Cake\ORM\Table $parent owning side of the association
* @param string $alias name of the association to be loaded
* @param array $options list of extra options to use for this association
* @param array $paths An array with two values, the first one is a list of dot
* separated strings representing associations that lead to this `$alias` in the
* chain of associations to be loaded. The second value is the path to follow in
* entities' properties to fetch a record of the corresponding association.
* @return \Cake\ORM\EagerLoadable Object with normalized associations
* @throws \InvalidArgumentException When containments refer to associations that do not exist.
*/
protected function _normalizeContain(Table $parent, string $alias, array $options, array $paths): EagerLoadable
{
$defaults = $this->_containOptions;
$instance = $parent->getAssociation($alias);
$paths += ['aliasPath' => '', 'propertyPath' => '', 'root' => $alias];
$paths['aliasPath'] .= '.' . $alias;
if (
isset($options['matching']) &&
$options['matching'] === true
) {
$paths['propertyPath'] = '_matchingData.' . $alias;
} else {
$paths['propertyPath'] .= '.' . $instance->getProperty();
}
$table = $instance->getTarget();
$extra = array_diff_key($options, $defaults);
$config = [
'associations' => [],
'instance' => $instance,
'config' => array_diff_key($options, $extra),
'aliasPath' => trim($paths['aliasPath'], '.'),
'propertyPath' => trim($paths['propertyPath'], '.'),
'targetProperty' => $instance->getProperty(),
];
$config['canBeJoined'] = $instance->canBeJoined($config['config']);
$eagerLoadable = new EagerLoadable($alias, $config);
if ($config['canBeJoined']) {
$this->_aliasList[$paths['root']][$alias][] = $eagerLoadable;
} else {
$paths['root'] = $config['aliasPath'];
}
foreach ($extra as $t => $assoc) {
$eagerLoadable->addAssociation(
$t,
$this->_normalizeContain($table, $t, $assoc, $paths)
);
}
return $eagerLoadable;
}
/**
* Iterates over the joinable aliases list and corrects the fetching strategies
* in order to avoid aliases collision in the generated queries.
*
* This function operates on the array references that were generated by the
* _normalizeContain() function.
*
* @return void
*/
protected function _fixStrategies(): void
{
foreach ($this->_aliasList as $aliases) {
foreach ($aliases as $configs) {
if (count($configs) < 2) {
continue;
}
/** @var \Cake\ORM\EagerLoadable $loadable */
foreach ($configs as $loadable) {
if (strpos($loadable->aliasPath(), '.')) {
$this->_correctStrategy($loadable);
}
}
}
}
}
/**
* Changes the association fetching strategy if required because of duplicate
* under the same direct associations chain
*
* @param \Cake\ORM\EagerLoadable $loadable The association config
* @return void
*/
protected function _correctStrategy(EagerLoadable $loadable): void
{
$config = $loadable->getConfig();
$currentStrategy = $config['strategy'] ??
'join';
if (!$loadable->canBeJoined() || $currentStrategy !== 'join') {
return;
}
$config['strategy'] = Association::STRATEGY_SELECT;
$loadable->setConfig($config);
$loadable->setCanBeJoined(false);
}
/**
* Helper function used to compile a list of all associations that can be
* joined in the query.
*
* @param \Cake\ORM\EagerLoadable[] $associations list of associations from which to obtain joins.
* @param \Cake\ORM\EagerLoadable[] $matching list of associations that should be forcibly joined.
* @return \Cake\ORM\EagerLoadable[]
*/
protected function _resolveJoins(array $associations, array $matching = []): array
{
$result = [];
foreach ($matching as $table => $loadable) {
$result[$table] = $loadable;
$result += $this->_resolveJoins($loadable->associations(), []);
}
foreach ($associations as $table => $loadable) {
$inMatching = isset($matching[$table]);
if (!$inMatching && $loadable->canBeJoined()) {
$result[$table] = $loadable;
$result += $this->_resolveJoins($loadable->associations(), []);
continue;
}
if ($inMatching) {
$this->_correctStrategy($loadable);
}
$loadable->setCanBeJoined(false);
$this->_loadExternal[] = $loadable;
}
return $result;
}
/**
* Decorates the passed statement object in order to inject data from associations
* that cannot be joined directly.
*
* @param \Cake\ORM\Query $query The query for which to eager load external
* associations
* @param \Cake\Database\StatementInterface $statement The statement created after executing the $query
* @return \Cake\Database\StatementInterface statement modified statement with extra loaders
* @throws \RuntimeException
*/
public function loadExternal(Query $query, StatementInterface $statement): StatementInterface
{
$table = $query->getRepository();
$external = $this->externalAssociations($table);
if (empty($external)) {
return $statement;
}
$driver = $query->getConnection()->getDriver();
[$collected, $statement] = $this->_collectKeys($external, $query, $statement);
// No records found, skip trying to attach associations.
if (empty($collected) && $statement->count() === 0) {
return $statement;
}
foreach ($external as $meta) {
$contain = $meta->associations();
$instance = $meta->instance();
$config = $meta->getConfig();
$alias = $instance->getSource()->getAlias();
$path = $meta->aliasPath();
$requiresKeys = $instance->requiresKeys($config);
if ($requiresKeys) {
// If the path or alias has no key the required association load will fail.
// Nested paths are not subject to this condition because they could
// be attached to joined associations.
if (
strpos($path, '.') === false &&
(!array_key_exists($path, $collected) || !array_key_exists($alias, $collected[$path]))
) {
$message = "Unable to load `{$path}` association. Ensure foreign key in `{$alias}` is selected.";
throw new InvalidArgumentException($message);
}
// If the association foreign keys are missing skip loading
// as the association could be optional.
if (empty($collected[$path][$alias])) {
continue;
}
}
$keys = $collected[$path][$alias] ?? null;
$f = $instance->eagerLoader(
$config + [
'query' => $query,
'contain' => $contain,
'keys' => $keys,
'nestKey' => $meta->aliasPath(),
]
);
$statement = new CallbackStatement($statement, $driver, $f);
}
return $statement;
}
/**
* Returns an array having as keys a dotted path of associations that participate
* in this eager loader. The values of the array will contain the following keys
*
* - alias: The association alias
* - instance: The association instance
* - canBeJoined: Whether or not the association will be loaded using a JOIN
* - entityClass: The entity that should be used for hydrating the results
* - nestKey: A dotted path that can be used to correctly insert the data into the results.
* - matching: Whether or not it is an association loaded through `matching()`.
*
* @param \Cake\ORM\Table $table The table containing the association that
* will be normalized
* @return array
*/
public function associationsMap(Table $table): array
{
$map = [];
if (!$this->getMatching() && !$this->getContain() && empty($this->_joinsMap)) {
return $map;
}
/** @psalm-suppress PossiblyNullReference */
$map = $this->_buildAssociationsMap($map, $this->_matching->normalized($table), true);
$map = $this->_buildAssociationsMap($map, $this->normalized($table));
$map = $this->_buildAssociationsMap($map, $this->_joinsMap);
return $map;
}
/**
* An internal method to build a map which is used for the return value of the
* associationsMap() method.
*
* @param array $map An initial array for the map.
* @param \Cake\ORM\EagerLoadable[] $level An array of EagerLoadable instances.
* @param bool $matching Whether or not it is an association loaded through `matching()`.
* @return array
*/
protected function _buildAssociationsMap(array $map, array $level, bool $matching = false): array
{
foreach ($level as $assoc => $meta) {
$canBeJoined = $meta->canBeJoined();
$instance = $meta->instance();
$associations = $meta->associations();
$forMatching = $meta->forMatching();
$map[] = [
'alias' => $assoc,
'instance' => $instance,
'canBeJoined' => $canBeJoined,
'entityClass' => $instance->getTarget()->getEntityClass(),
'nestKey' => $canBeJoined ? $assoc : $meta->aliasPath(),
'matching' => $forMatching ?? $matching,
'targetProperty' => $meta->targetProperty(),
];
if ($canBeJoined && $associations) {
$map = $this->_buildAssociationsMap($map, $associations, $matching);
}
}
return $map;
}
/**
* Registers a table alias, typically loaded as a join in a query, as belonging to
* an association. This helps hydrators know what to do with the columns coming
* from such joined table.
*
* @param string $alias The table alias as it appears in the query.
* @param \Cake\ORM\Association $assoc The association object the alias represents;
* will be normalized
* @param bool $asMatching Whether or not this join results should be treated as a
* 'matching' association.
* @param string $targetProperty The property name where the results of the join should be nested at.
* If not passed, the default property for the association will be used.
* @return void
*/
public function addToJoinsMap(
string $alias,
Association $assoc,
bool $asMatching = false,
?string $targetProperty = null
): void {
$this->_joinsMap[$alias] = new EagerLoadable($alias, [
'aliasPath' => $alias,
'instance' => $assoc,
'canBeJoined' => true,
'forMatching' => $asMatching,
'targetProperty' => $targetProperty ?: $assoc->getProperty(),
]);
}
/**
* Helper function used to return the keys from the query records that will be used
* to eagerly load associations.
*
* @param \Cake\ORM\EagerLoadable[] $external the list of external associations to be loaded
* @param \Cake\ORM\Query $query The query from which the results where generated
* @param \Cake\Database\StatementInterface $statement The statement to work on
* @return array
*/
protected function _collectKeys(array $external, Query $query, $statement): array
{
$collectKeys = [];
foreach ($external as $meta) {
$instance = $meta->instance();
if (!$instance->requiresKeys($meta->getConfig())) {
continue;
}
$source = $instance->getSource();
$keys = $instance->type() === Association::MANY_TO_ONE ?
(array)$instance->getForeignKey() :
(array)$instance->getBindingKey();
$alias = $source->getAlias();
$pkFields = [];
foreach ($keys as $key) {
$pkFields[] = key($query->aliasField($key, $alias));
}
$collectKeys[$meta->aliasPath()] = [$alias, $pkFields, count($pkFields) === 1];
}
if (empty($collectKeys)) {
return [[], $statement];
}
if (!($statement instanceof BufferedStatement)) {
$statement = new BufferedStatement($statement, $query->getConnection()->getDriver());
}
return [$this->_groupKeys($statement, $collectKeys), $statement];
}
/**
* Helper function used to iterate a statement and extract the columns
* defined in $collectKeys
*
* @param \Cake\Database\Statement\BufferedStatement $statement The statement to read from.
* @param array $collectKeys The keys to collect
* @return array
*/
protected function _groupKeys(BufferedStatement $statement, array $collectKeys): array
{
$keys = [];
foreach (($statement->fetchAll('assoc') ?: []) as $result) {
foreach ($collectKeys as $nestKey => $parts) {
if ($parts[2] === true) {
// Missed joins will have null in the results.
if (!array_key_exists($parts[1][0], $result)) {
continue;
}
// Assign empty array to avoid not found association when optional.
if (!isset($result[$parts[1][0]])) {
if (!isset($keys[$nestKey][$parts[0]])) {
$keys[$nestKey][$parts[0]] = [];
}
} else {
$value = $result[$parts[1][0]];
$keys[$nestKey][$parts[0]][$value] = $value;
}
continue;
}
// Handle composite keys.
$collected = [];
foreach ($parts[1] as $key) {
$collected[] = $result[$key];
}
$keys[$nestKey][$parts[0]][implode(';', $collected)] = $collected;
}
}
$statement->rewind();
return $keys;
}
/**
* Handles cloning eager loaders and eager loadables.
*
* @return void
*/
public function __clone()
{
if ($this->_matching) {
$this->_matching = clone $this->_matching;
}
}
}