Complex classes like Entity often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Entity, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 30 | abstract class Entity implements \Serializable |
||
| 31 | { |
||
| 32 | /** @deprecated Use Relation::OPT_CLASS instead */ |
||
| 33 | const OPT_RELATION_CLASS = 'class'; |
||
| 34 | /** @deprecated Use Relation::OPT_CARDINALITY instead */ |
||
| 35 | const OPT_RELATION_CARDINALITY = 'cardinality'; |
||
| 36 | /** @deprecated Use Relation::OPT_REFERENCE instead */ |
||
| 37 | const OPT_RELATION_REFERENCE = 'reference'; |
||
| 38 | /** @deprecated Use Relation::OPT_OPPONENT instead */ |
||
| 39 | const OPT_RELATION_OPPONENT = 'opponent'; |
||
| 40 | /** @deprecated Use Relation::OPT_TABLE instead */ |
||
| 41 | const OPT_RELATION_TABLE = 'table'; |
||
| 42 | |||
| 43 | /** The template to use to calculate the table name. |
||
| 44 | * @var string */ |
||
| 45 | protected static $tableNameTemplate; |
||
| 46 | |||
| 47 | /** The naming scheme to use for table names. |
||
| 48 | * @var string */ |
||
| 49 | protected static $namingSchemeTable; |
||
| 50 | |||
| 51 | /** The naming scheme to use for column names. |
||
| 52 | * @var string */ |
||
| 53 | protected static $namingSchemeColumn; |
||
| 54 | |||
| 55 | /** The naming scheme to use for method names. |
||
| 56 | * @var string */ |
||
| 57 | protected static $namingSchemeMethods; |
||
| 58 | |||
| 59 | /** Fixed table name (ignore other settings) |
||
| 60 | * @var string */ |
||
| 61 | protected static $tableName; |
||
| 62 | |||
| 63 | /** The variable(s) used for primary key. |
||
| 64 | * @var string[]|string */ |
||
| 65 | protected static $primaryKey = ['id']; |
||
| 66 | |||
| 67 | /** Fixed column names (ignore other settings) |
||
| 68 | * @var string[] */ |
||
| 69 | protected static $columnAliases = []; |
||
| 70 | |||
| 71 | /** A prefix for column names. |
||
| 72 | * @var string */ |
||
| 73 | protected static $columnPrefix; |
||
| 74 | |||
| 75 | /** Whether or not the primary key is auto incremented. |
||
| 76 | * @var bool */ |
||
| 77 | protected static $autoIncrement = true; |
||
| 78 | |||
| 79 | /** Whether or not the validator for this class is enabled. |
||
| 80 | * @var bool */ |
||
| 81 | protected static $enableValidator = false; |
||
| 82 | |||
| 83 | /** Whether or not the validator for a class got enabled during runtime. |
||
| 84 | * @var bool[] */ |
||
| 85 | protected static $enabledValidators = []; |
||
| 86 | |||
| 87 | /** Relation definitions |
||
| 88 | * @var array */ |
||
| 89 | protected static $relations = []; |
||
| 90 | |||
| 91 | /** The reflections of the classes. |
||
| 92 | * @internal |
||
| 93 | * @var \ReflectionClass[] */ |
||
| 94 | protected static $reflections = []; |
||
| 95 | |||
| 96 | /** The current data of a row. |
||
| 97 | * @var mixed[] */ |
||
| 98 | protected $data = []; |
||
| 99 | |||
| 100 | /** The original data of the row. |
||
| 101 | * @var mixed[] */ |
||
| 102 | protected $originalData = []; |
||
| 103 | |||
| 104 | /** The entity manager from which this entity got created |
||
| 105 | * @var EM */ |
||
| 106 | protected $entityManager; |
||
| 107 | |||
| 108 | /** Related objects for getRelated |
||
| 109 | * @var array */ |
||
| 110 | protected $relatedObjects = []; |
||
| 111 | |||
| 112 | /** |
||
| 113 | * Constructor |
||
| 114 | * |
||
| 115 | * It calls ::onInit() after initializing $data and $originalData. |
||
| 116 | * |
||
| 117 | * @param mixed[] $data The current data |
||
| 118 | * @param EM $entityManager The EntityManager that created this entity |
||
| 119 | * @param bool $fromDatabase Whether or not the data comes from database |
||
| 120 | */ |
||
| 121 | 114 | final public function __construct(array $data = [], EM $entityManager = null, $fromDatabase = false) |
|
| 130 | |||
| 131 | /** |
||
| 132 | * Get a description for this table. |
||
| 133 | * |
||
| 134 | * @return Table|Column[] |
||
| 135 | * @codeCoverageIgnore This is just a proxy |
||
| 136 | */ |
||
| 137 | public static function describe() |
||
| 141 | |||
| 142 | /** |
||
| 143 | * Get the column name of $attribute |
||
| 144 | * |
||
| 145 | * The column names can not be specified by template. Instead they are constructed by $columnPrefix and enforced |
||
| 146 | * to $namingSchemeColumn. |
||
| 147 | * |
||
| 148 | * **ATTENTION**: If your overwrite this method remember that getColumnName(getColumnName($name)) have to be exactly |
||
| 149 | * the same as getColumnName($name). |
||
| 150 | * |
||
| 151 | * @param string $attribute |
||
| 152 | * @return string |
||
| 153 | * @throws InvalidConfiguration |
||
| 154 | */ |
||
| 155 | 146 | public static function getColumnName($attribute) |
|
| 164 | |||
| 165 | /** |
||
| 166 | * Get the primary key vars |
||
| 167 | * |
||
| 168 | * The primary key can consist of multiple columns. You should configure the vars that are translated to these |
||
| 169 | * columns. |
||
| 170 | * |
||
| 171 | * @return array |
||
| 172 | */ |
||
| 173 | 56 | public static function getPrimaryKeyVars() |
|
| 177 | |||
| 178 | /** |
||
| 179 | * Get the definition for $relation |
||
| 180 | * |
||
| 181 | * It normalize the short definition form and create a Relation object from it. |
||
| 182 | * |
||
| 183 | * @param string $relation |
||
| 184 | * @return Relation |
||
| 185 | * @throws InvalidConfiguration |
||
| 186 | * @throws UndefinedRelation |
||
| 187 | */ |
||
| 188 | 85 | public static function getRelation($relation) |
|
| 202 | |||
| 203 | /** |
||
| 204 | * Get the table name |
||
| 205 | * |
||
| 206 | * The table name is constructed by $tableNameTemplate and $namingSchemeTable. It can be overwritten by |
||
| 207 | * $tableName. |
||
| 208 | * |
||
| 209 | * @return string |
||
| 210 | * @throws InvalidName|InvalidConfiguration |
||
| 211 | */ |
||
| 212 | 147 | public static function getTableName() |
|
| 221 | |||
| 222 | /** |
||
| 223 | * Check if the table has a auto increment column |
||
| 224 | * |
||
| 225 | * @return bool |
||
| 226 | */ |
||
| 227 | 14 | public static function isAutoIncremented() |
|
| 231 | |||
| 232 | /** |
||
| 233 | * Check if the validator is enabled |
||
| 234 | * |
||
| 235 | * @return bool |
||
| 236 | */ |
||
| 237 | 27 | public static function isValidatorEnabled() |
|
| 242 | |||
| 243 | /** |
||
| 244 | * Enable validator |
||
| 245 | * |
||
| 246 | * @param bool $enable |
||
| 247 | */ |
||
| 248 | 8 | public static function enableValidator($enable = true) |
|
| 252 | |||
| 253 | /** |
||
| 254 | * Disable validator |
||
| 255 | * |
||
| 256 | * @param bool $disable |
||
| 257 | */ |
||
| 258 | 1 | public static function disableValidator($disable = true) |
|
| 262 | |||
| 263 | /** |
||
| 264 | * Validate $value for $attribute |
||
| 265 | * |
||
| 266 | * @param string $attribute |
||
| 267 | * @param mixed $value |
||
| 268 | * @return bool|Error |
||
| 269 | * @throws Exception |
||
| 270 | */ |
||
| 271 | 10 | public static function validate($attribute, $value) |
|
| 275 | |||
| 276 | /** |
||
| 277 | * Validate $data |
||
| 278 | * |
||
| 279 | * $data has to be an array of $attribute => $value |
||
| 280 | * |
||
| 281 | * @param array $data |
||
| 282 | * @return array |
||
| 283 | */ |
||
| 284 | 1 | public static function validateArray(array $data) |
|
| 292 | |||
| 293 | /** |
||
| 294 | * @param EM $entityManager |
||
| 295 | * @return self |
||
| 296 | */ |
||
| 297 | 2 | public function setEntityManager(EM $entityManager) |
|
| 302 | |||
| 303 | /** |
||
| 304 | * Get the value from $attribute |
||
| 305 | * |
||
| 306 | * If there is a custom getter this method get called instead. |
||
| 307 | * |
||
| 308 | * @param string $attribute The variable to get |
||
| 309 | * @return mixed|null |
||
| 310 | * @throws IncompletePrimaryKey |
||
| 311 | * @throws InvalidConfiguration |
||
| 312 | * @link https://tflori.github.io/orm/entities.html Working with entities |
||
| 313 | */ |
||
| 314 | 91 | public function __get($attribute) |
|
| 332 | |||
| 333 | /** |
||
| 334 | * Set $attribute to $value |
||
| 335 | * |
||
| 336 | * Tries to call custom setter before it stores the data directly. If there is a setter the setter needs to store |
||
| 337 | * data that should be updated in the database to $data. Do not store data in $originalData as it will not be |
||
| 338 | * written and give wrong results for dirty checking. |
||
| 339 | * |
||
| 340 | * The onChange event is called after something got changed. |
||
| 341 | * |
||
| 342 | * The method throws an error when the validation fails (also when the column does not exist). |
||
| 343 | * |
||
| 344 | * @param string $attribute The variable to change |
||
| 345 | * @param mixed $value The value to store |
||
| 346 | * @throws Error |
||
| 347 | * @link https://tflori.github.io/orm/entities.html Working with entities |
||
| 348 | */ |
||
| 349 | 26 | public function __set($attribute, $value) |
|
| 377 | |||
| 378 | /** |
||
| 379 | * Fill the entity with $data |
||
| 380 | * |
||
| 381 | * When $checkMissing is set to true it also proves that the absent columns are nullable. |
||
| 382 | * |
||
| 383 | * @param array $data |
||
| 384 | * @param bool $ignoreUnknown |
||
| 385 | * @param bool $checkMissing |
||
| 386 | * @throws Error |
||
| 387 | * @throws UnknownColumn |
||
| 388 | */ |
||
| 389 | 4 | public function fill(array $data, $ignoreUnknown = false, $checkMissing = false) |
|
| 405 | |||
| 406 | /** |
||
| 407 | * Get related objects |
||
| 408 | * |
||
| 409 | * The difference between getRelated and fetch is that getRelated stores the fetched entities. To refresh set |
||
| 410 | * $refresh to true. |
||
| 411 | * |
||
| 412 | * @param string $relation |
||
| 413 | * @param bool $refresh |
||
| 414 | * @return mixed |
||
| 415 | * @throws Exception\NoConnection |
||
| 416 | * @throws Exception\NoEntity |
||
| 417 | * @throws IncompletePrimaryKey |
||
| 418 | * @throws InvalidConfiguration |
||
| 419 | * @throws NoEntityManager |
||
| 420 | * @throws UndefinedRelation |
||
| 421 | */ |
||
| 422 | 11 | public function getRelated($relation, $refresh = false) |
|
| 430 | |||
| 431 | /** |
||
| 432 | * Set $relation to $entity |
||
| 433 | * |
||
| 434 | * This method is only for the owner of a relation. |
||
| 435 | * |
||
| 436 | * @param string $relation |
||
| 437 | * @param Entity $entity |
||
| 438 | * @throws IncompletePrimaryKey |
||
| 439 | * @throws InvalidRelation |
||
| 440 | */ |
||
| 441 | 7 | public function setRelated($relation, Entity $entity = null) |
|
| 447 | |||
| 448 | /** |
||
| 449 | * Add relations for $relation to $entities |
||
| 450 | * |
||
| 451 | * This method is only for many-to-many relations. |
||
| 452 | * |
||
| 453 | * This method does not take care about already existing relations and will fail hard. |
||
| 454 | * |
||
| 455 | * @param string $relation |
||
| 456 | * @param Entity[] $entities |
||
| 457 | * @throws NoEntityManager |
||
| 458 | */ |
||
| 459 | 8 | public function addRelated($relation, array $entities) |
|
| 472 | |||
| 473 | /** |
||
| 474 | * Delete relations for $relation to $entities |
||
| 475 | * |
||
| 476 | * This method is only for many-to-many relations. |
||
| 477 | * |
||
| 478 | * @param string $relation |
||
| 479 | * @param Entity[] $entities |
||
| 480 | * @throws NoEntityManager |
||
| 481 | */ |
||
| 482 | 8 | public function deleteRelated($relation, $entities) |
|
| 495 | |||
| 496 | /** |
||
| 497 | * Resets the entity or $attribute to original data |
||
| 498 | * |
||
| 499 | * @param string $attribute Reset only this variable or all variables |
||
| 500 | * @throws InvalidConfiguration |
||
| 501 | */ |
||
| 502 | 8 | public function reset($attribute = null) |
|
| 516 | |||
| 517 | /** |
||
| 518 | * Save the entity to EntityManager |
||
| 519 | * |
||
| 520 | * @return Entity |
||
| 521 | * @throws Exception\NoConnection |
||
| 522 | * @throws Exception\NoEntity |
||
| 523 | * @throws Exception\NotScalar |
||
| 524 | * @throws Exception\UnsupportedDriver |
||
| 525 | * @throws IncompletePrimaryKey |
||
| 526 | * @throws InvalidConfiguration |
||
| 527 | * @throws InvalidName |
||
| 528 | * @throws NoEntityManager |
||
| 529 | */ |
||
| 530 | 12 | public function save() |
|
| 573 | |||
| 574 | /** |
||
| 575 | * Checks if entity or $attribute got changed |
||
| 576 | * |
||
| 577 | * @param string $attribute Check only this variable or all variables |
||
| 578 | * @return bool |
||
| 579 | * @throws InvalidConfiguration |
||
| 580 | */ |
||
| 581 | 18 | public function isDirty($attribute = null) |
|
| 594 | |||
| 595 | /** |
||
| 596 | * Check if the current data is valid |
||
| 597 | * |
||
| 598 | * Returns boolean true when valid otherwise an array of Errors. |
||
| 599 | * |
||
| 600 | * @return bool|Error[] |
||
| 601 | */ |
||
| 602 | 1 | public function isValid() |
|
| 624 | |||
| 625 | /** |
||
| 626 | * Empty event handler |
||
| 627 | * |
||
| 628 | * Get called when something is changed with magic setter. |
||
| 629 | * |
||
| 630 | * @param string $attribute The variable that got changed.merge(node.inheritedProperties) |
||
| 631 | * @param mixed $oldValue The old value of the variable |
||
| 632 | * @param mixed $value The new value of the variable |
||
| 633 | */ |
||
| 634 | 6 | public function onChange($attribute, $oldValue, $value) |
|
| 637 | |||
| 638 | /** |
||
| 639 | * Empty event handler |
||
| 640 | * |
||
| 641 | * Get called when the entity get initialized. |
||
| 642 | * |
||
| 643 | * @param bool $new Whether or not the entity is new or from database |
||
| 644 | */ |
||
| 645 | 113 | public function onInit($new) |
|
| 648 | |||
| 649 | /** |
||
| 650 | * Empty event handler |
||
| 651 | * |
||
| 652 | * Get called before the entity get updated in database. |
||
| 653 | */ |
||
| 654 | 3 | public function preUpdate() |
|
| 657 | |||
| 658 | /** |
||
| 659 | * Empty event handler |
||
| 660 | * |
||
| 661 | * Get called before the entity get inserted in database. |
||
| 662 | */ |
||
| 663 | 3 | public function prePersist() |
|
| 666 | |||
| 667 | |||
| 668 | // DEPRECATED stuff |
||
| 669 | |||
| 670 | /** |
||
| 671 | * Empty event handler |
||
| 672 | * |
||
| 673 | * Get called after the entity got inserted in database. |
||
| 674 | */ |
||
| 675 | 5 | public function postPersist() |
|
| 678 | |||
| 679 | /** |
||
| 680 | * Empty event handler |
||
| 681 | * |
||
| 682 | * Get called after the entity got updated in database. |
||
| 683 | */ |
||
| 684 | 3 | public function postUpdate() |
|
| 687 | |||
| 688 | /** |
||
| 689 | * Fetches related objects |
||
| 690 | * |
||
| 691 | * For relations with cardinality many it returns an EntityFetcher. Otherwise it returns the entity. |
||
| 692 | * |
||
| 693 | * It will throw an error for non owner when the key is incomplete. |
||
| 694 | * |
||
| 695 | * @param string $relation The relation to fetch |
||
| 696 | * @param bool $getAll |
||
| 697 | * @return Entity|Entity[]|EntityFetcher |
||
| 698 | * @throws NoEntityManager |
||
| 699 | */ |
||
| 700 | 19 | public function fetch($relation, $getAll = false) |
|
| 720 | |||
| 721 | /** |
||
| 722 | * Get the primary key |
||
| 723 | * |
||
| 724 | * @return array |
||
| 725 | * @throws IncompletePrimaryKey |
||
| 726 | */ |
||
| 727 | 38 | public function getPrimaryKey() |
|
| 739 | |||
| 740 | /** |
||
| 741 | * Get current data |
||
| 742 | * |
||
| 743 | * @return array |
||
| 744 | * @internal |
||
| 745 | */ |
||
| 746 | 20 | public function getData() |
|
| 750 | |||
| 751 | /** |
||
| 752 | * Set new original data |
||
| 753 | * |
||
| 754 | * @param array $data |
||
| 755 | * @internal |
||
| 756 | */ |
||
| 757 | 18 | public function setOriginalData(array $data) |
|
| 761 | |||
| 762 | /** |
||
| 763 | * String representation of data |
||
| 764 | * |
||
| 765 | * @link http://php.net/manual/en/serializable.serialize.php |
||
| 766 | * @return string |
||
| 767 | */ |
||
| 768 | 2 | public function serialize() |
|
| 772 | |||
| 773 | /** |
||
| 774 | * Constructs the object |
||
| 775 | * |
||
| 776 | * @link http://php.net/manual/en/serializable.unserialize.php |
||
| 777 | * @param string $serialized The string representation of data |
||
| 778 | */ |
||
| 779 | 3 | public function unserialize($serialized) |
|
| 785 | |||
| 786 | /** |
||
| 787 | * @return string |
||
| 788 | * @deprecated use getOption from EntityManager |
||
| 789 | * @codeCoverageIgnore deprecated |
||
| 790 | */ |
||
| 791 | public static function getTableNameTemplate() |
||
| 795 | |||
| 796 | /** |
||
| 797 | * @param string $tableNameTemplate |
||
| 798 | * @deprecated use setOption from EntityManager |
||
| 799 | * @codeCoverageIgnore deprecated |
||
| 800 | */ |
||
| 801 | public static function setTableNameTemplate($tableNameTemplate) |
||
| 805 | |||
| 806 | /** |
||
| 807 | * @return string |
||
| 808 | * @deprecated use getOption from EntityManager |
||
| 809 | * @codeCoverageIgnore deprecated |
||
| 810 | */ |
||
| 811 | public static function getNamingSchemeTable() |
||
| 815 | |||
| 816 | /** |
||
| 817 | * @param string $namingSchemeTable |
||
| 818 | * @deprecated use setOption from EntityManager |
||
| 819 | * @codeCoverageIgnore deprecated |
||
| 820 | */ |
||
| 821 | public static function setNamingSchemeTable($namingSchemeTable) |
||
| 825 | |||
| 826 | /** |
||
| 827 | * @return string |
||
| 828 | * @deprecated use getOption from EntityManager |
||
| 829 | * @codeCoverageIgnore deprecated |
||
| 830 | */ |
||
| 831 | public static function getNamingSchemeColumn() |
||
| 835 | |||
| 836 | /** |
||
| 837 | * @param string $namingSchemeColumn |
||
| 838 | * @deprecated use setOption from EntityManager |
||
| 839 | * @codeCoverageIgnore deprecated |
||
| 840 | */ |
||
| 841 | public static function setNamingSchemeColumn($namingSchemeColumn) |
||
| 845 | |||
| 846 | /** |
||
| 847 | * @return string |
||
| 848 | * @deprecated use getOption from EntityManager |
||
| 849 | * @codeCoverageIgnore deprecated |
||
| 850 | */ |
||
| 851 | public static function getNamingSchemeMethods() |
||
| 855 | |||
| 856 | /** |
||
| 857 | * @param string $namingSchemeMethods |
||
| 858 | * @deprecated use setOption from EntityManager |
||
| 859 | * @codeCoverageIgnore deprecated |
||
| 860 | */ |
||
| 861 | public static function setNamingSchemeMethods($namingSchemeMethods) |
||
| 865 | } |
||
| 866 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.