-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy pathAbstractQueryConverter.php
1764 lines (1579 loc) · 56 KB
/
AbstractQueryConverter.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
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
namespace Oro\Bundle\QueryDesignerBundle\QueryDesigner;
use Oro\Bundle\BatchBundle\ORM\QueryBuilder\QueryBuilderTools;
use Oro\Bundle\EntityBundle\Provider\VirtualFieldProviderInterface;
use Oro\Bundle\EntityBundle\Provider\VirtualRelationProviderInterface;
use Oro\Bundle\QueryDesignerBundle\Exception\InvalidConfigurationException;
use Oro\Bundle\QueryDesignerBundle\Model\AbstractQueryDesigner;
/**
* Provides a core functionality to convert a query definition created by the query designer to another format.
*
* @todo: need to think how to reduce the complexity of this class
* @SuppressWarnings(PHPMD.ExcessiveClassComplexity)
* @SuppressWarnings(PHPMD.ExcessiveClassLength)
* @SuppressWarnings(PHPMD.TooManyMethods)
*/
abstract class AbstractQueryConverter
{
const COLUMN_ALIAS_TEMPLATE = 'c%d';
const TABLE_ALIAS_TEMPLATE = 't%d';
const ROOT_ALIAS_KEY = '';
const MAX_ITERATIONS = 100;
const INNER_JOIN = 'inner';
const LEFT_JOIN = 'left';
const CONDITIONAL_JOIN = 'WITH';
/**
* @var JoinIdentifierHelper
*/
protected $joinIdHelper;
/**
* @var FunctionProviderInterface
*/
protected $functionProvider;
/**
* @var VirtualFieldProviderInterface
*/
protected $virtualFieldProvider;
/**
* @var VirtualRelationProviderInterface
*/
protected $virtualRelationProvider;
/**
* @var int
*/
protected $tableAliasesCount = 0;
/**
* @var string
*/
private $rootEntity;
/**
* @var array
*/
protected $definition;
/**
* @var array
* key = alias
* value = joinId
*/
protected $joins;
/**
* @var array
* key = joinId
* value = alias
*/
protected $tableAliases;
/**
* @var array
* key = column key (see buildColumnAliasKey method)
* value = alias
*/
protected $columnAliases;
/**
* @var array
* key = column name
* value = column expression
*/
protected $virtualColumnExpressions;
/**
* @var array
* key = {declared entity class name}::{declared field name}
* value = data type
*/
protected $virtualColumnOptions;
/**
* @var array
*/
protected $virtualRelationsJoins = [];
/**
* @var array
*/
protected $aliases = [];
/**
* @var array
*/
protected $queryAliases = [];
/**
* @var QueryBuilderTools
*/
protected $qbTools;
/**
* Constructor
*
* @param FunctionProviderInterface $functionProvider
* @param VirtualFieldProviderInterface $virtualFieldProvider
*/
protected function __construct(
FunctionProviderInterface $functionProvider,
VirtualFieldProviderInterface $virtualFieldProvider
) {
$this->functionProvider = $functionProvider;
$this->virtualFieldProvider = $virtualFieldProvider;
$this->qbTools = new QueryBuilderTools();
}
/**
* @param VirtualRelationProviderInterface $virtualRelationProvider
*/
public function setVirtualRelationProvider(VirtualRelationProviderInterface $virtualRelationProvider)
{
$this->virtualRelationProvider = $virtualRelationProvider;
}
/**
* Stores all table aliases in the query
*
* @param array $tableAliases
*/
abstract protected function saveTableAliases($tableAliases);
/**
* Stores all column aliases in the query
*
* @param array $columnAliases
*/
abstract protected function saveColumnAliases($columnAliases);
/**
* Performs conversion of a single column of SELECT statement
*
* @param string $entityClassName
* @param string $tableAlias
* @param string $fieldName
* @param string $columnExpr
* @param string $columnAlias
* @param string $columnLabel
* @param string|FunctionInterface|null $functionExpr
* @param string|null $functionReturnType
* @param bool $isDistinct
*
* @return
*/
abstract protected function addSelectColumn(
$entityClassName,
$tableAlias,
$fieldName,
$columnExpr,
$columnAlias,
$columnLabel,
$functionExpr,
$functionReturnType,
$isDistinct = false
);
/**
* Performs conversion of a single table of FROM statement
*
* @param string $entityClassName
* @param string $tableAlias
*/
abstract protected function addFromStatement($entityClassName, $tableAlias);
/**
* Performs conversion of a single JOIN statement
*
* @param string $joinType
* @param string $join
* @param string $joinAlias
* @param string $joinConditionType
* @param string $joinCondition
*/
abstract protected function addJoinStatement($joinType, $join, $joinAlias, $joinConditionType, $joinCondition);
/**
* Opens new group in WHERE statement
*/
abstract protected function beginWhereGroup();
/**
* Closes current group in WHERE statement
*/
abstract protected function endWhereGroup();
/**
* Adds an operator to WHERE condition
*
* @param string $operator An operator. Can be AND or OR
*/
abstract protected function addWhereOperator($operator);
/**
* Performs conversion of a single WHERE condition
*
* @param string $entityClassName
* @param string $tableAlias
* @param string $fieldName
* @param string $columnExpr
* @param string $columnAlias
* @param string $filterName
* @param array $filterData
* @param string|FunctionInterface|null $functionExpr
*/
abstract protected function addWhereCondition(
$entityClassName,
$tableAlias,
$fieldName,
$columnExpr,
$columnAlias,
$filterName,
array $filterData,
$functionExpr = null
);
/**
* Performs conversion of a single column of GROUP BY statement
*
* @param string $columnAlias
*/
abstract protected function addGroupByColumn($columnAlias);
/**
* Performs conversion of a single column of ORDER BY statement
*
* @param string $columnAlias
* @param string $columnSorting
*/
abstract protected function addOrderByColumn($columnAlias, $columnSorting);
/**
* Makes sure that a table identified by $joinByFieldName joined
* on the same level as a table identified by $tableAlias.
*
* For example assume that $tableAlias points to
* table1::orders -> table2::products
* and $joinByFieldName is, for example, 'statuses'.
* In this case the checked join will be
* table1::orders -> table2::statuses
*
* @param string $tableAlias The alias of a table to check
* @param string $joinByFieldName The name of a field should be used to check a join
*
* @return string The table alias for the checked join
*/
public function ensureSiblingTableJoined($tableAlias, $joinByFieldName)
{
$joinId = $this->getJoinIdentifierByTableAlias($tableAlias);
$parentJoinId = $this->getParentJoinIdentifier($joinId);
$newJoinId = $this->buildSiblingJoinIdentifier($parentJoinId, $joinByFieldName);
return $this->ensureTableJoined($newJoinId);
}
/**
* Makes sure that child table joined by $joinByFieldName joined as a relation of table with $tableAlias alias
*
* For example:
* table1::orders -> table2::products
* call of ensureChildTableJoined(table2, stockItem) will check whether following table is joined:
* table1::orders -> table2::products -> table2::stockItem
*
* @param string $tableAlias The alias of a table to check
* @param string $joinByFieldName The name of a field should be used to check a join
* @param string|null $joinType
*
* @return string The table alias for the checked join
*/
public function ensureChildTableJoined($tableAlias, $joinByFieldName, $joinType = null)
{
$parentJoinId = $this->getJoinIdentifierByTableAlias($tableAlias);
$joinId = $this->joinIdHelper->buildJoinIdentifier(
$tableAlias . '.' . $joinByFieldName,
$parentJoinId,
$joinType
);
return $this->ensureTableJoined($joinId);
}
/**
* Makes sure that a table identified by the given $joinId exists in the query
*
* @param string $joinId
* @return string The table alias for the given join
*/
public function ensureTableJoined($joinId)
{
if (!isset($this->tableAliases[$joinId])) {
$this->addTableAliasesForJoinIdentifier($joinId);
}
return $this->tableAliases[$joinId];
}
/**
* Gets join identifier for the given table alias
*
* @param string $tableAlias
*
* @return string|null
*/
public function getJoinIdentifierByTableAlias($tableAlias)
{
return isset($this->joins[$tableAlias])
? $this->joins[$tableAlias]
: null;
}
/**
* Builds join identifier for a table is joined on the same level as a table identified by $joinId.
*
* @param string $joinId The join identifier
* @param string $joinByFieldName The name of a field should be used to join new table
*
* @return string The join identifier
*/
public function buildSiblingJoinIdentifier($joinId, $joinByFieldName)
{
return $this->joinIdHelper->buildSiblingJoinIdentifier($joinId, $joinByFieldName);
}
/**
* Extracts a parent join identifier
*
* @param string $joinId
*
* @return string
* @throws \LogicException if incorrect join identifier specified
*/
public function getParentJoinIdentifier($joinId)
{
return $this->joinIdHelper->getParentJoinIdentifier($joinId);
}
/**
* Converts a query from the query designer format to a target format
*
* @param AbstractQueryDesigner $source
*
* @throws InvalidConfigurationException
*/
protected function doConvert(AbstractQueryDesigner $source)
{
$this->rootEntity = $source->getEntity();
$this->definition = json_decode($source->getDefinition(), true);
if (!isset($this->definition['columns'])) {
throw new InvalidConfigurationException('The "columns" definition does not exist.');
}
if (empty($this->definition['columns'])) {
throw new InvalidConfigurationException('The "columns" definition must not be empty.');
}
$this->aliases = [];
$this->virtualRelationsJoins = [];
$this->tableAliasesCount = 0;
$this->joinIdHelper = new JoinIdentifierHelper($this->rootEntity);
$this->joins = [];
$this->tableAliases = [];
$this->columnAliases = [];
$this->virtualColumnExpressions = [];
$this->virtualColumnOptions = [];
$this->buildQuery();
$this->virtualColumnOptions = null;
$this->virtualColumnExpressions = null;
$this->columnAliases = null;
$this->tableAliases = null;
$this->joins = null;
$this->joinIdHelper = null;
}
/**
* A factory method provides an algorithm used to convert a query
*/
protected function buildQuery()
{
$this->prepareTableAliases();
$this->prepareColumnAliases();
$this->addSelectStatement();
$this->addFromStatements();
$this->addJoinStatements();
$this->addWhereStatement();
$this->addGroupByStatement();
$this->addOrderByStatement();
$this->saveTableAliases($this->tableAliases);
$this->saveColumnAliases($this->columnAliases);
}
/**
* Prepares aliases for tables involved to a query
*/
protected function prepareTableAliases()
{
$this->addTableAliasForRootEntity();
if (isset($this->definition['filters'])) {
$this->addTableAliasesForFilters($this->definition['filters']);
}
foreach ($this->definition['columns'] as $column) {
$this->addTableAliasesForColumn($column['name']);
}
if (isset($this->definition['grouping_columns'])) {
foreach ($this->definition['grouping_columns'] as $column) {
$this->addTableAliasesForColumn($column['name']);
}
}
}
/**
* Prepares aliases for columns should be returned by a query
*/
protected function prepareColumnAliases()
{
foreach ($this->definition['columns'] as $column) {
$this->columnAliases[$this->buildColumnAliasKey($column)] = $this->generateColumnAlias();
}
}
/**
* @param array $column
*
* @return array Where array has elements: string|FunctionInterface|null, string|null
*/
protected function createColumnFunction(array $column)
{
if (!empty($column['func'])) {
$function = $this->functionProvider->getFunction(
$column['func']['name'],
$column['func']['group_name'],
$column['func']['group_type']
);
$functionExpr = $function['expr'];
$functionReturnType = isset($function['return_type'])
? $function['return_type']
: null;
return [$functionExpr, $functionReturnType];
}
return [null, null];
}
/**
* Performs conversion of SELECT statement
*/
protected function addSelectStatement()
{
foreach ($this->definition['columns'] as $column) {
$columnName = $column['name'];
$fieldName = $this->getFieldName($columnName);
list($functionExpr, $functionReturnType) = $this->createColumnFunction($column);
$isDistinct = !empty($column['distinct']);
$tableAlias = $this->getTableAliasForColumn($columnName);
$columnLabel = isset($column['label'])
? $column['label']
: $fieldName;
$this->addSelectColumn(
$this->getEntityClassName($columnName),
$tableAlias,
$fieldName,
$this->buildColumnExpression($columnName, $tableAlias, $fieldName),
$this->getColumnAlias($this->buildColumnAliasKey($column)),
$columnLabel,
$functionExpr,
$functionReturnType,
$isDistinct
);
}
}
/**
* @param string $columnAliasKey
* @return null|string
*/
protected function getColumnAlias($columnAliasKey)
{
return isset($this->columnAliases[$columnAliasKey])
? $this->columnAliases[$columnAliasKey]
: null;
}
/**
* Performs conversion of FROM statement
*/
protected function addFromStatements()
{
$this->addFromStatement($this->rootEntity, $this->tableAliases[self::ROOT_ALIAS_KEY]);
}
/**
* Performs conversion of JOIN statements
*/
protected function addJoinStatements()
{
foreach ($this->tableAliases as $joinId => $joinAlias) {
if (!empty($joinId)) {
$parentJoinId = $this->getParentJoinIdentifier($joinId);
$joinTableAlias = $this->tableAliases[$parentJoinId];
$virtualRelation = array_search($parentJoinId, $this->virtualRelationsJoins);
if (false !== $virtualRelation) {
$className = $this->getEntityClassName($virtualRelation);
$fieldName = $this->getFieldName($virtualRelation);
$joinTableAlias = $this->aliases[$this->virtualRelationProvider->getTargetJoinAlias(
$className,
$fieldName,
$this->getFieldName($joinId)
)];
}
if ($this->joinIdHelper->isUnidirectionalJoin($joinId)) {
$entityClassName = $this->getEntityClassName($joinId);
$joinFieldName = $this->getFieldName($joinId);
$this->addJoinStatement(
$this->getJoinType($joinId),
$entityClassName,
$joinAlias,
self::CONDITIONAL_JOIN,
$this->getUnidirectionalJoinCondition(
$joinTableAlias,
$joinFieldName,
$joinAlias,
$entityClassName
)
);
} elseif ($this->joinIdHelper->isUnidirectionalJoinWithCondition($joinId)) {
// such as "Entity:Name|left|WITH|t2.field = t1"
$entityClassName = $this->joinIdHelper->getUnidirectionalJoinEntityName($joinId);
$this->addJoinStatement(
$this->getJoinType($joinId),
$entityClassName,
$joinAlias,
$this->getJoinConditionType($joinId),
$this->getJoinCondition($joinId)
);
} else {
// bidirectional
if (null === $this->getEntityClassName($joinId)) {
$join = $this->getJoin($joinId);
} else {
$join = sprintf('%s.%s', $joinTableAlias, $this->getFieldName($joinId));
}
$this->addJoinStatement(
$this->getJoinType($joinId),
$join,
$joinAlias,
$this->getJoinConditionType($joinId),
$this->getJoinCondition($joinId)
);
}
}
}
}
/**
* Returns a string which can be used in a query to get column value
*
* @param string $columnName
* @param string $tableAlias
* @param string $fieldName
*
* @return string
*/
protected function buildColumnExpression($columnName, $tableAlias, $fieldName)
{
return isset($this->virtualColumnExpressions[$columnName])
? $this->virtualColumnExpressions[$columnName]
: sprintf('%s.%s', $tableAlias, $fieldName);
}
/**
* Performs conversion of WHERE statement
*/
protected function addWhereStatement()
{
if (!empty($this->definition['filters'])) {
$this->processFilters($this->definition['filters'], new FiltersParserContext());
}
}
/**
* @param array $filters
* @param FiltersParserContext $context
*/
protected function processFilters(array $filters, FiltersParserContext $context)
{
$context->checkBeginGroup();
$this->beginWhereGroup();
$context->setLastTokenType(FiltersParserContext::BEGIN_GROUP_TOKEN);
foreach ($filters as $token) {
if (is_string($token)) {
$context->checkOperator($token);
$this->processOperator($token);
$context->setLastTokenType(FiltersParserContext::OPERATOR_TOKEN);
} elseif (is_array($token) && isset($token['criterion'])) {
$context->checkFilter($token);
$this->processFilter($token);
$context->setLastTokenType(FiltersParserContext::FILTER_TOKEN);
} else {
if (empty($token)) {
$context->throwInvalidFiltersException('a group must not be empty');
}
$this->processFilters($token, $context);
}
$context->setLastToken($token);
}
$context->checkEndGroup();
$this->endWhereGroup();
$context->setLastTokenType(FiltersParserContext::END_GROUP_TOKEN);
}
/**
* @param string $operator
*/
protected function processOperator($operator)
{
$this->addWhereOperator(strtoupper($operator));
}
/**
* @param array $filter
*/
protected function processFilter($filter)
{
$columnName = array_key_exists('columnName', $filter) ? $filter['columnName'] : '';
$fieldName = $this->getFieldName($columnName);
$columnAliasKey = $this->buildColumnAliasKey($columnName);
$tableAlias = $this->getTableAliasForColumn($columnName);
$column = ['name' => $fieldName];
if (isset($filter['func'])) {
$column['func'] = $filter['func'];
}
list($functionExpr) = $this->createColumnFunction($column);
$this->addWhereCondition(
$this->getEntityClassName($columnName),
$tableAlias,
$fieldName,
$this->buildColumnExpression($columnName, $tableAlias, $fieldName),
$this->getColumnAlias($columnAliasKey),
$filter['criterion']['filter'],
$filter['criterion']['data'],
$functionExpr
);
}
/**
* Performs conversion of GROUP BY statement
*/
protected function addGroupByStatement()
{
if (isset($this->definition['grouping_columns'])) {
foreach ($this->definition['grouping_columns'] as $column) {
$columnAliasKey = $this->buildColumnAliasKey($column);
$columnAlias = $this->getColumnAlias($columnAliasKey);
if (empty($columnAlias)) {
throw new InvalidConfigurationException(
sprintf(
'The grouping column "%s" must be declared in SELECT clause.',
$column['name']
)
);
}
$this->addGroupByColumn($columnAlias);
}
}
}
/**
* Performs conversion of ORDER BY statement
*/
protected function addOrderByStatement()
{
foreach ($this->definition['columns'] as $column) {
if (!empty($column['sorting'])) {
$this->addOrderByColumn(
$this->getColumnAlias($this->buildColumnAliasKey($column)),
$column['sorting']
);
}
}
}
/**
* Generates and saves an alias for the root entity
*/
protected function addTableAliasForRootEntity()
{
$this->registerTableAlias(self::ROOT_ALIAS_KEY);
}
/**
* Generates and saves aliases for the given join identifier and all its parents
*
* @param string $joinId
*/
protected function addTableAliasesForJoinIdentifier($joinId)
{
$this->addTableAliasesForJoinIdentifiers(
$this->joinIdHelper->explodeJoinIdentifier($joinId)
);
}
/**
* Generates and saves aliases for the given column and all its parent joins
*
* @param string $columnName String with specified format
* rootEntityField+Class\Name::joinedEntityRelation+Relation\Class::fieldToSelect
*/
protected function addTableAliasesForColumn($columnName)
{
$this->addTableAliasesForVirtualRelation($columnName);
$this->addTableAliasesForVirtualField($columnName);
}
/**
* Generates and saves table aliases for the given filters
*
* @param array $filters
*/
protected function addTableAliasesForFilters(array $filters)
{
foreach ($filters as $filter) {
if (is_array($filter)) {
if (isset($filter['columnName'])) {
$this->addTableAliasesForColumn($filter['columnName']);
} else {
$this->addTableAliasesForFilters($filter);
}
}
}
}
/**
* Checks if the given column is a virtual field and if so, generates and saves table aliases for it
*
* @param string $columnName
*/
protected function addTableAliasesForVirtualField($columnName)
{
if (isset($this->virtualColumnExpressions[$columnName])) {
// already processed
return;
}
$className = $this->getEntityClassName($columnName);
$fieldName = $this->getFieldName($columnName);
if (!$className || !$this->virtualFieldProvider->isVirtualField($className, $fieldName)) {
// not a virtual field
return;
}
$mainEntityJoinId = $this->getParentJoinIdentifier(
$this->joinIdHelper->buildColumnJoinIdentifier($columnName)
);
$query = $this->registerVirtualColumnQueryAliases(
$this->virtualFieldProvider->getVirtualFieldQuery($className, $fieldName),
$mainEntityJoinId
);
$this->virtualColumnExpressions[$columnName] = $query['select']['expr'];
$key = sprintf('%s::%s', $className, $fieldName);
if (!isset($this->virtualColumnOptions[$key])) {
$options = $query['select'];
unset($options['expr']);
$this->virtualColumnOptions[$key] = $options;
}
}
/**
* Checks if the given column is a virtual field and if so, generates and saves table aliases for it
*
* @param string $columnName
*/
protected function addTableAliasesForVirtualFieldWithParentJoinId($columnName, $mainEntityJoinId)
{
if (isset($this->virtualColumnExpressions[$columnName])) {
// already processed
return;
}
$className = $this->getEntityClassName($columnName);
$fieldName = $this->getFieldName($columnName);
if (!$className || !$this->virtualFieldProvider->isVirtualField($className, $fieldName)) {
// not a virtual field
return;
}
$query = $this->registerVirtualColumnQueryAliases(
$this->virtualFieldProvider->getVirtualFieldQuery($className, $fieldName),
$mainEntityJoinId
);
$this->virtualColumnExpressions[$columnName] = $query['select']['expr'];
$key = sprintf('%s::%s', $className, $fieldName);
if (!isset($this->virtualColumnOptions[$key])) {
$options = $query['select'];
unset($options['expr']);
$this->virtualColumnOptions[$key] = $options;
}
}
/**
* @param string $joinId
*
* @return string
*
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
protected function replaceJoinsForVirtualRelation($joinId)
{
if (!$this->virtualRelationProvider) {
return $joinId;
}
/**
* mainEntityJoinId - parent join definition
*
* For `Root\Class::rootEntityField+Class\Name::joinedEntityRelation` parent is `Root\Class::rootEntityField`
*/
$mainEntityJoinId = self::ROOT_ALIAS_KEY;
/**
* columnJoinIds - array of joins path
*
* For `Root\Class::rootEntityField+Class\Name::joinedEntityRelation` will be
*
* - `Root\Class::rootEntityField`
* - `Class\Name::joinedEntityRelation`
*/
$columnJoinIds = explode('+', $joinId);
/**
* Walk over $columnJoinIds and replace virtual relations joins using query configuration
*/
foreach ($columnJoinIds as &$columnJoinId) {
/**
* Check existing join definition. Full definition stored
*
* Relation - `Class\Name::joinedEntityRelation`
* Relation Join - `Root\Class::rootEntityField+Join\Class::someField+Rel\Class|left|WITH|alias.code = 1`
*
* mainEntityJoinId contains full definition for next iteration - Relation Join
* columnJoinId will be replaced with `Join\Class::someField+Rel\Class|left|WITH|alias.code = 1`
*/
if (!empty($this->virtualRelationsJoins[$columnJoinId])) {
$columnJoinId = trim(
str_replace($mainEntityJoinId, '', $this->virtualRelationsJoins[$columnJoinId]),
'+'
);
$relationColumnJoinIds = explode('+', $columnJoinId);
$fullRelationColumnJoinId = self::ROOT_ALIAS_KEY;
foreach ($relationColumnJoinIds as $relationColumnJoinId) {
$mainEntityJoinId = trim($mainEntityJoinId . '+' . $relationColumnJoinId, '+');
$fullRelationColumnJoinId = trim($fullRelationColumnJoinId . '+' . $relationColumnJoinId, '+');
$tableAlias = null;
if (!empty($this->tableAliases[$fullRelationColumnJoinId])) {
$tableAlias = $this->tableAliases[$fullRelationColumnJoinId];
}
$this->registerTableAlias($mainEntityJoinId, $tableAlias);
}
continue;
}
$className = $this->getEntityClassName($columnJoinId);
$fieldName = $this->getFieldName($columnJoinId);
if (!$this->virtualRelationProvider->isVirtualRelation($className, $fieldName)) {
/**
* Was joined previously in virtual relation
*/
if (!empty($this->aliases[$fieldName])) {
$columnJoinId = null;
continue;
}
/**
* For non virtual join we register aliases with replaced virtual relations joins in path
*/
$mainEntityJoinId = trim($mainEntityJoinId . '+' . $columnJoinId, '+');
$this->registerTableAlias($mainEntityJoinId);
continue;
}
$query = $this->virtualRelationProvider->getVirtualRelationQuery($className, $fieldName);
$mainEntityJoinAlias = $this->tableAliases[$mainEntityJoinId];
$this->prepareAliases($query, $mainEntityJoinAlias);
/**
* Get virtual joins definitions according to aliased dependencies
*
* idx => [
* join => Join\Class
* alias => t2
* conditionType => WITH
* condition => alias.code = 1
* ]
*/
$joins = $this->buildVirtualJoins($query, $mainEntityJoinId);
$this->replaceTableAliasesInVirtualColumnJoinConditions($joins);
/**
* Store mainEntityJoinId to build columnJoinId after virtual relations joins build
*
* `Root\Class::rootEntityField`
*/
$baseMainEntityJoinId = $mainEntityJoinId;
$virtualJoinId = self::ROOT_ALIAS_KEY;
foreach ($joins as $join) {
$tableAlias = $join['alias'];
/**
* Build virtual relation join including parent one and register it
*
* For joins:
*
* `Join\Class::someField' => `Root\Class::rootEntityField+Join\Class::someField`
* `Rel\Class|left|WITH|alias.code = 1`
* => `Root\Class::rootEntityField+Join\Class::someField+Rel\Class|left|WITH|alias.code = 1`
*/
$virtualJoinId = $this->buildVirtualColumnJoinIdentifier($joins, $join, $mainEntityJoinId);
$this->registerTableAlias($virtualJoinId, $tableAlias);
$mainEntityJoinId = $virtualJoinId;
}
/**
* Store join built definition
*
* `Class\Name::joinedEntityRelation`
* => `Root\Class::rootEntityField+Join\Class::someField+Rel\Class|left|WITH|alias.code = 1`
*/
$this->virtualRelationsJoins[$columnJoinId] = $virtualJoinId;
/**
* Replace columnJoinId with virtual relation join with its built definition
* Class\Name::joinedEntityRelation` => `Join\Class::someField+Rel\Class|left|WITH|alias.code = 1`
*/
$columnJoinId = trim(str_replace($baseMainEntityJoinId, '', $mainEntityJoinId), '+');
}
/**
* Join columnJoinIds back into path. All virtual relation joins replaced with joins according to query
* definition
*/
return implode('+', array_filter($columnJoinIds));
}
/**
* @param array $query
* @param string $mainEntityJoinAlias
*/
protected function prepareAliases(array $query, $mainEntityJoinAlias)
{
$this->aliases[$this->getQueryRootAlias($query)] = $mainEntityJoinAlias;
}
/**
* @param array $query
*
* @return string