@@ -15,232 +15,232 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | class BeanDescriptor |
| 17 | 17 | { |
| 18 | - /** |
|
| 19 | - * @var Table |
|
| 20 | - */ |
|
| 21 | - private $table; |
|
| 22 | - |
|
| 23 | - /** |
|
| 24 | - * @var SchemaAnalyzer |
|
| 25 | - */ |
|
| 26 | - private $schemaAnalyzer; |
|
| 27 | - |
|
| 28 | - /** |
|
| 29 | - * @var Schema |
|
| 30 | - */ |
|
| 31 | - private $schema; |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * @var AbstractBeanPropertyDescriptor[] |
|
| 35 | - */ |
|
| 36 | - private $beanPropertyDescriptors = []; |
|
| 37 | - |
|
| 38 | - public function __construct(Table $table, SchemaAnalyzer $schemaAnalyzer, Schema $schema) { |
|
| 39 | - $this->table = $table; |
|
| 40 | - $this->schemaAnalyzer = $schemaAnalyzer; |
|
| 41 | - $this->schema = $schema; |
|
| 42 | - $this->initBeanPropertyDescriptors(); |
|
| 43 | - } |
|
| 44 | - |
|
| 45 | - private function initBeanPropertyDescriptors() { |
|
| 46 | - $this->beanPropertyDescriptors = $this->getProperties($this->table); |
|
| 47 | - } |
|
| 48 | - |
|
| 49 | - /** |
|
| 50 | - * Returns the foreignkey the column is part of, if any. null otherwise. |
|
| 51 | - * |
|
| 52 | - * @param Table $table |
|
| 53 | - * @param Column $column |
|
| 54 | - * @return ForeignKeyConstraint|null |
|
| 55 | - */ |
|
| 56 | - private function isPartOfForeignKey(Table $table, Column $column) { |
|
| 57 | - $localColumnName = $column->getName(); |
|
| 58 | - foreach ($table->getForeignKeys() as $foreignKey) { |
|
| 59 | - foreach ($foreignKey->getColumns() as $columnName) { |
|
| 60 | - if ($columnName === $localColumnName) { |
|
| 61 | - return $foreignKey; |
|
| 62 | - } |
|
| 63 | - } |
|
| 64 | - } |
|
| 65 | - return null; |
|
| 66 | - } |
|
| 67 | - |
|
| 68 | - /** |
|
| 69 | - * @return AbstractBeanPropertyDescriptor[] |
|
| 70 | - */ |
|
| 71 | - public function getBeanPropertyDescriptors() |
|
| 72 | - { |
|
| 73 | - return $this->beanPropertyDescriptors; |
|
| 74 | - } |
|
| 75 | - |
|
| 76 | - /** |
|
| 77 | - * Returns the list of columns that are not nullable and not autogenerated for a given table and its parent. |
|
| 78 | - * |
|
| 79 | - * @return AbstractBeanPropertyDescriptor[] |
|
| 80 | - */ |
|
| 81 | - public function getConstructorProperties() { |
|
| 82 | - |
|
| 83 | - $constructorProperties = array_filter($this->beanPropertyDescriptors, function(AbstractBeanPropertyDescriptor $property) { |
|
| 84 | - return $property->isCompulsory(); |
|
| 85 | - }); |
|
| 86 | - |
|
| 87 | - return $constructorProperties; |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * Returns the list of properties exposed as getters and setters in this class. |
|
| 92 | - * |
|
| 93 | - * @return AbstractBeanPropertyDescriptor[] |
|
| 94 | - */ |
|
| 95 | - public function getExposedProperties() { |
|
| 96 | - $exposedProperties = array_filter($this->beanPropertyDescriptors, function(AbstractBeanPropertyDescriptor $property) { |
|
| 97 | - return $property->getTable()->getName() == $this->table->getName(); |
|
| 98 | - }); |
|
| 99 | - |
|
| 100 | - return $exposedProperties; |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - /** |
|
| 104 | - * Returns the list of foreign keys pointing to the table represented by this bean, excluding foreign keys |
|
| 105 | - * from junction tables and from inheritance. |
|
| 106 | - * |
|
| 107 | - * @return ForeignKeyConstraint[] |
|
| 108 | - */ |
|
| 109 | - public function getIncomingForeignKeys() { |
|
| 110 | - |
|
| 111 | - $junctionTables = $this->schemaAnalyzer->detectJunctionTables(); |
|
| 112 | - $junctionTableNames = array_map(function(Table $table) { return $table->getName(); }, $junctionTables); |
|
| 113 | - $childrenRelationships = $this->schemaAnalyzer->getChildrenRelationships($this->table->getName()); |
|
| 114 | - |
|
| 115 | - $fks = []; |
|
| 116 | - foreach ($this->schema->getTables() as $table) { |
|
| 117 | - foreach ($table->getForeignKeys() as $fk) { |
|
| 118 | - if ($fk->getForeignTableName() === $this->table->getName()) { |
|
| 119 | - if (in_array($fk->getLocalTableName(), $junctionTableNames)) { |
|
| 120 | - continue; |
|
| 121 | - } |
|
| 122 | - foreach ($childrenRelationships as $childFk) { |
|
| 123 | - if ($fk->getLocalTableName() === $childFk->getLocalTableName() && $fk->getLocalColumns() === $childFk->getLocalColumns()) { |
|
| 124 | - continue 2; |
|
| 125 | - } |
|
| 126 | - } |
|
| 127 | - $fks[] = $fk; |
|
| 128 | - } |
|
| 129 | - } |
|
| 130 | - } |
|
| 131 | - |
|
| 132 | - return $fks; |
|
| 133 | - } |
|
| 134 | - |
|
| 135 | - /** |
|
| 136 | - * Returns the list of properties for this table (including parent tables). |
|
| 137 | - * |
|
| 138 | - * @param Table $table |
|
| 139 | - * @return AbstractBeanPropertyDescriptor[] |
|
| 140 | - */ |
|
| 141 | - private function getProperties(Table $table) |
|
| 142 | - { |
|
| 143 | - $parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName()); |
|
| 144 | - if ($parentRelationship) { |
|
| 145 | - $parentTable = $this->schema->getTable($parentRelationship->getForeignTableName()); |
|
| 146 | - $properties = $this->getProperties($parentTable); |
|
| 147 | - // we merge properties by overriding property names. |
|
| 148 | - $localProperties = $this->getPropertiesForTable($table); |
|
| 149 | - foreach ($localProperties as $name => $property) { |
|
| 150 | - // We do not override properties if this is a primary key! |
|
| 151 | - if ($property->isPrimaryKey()) { |
|
| 152 | - continue; |
|
| 153 | - } |
|
| 154 | - $properties[$name] = $property; |
|
| 155 | - } |
|
| 156 | - //$properties = array_merge($properties, $localProperties); |
|
| 157 | - |
|
| 158 | - } else { |
|
| 159 | - $properties = $this->getPropertiesForTable($table); |
|
| 160 | - } |
|
| 161 | - |
|
| 162 | - return $properties; |
|
| 163 | - } |
|
| 164 | - |
|
| 165 | - /** |
|
| 166 | - * Returns the list of properties for this table (ignoring parent tables). |
|
| 167 | - * |
|
| 168 | - * @param Table $table |
|
| 169 | - * @return AbstractBeanPropertyDescriptor[] |
|
| 170 | - */ |
|
| 171 | - private function getPropertiesForTable(Table $table) |
|
| 172 | - { |
|
| 173 | - $parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName()); |
|
| 174 | - if ($parentRelationship) { |
|
| 175 | - $ignoreColumns = $parentRelationship->getLocalColumns(); |
|
| 176 | - } else { |
|
| 177 | - $ignoreColumns = []; |
|
| 178 | - } |
|
| 179 | - |
|
| 180 | - $beanPropertyDescriptors = []; |
|
| 181 | - |
|
| 182 | - foreach ($table->getColumns() as $column) { |
|
| 183 | - if (array_search($column->getName(), $ignoreColumns) !== false) { |
|
| 184 | - continue; |
|
| 185 | - } |
|
| 186 | - |
|
| 187 | - $fk = $this->isPartOfForeignKey($table, $column); |
|
| 188 | - if ($fk !== null) { |
|
| 189 | - // Check that previously added descriptors are not added on same FK (can happen with multi key FK). |
|
| 190 | - foreach ($beanPropertyDescriptors as $beanDescriptor) { |
|
| 191 | - if ($beanDescriptor instanceof ObjectBeanPropertyDescriptor && $beanDescriptor->getForeignKey() === $fk) { |
|
| 192 | - continue 2; |
|
| 193 | - } |
|
| 194 | - } |
|
| 195 | - // Check that this property is not an inheritance relationship |
|
| 196 | - $parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName()); |
|
| 197 | - if ($parentRelationship === $fk) { |
|
| 198 | - continue; |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - $beanPropertyDescriptors[] = new ObjectBeanPropertyDescriptor($table, $fk, $this->schemaAnalyzer); |
|
| 202 | - } else { |
|
| 203 | - $beanPropertyDescriptors[] = new ScalarBeanPropertyDescriptor($table, $column); |
|
| 204 | - } |
|
| 205 | - } |
|
| 206 | - |
|
| 207 | - // Now, let's get the name of all properties and let's check there is no duplicate. |
|
| 208 | - /** @var $names AbstractBeanPropertyDescriptor[] */ |
|
| 209 | - $names = []; |
|
| 210 | - foreach ($beanPropertyDescriptors as $beanDescriptor) { |
|
| 211 | - $name = $beanDescriptor->getUpperCamelCaseName(); |
|
| 212 | - if (isset($names[$name])) { |
|
| 213 | - $names[$name]->useAlternativeName(); |
|
| 214 | - $beanDescriptor->useAlternativeName(); |
|
| 215 | - } else { |
|
| 216 | - $names[$name] = $beanDescriptor; |
|
| 217 | - } |
|
| 218 | - } |
|
| 219 | - |
|
| 220 | - // Final check (throw exceptions if problem arises) |
|
| 221 | - $names = []; |
|
| 222 | - foreach ($beanPropertyDescriptors as $beanDescriptor) { |
|
| 223 | - $name = $beanDescriptor->getUpperCamelCaseName(); |
|
| 224 | - if (isset($names[$name])) { |
|
| 225 | - throw new TDBMException("Unsolvable name conflict while generating method name"); |
|
| 226 | - } else { |
|
| 227 | - $names[$name] = $beanDescriptor; |
|
| 228 | - } |
|
| 229 | - } |
|
| 230 | - |
|
| 231 | - // Last step, let's rebuild the list with a map: |
|
| 232 | - $beanPropertyDescriptorsMap = []; |
|
| 233 | - foreach ($beanPropertyDescriptors as $beanDescriptor) { |
|
| 234 | - $beanPropertyDescriptorsMap[$beanDescriptor->getLowerCamelCaseName()] = $beanDescriptor; |
|
| 235 | - } |
|
| 236 | - |
|
| 237 | - return $beanPropertyDescriptorsMap; |
|
| 238 | - } |
|
| 239 | - |
|
| 240 | - public function generateBeanConstructor() { |
|
| 241 | - $constructorProperties = $this->getConstructorProperties(); |
|
| 242 | - |
|
| 243 | - $constructorCode = " /** |
|
| 18 | + /** |
|
| 19 | + * @var Table |
|
| 20 | + */ |
|
| 21 | + private $table; |
|
| 22 | + |
|
| 23 | + /** |
|
| 24 | + * @var SchemaAnalyzer |
|
| 25 | + */ |
|
| 26 | + private $schemaAnalyzer; |
|
| 27 | + |
|
| 28 | + /** |
|
| 29 | + * @var Schema |
|
| 30 | + */ |
|
| 31 | + private $schema; |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * @var AbstractBeanPropertyDescriptor[] |
|
| 35 | + */ |
|
| 36 | + private $beanPropertyDescriptors = []; |
|
| 37 | + |
|
| 38 | + public function __construct(Table $table, SchemaAnalyzer $schemaAnalyzer, Schema $schema) { |
|
| 39 | + $this->table = $table; |
|
| 40 | + $this->schemaAnalyzer = $schemaAnalyzer; |
|
| 41 | + $this->schema = $schema; |
|
| 42 | + $this->initBeanPropertyDescriptors(); |
|
| 43 | + } |
|
| 44 | + |
|
| 45 | + private function initBeanPropertyDescriptors() { |
|
| 46 | + $this->beanPropertyDescriptors = $this->getProperties($this->table); |
|
| 47 | + } |
|
| 48 | + |
|
| 49 | + /** |
|
| 50 | + * Returns the foreignkey the column is part of, if any. null otherwise. |
|
| 51 | + * |
|
| 52 | + * @param Table $table |
|
| 53 | + * @param Column $column |
|
| 54 | + * @return ForeignKeyConstraint|null |
|
| 55 | + */ |
|
| 56 | + private function isPartOfForeignKey(Table $table, Column $column) { |
|
| 57 | + $localColumnName = $column->getName(); |
|
| 58 | + foreach ($table->getForeignKeys() as $foreignKey) { |
|
| 59 | + foreach ($foreignKey->getColumns() as $columnName) { |
|
| 60 | + if ($columnName === $localColumnName) { |
|
| 61 | + return $foreignKey; |
|
| 62 | + } |
|
| 63 | + } |
|
| 64 | + } |
|
| 65 | + return null; |
|
| 66 | + } |
|
| 67 | + |
|
| 68 | + /** |
|
| 69 | + * @return AbstractBeanPropertyDescriptor[] |
|
| 70 | + */ |
|
| 71 | + public function getBeanPropertyDescriptors() |
|
| 72 | + { |
|
| 73 | + return $this->beanPropertyDescriptors; |
|
| 74 | + } |
|
| 75 | + |
|
| 76 | + /** |
|
| 77 | + * Returns the list of columns that are not nullable and not autogenerated for a given table and its parent. |
|
| 78 | + * |
|
| 79 | + * @return AbstractBeanPropertyDescriptor[] |
|
| 80 | + */ |
|
| 81 | + public function getConstructorProperties() { |
|
| 82 | + |
|
| 83 | + $constructorProperties = array_filter($this->beanPropertyDescriptors, function(AbstractBeanPropertyDescriptor $property) { |
|
| 84 | + return $property->isCompulsory(); |
|
| 85 | + }); |
|
| 86 | + |
|
| 87 | + return $constructorProperties; |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * Returns the list of properties exposed as getters and setters in this class. |
|
| 92 | + * |
|
| 93 | + * @return AbstractBeanPropertyDescriptor[] |
|
| 94 | + */ |
|
| 95 | + public function getExposedProperties() { |
|
| 96 | + $exposedProperties = array_filter($this->beanPropertyDescriptors, function(AbstractBeanPropertyDescriptor $property) { |
|
| 97 | + return $property->getTable()->getName() == $this->table->getName(); |
|
| 98 | + }); |
|
| 99 | + |
|
| 100 | + return $exposedProperties; |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + /** |
|
| 104 | + * Returns the list of foreign keys pointing to the table represented by this bean, excluding foreign keys |
|
| 105 | + * from junction tables and from inheritance. |
|
| 106 | + * |
|
| 107 | + * @return ForeignKeyConstraint[] |
|
| 108 | + */ |
|
| 109 | + public function getIncomingForeignKeys() { |
|
| 110 | + |
|
| 111 | + $junctionTables = $this->schemaAnalyzer->detectJunctionTables(); |
|
| 112 | + $junctionTableNames = array_map(function(Table $table) { return $table->getName(); }, $junctionTables); |
|
| 113 | + $childrenRelationships = $this->schemaAnalyzer->getChildrenRelationships($this->table->getName()); |
|
| 114 | + |
|
| 115 | + $fks = []; |
|
| 116 | + foreach ($this->schema->getTables() as $table) { |
|
| 117 | + foreach ($table->getForeignKeys() as $fk) { |
|
| 118 | + if ($fk->getForeignTableName() === $this->table->getName()) { |
|
| 119 | + if (in_array($fk->getLocalTableName(), $junctionTableNames)) { |
|
| 120 | + continue; |
|
| 121 | + } |
|
| 122 | + foreach ($childrenRelationships as $childFk) { |
|
| 123 | + if ($fk->getLocalTableName() === $childFk->getLocalTableName() && $fk->getLocalColumns() === $childFk->getLocalColumns()) { |
|
| 124 | + continue 2; |
|
| 125 | + } |
|
| 126 | + } |
|
| 127 | + $fks[] = $fk; |
|
| 128 | + } |
|
| 129 | + } |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + return $fks; |
|
| 133 | + } |
|
| 134 | + |
|
| 135 | + /** |
|
| 136 | + * Returns the list of properties for this table (including parent tables). |
|
| 137 | + * |
|
| 138 | + * @param Table $table |
|
| 139 | + * @return AbstractBeanPropertyDescriptor[] |
|
| 140 | + */ |
|
| 141 | + private function getProperties(Table $table) |
|
| 142 | + { |
|
| 143 | + $parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName()); |
|
| 144 | + if ($parentRelationship) { |
|
| 145 | + $parentTable = $this->schema->getTable($parentRelationship->getForeignTableName()); |
|
| 146 | + $properties = $this->getProperties($parentTable); |
|
| 147 | + // we merge properties by overriding property names. |
|
| 148 | + $localProperties = $this->getPropertiesForTable($table); |
|
| 149 | + foreach ($localProperties as $name => $property) { |
|
| 150 | + // We do not override properties if this is a primary key! |
|
| 151 | + if ($property->isPrimaryKey()) { |
|
| 152 | + continue; |
|
| 153 | + } |
|
| 154 | + $properties[$name] = $property; |
|
| 155 | + } |
|
| 156 | + //$properties = array_merge($properties, $localProperties); |
|
| 157 | + |
|
| 158 | + } else { |
|
| 159 | + $properties = $this->getPropertiesForTable($table); |
|
| 160 | + } |
|
| 161 | + |
|
| 162 | + return $properties; |
|
| 163 | + } |
|
| 164 | + |
|
| 165 | + /** |
|
| 166 | + * Returns the list of properties for this table (ignoring parent tables). |
|
| 167 | + * |
|
| 168 | + * @param Table $table |
|
| 169 | + * @return AbstractBeanPropertyDescriptor[] |
|
| 170 | + */ |
|
| 171 | + private function getPropertiesForTable(Table $table) |
|
| 172 | + { |
|
| 173 | + $parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName()); |
|
| 174 | + if ($parentRelationship) { |
|
| 175 | + $ignoreColumns = $parentRelationship->getLocalColumns(); |
|
| 176 | + } else { |
|
| 177 | + $ignoreColumns = []; |
|
| 178 | + } |
|
| 179 | + |
|
| 180 | + $beanPropertyDescriptors = []; |
|
| 181 | + |
|
| 182 | + foreach ($table->getColumns() as $column) { |
|
| 183 | + if (array_search($column->getName(), $ignoreColumns) !== false) { |
|
| 184 | + continue; |
|
| 185 | + } |
|
| 186 | + |
|
| 187 | + $fk = $this->isPartOfForeignKey($table, $column); |
|
| 188 | + if ($fk !== null) { |
|
| 189 | + // Check that previously added descriptors are not added on same FK (can happen with multi key FK). |
|
| 190 | + foreach ($beanPropertyDescriptors as $beanDescriptor) { |
|
| 191 | + if ($beanDescriptor instanceof ObjectBeanPropertyDescriptor && $beanDescriptor->getForeignKey() === $fk) { |
|
| 192 | + continue 2; |
|
| 193 | + } |
|
| 194 | + } |
|
| 195 | + // Check that this property is not an inheritance relationship |
|
| 196 | + $parentRelationship = $this->schemaAnalyzer->getParentRelationship($table->getName()); |
|
| 197 | + if ($parentRelationship === $fk) { |
|
| 198 | + continue; |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + $beanPropertyDescriptors[] = new ObjectBeanPropertyDescriptor($table, $fk, $this->schemaAnalyzer); |
|
| 202 | + } else { |
|
| 203 | + $beanPropertyDescriptors[] = new ScalarBeanPropertyDescriptor($table, $column); |
|
| 204 | + } |
|
| 205 | + } |
|
| 206 | + |
|
| 207 | + // Now, let's get the name of all properties and let's check there is no duplicate. |
|
| 208 | + /** @var $names AbstractBeanPropertyDescriptor[] */ |
|
| 209 | + $names = []; |
|
| 210 | + foreach ($beanPropertyDescriptors as $beanDescriptor) { |
|
| 211 | + $name = $beanDescriptor->getUpperCamelCaseName(); |
|
| 212 | + if (isset($names[$name])) { |
|
| 213 | + $names[$name]->useAlternativeName(); |
|
| 214 | + $beanDescriptor->useAlternativeName(); |
|
| 215 | + } else { |
|
| 216 | + $names[$name] = $beanDescriptor; |
|
| 217 | + } |
|
| 218 | + } |
|
| 219 | + |
|
| 220 | + // Final check (throw exceptions if problem arises) |
|
| 221 | + $names = []; |
|
| 222 | + foreach ($beanPropertyDescriptors as $beanDescriptor) { |
|
| 223 | + $name = $beanDescriptor->getUpperCamelCaseName(); |
|
| 224 | + if (isset($names[$name])) { |
|
| 225 | + throw new TDBMException("Unsolvable name conflict while generating method name"); |
|
| 226 | + } else { |
|
| 227 | + $names[$name] = $beanDescriptor; |
|
| 228 | + } |
|
| 229 | + } |
|
| 230 | + |
|
| 231 | + // Last step, let's rebuild the list with a map: |
|
| 232 | + $beanPropertyDescriptorsMap = []; |
|
| 233 | + foreach ($beanPropertyDescriptors as $beanDescriptor) { |
|
| 234 | + $beanPropertyDescriptorsMap[$beanDescriptor->getLowerCamelCaseName()] = $beanDescriptor; |
|
| 235 | + } |
|
| 236 | + |
|
| 237 | + return $beanPropertyDescriptorsMap; |
|
| 238 | + } |
|
| 239 | + |
|
| 240 | + public function generateBeanConstructor() { |
|
| 241 | + $constructorProperties = $this->getConstructorProperties(); |
|
| 242 | + |
|
| 243 | + $constructorCode = " /** |
|
| 244 | 244 | * The constructor takes all compulsory arguments. |
| 245 | 245 | * |
| 246 | 246 | %s |
@@ -250,64 +250,64 @@ discard block |
||
| 250 | 250 | } |
| 251 | 251 | "; |
| 252 | 252 | |
| 253 | - $paramAnnotations = []; |
|
| 254 | - $arguments = []; |
|
| 255 | - $assigns = []; |
|
| 256 | - $parentConstructorArguments = []; |
|
| 257 | - |
|
| 258 | - foreach ($constructorProperties as $property) { |
|
| 259 | - $className = $property->getClassName(); |
|
| 260 | - if ($className) { |
|
| 261 | - $arguments[] = $className.' '.$property->getVariableName(); |
|
| 262 | - } else { |
|
| 263 | - $arguments[] = $property->getVariableName(); |
|
| 264 | - } |
|
| 265 | - $paramAnnotations[] = $property->getParamAnnotation(); |
|
| 266 | - if ($property->getTable()->getName() === $this->table->getName()) { |
|
| 267 | - $assigns[] = $property->getConstructorAssignCode(); |
|
| 268 | - } else { |
|
| 269 | - $parentConstructorArguments[] = $property->getVariableName(); |
|
| 270 | - } |
|
| 271 | - } |
|
| 272 | - |
|
| 273 | - $parentConstrutorCode = sprintf(" parent::__construct(%s);\n", implode(', ', $parentConstructorArguments)); |
|
| 274 | - |
|
| 275 | - return sprintf($constructorCode, implode("\n", $paramAnnotations), implode(", ", $arguments), $parentConstrutorCode, implode("\n", $assigns)); |
|
| 276 | - } |
|
| 253 | + $paramAnnotations = []; |
|
| 254 | + $arguments = []; |
|
| 255 | + $assigns = []; |
|
| 256 | + $parentConstructorArguments = []; |
|
| 257 | + |
|
| 258 | + foreach ($constructorProperties as $property) { |
|
| 259 | + $className = $property->getClassName(); |
|
| 260 | + if ($className) { |
|
| 261 | + $arguments[] = $className.' '.$property->getVariableName(); |
|
| 262 | + } else { |
|
| 263 | + $arguments[] = $property->getVariableName(); |
|
| 264 | + } |
|
| 265 | + $paramAnnotations[] = $property->getParamAnnotation(); |
|
| 266 | + if ($property->getTable()->getName() === $this->table->getName()) { |
|
| 267 | + $assigns[] = $property->getConstructorAssignCode(); |
|
| 268 | + } else { |
|
| 269 | + $parentConstructorArguments[] = $property->getVariableName(); |
|
| 270 | + } |
|
| 271 | + } |
|
| 277 | 272 | |
| 278 | - public function generateDirectForeignKeysCode() { |
|
| 279 | - $fks = $this->getIncomingForeignKeys(); |
|
| 273 | + $parentConstrutorCode = sprintf(" parent::__construct(%s);\n", implode(', ', $parentConstructorArguments)); |
|
| 280 | 274 | |
| 281 | - $fksByTable = []; |
|
| 275 | + return sprintf($constructorCode, implode("\n", $paramAnnotations), implode(", ", $arguments), $parentConstrutorCode, implode("\n", $assigns)); |
|
| 276 | + } |
|
| 282 | 277 | |
| 283 | - foreach ($fks as $fk) { |
|
| 284 | - $fksByTable[$fk->getLocalTableName()][] = $fk; |
|
| 285 | - } |
|
| 278 | + public function generateDirectForeignKeysCode() { |
|
| 279 | + $fks = $this->getIncomingForeignKeys(); |
|
| 286 | 280 | |
| 287 | - /* @var $fksByMethodName ForeignKeyConstraint[] */ |
|
| 288 | - $fksByMethodName = []; |
|
| 281 | + $fksByTable = []; |
|
| 289 | 282 | |
| 290 | - foreach ($fksByTable as $tableName => $fksForTable) { |
|
| 291 | - if (count($fksForTable) > 1) { |
|
| 292 | - foreach ($fksForTable as $fk) { |
|
| 293 | - $methodName = 'get'.TDBMDaoGenerator::toCamelCase($fk->getLocalTableName()).'By'; |
|
| 283 | + foreach ($fks as $fk) { |
|
| 284 | + $fksByTable[$fk->getLocalTableName()][] = $fk; |
|
| 285 | + } |
|
| 294 | 286 | |
| 295 | - $camelizedColumns = array_map(['Mouf\\Database\\TDBM\\Utils\\TDBMDaoGenerator', 'toCamelCase'], $fk->getLocalColumns()); |
|
| 287 | + /* @var $fksByMethodName ForeignKeyConstraint[] */ |
|
| 288 | + $fksByMethodName = []; |
|
| 296 | 289 | |
| 297 | - $methodName .= implode('And', $camelizedColumns); |
|
| 290 | + foreach ($fksByTable as $tableName => $fksForTable) { |
|
| 291 | + if (count($fksForTable) > 1) { |
|
| 292 | + foreach ($fksForTable as $fk) { |
|
| 293 | + $methodName = 'get'.TDBMDaoGenerator::toCamelCase($fk->getLocalTableName()).'By'; |
|
| 298 | 294 | |
| 299 | - $fksByMethodName[$methodName] = $fk; |
|
| 300 | - } |
|
| 301 | - } else { |
|
| 302 | - $methodName = 'get'.TDBMDaoGenerator::toCamelCase($fksForTable[0]->getLocalTableName()); |
|
| 303 | - $fksByMethodName[$methodName] = $fk; |
|
| 304 | - } |
|
| 305 | - } |
|
| 295 | + $camelizedColumns = array_map(['Mouf\\Database\\TDBM\\Utils\\TDBMDaoGenerator', 'toCamelCase'], $fk->getLocalColumns()); |
|
| 306 | 296 | |
| 307 | - $code = ''; |
|
| 297 | + $methodName .= implode('And', $camelizedColumns); |
|
| 308 | 298 | |
| 309 | - foreach ($fksByMethodName as $methodName => $fk) { |
|
| 310 | - $getterCode = ' /** |
|
| 299 | + $fksByMethodName[$methodName] = $fk; |
|
| 300 | + } |
|
| 301 | + } else { |
|
| 302 | + $methodName = 'get'.TDBMDaoGenerator::toCamelCase($fksForTable[0]->getLocalTableName()); |
|
| 303 | + $fksByMethodName[$methodName] = $fk; |
|
| 304 | + } |
|
| 305 | + } |
|
| 306 | + |
|
| 307 | + $code = ''; |
|
| 308 | + |
|
| 309 | + foreach ($fksByMethodName as $methodName => $fk) { |
|
| 310 | + $getterCode = ' /** |
|
| 311 | 311 | * Returns the list of %s pointing to this bean via the %s column. |
| 312 | 312 | * |
| 313 | 313 | * @return %s[]|Resultiterator |
@@ -319,103 +319,103 @@ discard block |
||
| 319 | 319 | |
| 320 | 320 | '; |
| 321 | 321 | |
| 322 | - list($sql, $parametersCode) = $this->getFilters($fk); |
|
| 323 | - |
|
| 324 | - $beanClass = TDBMDaoGenerator::getBeanNameFromTableName($fk->getLocalTableName()); |
|
| 325 | - $code .= sprintf($getterCode, |
|
| 326 | - $beanClass, |
|
| 327 | - implode(', ', $fk->getColumns()), |
|
| 328 | - $beanClass, |
|
| 329 | - $methodName, |
|
| 330 | - var_export($fk->getLocalTableName(), true), |
|
| 331 | - $sql, |
|
| 332 | - $parametersCode |
|
| 333 | - ); |
|
| 334 | - } |
|
| 335 | - |
|
| 336 | - return $code; |
|
| 337 | - } |
|
| 338 | - |
|
| 339 | - private function getFilters(ForeignKeyConstraint $fk) { |
|
| 340 | - $sqlParts = []; |
|
| 341 | - $counter = 0; |
|
| 342 | - $parameters = []; |
|
| 343 | - |
|
| 344 | - $pkColumns = $this->table->getPrimaryKeyColumns(); |
|
| 345 | - |
|
| 346 | - foreach ($fk->getLocalColumns() as $columnName) { |
|
| 347 | - $paramName = "tdbmparam".$counter; |
|
| 348 | - $sqlParts[] = $fk->getLocalTableName().'.'.$columnName." = :".$paramName; |
|
| 349 | - |
|
| 350 | - $pkColumn = $pkColumns[$counter]; |
|
| 351 | - $parameters[] = sprintf('%s => $this->get(%s, %s)', var_export($paramName, true), var_export($pkColumn, true), var_export($this->table->getName(), true)); |
|
| 352 | - $counter++; |
|
| 353 | - } |
|
| 354 | - $sql = "'".implode(' AND ', $sqlParts)."'"; |
|
| 355 | - $parametersCode = '[ '.implode(', ', $parameters).' ]'; |
|
| 356 | - |
|
| 357 | - return [$sql, $parametersCode]; |
|
| 358 | - } |
|
| 359 | - |
|
| 360 | - /** |
|
| 361 | - * Generate code section about pivot tables |
|
| 362 | - * |
|
| 363 | - * @return string; |
|
| 364 | - */ |
|
| 365 | - public function generatePivotTableCode() { |
|
| 366 | - $descs = []; |
|
| 367 | - foreach ($this->schemaAnalyzer->detectJunctionTables() as $table) { |
|
| 368 | - // There are exactly 2 FKs since this is a pivot table. |
|
| 369 | - $fks = array_values($table->getForeignKeys()); |
|
| 370 | - |
|
| 371 | - if ($fks[0]->getForeignTableName() === $this->table->getName()) { |
|
| 372 | - $localFK = $fks[0]; |
|
| 373 | - $remoteFK = $fks[1]; |
|
| 374 | - } elseif ($fks[1]->getForeignTableName() === $this->table->getName()) { |
|
| 375 | - $localFK = $fks[1]; |
|
| 376 | - $remoteFK = $fks[0]; |
|
| 377 | - } else { |
|
| 378 | - continue; |
|
| 379 | - } |
|
| 380 | - |
|
| 381 | - $descs[$remoteFK->getForeignTableName()][] = [ |
|
| 382 | - 'table' => $table, |
|
| 383 | - 'localFK' => $localFK, |
|
| 384 | - 'remoteFK' => $remoteFK |
|
| 385 | - ]; |
|
| 386 | - |
|
| 387 | - } |
|
| 388 | - |
|
| 389 | - $finalDescs = []; |
|
| 390 | - foreach ($descs as $descArray) { |
|
| 391 | - if (count($descArray) > 1) { |
|
| 392 | - foreach ($descArray as $desc) { |
|
| 393 | - $desc['name'] = TDBMDaoGenerator::toCamelCase($desc['remoteFK']->getForeignTableName())."By".TDBMDaoGenerator::toCamelCase($desc['table']->getName()); |
|
| 394 | - $finalDescs[] = $desc; |
|
| 395 | - } |
|
| 396 | - } else { |
|
| 397 | - $desc = $descArray[0]; |
|
| 398 | - $desc['name'] = TDBMDaoGenerator::toCamelCase($desc['remoteFK']->getForeignTableName()); |
|
| 399 | - $finalDescs[] = $desc; |
|
| 400 | - } |
|
| 401 | - } |
|
| 402 | - |
|
| 403 | - |
|
| 404 | - $code = ''; |
|
| 405 | - |
|
| 406 | - foreach ($finalDescs as $desc) { |
|
| 407 | - $code .= $this->getPivotTableCode($desc['name'], $desc['table'], $desc['localFK'], $desc['remoteFK']); |
|
| 408 | - } |
|
| 409 | - |
|
| 410 | - return $code; |
|
| 411 | - } |
|
| 412 | - |
|
| 413 | - public function getPivotTableCode($name, Table $table, ForeignKeyConstraint $localFK, ForeignKeyConstraint $remoteFK) { |
|
| 414 | - $singularName = TDBMDaoGenerator::toSingular($name); |
|
| 415 | - $remoteBeanName = TDBMDaoGenerator::getBeanNameFromTableName($remoteFK->getForeignTableName()); |
|
| 416 | - $variableName = '$'.TDBMDaoGenerator::toVariableName($remoteBeanName); |
|
| 417 | - |
|
| 418 | - $str = ' /** |
|
| 322 | + list($sql, $parametersCode) = $this->getFilters($fk); |
|
| 323 | + |
|
| 324 | + $beanClass = TDBMDaoGenerator::getBeanNameFromTableName($fk->getLocalTableName()); |
|
| 325 | + $code .= sprintf($getterCode, |
|
| 326 | + $beanClass, |
|
| 327 | + implode(', ', $fk->getColumns()), |
|
| 328 | + $beanClass, |
|
| 329 | + $methodName, |
|
| 330 | + var_export($fk->getLocalTableName(), true), |
|
| 331 | + $sql, |
|
| 332 | + $parametersCode |
|
| 333 | + ); |
|
| 334 | + } |
|
| 335 | + |
|
| 336 | + return $code; |
|
| 337 | + } |
|
| 338 | + |
|
| 339 | + private function getFilters(ForeignKeyConstraint $fk) { |
|
| 340 | + $sqlParts = []; |
|
| 341 | + $counter = 0; |
|
| 342 | + $parameters = []; |
|
| 343 | + |
|
| 344 | + $pkColumns = $this->table->getPrimaryKeyColumns(); |
|
| 345 | + |
|
| 346 | + foreach ($fk->getLocalColumns() as $columnName) { |
|
| 347 | + $paramName = "tdbmparam".$counter; |
|
| 348 | + $sqlParts[] = $fk->getLocalTableName().'.'.$columnName." = :".$paramName; |
|
| 349 | + |
|
| 350 | + $pkColumn = $pkColumns[$counter]; |
|
| 351 | + $parameters[] = sprintf('%s => $this->get(%s, %s)', var_export($paramName, true), var_export($pkColumn, true), var_export($this->table->getName(), true)); |
|
| 352 | + $counter++; |
|
| 353 | + } |
|
| 354 | + $sql = "'".implode(' AND ', $sqlParts)."'"; |
|
| 355 | + $parametersCode = '[ '.implode(', ', $parameters).' ]'; |
|
| 356 | + |
|
| 357 | + return [$sql, $parametersCode]; |
|
| 358 | + } |
|
| 359 | + |
|
| 360 | + /** |
|
| 361 | + * Generate code section about pivot tables |
|
| 362 | + * |
|
| 363 | + * @return string; |
|
| 364 | + */ |
|
| 365 | + public function generatePivotTableCode() { |
|
| 366 | + $descs = []; |
|
| 367 | + foreach ($this->schemaAnalyzer->detectJunctionTables() as $table) { |
|
| 368 | + // There are exactly 2 FKs since this is a pivot table. |
|
| 369 | + $fks = array_values($table->getForeignKeys()); |
|
| 370 | + |
|
| 371 | + if ($fks[0]->getForeignTableName() === $this->table->getName()) { |
|
| 372 | + $localFK = $fks[0]; |
|
| 373 | + $remoteFK = $fks[1]; |
|
| 374 | + } elseif ($fks[1]->getForeignTableName() === $this->table->getName()) { |
|
| 375 | + $localFK = $fks[1]; |
|
| 376 | + $remoteFK = $fks[0]; |
|
| 377 | + } else { |
|
| 378 | + continue; |
|
| 379 | + } |
|
| 380 | + |
|
| 381 | + $descs[$remoteFK->getForeignTableName()][] = [ |
|
| 382 | + 'table' => $table, |
|
| 383 | + 'localFK' => $localFK, |
|
| 384 | + 'remoteFK' => $remoteFK |
|
| 385 | + ]; |
|
| 386 | + |
|
| 387 | + } |
|
| 388 | + |
|
| 389 | + $finalDescs = []; |
|
| 390 | + foreach ($descs as $descArray) { |
|
| 391 | + if (count($descArray) > 1) { |
|
| 392 | + foreach ($descArray as $desc) { |
|
| 393 | + $desc['name'] = TDBMDaoGenerator::toCamelCase($desc['remoteFK']->getForeignTableName())."By".TDBMDaoGenerator::toCamelCase($desc['table']->getName()); |
|
| 394 | + $finalDescs[] = $desc; |
|
| 395 | + } |
|
| 396 | + } else { |
|
| 397 | + $desc = $descArray[0]; |
|
| 398 | + $desc['name'] = TDBMDaoGenerator::toCamelCase($desc['remoteFK']->getForeignTableName()); |
|
| 399 | + $finalDescs[] = $desc; |
|
| 400 | + } |
|
| 401 | + } |
|
| 402 | + |
|
| 403 | + |
|
| 404 | + $code = ''; |
|
| 405 | + |
|
| 406 | + foreach ($finalDescs as $desc) { |
|
| 407 | + $code .= $this->getPivotTableCode($desc['name'], $desc['table'], $desc['localFK'], $desc['remoteFK']); |
|
| 408 | + } |
|
| 409 | + |
|
| 410 | + return $code; |
|
| 411 | + } |
|
| 412 | + |
|
| 413 | + public function getPivotTableCode($name, Table $table, ForeignKeyConstraint $localFK, ForeignKeyConstraint $remoteFK) { |
|
| 414 | + $singularName = TDBMDaoGenerator::toSingular($name); |
|
| 415 | + $remoteBeanName = TDBMDaoGenerator::getBeanNameFromTableName($remoteFK->getForeignTableName()); |
|
| 416 | + $variableName = '$'.TDBMDaoGenerator::toVariableName($remoteBeanName); |
|
| 417 | + |
|
| 418 | + $str = ' /** |
|
| 419 | 419 | * Returns the list of %s associated to this bean via the %s pivot table. |
| 420 | 420 | * |
| 421 | 421 | * @return %s[] |
@@ -425,9 +425,9 @@ discard block |
||
| 425 | 425 | } |
| 426 | 426 | '; |
| 427 | 427 | |
| 428 | - $getterCode = sprintf($str, $remoteBeanName, $table->getName(), $remoteBeanName, $name, var_export($remoteFK->getLocalTableName(), true)); |
|
| 428 | + $getterCode = sprintf($str, $remoteBeanName, $table->getName(), $remoteBeanName, $name, var_export($remoteFK->getLocalTableName(), true)); |
|
| 429 | 429 | |
| 430 | - $str = ' /** |
|
| 430 | + $str = ' /** |
|
| 431 | 431 | * Adds a relationship with %s associated to this bean via the %s pivot table. |
| 432 | 432 | * |
| 433 | 433 | * @param %s %s |
@@ -437,9 +437,9 @@ discard block |
||
| 437 | 437 | } |
| 438 | 438 | '; |
| 439 | 439 | |
| 440 | - $adderCode = sprintf($str, $remoteBeanName, $table->getName(), $remoteBeanName, $variableName, $singularName, $remoteBeanName, $variableName, var_export($remoteFK->getLocalTableName(), true), $variableName); |
|
| 440 | + $adderCode = sprintf($str, $remoteBeanName, $table->getName(), $remoteBeanName, $variableName, $singularName, $remoteBeanName, $variableName, var_export($remoteFK->getLocalTableName(), true), $variableName); |
|
| 441 | 441 | |
| 442 | - $str = ' /** |
|
| 442 | + $str = ' /** |
|
| 443 | 443 | * Deletes the relationship with %s associated to this bean via the %s pivot table. |
| 444 | 444 | * |
| 445 | 445 | * @param %s %s |
@@ -449,9 +449,9 @@ discard block |
||
| 449 | 449 | } |
| 450 | 450 | '; |
| 451 | 451 | |
| 452 | - $removerCode = sprintf($str, $remoteBeanName, $table->getName(), $remoteBeanName, $variableName, $singularName, $remoteBeanName, $variableName, var_export($remoteFK->getLocalTableName(), true), $variableName); |
|
| 452 | + $removerCode = sprintf($str, $remoteBeanName, $table->getName(), $remoteBeanName, $variableName, $singularName, $remoteBeanName, $variableName, var_export($remoteFK->getLocalTableName(), true), $variableName); |
|
| 453 | 453 | |
| 454 | - $str = ' /** |
|
| 454 | + $str = ' /** |
|
| 455 | 455 | * Returns whether this bean is associated with %s via the %s pivot table. |
| 456 | 456 | * |
| 457 | 457 | * @param %s %s |
@@ -462,34 +462,34 @@ discard block |
||
| 462 | 462 | } |
| 463 | 463 | '; |
| 464 | 464 | |
| 465 | - $hasCode = sprintf($str, $remoteBeanName, $table->getName(), $remoteBeanName, $variableName, $singularName, $remoteBeanName, $variableName, var_export($remoteFK->getLocalTableName(), true), $variableName); |
|
| 465 | + $hasCode = sprintf($str, $remoteBeanName, $table->getName(), $remoteBeanName, $variableName, $singularName, $remoteBeanName, $variableName, var_export($remoteFK->getLocalTableName(), true), $variableName); |
|
| 466 | 466 | |
| 467 | 467 | |
| 468 | - $code = $getterCode.$adderCode.$removerCode.$hasCode; |
|
| 468 | + $code = $getterCode.$adderCode.$removerCode.$hasCode; |
|
| 469 | 469 | |
| 470 | - return $code; |
|
| 471 | - } |
|
| 470 | + return $code; |
|
| 471 | + } |
|
| 472 | 472 | |
| 473 | - /** |
|
| 474 | - * Writes the PHP bean file with all getters and setters from the table passed in parameter. |
|
| 475 | - * |
|
| 476 | - * @param string $beannamespace The namespace of the bean |
|
| 477 | - */ |
|
| 478 | - public function generatePhpCode($beannamespace) { |
|
| 479 | - $baseClassName = TDBMDaoGenerator::getBaseBeanNameFromTableName($this->table->getName()); |
|
| 480 | - $className = TDBMDaoGenerator::getBeanNameFromTableName($this->table->getName()); |
|
| 481 | - $tableName = $this->table->getName(); |
|
| 482 | - |
|
| 483 | - $parentFk = $this->schemaAnalyzer->getParentRelationship($tableName); |
|
| 484 | - if ($parentFk !== null) { |
|
| 485 | - $extends = TDBMDaoGenerator::getBeanNameFromTableName($parentFk->getForeignTableName()); |
|
| 486 | - $use = ""; |
|
| 487 | - } else { |
|
| 488 | - $extends = "AbstractTDBMObject"; |
|
| 489 | - $use = "use Mouf\\Database\\TDBM\\AbstractTDBMObject;\n\n"; |
|
| 490 | - } |
|
| 491 | - |
|
| 492 | - $str = "<?php |
|
| 473 | + /** |
|
| 474 | + * Writes the PHP bean file with all getters and setters from the table passed in parameter. |
|
| 475 | + * |
|
| 476 | + * @param string $beannamespace The namespace of the bean |
|
| 477 | + */ |
|
| 478 | + public function generatePhpCode($beannamespace) { |
|
| 479 | + $baseClassName = TDBMDaoGenerator::getBaseBeanNameFromTableName($this->table->getName()); |
|
| 480 | + $className = TDBMDaoGenerator::getBeanNameFromTableName($this->table->getName()); |
|
| 481 | + $tableName = $this->table->getName(); |
|
| 482 | + |
|
| 483 | + $parentFk = $this->schemaAnalyzer->getParentRelationship($tableName); |
|
| 484 | + if ($parentFk !== null) { |
|
| 485 | + $extends = TDBMDaoGenerator::getBeanNameFromTableName($parentFk->getForeignTableName()); |
|
| 486 | + $use = ""; |
|
| 487 | + } else { |
|
| 488 | + $extends = "AbstractTDBMObject"; |
|
| 489 | + $use = "use Mouf\\Database\\TDBM\\AbstractTDBMObject;\n\n"; |
|
| 490 | + } |
|
| 491 | + |
|
| 492 | + $str = "<?php |
|
| 493 | 493 | namespace {$beannamespace}; |
| 494 | 494 | |
| 495 | 495 | use Mouf\\Database\\TDBM\\ResultIterator; |
@@ -507,19 +507,19 @@ discard block |
||
| 507 | 507 | { |
| 508 | 508 | "; |
| 509 | 509 | |
| 510 | - $str .= $this->generateBeanConstructor(); |
|
| 510 | + $str .= $this->generateBeanConstructor(); |
|
| 511 | 511 | |
| 512 | 512 | |
| 513 | 513 | |
| 514 | - foreach ($this->getExposedProperties() as $property) { |
|
| 515 | - $str .= $property->getGetterSetterCode(); |
|
| 516 | - } |
|
| 514 | + foreach ($this->getExposedProperties() as $property) { |
|
| 515 | + $str .= $property->getGetterSetterCode(); |
|
| 516 | + } |
|
| 517 | 517 | |
| 518 | - $str .= $this->generateDirectForeignKeysCode(); |
|
| 519 | - $str .= $this->generatePivotTableCode(); |
|
| 518 | + $str .= $this->generateDirectForeignKeysCode(); |
|
| 519 | + $str .= $this->generatePivotTableCode(); |
|
| 520 | 520 | |
| 521 | - $str .= "} |
|
| 521 | + $str .= "} |
|
| 522 | 522 | "; |
| 523 | - return $str; |
|
| 524 | - } |
|
| 523 | + return $str; |
|
| 524 | + } |
|
| 525 | 525 | } |
@@ -13,97 +13,97 @@ |
||
| 13 | 13 | abstract class AbstractBeanPropertyDescriptor |
| 14 | 14 | { |
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * @var Table |
|
| 18 | - */ |
|
| 19 | - protected $table; |
|
| 20 | - |
|
| 21 | - /** |
|
| 22 | - * Whether to use the more complex name in case of conflict. |
|
| 23 | - * @var bool |
|
| 24 | - */ |
|
| 25 | - protected $alternativeName = false; |
|
| 26 | - |
|
| 27 | - /** |
|
| 28 | - * @param Table $table |
|
| 29 | - */ |
|
| 30 | - public function __construct(Table $table) |
|
| 31 | - { |
|
| 32 | - $this->table = $table; |
|
| 33 | - } |
|
| 34 | - |
|
| 35 | - |
|
| 36 | - /** |
|
| 37 | - * Use the more complex name in case of conflict. |
|
| 38 | - */ |
|
| 39 | - public function useAlternativeName() |
|
| 40 | - { |
|
| 41 | - $this->alternativeName = true; |
|
| 42 | - } |
|
| 43 | - |
|
| 44 | - /** |
|
| 45 | - * Returns the name of the class linked to this property or null if this is not a foreign key |
|
| 46 | - * @return null|string |
|
| 47 | - */ |
|
| 48 | - abstract public function getClassName(); |
|
| 49 | - |
|
| 50 | - /** |
|
| 51 | - * Returns the param annotation for this property (useful for constructor). |
|
| 52 | - * |
|
| 53 | - * @return string |
|
| 54 | - */ |
|
| 55 | - abstract public function getParamAnnotation(); |
|
| 56 | - |
|
| 57 | - public function getVariableName() { |
|
| 58 | - return '$'.$this->getLowerCamelCaseName(); |
|
| 59 | - } |
|
| 60 | - |
|
| 61 | - public function getLowerCamelCaseName() { |
|
| 62 | - return TDBMDaoGenerator::toVariableName($this->getUpperCamelCaseName()); |
|
| 63 | - } |
|
| 64 | - |
|
| 65 | - abstract public function getUpperCamelCaseName(); |
|
| 66 | - |
|
| 67 | - public function getSetterName() { |
|
| 68 | - return 'set'.$this->getUpperCamelCaseName(); |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - public function getGetterName() { |
|
| 72 | - return 'get'.$this->getUpperCamelCaseName(); |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - /** |
|
| 76 | - * Returns the PHP code used in the ben constructor for this property. |
|
| 77 | - * @return string |
|
| 78 | - */ |
|
| 79 | - public function getConstructorAssignCode() { |
|
| 80 | - $str = ' $this->%s(%s);'; |
|
| 81 | - return sprintf($str, $this->getSetterName(), $this->getVariableName()); |
|
| 82 | - } |
|
| 83 | - |
|
| 84 | - /** |
|
| 85 | - * Returns true if the property is compulsory (and therefore should be fetched in the constructor). |
|
| 86 | - * @return bool |
|
| 87 | - */ |
|
| 88 | - abstract public function isCompulsory(); |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * Returns true if the property is the primary key |
|
| 92 | - * @return bool |
|
| 93 | - */ |
|
| 94 | - abstract public function isPrimaryKey(); |
|
| 95 | - |
|
| 96 | - /** |
|
| 97 | - * @return Table |
|
| 98 | - */ |
|
| 99 | - public function getTable() |
|
| 100 | - { |
|
| 101 | - return $this->table; |
|
| 102 | - } |
|
| 103 | - |
|
| 104 | - /** |
|
| 105 | - * Returns the PHP code for getters and setters |
|
| 106 | - * @return string |
|
| 107 | - */ |
|
| 108 | - abstract public function getGetterSetterCode(); |
|
| 16 | + /** |
|
| 17 | + * @var Table |
|
| 18 | + */ |
|
| 19 | + protected $table; |
|
| 20 | + |
|
| 21 | + /** |
|
| 22 | + * Whether to use the more complex name in case of conflict. |
|
| 23 | + * @var bool |
|
| 24 | + */ |
|
| 25 | + protected $alternativeName = false; |
|
| 26 | + |
|
| 27 | + /** |
|
| 28 | + * @param Table $table |
|
| 29 | + */ |
|
| 30 | + public function __construct(Table $table) |
|
| 31 | + { |
|
| 32 | + $this->table = $table; |
|
| 33 | + } |
|
| 34 | + |
|
| 35 | + |
|
| 36 | + /** |
|
| 37 | + * Use the more complex name in case of conflict. |
|
| 38 | + */ |
|
| 39 | + public function useAlternativeName() |
|
| 40 | + { |
|
| 41 | + $this->alternativeName = true; |
|
| 42 | + } |
|
| 43 | + |
|
| 44 | + /** |
|
| 45 | + * Returns the name of the class linked to this property or null if this is not a foreign key |
|
| 46 | + * @return null|string |
|
| 47 | + */ |
|
| 48 | + abstract public function getClassName(); |
|
| 49 | + |
|
| 50 | + /** |
|
| 51 | + * Returns the param annotation for this property (useful for constructor). |
|
| 52 | + * |
|
| 53 | + * @return string |
|
| 54 | + */ |
|
| 55 | + abstract public function getParamAnnotation(); |
|
| 56 | + |
|
| 57 | + public function getVariableName() { |
|
| 58 | + return '$'.$this->getLowerCamelCaseName(); |
|
| 59 | + } |
|
| 60 | + |
|
| 61 | + public function getLowerCamelCaseName() { |
|
| 62 | + return TDBMDaoGenerator::toVariableName($this->getUpperCamelCaseName()); |
|
| 63 | + } |
|
| 64 | + |
|
| 65 | + abstract public function getUpperCamelCaseName(); |
|
| 66 | + |
|
| 67 | + public function getSetterName() { |
|
| 68 | + return 'set'.$this->getUpperCamelCaseName(); |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + public function getGetterName() { |
|
| 72 | + return 'get'.$this->getUpperCamelCaseName(); |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + /** |
|
| 76 | + * Returns the PHP code used in the ben constructor for this property. |
|
| 77 | + * @return string |
|
| 78 | + */ |
|
| 79 | + public function getConstructorAssignCode() { |
|
| 80 | + $str = ' $this->%s(%s);'; |
|
| 81 | + return sprintf($str, $this->getSetterName(), $this->getVariableName()); |
|
| 82 | + } |
|
| 83 | + |
|
| 84 | + /** |
|
| 85 | + * Returns true if the property is compulsory (and therefore should be fetched in the constructor). |
|
| 86 | + * @return bool |
|
| 87 | + */ |
|
| 88 | + abstract public function isCompulsory(); |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * Returns true if the property is the primary key |
|
| 92 | + * @return bool |
|
| 93 | + */ |
|
| 94 | + abstract public function isPrimaryKey(); |
|
| 95 | + |
|
| 96 | + /** |
|
| 97 | + * @return Table |
|
| 98 | + */ |
|
| 99 | + public function getTable() |
|
| 100 | + { |
|
| 101 | + return $this->table; |
|
| 102 | + } |
|
| 103 | + |
|
| 104 | + /** |
|
| 105 | + * Returns the PHP code for getters and setters |
|
| 106 | + * @return string |
|
| 107 | + */ |
|
| 108 | + abstract public function getGetterSetterCode(); |
|
| 109 | 109 | } |
| 110 | 110 | \ No newline at end of file |
@@ -59,10 +59,10 @@ discard block |
||
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | if ($this->daoNamespace == null && $this->beanNamespace == null) { |
| 62 | - $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json'); |
|
| 62 | + $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json'); |
|
| 63 | 63 | |
| 64 | 64 | $autoloadNamespaces = $classNameMapper->getManagedNamespaces(); |
| 65 | - if ($autoloadNamespaces) { |
|
| 65 | + if ($autoloadNamespaces) { |
|
| 66 | 66 | $this->autoloadDetected = true; |
| 67 | 67 | $rootNamespace = $autoloadNamespaces[0]; |
| 68 | 68 | $this->daoNamespace = $rootNamespace."Dao"; |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | |
| 139 | 139 | $tdbmService = new InstanceProxy($name); |
| 140 | 140 | /* @var $tdbmService TDBMService */ |
| 141 | - $tables = $tdbmService->generateAllDaosAndBeans($daofactoryclassname, $daonamespace, $beannamespace, $storeInUtc); |
|
| 141 | + $tables = $tdbmService->generateAllDaosAndBeans($daofactoryclassname, $daonamespace, $beannamespace, $storeInUtc); |
|
| 142 | 142 | |
| 143 | 143 | |
| 144 | 144 | $moufManager->declareComponent($daofactoryinstancename, $daonamespace."\\".$daofactoryclassname, false, MoufManager::DECLARE_ON_EXIST_KEEP_INCOMING_LINKS); |
@@ -109,12 +109,12 @@ discard block |
||
| 109 | 109 | $this->beanNamespace = $this->moufManager->getVariable("tdbmDefaultBeanNamespace_tdbmService"); |
| 110 | 110 | |
| 111 | 111 | if ($this->daoNamespace == null && $this->beanNamespace == null) { |
| 112 | - $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json'); |
|
| 112 | + $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json'); |
|
| 113 | 113 | |
| 114 | - $autoloadNamespaces = $classNameMapper->getManagedNamespaces(); |
|
| 114 | + $autoloadNamespaces = $classNameMapper->getManagedNamespaces(); |
|
| 115 | 115 | if ($autoloadNamespaces) { |
| 116 | 116 | $this->autoloadDetected = true; |
| 117 | - $rootNamespace = $autoloadNamespaces[0]; |
|
| 117 | + $rootNamespace = $autoloadNamespaces[0]; |
|
| 118 | 118 | $this->daoNamespace = $rootNamespace."Dao"; |
| 119 | 119 | $this->beanNamespace = $rootNamespace."Dao\\Bean"; |
| 120 | 120 | } else { |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | * @param string $selfedit |
| 145 | 145 | * @throws \Mouf\MoufException |
| 146 | 146 | */ |
| 147 | - public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit="false") { |
|
| 147 | + public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit="false") { |
|
| 148 | 148 | $this->selfedit = $selfedit; |
| 149 | 149 | |
| 150 | 150 | if ($selfedit == "true") { |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | private function getAllPossiblePaths() { |
| 48 | - return AmbiguityException::getAllPossiblePathsRec($this->paths); |
|
| 48 | + return AmbiguityException::getAllPossiblePathsRec($this->paths); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | private static function getAllPossiblePathsRec($sub_table_paths) |
@@ -25,10 +25,10 @@ |
||
| 25 | 25 | * @author David Negrier |
| 26 | 26 | */ |
| 27 | 27 | final class TDBMObjectStateEnum extends AbstractTDBMObject { |
| 28 | - const STATE_DETACHED = "detached"; |
|
| 29 | - const STATE_NEW = "new"; |
|
| 30 | - const STATE_NOT_LOADED = "not loaded"; |
|
| 31 | - const STATE_LOADED = "loaded"; |
|
| 32 | - const STATE_DIRTY = "dirty"; |
|
| 33 | - const STATE_DELETED = "deleted"; |
|
| 28 | + const STATE_DETACHED = "detached"; |
|
| 29 | + const STATE_NEW = "new"; |
|
| 30 | + const STATE_NOT_LOADED = "not loaded"; |
|
| 31 | + const STATE_LOADED = "loaded"; |
|
| 32 | + const STATE_DIRTY = "dirty"; |
|
| 33 | + const STATE_DELETED = "deleted"; |
|
| 34 | 34 | } |
@@ -249,36 +249,36 @@ discard block |
||
| 249 | 249 | public function setRef($foreignKeyName, AbstractTDBMObject $bean = null) { |
| 250 | 250 | $this->references[$foreignKeyName] = $bean; |
| 251 | 251 | |
| 252 | - if ($this->tdbmService !== null && $this->status === TDBMObjectStateEnum::STATE_LOADED) { |
|
| 253 | - $this->status = TDBMObjectStateEnum::STATE_DIRTY; |
|
| 254 | - $this->tdbmService->_addToToSaveObjectList($this); |
|
| 255 | - } |
|
| 252 | + if ($this->tdbmService !== null && $this->status === TDBMObjectStateEnum::STATE_LOADED) { |
|
| 253 | + $this->status = TDBMObjectStateEnum::STATE_DIRTY; |
|
| 254 | + $this->tdbmService->_addToToSaveObjectList($this); |
|
| 255 | + } |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - /** |
|
| 259 | - * @param string $foreignKeyName A unique name for this reference |
|
| 260 | - * @return AbstractTDBMObject|null |
|
| 261 | - */ |
|
| 262 | - public function getRef($foreignKeyName) { |
|
| 258 | + /** |
|
| 259 | + * @param string $foreignKeyName A unique name for this reference |
|
| 260 | + * @return AbstractTDBMObject|null |
|
| 261 | + */ |
|
| 262 | + public function getRef($foreignKeyName) { |
|
| 263 | 263 | if (isset($this->references[$foreignKeyName])) { |
| 264 | 264 | return $this->references[$foreignKeyName]; |
| 265 | 265 | } elseif ($this->status === TDBMObjectStateEnum::STATE_NEW) { |
| 266 | - // If the object is new and has no property, then it has to be empty. |
|
| 267 | - return null; |
|
| 268 | - } else { |
|
| 269 | - $this->_dbLoadIfNotLoaded(); |
|
| 266 | + // If the object is new and has no property, then it has to be empty. |
|
| 267 | + return null; |
|
| 268 | + } else { |
|
| 269 | + $this->_dbLoadIfNotLoaded(); |
|
| 270 | 270 | |
| 271 | - // Let's match the name of the columns to the primary key values |
|
| 272 | - $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 271 | + // Let's match the name of the columns to the primary key values |
|
| 272 | + $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 273 | 273 | |
| 274 | - $values = []; |
|
| 275 | - foreach ($fk->getLocalColumns() as $column) { |
|
| 276 | - $values[] = $this->dbRow[$column]; |
|
| 277 | - } |
|
| 274 | + $values = []; |
|
| 275 | + foreach ($fk->getLocalColumns() as $column) { |
|
| 276 | + $values[] = $this->dbRow[$column]; |
|
| 277 | + } |
|
| 278 | 278 | |
| 279 | - $filter = array_combine($this->tdbmService->getPrimaryKeyColumns($fk->getForeignTableName()), $values); |
|
| 279 | + $filter = array_combine($this->tdbmService->getPrimaryKeyColumns($fk->getForeignTableName()), $values); |
|
| 280 | 280 | |
| 281 | - return $this->tdbmService->findObjectByPk($fk->getForeignTableName(), $filter, [], true); |
|
| 281 | + return $this->tdbmService->findObjectByPk($fk->getForeignTableName(), $filter, [], true); |
|
| 282 | 282 | } |
| 283 | 283 | } |
| 284 | 284 | |
@@ -334,23 +334,23 @@ discard block |
||
| 334 | 334 | return array($this->dbTableName); |
| 335 | 335 | } |
| 336 | 336 | |
| 337 | - /** |
|
| 338 | - * Override the native php clone function for TDBMObjects |
|
| 339 | - */ |
|
| 340 | - public function __clone(){ |
|
| 341 | - $this->_dbLoadIfNotLoaded(); |
|
| 342 | - //First lets set the status to new (to enter the save function) |
|
| 343 | - $this->status = TDBMObjectStateEnum::STATE_NEW; |
|
| 337 | + /** |
|
| 338 | + * Override the native php clone function for TDBMObjects |
|
| 339 | + */ |
|
| 340 | + public function __clone(){ |
|
| 341 | + $this->_dbLoadIfNotLoaded(); |
|
| 342 | + //First lets set the status to new (to enter the save function) |
|
| 343 | + $this->status = TDBMObjectStateEnum::STATE_NEW; |
|
| 344 | 344 | |
| 345 | - // Add the current TDBMObject to the save object list |
|
| 346 | - $this->tdbmService->_addToToSaveObjectList($this); |
|
| 345 | + // Add the current TDBMObject to the save object list |
|
| 346 | + $this->tdbmService->_addToToSaveObjectList($this); |
|
| 347 | 347 | |
| 348 | - //Now unset the PK from the row |
|
| 349 | - $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
|
| 350 | - foreach ($pk_array as $pk) { |
|
| 351 | - $this->dbRow[$pk] = null; |
|
| 352 | - } |
|
| 353 | - } |
|
| 348 | + //Now unset the PK from the row |
|
| 349 | + $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
|
| 350 | + foreach ($pk_array as $pk) { |
|
| 351 | + $this->dbRow[$pk] = null; |
|
| 352 | + } |
|
| 353 | + } |
|
| 354 | 354 | |
| 355 | 355 | /** |
| 356 | 356 | * Returns raw database row. |
@@ -358,35 +358,35 @@ discard block |
||
| 358 | 358 | * @return array |
| 359 | 359 | */ |
| 360 | 360 | public function _getDbRow() { |
| 361 | - // Let's merge $dbRow and $references |
|
| 362 | - $dbRow = $this->dbRow; |
|
| 363 | - |
|
| 364 | - foreach ($this->references as $foreignKeyName => $reference) { |
|
| 365 | - // Let's match the name of the columns to the primary key values |
|
| 366 | - $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 367 | - $refDbRows = $reference->_getDbRows(); |
|
| 368 | - $firstRefDbRow = reset($refDbRows); |
|
| 369 | - $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
|
| 370 | - $localColumns = $fk->getLocalColumns(); |
|
| 371 | - |
|
| 372 | - for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
| 373 | - $dbRow[$localColumns[$i]] = $pkValues[$i]; |
|
| 374 | - } |
|
| 375 | - } |
|
| 361 | + // Let's merge $dbRow and $references |
|
| 362 | + $dbRow = $this->dbRow; |
|
| 363 | + |
|
| 364 | + foreach ($this->references as $foreignKeyName => $reference) { |
|
| 365 | + // Let's match the name of the columns to the primary key values |
|
| 366 | + $fk = $this->tdbmService->_getForeignKeyByName($this->dbTableName, $foreignKeyName); |
|
| 367 | + $refDbRows = $reference->_getDbRows(); |
|
| 368 | + $firstRefDbRow = reset($refDbRows); |
|
| 369 | + $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
|
| 370 | + $localColumns = $fk->getLocalColumns(); |
|
| 371 | + |
|
| 372 | + for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
| 373 | + $dbRow[$localColumns[$i]] = $pkValues[$i]; |
|
| 374 | + } |
|
| 375 | + } |
|
| 376 | 376 | |
| 377 | 377 | return $dbRow; |
| 378 | 378 | } |
| 379 | 379 | |
| 380 | - /** |
|
| 381 | - * Returns references array. |
|
| 382 | - * |
|
| 383 | - * @return AbstractTDBMObject[] |
|
| 384 | - */ |
|
| 385 | - public function _getReferences() { |
|
| 386 | - return $this->references; |
|
| 387 | - } |
|
| 380 | + /** |
|
| 381 | + * Returns references array. |
|
| 382 | + * |
|
| 383 | + * @return AbstractTDBMObject[] |
|
| 384 | + */ |
|
| 385 | + public function _getReferences() { |
|
| 386 | + return $this->references; |
|
| 387 | + } |
|
| 388 | 388 | |
| 389 | - /** |
|
| 389 | + /** |
|
| 390 | 390 | * @return array |
| 391 | 391 | */ |
| 392 | 392 | public function _getPrimaryKeys() |
@@ -65,9 +65,9 @@ |
||
| 65 | 65 | * @param string $func_name |
| 66 | 66 | * @param $values |
| 67 | 67 | * @return array|void |
| 68 | - * @throws TDBMException |
|
| 68 | + * @throws TDBMException |
|
| 69 | 69 | */ |
| 70 | - public function __call($func_name, $values) { |
|
| 70 | + public function __call($func_name, $values) { |
|
| 71 | 71 | |
| 72 | 72 | if (strpos($func_name,"getarray_") === 0) { |
| 73 | 73 | $column = substr($func_name, 9); |
@@ -20,178 +20,178 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | class TDBMDaoGenerator { |
| 22 | 22 | |
| 23 | - /** |
|
| 24 | - * |
|
| 25 | - * @var SchemaAnalyzer |
|
| 26 | - */ |
|
| 27 | - private $schemaAnalyzer; |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * |
|
| 31 | - * @var Schema |
|
| 32 | - */ |
|
| 33 | - private $schema; |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * The root directory of the project. |
|
| 37 | - * |
|
| 38 | - * @var string |
|
| 39 | - */ |
|
| 40 | - private $rootPath; |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * @var TDBMSchemaAnalyzer |
|
| 44 | - */ |
|
| 45 | - private $tdbmSchemaAnalyzer; |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * Constructor. |
|
| 49 | - * |
|
| 50 | - * @param Connection $dbConnection The connection to the database. |
|
| 51 | - */ |
|
| 52 | - public function __construct(SchemaAnalyzer $schemaAnalyzer, Schema $schema, TDBMSchemaAnalyzer $tdbmSchemaAnalyzer) { |
|
| 53 | - $this->schemaAnalyzer = $schemaAnalyzer; |
|
| 54 | - $this->schema = $schema; |
|
| 55 | - $this->tdbmSchemaAnalyzer = $tdbmSchemaAnalyzer; |
|
| 56 | - $this->rootPath = __DIR__."/../../../../../../../../"; |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - /** |
|
| 60 | - * Generates all the daos and beans. |
|
| 61 | - * |
|
| 62 | - * @param string $daoFactoryClassName The classe name of the DAO factory |
|
| 63 | - * @param string $daonamespace The namespace for the DAOs, without trailing \ |
|
| 64 | - * @param string $beannamespace The Namespace for the beans, without trailing \ |
|
| 65 | - * @param bool $storeInUtc If the generated daos should store the date in UTC timezone instead of user's timezone. |
|
| 66 | - * @return \string[] the list of tables |
|
| 67 | - * @throws TDBMException |
|
| 68 | - */ |
|
| 69 | - public function generateAllDaosAndBeans($daoFactoryClassName, $daonamespace, $beannamespace, $storeInUtc) { |
|
| 70 | - // TODO: extract ClassNameMapper in its own package! |
|
| 71 | - $classNameMapper = ClassNameMapper::createFromComposerFile($this->rootPath.'composer.json'); |
|
| 72 | - |
|
| 73 | - // TODO: check that no class name ends with "Base". Otherwise, there will be name clash. |
|
| 74 | - |
|
| 75 | - $tableList = $this->schema->getTables(); |
|
| 76 | - |
|
| 77 | - // Remove all beans and daos from junction tables |
|
| 78 | - $junctionTables = $this->schemaAnalyzer->detectJunctionTables(); |
|
| 79 | - $junctionTableNames = array_map(function(Table $table) { |
|
| 80 | - return $table->getName(); |
|
| 81 | - }, $junctionTables); |
|
| 82 | - |
|
| 83 | - $tableList = array_filter($tableList, function(Table $table) use ($junctionTableNames) { |
|
| 84 | - return !in_array($table->getName(), $junctionTableNames); |
|
| 85 | - }); |
|
| 86 | - |
|
| 87 | - foreach ($tableList as $table) { |
|
| 88 | - $this->generateDaoAndBean($table, $daonamespace, $beannamespace, $classNameMapper, $storeInUtc); |
|
| 89 | - } |
|
| 23 | + /** |
|
| 24 | + * |
|
| 25 | + * @var SchemaAnalyzer |
|
| 26 | + */ |
|
| 27 | + private $schemaAnalyzer; |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * |
|
| 31 | + * @var Schema |
|
| 32 | + */ |
|
| 33 | + private $schema; |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * The root directory of the project. |
|
| 37 | + * |
|
| 38 | + * @var string |
|
| 39 | + */ |
|
| 40 | + private $rootPath; |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * @var TDBMSchemaAnalyzer |
|
| 44 | + */ |
|
| 45 | + private $tdbmSchemaAnalyzer; |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * Constructor. |
|
| 49 | + * |
|
| 50 | + * @param Connection $dbConnection The connection to the database. |
|
| 51 | + */ |
|
| 52 | + public function __construct(SchemaAnalyzer $schemaAnalyzer, Schema $schema, TDBMSchemaAnalyzer $tdbmSchemaAnalyzer) { |
|
| 53 | + $this->schemaAnalyzer = $schemaAnalyzer; |
|
| 54 | + $this->schema = $schema; |
|
| 55 | + $this->tdbmSchemaAnalyzer = $tdbmSchemaAnalyzer; |
|
| 56 | + $this->rootPath = __DIR__."/../../../../../../../../"; |
|
| 57 | + } |
|
| 58 | + |
|
| 59 | + /** |
|
| 60 | + * Generates all the daos and beans. |
|
| 61 | + * |
|
| 62 | + * @param string $daoFactoryClassName The classe name of the DAO factory |
|
| 63 | + * @param string $daonamespace The namespace for the DAOs, without trailing \ |
|
| 64 | + * @param string $beannamespace The Namespace for the beans, without trailing \ |
|
| 65 | + * @param bool $storeInUtc If the generated daos should store the date in UTC timezone instead of user's timezone. |
|
| 66 | + * @return \string[] the list of tables |
|
| 67 | + * @throws TDBMException |
|
| 68 | + */ |
|
| 69 | + public function generateAllDaosAndBeans($daoFactoryClassName, $daonamespace, $beannamespace, $storeInUtc) { |
|
| 70 | + // TODO: extract ClassNameMapper in its own package! |
|
| 71 | + $classNameMapper = ClassNameMapper::createFromComposerFile($this->rootPath.'composer.json'); |
|
| 72 | + |
|
| 73 | + // TODO: check that no class name ends with "Base". Otherwise, there will be name clash. |
|
| 74 | + |
|
| 75 | + $tableList = $this->schema->getTables(); |
|
| 76 | + |
|
| 77 | + // Remove all beans and daos from junction tables |
|
| 78 | + $junctionTables = $this->schemaAnalyzer->detectJunctionTables(); |
|
| 79 | + $junctionTableNames = array_map(function(Table $table) { |
|
| 80 | + return $table->getName(); |
|
| 81 | + }, $junctionTables); |
|
| 82 | + |
|
| 83 | + $tableList = array_filter($tableList, function(Table $table) use ($junctionTableNames) { |
|
| 84 | + return !in_array($table->getName(), $junctionTableNames); |
|
| 85 | + }); |
|
| 86 | + |
|
| 87 | + foreach ($tableList as $table) { |
|
| 88 | + $this->generateDaoAndBean($table, $daonamespace, $beannamespace, $classNameMapper, $storeInUtc); |
|
| 89 | + } |
|
| 90 | 90 | |
| 91 | - $this->generateFactory($tableList, $daoFactoryClassName, $daonamespace, $classNameMapper); |
|
| 91 | + $this->generateFactory($tableList, $daoFactoryClassName, $daonamespace, $classNameMapper); |
|
| 92 | 92 | |
| 93 | - // Ok, let's return the list of all tables. |
|
| 94 | - // These will be used by the calling script to create Mouf instances. |
|
| 93 | + // Ok, let's return the list of all tables. |
|
| 94 | + // These will be used by the calling script to create Mouf instances. |
|
| 95 | 95 | |
| 96 | - return array_map(function(Table $table) { return $table->getName(); },$tableList); |
|
| 97 | - } |
|
| 96 | + return array_map(function(Table $table) { return $table->getName(); },$tableList); |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - /** |
|
| 100 | - * Generates in one method call the daos and the beans for one table. |
|
| 101 | - * |
|
| 102 | - * @param $tableName |
|
| 103 | - */ |
|
| 104 | - public function generateDaoAndBean(Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) { |
|
| 99 | + /** |
|
| 100 | + * Generates in one method call the daos and the beans for one table. |
|
| 101 | + * |
|
| 102 | + * @param $tableName |
|
| 103 | + */ |
|
| 104 | + public function generateDaoAndBean(Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) { |
|
| 105 | 105 | $tableName = $table->getName(); |
| 106 | - $daoName = $this->getDaoNameFromTableName($tableName); |
|
| 107 | - $beanName = $this->getBeanNameFromTableName($tableName); |
|
| 108 | - $baseBeanName = $this->getBaseBeanNameFromTableName($tableName); |
|
| 109 | - $baseDaoName = $this->getBaseDaoNameFromTableName($tableName); |
|
| 110 | - |
|
| 111 | - $this->generateBean($beanName, $baseBeanName, $table, $beannamespace, $classNameMapper, $storeInUtc); |
|
| 112 | - $this->generateDao($daoName, $baseDaoName, $beanName, $table, $daonamespace, $beannamespace, $classNameMapper); |
|
| 113 | - } |
|
| 106 | + $daoName = $this->getDaoNameFromTableName($tableName); |
|
| 107 | + $beanName = $this->getBeanNameFromTableName($tableName); |
|
| 108 | + $baseBeanName = $this->getBaseBeanNameFromTableName($tableName); |
|
| 109 | + $baseDaoName = $this->getBaseDaoNameFromTableName($tableName); |
|
| 110 | + |
|
| 111 | + $this->generateBean($beanName, $baseBeanName, $table, $beannamespace, $classNameMapper, $storeInUtc); |
|
| 112 | + $this->generateDao($daoName, $baseDaoName, $beanName, $table, $daonamespace, $beannamespace, $classNameMapper); |
|
| 113 | + } |
|
| 114 | 114 | |
| 115 | - /** |
|
| 116 | - * Returns the name of the bean class from the table name. |
|
| 117 | - * |
|
| 118 | - * @param $tableName |
|
| 119 | - * @return string |
|
| 120 | - */ |
|
| 121 | - public static function getBeanNameFromTableName($tableName) { |
|
| 122 | - return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Bean"; |
|
| 123 | - } |
|
| 115 | + /** |
|
| 116 | + * Returns the name of the bean class from the table name. |
|
| 117 | + * |
|
| 118 | + * @param $tableName |
|
| 119 | + * @return string |
|
| 120 | + */ |
|
| 121 | + public static function getBeanNameFromTableName($tableName) { |
|
| 122 | + return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Bean"; |
|
| 123 | + } |
|
| 124 | 124 | |
| 125 | - /** |
|
| 126 | - * Returns the name of the DAO class from the table name. |
|
| 127 | - * |
|
| 128 | - * @param $tableName |
|
| 129 | - * @return string |
|
| 130 | - */ |
|
| 131 | - public static function getDaoNameFromTableName($tableName) { |
|
| 132 | - return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Dao"; |
|
| 133 | - } |
|
| 125 | + /** |
|
| 126 | + * Returns the name of the DAO class from the table name. |
|
| 127 | + * |
|
| 128 | + * @param $tableName |
|
| 129 | + * @return string |
|
| 130 | + */ |
|
| 131 | + public static function getDaoNameFromTableName($tableName) { |
|
| 132 | + return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Dao"; |
|
| 133 | + } |
|
| 134 | 134 | |
| 135 | - /** |
|
| 136 | - * Returns the name of the base bean class from the table name. |
|
| 137 | - * |
|
| 138 | - * @param $tableName |
|
| 139 | - * @return string |
|
| 140 | - */ |
|
| 141 | - public static function getBaseBeanNameFromTableName($tableName) { |
|
| 142 | - return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseBean"; |
|
| 143 | - } |
|
| 144 | - |
|
| 145 | - /** |
|
| 146 | - * Returns the name of the base DAO class from the table name. |
|
| 147 | - * |
|
| 148 | - * @param $tableName |
|
| 149 | - * @return string |
|
| 150 | - */ |
|
| 151 | - public static function getBaseDaoNameFromTableName($tableName) { |
|
| 152 | - return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseDao"; |
|
| 153 | - } |
|
| 154 | - |
|
| 155 | - /** |
|
| 156 | - * Writes the PHP bean file with all getters and setters from the table passed in parameter. |
|
| 157 | - * |
|
| 158 | - * @param string $className The name of the class |
|
| 159 | - * @param string $baseClassName The name of the base class which will be extended (name only, no directory) |
|
| 160 | - * @param string $tableName The name of the table |
|
| 161 | - * @param string $beannamespace The namespace of the bean |
|
| 162 | - * @param ClassNameMapper $classNameMapper |
|
| 163 | - * @throws TDBMException |
|
| 164 | - */ |
|
| 165 | - public function generateBean($className, $baseClassName, Table $table, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) { |
|
| 166 | - |
|
| 167 | - $beanDescriptor = new BeanDescriptor($table, $this->schemaAnalyzer, $this->schema); |
|
| 168 | - |
|
| 169 | - $str = $beanDescriptor->generatePhpCode($beannamespace); |
|
| 170 | - |
|
| 171 | - $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$baseClassName); |
|
| 172 | - if (!$possibleBaseFileNames) { |
|
| 173 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$baseClassName.'" is not autoloadable.'); |
|
| 174 | - } |
|
| 175 | - $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
|
| 176 | - |
|
| 177 | - $this->ensureDirectoryExist($possibleBaseFileName); |
|
| 178 | - file_put_contents($possibleBaseFileName, $str); |
|
| 179 | - @chmod($possibleBaseFileName, 0664); |
|
| 180 | - |
|
| 181 | - |
|
| 182 | - |
|
| 183 | - $possibleFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$className); |
|
| 184 | - if (!$possibleFileNames) { |
|
| 185 | - // @codeCoverageIgnoreStart |
|
| 186 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$className.'" is not autoloadable.'); |
|
| 187 | - // @codeCoverageIgnoreEnd |
|
| 188 | - } |
|
| 189 | - $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 190 | - |
|
| 191 | - if (!file_exists($possibleFileName)) { |
|
| 192 | - $tableName = $table->getName(); |
|
| 193 | - |
|
| 194 | - $str = "<?php |
|
| 135 | + /** |
|
| 136 | + * Returns the name of the base bean class from the table name. |
|
| 137 | + * |
|
| 138 | + * @param $tableName |
|
| 139 | + * @return string |
|
| 140 | + */ |
|
| 141 | + public static function getBaseBeanNameFromTableName($tableName) { |
|
| 142 | + return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseBean"; |
|
| 143 | + } |
|
| 144 | + |
|
| 145 | + /** |
|
| 146 | + * Returns the name of the base DAO class from the table name. |
|
| 147 | + * |
|
| 148 | + * @param $tableName |
|
| 149 | + * @return string |
|
| 150 | + */ |
|
| 151 | + public static function getBaseDaoNameFromTableName($tableName) { |
|
| 152 | + return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseDao"; |
|
| 153 | + } |
|
| 154 | + |
|
| 155 | + /** |
|
| 156 | + * Writes the PHP bean file with all getters and setters from the table passed in parameter. |
|
| 157 | + * |
|
| 158 | + * @param string $className The name of the class |
|
| 159 | + * @param string $baseClassName The name of the base class which will be extended (name only, no directory) |
|
| 160 | + * @param string $tableName The name of the table |
|
| 161 | + * @param string $beannamespace The namespace of the bean |
|
| 162 | + * @param ClassNameMapper $classNameMapper |
|
| 163 | + * @throws TDBMException |
|
| 164 | + */ |
|
| 165 | + public function generateBean($className, $baseClassName, Table $table, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) { |
|
| 166 | + |
|
| 167 | + $beanDescriptor = new BeanDescriptor($table, $this->schemaAnalyzer, $this->schema); |
|
| 168 | + |
|
| 169 | + $str = $beanDescriptor->generatePhpCode($beannamespace); |
|
| 170 | + |
|
| 171 | + $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$baseClassName); |
|
| 172 | + if (!$possibleBaseFileNames) { |
|
| 173 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$baseClassName.'" is not autoloadable.'); |
|
| 174 | + } |
|
| 175 | + $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
|
| 176 | + |
|
| 177 | + $this->ensureDirectoryExist($possibleBaseFileName); |
|
| 178 | + file_put_contents($possibleBaseFileName, $str); |
|
| 179 | + @chmod($possibleBaseFileName, 0664); |
|
| 180 | + |
|
| 181 | + |
|
| 182 | + |
|
| 183 | + $possibleFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$className); |
|
| 184 | + if (!$possibleFileNames) { |
|
| 185 | + // @codeCoverageIgnoreStart |
|
| 186 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$className.'" is not autoloadable.'); |
|
| 187 | + // @codeCoverageIgnoreEnd |
|
| 188 | + } |
|
| 189 | + $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 190 | + |
|
| 191 | + if (!file_exists($possibleFileName)) { |
|
| 192 | + $tableName = $table->getName(); |
|
| 193 | + |
|
| 194 | + $str = "<?php |
|
| 195 | 195 | /* |
| 196 | 196 | * This file has been automatically generated by TDBM. |
| 197 | 197 | * You can edit this file as it will not be overwritten. |
@@ -206,44 +206,44 @@ discard block |
||
| 206 | 206 | { |
| 207 | 207 | |
| 208 | 208 | }"; |
| 209 | - $this->ensureDirectoryExist($possibleFileName); |
|
| 210 | - file_put_contents($possibleFileName ,$str); |
|
| 211 | - @chmod($possibleFileName, 0664); |
|
| 212 | - } |
|
| 213 | - } |
|
| 214 | - |
|
| 215 | - /** |
|
| 216 | - * Writes the PHP bean DAO with simple functions to create/get/save objects. |
|
| 217 | - * |
|
| 218 | - * @param string $fileName The file that will be written (without the directory) |
|
| 219 | - * @param string $className The name of the class |
|
| 220 | - * @param string $tableName The name of the table |
|
| 221 | - */ |
|
| 222 | - public function generateDao($className, $baseClassName, $beanClassName, Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper) { |
|
| 223 | - $tableName = $table->getName(); |
|
| 224 | - $primaryKeyColumns = $table->getPrimaryKeyColumns(); |
|
| 225 | - |
|
| 226 | - $defaultSort = null; |
|
| 227 | - foreach ($table->getColumns() as $column) { |
|
| 228 | - $comments = $column->getComment(); |
|
| 229 | - $matches = array(); |
|
| 230 | - if (preg_match('/@defaultSort(\((desc|asc)\))*/', $comments, $matches) != 0){ |
|
| 231 | - $defaultSort = $data['column_name']; |
|
| 232 | - if (count($matches == 3)){ |
|
| 233 | - $defaultSortDirection = $matches[2]; |
|
| 234 | - }else{ |
|
| 235 | - $defaultSortDirection = 'ASC'; |
|
| 236 | - } |
|
| 237 | - } |
|
| 238 | - } |
|
| 209 | + $this->ensureDirectoryExist($possibleFileName); |
|
| 210 | + file_put_contents($possibleFileName ,$str); |
|
| 211 | + @chmod($possibleFileName, 0664); |
|
| 212 | + } |
|
| 213 | + } |
|
| 214 | + |
|
| 215 | + /** |
|
| 216 | + * Writes the PHP bean DAO with simple functions to create/get/save objects. |
|
| 217 | + * |
|
| 218 | + * @param string $fileName The file that will be written (without the directory) |
|
| 219 | + * @param string $className The name of the class |
|
| 220 | + * @param string $tableName The name of the table |
|
| 221 | + */ |
|
| 222 | + public function generateDao($className, $baseClassName, $beanClassName, Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper) { |
|
| 223 | + $tableName = $table->getName(); |
|
| 224 | + $primaryKeyColumns = $table->getPrimaryKeyColumns(); |
|
| 225 | + |
|
| 226 | + $defaultSort = null; |
|
| 227 | + foreach ($table->getColumns() as $column) { |
|
| 228 | + $comments = $column->getComment(); |
|
| 229 | + $matches = array(); |
|
| 230 | + if (preg_match('/@defaultSort(\((desc|asc)\))*/', $comments, $matches) != 0){ |
|
| 231 | + $defaultSort = $data['column_name']; |
|
| 232 | + if (count($matches == 3)){ |
|
| 233 | + $defaultSortDirection = $matches[2]; |
|
| 234 | + }else{ |
|
| 235 | + $defaultSortDirection = 'ASC'; |
|
| 236 | + } |
|
| 237 | + } |
|
| 238 | + } |
|
| 239 | 239 | |
| 240 | - // FIXME: lowercase tables with _ in the name should work! |
|
| 241 | - $tableCamel = self::toSingular(self::toCamelCase($tableName)); |
|
| 240 | + // FIXME: lowercase tables with _ in the name should work! |
|
| 241 | + $tableCamel = self::toSingular(self::toCamelCase($tableName)); |
|
| 242 | 242 | |
| 243 | - $beanClassWithoutNameSpace = $beanClassName; |
|
| 244 | - $beanClassName = $beannamespace."\\".$beanClassName; |
|
| 243 | + $beanClassWithoutNameSpace = $beanClassName; |
|
| 244 | + $beanClassName = $beannamespace."\\".$beanClassName; |
|
| 245 | 245 | |
| 246 | - $str = "<?php |
|
| 246 | + $str = "<?php |
|
| 247 | 247 | |
| 248 | 248 | /* |
| 249 | 249 | * This file has been automatically generated by TDBM. |
@@ -330,9 +330,9 @@ discard block |
||
| 330 | 330 | } |
| 331 | 331 | "; |
| 332 | 332 | |
| 333 | - if (count($primaryKeyColumns) === 1) { |
|
| 334 | - $primaryKeyColumn = $primaryKeyColumns[0]; |
|
| 335 | - $str .= " |
|
| 333 | + if (count($primaryKeyColumns) === 1) { |
|
| 334 | + $primaryKeyColumn = $primaryKeyColumns[0]; |
|
| 335 | + $str .= " |
|
| 336 | 336 | /** |
| 337 | 337 | * Get $beanClassWithoutNameSpace specified by its ID (its primary key) |
| 338 | 338 | * If the primary key does not exist, an exception is thrown. |
@@ -347,8 +347,8 @@ discard block |
||
| 347 | 347 | return \$this->tdbmService->findObjectByPk('$tableName', ['$primaryKeyColumn' => \$id], [], \$lazyLoading); |
| 348 | 348 | } |
| 349 | 349 | "; |
| 350 | - } |
|
| 351 | - $str .= " |
|
| 350 | + } |
|
| 351 | + $str .= " |
|
| 352 | 352 | /** |
| 353 | 353 | * Deletes the $beanClassWithoutNameSpace passed in parameter. |
| 354 | 354 | * |
@@ -409,29 +409,29 @@ discard block |
||
| 409 | 409 | } |
| 410 | 410 | "; |
| 411 | 411 | |
| 412 | - $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$baseClassName); |
|
| 413 | - if (!$possibleBaseFileNames) { |
|
| 414 | - // @codeCoverageIgnoreStart |
|
| 415 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$baseClassName.'" is not autoloadable.'); |
|
| 416 | - // @codeCoverageIgnoreEnd |
|
| 417 | - } |
|
| 418 | - $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
|
| 419 | - |
|
| 420 | - $this->ensureDirectoryExist($possibleBaseFileName); |
|
| 421 | - file_put_contents($possibleBaseFileName ,$str); |
|
| 422 | - @chmod($possibleBaseFileName, 0664); |
|
| 423 | - |
|
| 424 | - $possibleFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$className); |
|
| 425 | - if (!$possibleFileNames) { |
|
| 426 | - // @codeCoverageIgnoreStart |
|
| 427 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$className.'" is not autoloadable.'); |
|
| 428 | - // @codeCoverageIgnoreEnd |
|
| 429 | - } |
|
| 430 | - $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 412 | + $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$baseClassName); |
|
| 413 | + if (!$possibleBaseFileNames) { |
|
| 414 | + // @codeCoverageIgnoreStart |
|
| 415 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$baseClassName.'" is not autoloadable.'); |
|
| 416 | + // @codeCoverageIgnoreEnd |
|
| 417 | + } |
|
| 418 | + $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
|
| 419 | + |
|
| 420 | + $this->ensureDirectoryExist($possibleBaseFileName); |
|
| 421 | + file_put_contents($possibleBaseFileName ,$str); |
|
| 422 | + @chmod($possibleBaseFileName, 0664); |
|
| 423 | + |
|
| 424 | + $possibleFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$className); |
|
| 425 | + if (!$possibleFileNames) { |
|
| 426 | + // @codeCoverageIgnoreStart |
|
| 427 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$className.'" is not autoloadable.'); |
|
| 428 | + // @codeCoverageIgnoreEnd |
|
| 429 | + } |
|
| 430 | + $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 431 | 431 | |
| 432 | - // Now, let's generate the "editable" class |
|
| 433 | - if (!file_exists($possibleFileName)) { |
|
| 434 | - $str = "<?php |
|
| 432 | + // Now, let's generate the "editable" class |
|
| 433 | + if (!file_exists($possibleFileName)) { |
|
| 434 | + $str = "<?php |
|
| 435 | 435 | |
| 436 | 436 | /* |
| 437 | 437 | * This file has been automatically generated by TDBM. |
@@ -448,23 +448,23 @@ discard block |
||
| 448 | 448 | |
| 449 | 449 | } |
| 450 | 450 | "; |
| 451 | - $this->ensureDirectoryExist($possibleFileName); |
|
| 452 | - file_put_contents($possibleFileName ,$str); |
|
| 453 | - @chmod($possibleFileName, 0664); |
|
| 454 | - } |
|
| 455 | - } |
|
| 451 | + $this->ensureDirectoryExist($possibleFileName); |
|
| 452 | + file_put_contents($possibleFileName ,$str); |
|
| 453 | + @chmod($possibleFileName, 0664); |
|
| 454 | + } |
|
| 455 | + } |
|
| 456 | 456 | |
| 457 | 457 | |
| 458 | 458 | |
| 459 | - /** |
|
| 460 | - * Generates the factory bean. |
|
| 461 | - * |
|
| 462 | - * @param Table[] $tableList |
|
| 463 | - */ |
|
| 464 | - private function generateFactory(array $tableList, $daoFactoryClassName, $daoNamespace, ClassNameMapper $classNameMapper) { |
|
| 465 | - // For each table, let's write a property. |
|
| 459 | + /** |
|
| 460 | + * Generates the factory bean. |
|
| 461 | + * |
|
| 462 | + * @param Table[] $tableList |
|
| 463 | + */ |
|
| 464 | + private function generateFactory(array $tableList, $daoFactoryClassName, $daoNamespace, ClassNameMapper $classNameMapper) { |
|
| 465 | + // For each table, let's write a property. |
|
| 466 | 466 | |
| 467 | - $str = "<?php |
|
| 467 | + $str = "<?php |
|
| 468 | 468 | |
| 469 | 469 | /* |
| 470 | 470 | * This file has been automatically generated by TDBM. |
@@ -481,12 +481,12 @@ discard block |
||
| 481 | 481 | { |
| 482 | 482 | "; |
| 483 | 483 | |
| 484 | - foreach ($tableList as $table) { |
|
| 485 | - $tableName = $table->getName(); |
|
| 486 | - $daoClassName = $this->getDaoNameFromTableName($tableName); |
|
| 487 | - $daoInstanceName = self::toVariableName($daoClassName); |
|
| 484 | + foreach ($tableList as $table) { |
|
| 485 | + $tableName = $table->getName(); |
|
| 486 | + $daoClassName = $this->getDaoNameFromTableName($tableName); |
|
| 487 | + $daoInstanceName = self::toVariableName($daoClassName); |
|
| 488 | 488 | |
| 489 | - $str .= ' /** |
|
| 489 | + $str .= ' /** |
|
| 490 | 490 | * @var '.$daoClassName.' |
| 491 | 491 | */ |
| 492 | 492 | private $'.$daoInstanceName.'; |
@@ -511,141 +511,141 @@ discard block |
||
| 511 | 511 | } |
| 512 | 512 | |
| 513 | 513 | '; |
| 514 | - } |
|
| 514 | + } |
|
| 515 | 515 | |
| 516 | 516 | |
| 517 | - $str .= ' |
|
| 517 | + $str .= ' |
|
| 518 | 518 | } |
| 519 | 519 | '; |
| 520 | 520 | |
| 521 | - $possibleFileNames = $classNameMapper->getPossibleFileNames($daoNamespace."\\".$daoFactoryClassName); |
|
| 522 | - if (!$possibleFileNames) { |
|
| 523 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$daoNamespace."\\".$daoFactoryClassName.'" is not autoloadable.'); |
|
| 524 | - } |
|
| 525 | - $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 526 | - |
|
| 527 | - $this->ensureDirectoryExist($possibleFileName); |
|
| 528 | - file_put_contents($possibleFileName ,$str); |
|
| 529 | - } |
|
| 530 | - |
|
| 531 | - /** |
|
| 532 | - * Transforms a string to camelCase (except the first letter will be uppercase too). |
|
| 533 | - * Underscores and spaces are removed and the first letter after the underscore is uppercased. |
|
| 534 | - * |
|
| 535 | - * @param $str string |
|
| 536 | - * @return string |
|
| 537 | - */ |
|
| 538 | - public static function toCamelCase($str) { |
|
| 539 | - $str = strtoupper(substr($str,0,1)).substr($str,1); |
|
| 540 | - while (true) { |
|
| 541 | - if (strpos($str, "_") === false && strpos($str, " ") === false) { |
|
| 542 | - break; |
|
| 521 | + $possibleFileNames = $classNameMapper->getPossibleFileNames($daoNamespace."\\".$daoFactoryClassName); |
|
| 522 | + if (!$possibleFileNames) { |
|
| 523 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$daoNamespace."\\".$daoFactoryClassName.'" is not autoloadable.'); |
|
| 524 | + } |
|
| 525 | + $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 526 | + |
|
| 527 | + $this->ensureDirectoryExist($possibleFileName); |
|
| 528 | + file_put_contents($possibleFileName ,$str); |
|
| 529 | + } |
|
| 530 | + |
|
| 531 | + /** |
|
| 532 | + * Transforms a string to camelCase (except the first letter will be uppercase too). |
|
| 533 | + * Underscores and spaces are removed and the first letter after the underscore is uppercased. |
|
| 534 | + * |
|
| 535 | + * @param $str string |
|
| 536 | + * @return string |
|
| 537 | + */ |
|
| 538 | + public static function toCamelCase($str) { |
|
| 539 | + $str = strtoupper(substr($str,0,1)).substr($str,1); |
|
| 540 | + while (true) { |
|
| 541 | + if (strpos($str, "_") === false && strpos($str, " ") === false) { |
|
| 542 | + break; |
|
| 543 | 543 | } |
| 544 | 544 | |
| 545 | - $pos = strpos($str, "_"); |
|
| 546 | - if ($pos === false) { |
|
| 547 | - $pos = strpos($str, " "); |
|
| 548 | - } |
|
| 549 | - $before = substr($str,0,$pos); |
|
| 550 | - $after = substr($str,$pos+1); |
|
| 551 | - $str = $before.strtoupper(substr($after,0,1)).substr($after,1); |
|
| 552 | - } |
|
| 553 | - return $str; |
|
| 554 | - } |
|
| 545 | + $pos = strpos($str, "_"); |
|
| 546 | + if ($pos === false) { |
|
| 547 | + $pos = strpos($str, " "); |
|
| 548 | + } |
|
| 549 | + $before = substr($str,0,$pos); |
|
| 550 | + $after = substr($str,$pos+1); |
|
| 551 | + $str = $before.strtoupper(substr($after,0,1)).substr($after,1); |
|
| 552 | + } |
|
| 553 | + return $str; |
|
| 554 | + } |
|
| 555 | 555 | |
| 556 | - /** |
|
| 557 | - * Tries to put string to the singular form (if it is plural). |
|
| 558 | - * We assume the table names are in english. |
|
| 559 | - * |
|
| 560 | - * @param $str string |
|
| 561 | - * @return string |
|
| 562 | - */ |
|
| 563 | - public static function toSingular($str) { |
|
| 564 | - return Inflector::get('en')->singularize($str); |
|
| 565 | - } |
|
| 556 | + /** |
|
| 557 | + * Tries to put string to the singular form (if it is plural). |
|
| 558 | + * We assume the table names are in english. |
|
| 559 | + * |
|
| 560 | + * @param $str string |
|
| 561 | + * @return string |
|
| 562 | + */ |
|
| 563 | + public static function toSingular($str) { |
|
| 564 | + return Inflector::get('en')->singularize($str); |
|
| 565 | + } |
|
| 566 | 566 | |
| 567 | - /** |
|
| 568 | - * Put the first letter of the string in lower case. |
|
| 569 | - * Very useful to transform a class name into a variable name. |
|
| 570 | - * |
|
| 571 | - * @param $str string |
|
| 572 | - * @return string |
|
| 573 | - */ |
|
| 574 | - public static function toVariableName($str) { |
|
| 575 | - return strtolower(substr($str, 0, 1)).substr($str, 1); |
|
| 576 | - } |
|
| 577 | - |
|
| 578 | - /** |
|
| 579 | - * Ensures the file passed in parameter can be written in its directory. |
|
| 580 | - * @param string $fileName |
|
| 581 | - */ |
|
| 582 | - private function ensureDirectoryExist($fileName) { |
|
| 583 | - $dirName = dirname($fileName); |
|
| 584 | - if (!file_exists($dirName)) { |
|
| 585 | - $old = umask(0); |
|
| 586 | - $result = mkdir($dirName, 0775, true); |
|
| 587 | - umask($old); |
|
| 588 | - if ($result == false) { |
|
| 589 | - echo "Unable to create directory: ".$dirName."."; |
|
| 590 | - exit; |
|
| 591 | - } |
|
| 592 | - } |
|
| 593 | - } |
|
| 594 | - |
|
| 595 | - /** |
|
| 596 | - * @param string $rootPath |
|
| 597 | - */ |
|
| 598 | - public function setRootPath($rootPath) |
|
| 599 | - { |
|
| 600 | - $this->rootPath = $rootPath; |
|
| 601 | - } |
|
| 602 | - |
|
| 603 | - /** |
|
| 604 | - * Transforms a DBAL type into a PHP type (for PHPDoc purpose) |
|
| 605 | - * |
|
| 606 | - * @param Type $type The DBAL type |
|
| 607 | - * @return string The PHP type |
|
| 608 | - */ |
|
| 609 | - public static function dbalTypeToPhpType(Type $type) { |
|
| 610 | - $map = [ |
|
| 611 | - Type::TARRAY => 'array', |
|
| 612 | - Type::SIMPLE_ARRAY => 'array', |
|
| 613 | - Type::JSON_ARRAY => 'array', |
|
| 614 | - Type::BIGINT => 'string', |
|
| 615 | - Type::BOOLEAN => 'bool', |
|
| 616 | - Type::DATETIME => '\DateTimeInterface', |
|
| 617 | - Type::DATETIMETZ => '\DateTimeInterface', |
|
| 618 | - Type::DATE => '\DateTimeInterface', |
|
| 619 | - Type::TIME => '\DateTimeInterface', |
|
| 620 | - Type::DECIMAL => 'float', |
|
| 621 | - Type::INTEGER => 'int', |
|
| 622 | - Type::OBJECT => 'string', |
|
| 623 | - Type::SMALLINT => 'int', |
|
| 624 | - Type::STRING => 'string', |
|
| 625 | - Type::TEXT => 'string', |
|
| 626 | - Type::BINARY => 'string', |
|
| 627 | - Type::BLOB => 'string', |
|
| 628 | - Type::FLOAT => 'float', |
|
| 629 | - Type::GUID => 'string' |
|
| 630 | - ]; |
|
| 631 | - |
|
| 632 | - return isset($map[$type->getName()])?$map[$type->getName()]:$type->getName(); |
|
| 633 | - } |
|
| 634 | - |
|
| 635 | - /** |
|
| 636 | - * |
|
| 637 | - * @param string $beanNamespace |
|
| 638 | - * @return \string[] Returns a map mapping table name to beans name |
|
| 639 | - */ |
|
| 640 | - public function buildTableToBeanMap($beanNamespace) { |
|
| 641 | - $tableToBeanMap = []; |
|
| 642 | - |
|
| 643 | - $tables = $this->schema->getTables(); |
|
| 644 | - |
|
| 645 | - foreach ($tables as $table) { |
|
| 646 | - $tableName = $table->getName(); |
|
| 647 | - $tableToBeanMap[$tableName] = $beanNamespace . "\\" . self::getBeanNameFromTableName($tableName); |
|
| 648 | - } |
|
| 649 | - return $tableToBeanMap; |
|
| 650 | - } |
|
| 567 | + /** |
|
| 568 | + * Put the first letter of the string in lower case. |
|
| 569 | + * Very useful to transform a class name into a variable name. |
|
| 570 | + * |
|
| 571 | + * @param $str string |
|
| 572 | + * @return string |
|
| 573 | + */ |
|
| 574 | + public static function toVariableName($str) { |
|
| 575 | + return strtolower(substr($str, 0, 1)).substr($str, 1); |
|
| 576 | + } |
|
| 577 | + |
|
| 578 | + /** |
|
| 579 | + * Ensures the file passed in parameter can be written in its directory. |
|
| 580 | + * @param string $fileName |
|
| 581 | + */ |
|
| 582 | + private function ensureDirectoryExist($fileName) { |
|
| 583 | + $dirName = dirname($fileName); |
|
| 584 | + if (!file_exists($dirName)) { |
|
| 585 | + $old = umask(0); |
|
| 586 | + $result = mkdir($dirName, 0775, true); |
|
| 587 | + umask($old); |
|
| 588 | + if ($result == false) { |
|
| 589 | + echo "Unable to create directory: ".$dirName."."; |
|
| 590 | + exit; |
|
| 591 | + } |
|
| 592 | + } |
|
| 593 | + } |
|
| 594 | + |
|
| 595 | + /** |
|
| 596 | + * @param string $rootPath |
|
| 597 | + */ |
|
| 598 | + public function setRootPath($rootPath) |
|
| 599 | + { |
|
| 600 | + $this->rootPath = $rootPath; |
|
| 601 | + } |
|
| 602 | + |
|
| 603 | + /** |
|
| 604 | + * Transforms a DBAL type into a PHP type (for PHPDoc purpose) |
|
| 605 | + * |
|
| 606 | + * @param Type $type The DBAL type |
|
| 607 | + * @return string The PHP type |
|
| 608 | + */ |
|
| 609 | + public static function dbalTypeToPhpType(Type $type) { |
|
| 610 | + $map = [ |
|
| 611 | + Type::TARRAY => 'array', |
|
| 612 | + Type::SIMPLE_ARRAY => 'array', |
|
| 613 | + Type::JSON_ARRAY => 'array', |
|
| 614 | + Type::BIGINT => 'string', |
|
| 615 | + Type::BOOLEAN => 'bool', |
|
| 616 | + Type::DATETIME => '\DateTimeInterface', |
|
| 617 | + Type::DATETIMETZ => '\DateTimeInterface', |
|
| 618 | + Type::DATE => '\DateTimeInterface', |
|
| 619 | + Type::TIME => '\DateTimeInterface', |
|
| 620 | + Type::DECIMAL => 'float', |
|
| 621 | + Type::INTEGER => 'int', |
|
| 622 | + Type::OBJECT => 'string', |
|
| 623 | + Type::SMALLINT => 'int', |
|
| 624 | + Type::STRING => 'string', |
|
| 625 | + Type::TEXT => 'string', |
|
| 626 | + Type::BINARY => 'string', |
|
| 627 | + Type::BLOB => 'string', |
|
| 628 | + Type::FLOAT => 'float', |
|
| 629 | + Type::GUID => 'string' |
|
| 630 | + ]; |
|
| 631 | + |
|
| 632 | + return isset($map[$type->getName()])?$map[$type->getName()]:$type->getName(); |
|
| 633 | + } |
|
| 634 | + |
|
| 635 | + /** |
|
| 636 | + * |
|
| 637 | + * @param string $beanNamespace |
|
| 638 | + * @return \string[] Returns a map mapping table name to beans name |
|
| 639 | + */ |
|
| 640 | + public function buildTableToBeanMap($beanNamespace) { |
|
| 641 | + $tableToBeanMap = []; |
|
| 642 | + |
|
| 643 | + $tables = $this->schema->getTables(); |
|
| 644 | + |
|
| 645 | + foreach ($tables as $table) { |
|
| 646 | + $tableName = $table->getName(); |
|
| 647 | + $tableToBeanMap[$tableName] = $beanNamespace . "\\" . self::getBeanNameFromTableName($tableName); |
|
| 648 | + } |
|
| 649 | + return $tableToBeanMap; |
|
| 650 | + } |
|
| 651 | 651 | } |