-
Notifications
You must be signed in to change notification settings - Fork 405
Expand file tree
/
Copy pathColumn.php
More file actions
1745 lines (1539 loc) · 41 KB
/
Column.php
File metadata and controls
1745 lines (1539 loc) · 41 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
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
/**
* MIT License. This file is part of the Propel package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Propel\Generator\Model;
use Exception;
use Propel\Generator\Exception\EngineException;
use Propel\Generator\Platform\PlatformInterface;
/**
* A class for holding data about a column used in an application.
*
* @author Hans Lellelid <hans@xmpl.org> (Propel)
* @author Leon Messerschmidt <leon@opticode.co.za> (Torque)
* @author Jason van Zyl <jvanzyl@apache.org> (Torque)
* @author Jon S. Stevens <jon@latchkey.com> (Torque)
* @author Daniel Rall <dlr@finemaltcoding.com> (Torque)
* @author Byron Foster <byron_foster@yahoo.com> (Torque)
* @author Bernd Goldschmidt <bgoldschmidt@rapidsoft.de>
* @author Hugo Hamon <webmaster@apprendre-php.com> (Propel)
*/
class Column extends MappingModel
{
/**
* @var string
*/
public const DEFAULT_TYPE = 'VARCHAR';
/**
* @var string
*/
public const DEFAULT_VISIBILITY = 'public';
/**
* @var string
*/
public const CONSTANT_PREFIX = 'COL_';
/**
* @var array<string>
*/
public static $validVisibilities = [
'public',
'protected',
'private',
];
/**
* @var string
*/
private $name;
/**
* @var string|null
*/
private $description;
/**
* @var string|null
*/
private $phpName;
/**
* @var string|null
*/
private $phpSingularName;
/**
* @var string|null
*/
private $phpNamingMethod;
/**
* @var bool
*/
private $isNotNull = false;
/**
* @var string|null
*/
private $namePrefix;
/**
* @var string|null
*/
private $accessorVisibility;
/**
* @var string|null
*/
private $mutatorVisibility;
/**
* @var string|null
*/
private $typeHint;
/**
* The name to use for the tableMap constant that identifies this column.
* (Will be converted to all-uppercase in the templates.)
*
* @var string
*/
private $tableMapName;
/**
* Native PHP type (scalar or class name)
*
* @var string "string", "boolean", "int", "double"
*/
private $phpType;
/**
* @var \Propel\Generator\Model\Domain|null
*/
private $domain;
/**
* @var \Propel\Generator\Model\Table
*/
private $parentTable;
/**
* @var int|null
*/
private $position;
/**
* @var bool
*/
private $isPrimaryKey = false;
/**
* @var bool
*/
private $isNodeKey = false;
/**
* @var string
*/
private $nodeKeySep;
/**
* @var bool
*/
private $isNestedSetLeftKey = false;
/**
* @var bool
*/
private $isNestedSetRightKey = false;
/**
* @var bool
*/
private $isTreeScopeKey = false;
/**
* @var bool
*/
private $isUnique = false;
/**
* @var bool
*/
private $isAutoIncrement = false;
/**
* @var bool
*/
private $isLazyLoad = false;
/**
* @var array
*/
private $referrers = [];
/**
* @var bool
*/
private $isPrimaryString = false;
// only one type is supported currently, which assumes the
// column either contains the classnames or a key to
// classnames specified in the schema. Others may be
// supported later.
/**
* @var string|null
*/
private $inheritanceType;
/**
* @var bool
*/
private $isInheritance = false;
/**
* @var bool
*/
private $isEnumeratedClasses = false;
/**
* @var array|null
*/
private $inheritanceList;
/**
* maybe this can be retrieved from vendor specific information
*
* @var bool
*/
private $needsTransactionInPostgres = false;
/**
* @var array<string>
*/
protected $valueSet = [];
/**
* Creates a new column and set the name.
*
* @param string $name The column's name
* @param string|null $type The column's type
* @param string|int|null $size The column's size
*/
public function __construct(string $name, ?string $type = null, $size = null)
{
$this->setName($name);
if ($type !== null) {
$this->setType($type);
}
if ($size !== null) {
$this->setSize((int)$size);
}
}
/**
* @return string|null
*/
public function getTypeHint(): ?string
{
return $this->typeHint;
}
/**
* @param string|null $typeHint
*
* @return void
*/
public function setTypeHint(?string $typeHint): void
{
$this->typeHint = $typeHint;
}
/**
* @param \Propel\Generator\Platform\PlatformInterface|null $platform
*
* @return \Propel\Generator\Model\Domain
*/
protected function getDomainFromAttributes(?PlatformInterface $platform): Domain
{
$domainName = $this->getAttribute('domain');
if ($domainName) {
return $this->getDatabase()->getDomain($domainName);
}
$type = $this->getAttribute('type', static::DEFAULT_TYPE);
$type = strtoupper($type);
if ($platform) {
return $platform->getDomainForType($type);
}
// no platform - probably during tests
return new Domain($type);
}
/**
* @throws \Propel\Generator\Exception\EngineException
*
* @return void
*/
protected function setupObject(): void
{
try {
$database = $this->getDatabase();
$platform = ($this->hasPlatform()) ? $this->getPlatform() : null;
$domain = $this->getDomain();
$domainInAttributes = $this->getDomainFromAttributes($platform);
$domain->copy($domainInAttributes);
$this->name = $this->getAttribute('name');
$this->phpName = $this->getAttribute('phpName');
$this->phpSingularName = $this->getAttribute('phpSingularName');
$this->phpType = $this->getAttribute('phpType');
$this->typeHint = $this->getAttribute('typeHint');
$this->tableMapName = $this->getAttribute('tableMapName');
$this->description = $this->getAttribute('description');
/*
Retrieves the method for converting from specified name
to a PHP name, defaulting to parent tables default method.
*/
$this->phpNamingMethod = $this->getAttribute('phpNamingMethod', $database->getDefaultPhpNamingMethod());
$this->namePrefix = $this->getAttribute('prefix', $this->parentTable->getAttribute('columnPrefix'));
// Accessor visibility - no idea why this returns null, or the use case for that
$visibility = $this->getMethodVisibility('accessorVisibility', 'defaultAccessorVisibility') ?: '';
$this->setAccessorVisibility($visibility);
// Mutator visibility
$visibility = $this->getMethodVisibility('mutatorVisibility', 'defaultMutatorVisibility') ?: '';
$this->setMutatorVisibility($visibility);
$this->isPrimaryString = $this->booleanValue($this->getAttribute('primaryString'));
$this->isPrimaryKey = $this->booleanValue($this->getAttribute('primaryKey'));
$this->isNodeKey = $this->booleanValue($this->getAttribute('nodeKey'));
$this->nodeKeySep = $this->getAttribute('nodeKeySep', '.');
$this->isNestedSetLeftKey = $this->booleanValue($this->getAttribute('nestedSetLeftKey'));
$this->isNestedSetRightKey = $this->booleanValue($this->getAttribute('nestedSetRightKey'));
$this->isTreeScopeKey = $this->booleanValue($this->getAttribute('treeScopeKey'));
$this->isNotNull = ($this->booleanValue($this->getAttribute('required')) || $this->isPrimaryKey); // primary keys are required
// AutoIncrement/Sequences
$this->isAutoIncrement = $this->booleanValue($this->getAttribute('autoIncrement'));
$this->isLazyLoad = $this->booleanValue($this->getAttribute('lazyLoad'));
// Add type, size information to associated Domain object
$domain->replaceSqlType($this->getAttribute('sqlType'));
if (
!$this->getAttribute('size')
&& $domain->getType() === 'VARCHAR'
&& !$this->getAttribute('sqlType')
&& $platform
&& !$platform->supportsVarcharWithoutSize()
) {
$size = 255;
} else {
$size = $this->getAttribute('size') ? (int)$this->getAttribute('size') : null;
}
$domain->replaceSize($size);
$scale = $this->getAttribute('scale') ? (int)$this->getAttribute('scale') : null;
$domain->replaceScale($scale);
$defval = $this->getAttribute('defaultValue', $this->getAttribute('default'));
if ($defval !== null && strtolower($defval) !== 'null') {
$domain->setDefaultValue(new ColumnDefaultValue($defval, ColumnDefaultValue::TYPE_VALUE));
} elseif ($this->getAttribute('defaultExpr') !== null) {
$domain->setDefaultValue(new ColumnDefaultValue($this->getAttribute('defaultExpr'), ColumnDefaultValue::TYPE_EXPR));
}
if ($this->getAttribute('valueSet')) {
$this->setValueSet($this->getAttribute('valueSet'));
}
$this->inheritanceType = $this->getAttribute('inheritance');
/*
here we are only checking for 'false', so don't
use booleanValue()
*/
$this->isInheritance = ($this->inheritanceType !== null && $this->inheritanceType !== 'false');
} catch (Exception $e) {
throw new EngineException(sprintf(
'Error setting up column %s: %s',
$this->getAttribute('name'),
$e->getMessage(),
));
}
}
/**
* Returns the generated methods visibility by looking for the
* attribute value in the column, parent table or parent database.
* Finally, it defaults to the default visibility (public).
*
* @param string $attribute Local column attribute
* @param string $parentAttribute Parent (table or database) attribute
*
* @return string|null
*/
private function getMethodVisibility(string $attribute, string $parentAttribute): ?string
{
$database = $this->getDatabase();
$visibility = $this->getAttribute(
$attribute,
$this->parentTable->getAttribute(
$parentAttribute,
$database->getAttribute(
$parentAttribute,
self::DEFAULT_VISIBILITY,
),
),
);
return $visibility;
}
/**
* Returns the database object the current column is in.
*
* @return \Propel\Generator\Model\Database|null
*/
private function getDatabase(): ?Database
{
return $this->parentTable->getDatabase();
}
/**
* Gets domain for this column, creating a new empty domain object if none is set.
*
* @return \Propel\Generator\Model\Domain
*/
public function getDomain(): Domain
{
if ($this->domain === null) {
$this->domain = new Domain();
}
return $this->domain;
}
/**
* Sets the domain for this column.
*
* @param \Propel\Generator\Model\Domain $domain
*
* @return void
*/
public function setDomain(Domain $domain): void
{
$this->domain = $domain;
}
/**
* Returns the fully qualified column name (table.column).
*
* @return string
*/
public function getFullyQualifiedName(): string
{
return $this->parentTable->getName() . '.' . strtoupper($this->getName());
}
/**
* Returns the column name.
*
* @return string
*/
public function getName(): string
{
return $this->name;
}
/**
* Returns the lowercased column name.
*
* @return string
*/
public function getLowercasedName(): string
{
return strtolower($this->name);
}
/**
* Returns the uppercased column name.
*
* @return string
*/
public function getUppercasedName(): string
{
return strtoupper($this->name);
}
/**
* Sets the column name.
*
* @param string $name
*
* @return void
*/
public function setName(string $name): void
{
$this->name = $name;
}
/**
* Returns whether the column name is plural.
*
* @return bool
*/
public function isNamePlural(): bool
{
return $this->getSingularName() !== $this->name;
}
/**
* Returns the column singular name.
*
* @return string
*/
public function getSingularName(): string
{
if ($this->getAttribute('phpSingularName')) {
return $this->getAttribute('phpSingularName');
}
return rtrim($this->name, 's');
}
/**
* Returns the column description.
*
* @return string|null
*/
public function getDescription(): ?string
{
return $this->description;
}
/**
* Sets the column description.
*
* @param string $description
*
* @return void
*/
public function setDescription(string $description): void
{
$this->description = $description;
}
/**
* Returns the name to use in PHP sources. It will set & return
* a self-generated phpName from its name if its not already set.
*
* @return string
*/
public function getPhpName(): string
{
if ($this->phpName === null) {
$this->setPhpName();
}
return $this->phpName;
}
/**
* Returns the singular form of the name to use in PHP sources.
* It will set & return a self-generated phpName from its name
* if its not already set.
*
* @return string|null
*/
public function getPhpSingularName(): ?string
{
if ($this->phpSingularName === null) {
$this->setPhpSingularName();
}
return $this->phpSingularName;
}
/**
* Sets the name to use in PHP sources.
*
* It will generate a phpName from its name if no
* $phpName is passed.
*
* @param string|null $phpName
*
* @return void
*/
public function setPhpName(?string $phpName = null): void
{
if ($phpName === null) {
$this->phpName = self::generatePhpName($this->name, $this->phpNamingMethod, $this->namePrefix);
} else {
$this->phpName = $phpName;
}
}
/**
* Sets the singular forn of the name to use in PHP
* sources.
*
* It will generate a phpName from its name if no
* $phpSingularName is passed.
*
* @param string|null $phpSingularName
*
* @return void
*/
public function setPhpSingularName(?string $phpSingularName = null): void
{
if ($phpSingularName === null) {
$this->phpSingularName = self::generatePhpSingularName($this->getPhpName());
} else {
$this->phpSingularName = $phpSingularName;
}
}
/**
* Returns the camelCase version of the PHP name.
*
* The studly name is the PHP name with the first character lowercase.
*
* @return string
*/
public function getCamelCaseName(): string
{
return lcfirst($this->getPhpName());
}
/**
* Returns the accessor methods visibility of this column / attribute.
*
* @return string
*/
public function getAccessorVisibility(): string
{
if ($this->accessorVisibility !== null) {
return $this->accessorVisibility;
}
return self::DEFAULT_VISIBILITY;
}
/**
* Sets the accessor methods visibility for this column / attribute.
*
* @param string $visibility
*
* @return void
*/
public function setAccessorVisibility(string $visibility): void
{
$visibility = strtolower($visibility);
if (!in_array($visibility, self::$validVisibilities, true)) {
$visibility = self::DEFAULT_VISIBILITY;
}
$this->accessorVisibility = $visibility;
}
/**
* Returns the mutator methods visibility for this current column.
*
* @return string
*/
public function getMutatorVisibility(): string
{
if ($this->mutatorVisibility !== null) {
return $this->mutatorVisibility;
}
return self::DEFAULT_VISIBILITY;
}
/**
* Sets the mutator methods visibility for this column / attribute.
*
* @param string $visibility
*
* @return void
*/
public function setMutatorVisibility(string $visibility): void
{
$visibility = strtolower($visibility);
if (!in_array($visibility, self::$validVisibilities, true)) {
$visibility = self::DEFAULT_VISIBILITY;
}
$this->mutatorVisibility = $visibility;
}
/**
* Returns the full column constant name (e.g. TableMapName::COL_COLUMN_NAME).
*
* @return string A column constant name for insertion into PHP code
*/
public function getFQConstantName(): string
{
$classname = $this->parentTable->getPhpName() . 'TableMap';
$const = $this->getConstantName();
return $classname . '::' . $const;
}
/**
* Returns the column constant name.
*
* @return string
*/
public function getConstantName(): string
{
// was it overridden in schema.xml ?
if ($this->getTableMapName()) {
return self::CONSTANT_PREFIX . strtoupper($this->getTableMapName());
}
return self::CONSTANT_PREFIX . strtoupper($this->getName());
}
/**
* Returns the TableMap constant name that will identify this column.
*
* @return string|null
*/
public function getTableMapName(): ?string
{
return $this->tableMapName;
}
/**
* Sets the TableMap constant name that will identify this column.
*
* @param string $name
*
* @return void
*/
public function setTableMapName(string $name): void
{
$this->tableMapName = $name;
}
/**
* Returns the type to use in PHP sources.
*
* If no types has been specified, then use result of getPhpNative().
*
* @return string
*/
public function getPhpType(): string
{
return $this->phpType ?: $this->getPhpNative();
}
/**
* Returns the location of this column within the table (one-based).
*
* @return int|null
*/
public function getPosition(): ?int
{
return $this->position;
}
/**
* Returns the location of this column within the table (one-based).
*
* @param int $position
*
* @return void
*/
public function setPosition(int $position): void
{
$this->position = $position;
}
/**
* Sets the parent table.
*
* @param \Propel\Generator\Model\Table $table
*
* @return void
*/
public function setTable(Table $table): void
{
$this->parentTable = $table;
}
/**
* Returns the parent table.
*
* @return \Propel\Generator\Model\Table|null
*/
public function getTable(): ?Table
{
return $this->parentTable;
}
/**
* Returns the parent table name.
*
* @return string
*/
public function getTableName(): string
{
return $this->parentTable->getName();
}
/**
* Adds a new inheritance definition to the inheritance list and sets the
* parent column of the inheritance to the current column.
*
* @param \Propel\Generator\Model\Inheritance|array $inheritance
*
* @return \Propel\Generator\Model\Inheritance
*/
public function addInheritance($inheritance): Inheritance
{
if ($inheritance instanceof Inheritance) {
$inheritance->setColumn($this);
if ($this->inheritanceList === null) {
$this->inheritanceList = [];
$this->isEnumeratedClasses = true;
}
$this->inheritanceList[] = $inheritance;
return $inheritance;
}
$inh = new Inheritance();
$inh->loadMapping($inheritance);
return $this->addInheritance($inh);
}
/**
* Returns the inheritance type.
*
* @return string|null
*/
public function getInheritanceType(): ?string
{
return $this->inheritanceType;
}
/**
* Returns the inheritance list.
*
* @return array|null
*/
public function getInheritanceList(): ?array
{
return $this->inheritanceList;
}
/**
* Returns the inheritance definitions.
*
* @return array|null
*/
public function getChildren(): ?array
{
return $this->inheritanceList;
}
/**
* Returns whether this column is a normal property or specifies a
* the classes that are represented in the table containing this column.
*
* @return bool
*/
public function isInheritance(): bool
{
return $this->isInheritance;
}
/**
* Returns whether possible classes have been enumerated in the
* schema file.
*
* @return bool
*/
public function isEnumeratedClasses(): bool
{
return $this->isEnumeratedClasses;
}
/**
* Returns whether the column is not null.
*
* @return bool
*/
public function isNotNull(): bool
{
return $this->isNotNull;
}
/**
* Sets whether the column is not null.
*
* @param bool $flag
*
* @return void
*/
public function setNotNull(bool $flag): void
{
$this->isNotNull = $flag;
}
/**
* Returns NOT NULL string for this column.
*
* @return string
*/
public function getNotNullString(): string
{
return $this->parentTable->getPlatform()->getNullString($this->isNotNull);
}
/**
* Sets whether the column is used as the primary string.
*
* The primary string is the value used by default in the magic
* __toString method of an active record object.
*
* @param bool $isPrimaryString
*
* @return void
*/
public function setPrimaryString(bool $isPrimaryString): void
{
$this->isPrimaryString = $isPrimaryString;
}
/**
* Returns true if the column is the primary string (used for the magic
* __toString() method).
*
* @return bool
*/
public function isPrimaryString(): bool
{
return $this->isPrimaryString;
}
/**
* Sets whether the column is a primary key.
*
* @param bool $flag
*
* @return void
*/
public function setPrimaryKey(bool $flag): void
{
$this->isPrimaryKey = $flag;
}
/**
* Returns whether the column is the primary key.
*
* @return bool
*/
public function isPrimaryKey(): bool
{
return $this->isPrimaryKey;
}
/**
* Sets whether the column is a node key of a tree.
*
* @param bool $isNodeKey
*
* @return void
*/
public function setNodeKey(bool $isNodeKey): void
{
$this->isNodeKey = $isNodeKey;
}
/**
* Returns whether the column is a node key of a tree.
*
* @return bool
*/
public function isNodeKey(): bool
{
return $this->isNodeKey;
}
/**
* Sets the separator for the node key column in a tree.
*
* @param string $sep
*
* @return void
*/
public function setNodeKeySep(string $sep): void
{
$this->nodeKeySep = $sep;
}