@@ -18,7 +18,6 @@ |
||
| 18 | 18 | along with this program; if not, write to the Free Software |
| 19 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 | */ |
| 21 | -use Doctrine\DBAL\Driver\Connection; |
|
| 22 | 21 | |
| 23 | 22 | |
| 24 | 23 | /** |
@@ -35,117 +35,117 @@ |
||
| 35 | 35 | class TDBMObject extends AbstractTDBMObject implements \ArrayAccess, \Iterator |
| 36 | 36 | { |
| 37 | 37 | |
| 38 | - public function __get($var) |
|
| 39 | - { |
|
| 40 | - return $this->get($var); |
|
| 41 | - } |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * Returns true if a column is set, false otherwise. |
|
| 45 | - * |
|
| 46 | - * @param string $var |
|
| 47 | - * @return boolean |
|
| 48 | - */ |
|
| 49 | - public function __isset($var) |
|
| 50 | - { |
|
| 51 | - return $this->has($var); |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - public function __set($var, $value) |
|
| 55 | - { |
|
| 56 | - $this->set($var, $value); |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - /** |
|
| 60 | - * Implements array behaviour for our object. |
|
| 61 | - * |
|
| 62 | - * @param string $offset |
|
| 63 | - * @param string $value |
|
| 64 | - */ |
|
| 65 | - public function offsetSet($offset, $value) |
|
| 66 | - { |
|
| 67 | - $this->__set($offset, $value); |
|
| 68 | - } |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * Implements array behaviour for our object. |
|
| 72 | - * |
|
| 73 | - * @param string $offset |
|
| 74 | - * @return bool |
|
| 75 | - */ |
|
| 76 | - public function offsetExists($offset) |
|
| 77 | - { |
|
| 78 | - $this->_dbLoadIfNotLoaded(); |
|
| 79 | - return isset($this->dbRow[$offset]); |
|
| 80 | - } |
|
| 81 | - |
|
| 82 | - /** |
|
| 83 | - * Implements array behaviour for our object. |
|
| 84 | - * |
|
| 85 | - * @param string $offset |
|
| 86 | - */ |
|
| 87 | - public function offsetUnset($offset) |
|
| 88 | - { |
|
| 89 | - $this->__set($offset, null); |
|
| 90 | - } |
|
| 91 | - |
|
| 92 | - /** |
|
| 93 | - * Implements array behaviour for our object. |
|
| 94 | - * |
|
| 95 | - * @param string $offset |
|
| 96 | - * @return mixed|null |
|
| 97 | - */ |
|
| 98 | - public function offsetGet($offset) |
|
| 99 | - { |
|
| 100 | - return $this->__get($offset); |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - private $_validIterator = false; |
|
| 104 | - |
|
| 105 | - /** |
|
| 106 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 107 | - */ |
|
| 108 | - public function rewind() |
|
| 109 | - { |
|
| 110 | - $this->_dbLoadIfNotLoaded(); |
|
| 111 | - if (count($this->dbRow) > 0) { |
|
| 112 | - $this->_validIterator = true; |
|
| 113 | - } else { |
|
| 114 | - $this->_validIterator = false; |
|
| 115 | - } |
|
| 116 | - reset($this->dbRow); |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - /** |
|
| 120 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 121 | - */ |
|
| 122 | - public function next() |
|
| 123 | - { |
|
| 124 | - $val = next($this->dbRow); |
|
| 125 | - $this->_validIterator = !($val === false); |
|
| 126 | - } |
|
| 127 | - |
|
| 128 | - /** |
|
| 129 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 130 | - */ |
|
| 131 | - public function key() |
|
| 132 | - { |
|
| 133 | - return key($this->dbRow); |
|
| 134 | - } |
|
| 135 | - |
|
| 136 | - /** |
|
| 137 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 138 | - */ |
|
| 139 | - public function current() |
|
| 140 | - { |
|
| 141 | - return current($this->dbRow); |
|
| 142 | - } |
|
| 143 | - |
|
| 144 | - /** |
|
| 145 | - * Implements iterator behaviour for our object (so we can each column). |
|
| 146 | - */ |
|
| 147 | - public function valid() |
|
| 148 | - { |
|
| 149 | - return $this->_validIterator; |
|
| 150 | - } |
|
| 38 | + public function __get($var) |
|
| 39 | + { |
|
| 40 | + return $this->get($var); |
|
| 41 | + } |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * Returns true if a column is set, false otherwise. |
|
| 45 | + * |
|
| 46 | + * @param string $var |
|
| 47 | + * @return boolean |
|
| 48 | + */ |
|
| 49 | + public function __isset($var) |
|
| 50 | + { |
|
| 51 | + return $this->has($var); |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + public function __set($var, $value) |
|
| 55 | + { |
|
| 56 | + $this->set($var, $value); |
|
| 57 | + } |
|
| 58 | + |
|
| 59 | + /** |
|
| 60 | + * Implements array behaviour for our object. |
|
| 61 | + * |
|
| 62 | + * @param string $offset |
|
| 63 | + * @param string $value |
|
| 64 | + */ |
|
| 65 | + public function offsetSet($offset, $value) |
|
| 66 | + { |
|
| 67 | + $this->__set($offset, $value); |
|
| 68 | + } |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * Implements array behaviour for our object. |
|
| 72 | + * |
|
| 73 | + * @param string $offset |
|
| 74 | + * @return bool |
|
| 75 | + */ |
|
| 76 | + public function offsetExists($offset) |
|
| 77 | + { |
|
| 78 | + $this->_dbLoadIfNotLoaded(); |
|
| 79 | + return isset($this->dbRow[$offset]); |
|
| 80 | + } |
|
| 81 | + |
|
| 82 | + /** |
|
| 83 | + * Implements array behaviour for our object. |
|
| 84 | + * |
|
| 85 | + * @param string $offset |
|
| 86 | + */ |
|
| 87 | + public function offsetUnset($offset) |
|
| 88 | + { |
|
| 89 | + $this->__set($offset, null); |
|
| 90 | + } |
|
| 91 | + |
|
| 92 | + /** |
|
| 93 | + * Implements array behaviour for our object. |
|
| 94 | + * |
|
| 95 | + * @param string $offset |
|
| 96 | + * @return mixed|null |
|
| 97 | + */ |
|
| 98 | + public function offsetGet($offset) |
|
| 99 | + { |
|
| 100 | + return $this->__get($offset); |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + private $_validIterator = false; |
|
| 104 | + |
|
| 105 | + /** |
|
| 106 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 107 | + */ |
|
| 108 | + public function rewind() |
|
| 109 | + { |
|
| 110 | + $this->_dbLoadIfNotLoaded(); |
|
| 111 | + if (count($this->dbRow) > 0) { |
|
| 112 | + $this->_validIterator = true; |
|
| 113 | + } else { |
|
| 114 | + $this->_validIterator = false; |
|
| 115 | + } |
|
| 116 | + reset($this->dbRow); |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + /** |
|
| 120 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 121 | + */ |
|
| 122 | + public function next() |
|
| 123 | + { |
|
| 124 | + $val = next($this->dbRow); |
|
| 125 | + $this->_validIterator = !($val === false); |
|
| 126 | + } |
|
| 127 | + |
|
| 128 | + /** |
|
| 129 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 130 | + */ |
|
| 131 | + public function key() |
|
| 132 | + { |
|
| 133 | + return key($this->dbRow); |
|
| 134 | + } |
|
| 135 | + |
|
| 136 | + /** |
|
| 137 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 138 | + */ |
|
| 139 | + public function current() |
|
| 140 | + { |
|
| 141 | + return current($this->dbRow); |
|
| 142 | + } |
|
| 143 | + |
|
| 144 | + /** |
|
| 145 | + * Implements iterator behaviour for our object (so we can each column). |
|
| 146 | + */ |
|
| 147 | + public function valid() |
|
| 148 | + { |
|
| 149 | + return $this->_validIterator; |
|
| 150 | + } |
|
| 151 | 151 | } |
| 152 | 152 | \ No newline at end of file |
@@ -2,8 +2,6 @@ |
||
| 2 | 2 | namespace Mouf\Database\TDBM\Utils; |
| 3 | 3 | |
| 4 | 4 | use Doctrine\DBAL\Driver\Connection; |
| 5 | -use Doctrine\DBAL\Schema\Column; |
|
| 6 | -use Doctrine\DBAL\Schema\ForeignKeyConstraint; |
|
| 7 | 5 | use Doctrine\DBAL\Schema\Schema; |
| 8 | 6 | use Doctrine\DBAL\Schema\Table; |
| 9 | 7 | use Doctrine\DBAL\Types\Type; |
@@ -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 Table $table 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 Table $table 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 | * |
@@ -410,29 +410,29 @@ discard block |
||
| 410 | 410 | } |
| 411 | 411 | "; |
| 412 | 412 | |
| 413 | - $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$baseClassName); |
|
| 414 | - if (!$possibleBaseFileNames) { |
|
| 415 | - // @codeCoverageIgnoreStart |
|
| 416 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$baseClassName.'" is not autoloadable.'); |
|
| 417 | - // @codeCoverageIgnoreEnd |
|
| 418 | - } |
|
| 419 | - $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
|
| 420 | - |
|
| 421 | - $this->ensureDirectoryExist($possibleBaseFileName); |
|
| 422 | - file_put_contents($possibleBaseFileName ,$str); |
|
| 423 | - @chmod($possibleBaseFileName, 0664); |
|
| 424 | - |
|
| 425 | - $possibleFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$className); |
|
| 426 | - if (!$possibleFileNames) { |
|
| 427 | - // @codeCoverageIgnoreStart |
|
| 428 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$className.'" is not autoloadable.'); |
|
| 429 | - // @codeCoverageIgnoreEnd |
|
| 430 | - } |
|
| 431 | - $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 413 | + $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$baseClassName); |
|
| 414 | + if (!$possibleBaseFileNames) { |
|
| 415 | + // @codeCoverageIgnoreStart |
|
| 416 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$baseClassName.'" is not autoloadable.'); |
|
| 417 | + // @codeCoverageIgnoreEnd |
|
| 418 | + } |
|
| 419 | + $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0]; |
|
| 420 | + |
|
| 421 | + $this->ensureDirectoryExist($possibleBaseFileName); |
|
| 422 | + file_put_contents($possibleBaseFileName ,$str); |
|
| 423 | + @chmod($possibleBaseFileName, 0664); |
|
| 424 | + |
|
| 425 | + $possibleFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$className); |
|
| 426 | + if (!$possibleFileNames) { |
|
| 427 | + // @codeCoverageIgnoreStart |
|
| 428 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$className.'" is not autoloadable.'); |
|
| 429 | + // @codeCoverageIgnoreEnd |
|
| 430 | + } |
|
| 431 | + $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 432 | 432 | |
| 433 | - // Now, let's generate the "editable" class |
|
| 434 | - if (!file_exists($possibleFileName)) { |
|
| 435 | - $str = "<?php |
|
| 433 | + // Now, let's generate the "editable" class |
|
| 434 | + if (!file_exists($possibleFileName)) { |
|
| 435 | + $str = "<?php |
|
| 436 | 436 | |
| 437 | 437 | /* |
| 438 | 438 | * This file has been automatically generated by TDBM. |
@@ -449,23 +449,23 @@ discard block |
||
| 449 | 449 | |
| 450 | 450 | } |
| 451 | 451 | "; |
| 452 | - $this->ensureDirectoryExist($possibleFileName); |
|
| 453 | - file_put_contents($possibleFileName ,$str); |
|
| 454 | - @chmod($possibleFileName, 0664); |
|
| 455 | - } |
|
| 456 | - } |
|
| 452 | + $this->ensureDirectoryExist($possibleFileName); |
|
| 453 | + file_put_contents($possibleFileName ,$str); |
|
| 454 | + @chmod($possibleFileName, 0664); |
|
| 455 | + } |
|
| 456 | + } |
|
| 457 | 457 | |
| 458 | 458 | |
| 459 | 459 | |
| 460 | - /** |
|
| 461 | - * Generates the factory bean. |
|
| 462 | - * |
|
| 463 | - * @param Table[] $tableList |
|
| 464 | - */ |
|
| 465 | - private function generateFactory(array $tableList, $daoFactoryClassName, $daoNamespace, ClassNameMapper $classNameMapper) { |
|
| 466 | - // For each table, let's write a property. |
|
| 460 | + /** |
|
| 461 | + * Generates the factory bean. |
|
| 462 | + * |
|
| 463 | + * @param Table[] $tableList |
|
| 464 | + */ |
|
| 465 | + private function generateFactory(array $tableList, $daoFactoryClassName, $daoNamespace, ClassNameMapper $classNameMapper) { |
|
| 466 | + // For each table, let's write a property. |
|
| 467 | 467 | |
| 468 | - $str = "<?php |
|
| 468 | + $str = "<?php |
|
| 469 | 469 | |
| 470 | 470 | /* |
| 471 | 471 | * This file has been automatically generated by TDBM. |
@@ -482,12 +482,12 @@ discard block |
||
| 482 | 482 | { |
| 483 | 483 | "; |
| 484 | 484 | |
| 485 | - foreach ($tableList as $table) { |
|
| 486 | - $tableName = $table->getName(); |
|
| 487 | - $daoClassName = $this->getDaoNameFromTableName($tableName); |
|
| 488 | - $daoInstanceName = self::toVariableName($daoClassName); |
|
| 485 | + foreach ($tableList as $table) { |
|
| 486 | + $tableName = $table->getName(); |
|
| 487 | + $daoClassName = $this->getDaoNameFromTableName($tableName); |
|
| 488 | + $daoInstanceName = self::toVariableName($daoClassName); |
|
| 489 | 489 | |
| 490 | - $str .= ' /** |
|
| 490 | + $str .= ' /** |
|
| 491 | 491 | * @var '.$daoClassName.' |
| 492 | 492 | */ |
| 493 | 493 | private $'.$daoInstanceName.'; |
@@ -512,141 +512,141 @@ discard block |
||
| 512 | 512 | } |
| 513 | 513 | |
| 514 | 514 | '; |
| 515 | - } |
|
| 515 | + } |
|
| 516 | 516 | |
| 517 | 517 | |
| 518 | - $str .= ' |
|
| 518 | + $str .= ' |
|
| 519 | 519 | } |
| 520 | 520 | '; |
| 521 | 521 | |
| 522 | - $possibleFileNames = $classNameMapper->getPossibleFileNames($daoNamespace."\\".$daoFactoryClassName); |
|
| 523 | - if (!$possibleFileNames) { |
|
| 524 | - throw new TDBMException('Sorry, autoload namespace issue. The class "'.$daoNamespace."\\".$daoFactoryClassName.'" is not autoloadable.'); |
|
| 525 | - } |
|
| 526 | - $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 527 | - |
|
| 528 | - $this->ensureDirectoryExist($possibleFileName); |
|
| 529 | - file_put_contents($possibleFileName ,$str); |
|
| 530 | - } |
|
| 531 | - |
|
| 532 | - /** |
|
| 533 | - * Transforms a string to camelCase (except the first letter will be uppercase too). |
|
| 534 | - * Underscores and spaces are removed and the first letter after the underscore is uppercased. |
|
| 535 | - * |
|
| 536 | - * @param $str string |
|
| 537 | - * @return string |
|
| 538 | - */ |
|
| 539 | - public static function toCamelCase($str) { |
|
| 540 | - $str = strtoupper(substr($str,0,1)).substr($str,1); |
|
| 541 | - while (true) { |
|
| 542 | - if (strpos($str, "_") === false && strpos($str, " ") === false) { |
|
| 543 | - break; |
|
| 522 | + $possibleFileNames = $classNameMapper->getPossibleFileNames($daoNamespace."\\".$daoFactoryClassName); |
|
| 523 | + if (!$possibleFileNames) { |
|
| 524 | + throw new TDBMException('Sorry, autoload namespace issue. The class "'.$daoNamespace."\\".$daoFactoryClassName.'" is not autoloadable.'); |
|
| 525 | + } |
|
| 526 | + $possibleFileName = $this->rootPath.$possibleFileNames[0]; |
|
| 527 | + |
|
| 528 | + $this->ensureDirectoryExist($possibleFileName); |
|
| 529 | + file_put_contents($possibleFileName ,$str); |
|
| 530 | + } |
|
| 531 | + |
|
| 532 | + /** |
|
| 533 | + * Transforms a string to camelCase (except the first letter will be uppercase too). |
|
| 534 | + * Underscores and spaces are removed and the first letter after the underscore is uppercased. |
|
| 535 | + * |
|
| 536 | + * @param $str string |
|
| 537 | + * @return string |
|
| 538 | + */ |
|
| 539 | + public static function toCamelCase($str) { |
|
| 540 | + $str = strtoupper(substr($str,0,1)).substr($str,1); |
|
| 541 | + while (true) { |
|
| 542 | + if (strpos($str, "_") === false && strpos($str, " ") === false) { |
|
| 543 | + break; |
|
| 544 | 544 | } |
| 545 | 545 | |
| 546 | - $pos = strpos($str, "_"); |
|
| 547 | - if ($pos === false) { |
|
| 548 | - $pos = strpos($str, " "); |
|
| 549 | - } |
|
| 550 | - $before = substr($str,0,$pos); |
|
| 551 | - $after = substr($str,$pos+1); |
|
| 552 | - $str = $before.strtoupper(substr($after,0,1)).substr($after,1); |
|
| 553 | - } |
|
| 554 | - return $str; |
|
| 555 | - } |
|
| 546 | + $pos = strpos($str, "_"); |
|
| 547 | + if ($pos === false) { |
|
| 548 | + $pos = strpos($str, " "); |
|
| 549 | + } |
|
| 550 | + $before = substr($str,0,$pos); |
|
| 551 | + $after = substr($str,$pos+1); |
|
| 552 | + $str = $before.strtoupper(substr($after,0,1)).substr($after,1); |
|
| 553 | + } |
|
| 554 | + return $str; |
|
| 555 | + } |
|
| 556 | 556 | |
| 557 | - /** |
|
| 558 | - * Tries to put string to the singular form (if it is plural). |
|
| 559 | - * We assume the table names are in english. |
|
| 560 | - * |
|
| 561 | - * @param $str string |
|
| 562 | - * @return string |
|
| 563 | - */ |
|
| 564 | - public static function toSingular($str) { |
|
| 565 | - return Inflector::get('en')->singularize($str); |
|
| 566 | - } |
|
| 557 | + /** |
|
| 558 | + * Tries to put string to the singular form (if it is plural). |
|
| 559 | + * We assume the table names are in english. |
|
| 560 | + * |
|
| 561 | + * @param $str string |
|
| 562 | + * @return string |
|
| 563 | + */ |
|
| 564 | + public static function toSingular($str) { |
|
| 565 | + return Inflector::get('en')->singularize($str); |
|
| 566 | + } |
|
| 567 | 567 | |
| 568 | - /** |
|
| 569 | - * Put the first letter of the string in lower case. |
|
| 570 | - * Very useful to transform a class name into a variable name. |
|
| 571 | - * |
|
| 572 | - * @param $str string |
|
| 573 | - * @return string |
|
| 574 | - */ |
|
| 575 | - public static function toVariableName($str) { |
|
| 576 | - return strtolower(substr($str, 0, 1)).substr($str, 1); |
|
| 577 | - } |
|
| 578 | - |
|
| 579 | - /** |
|
| 580 | - * Ensures the file passed in parameter can be written in its directory. |
|
| 581 | - * @param string $fileName |
|
| 582 | - * @throws TDBMException |
|
| 583 | - */ |
|
| 584 | - private function ensureDirectoryExist($fileName) { |
|
| 585 | - $dirName = dirname($fileName); |
|
| 586 | - if (!file_exists($dirName)) { |
|
| 587 | - $old = umask(0); |
|
| 588 | - $result = mkdir($dirName, 0775, true); |
|
| 589 | - umask($old); |
|
| 590 | - if ($result === false) { |
|
| 591 | - throw new TDBMException("Unable to create directory: '".$dirName."'."); |
|
| 592 | - } |
|
| 593 | - } |
|
| 594 | - } |
|
| 595 | - |
|
| 596 | - /** |
|
| 597 | - * @param string $rootPath |
|
| 598 | - */ |
|
| 599 | - public function setRootPath($rootPath) |
|
| 600 | - { |
|
| 601 | - $this->rootPath = $rootPath; |
|
| 602 | - } |
|
| 603 | - |
|
| 604 | - /** |
|
| 605 | - * Transforms a DBAL type into a PHP type (for PHPDoc purpose) |
|
| 606 | - * |
|
| 607 | - * @param Type $type The DBAL type |
|
| 608 | - * @return string The PHP type |
|
| 609 | - */ |
|
| 610 | - public static function dbalTypeToPhpType(Type $type) { |
|
| 611 | - $map = [ |
|
| 612 | - Type::TARRAY => 'array', |
|
| 613 | - Type::SIMPLE_ARRAY => 'array', |
|
| 614 | - Type::JSON_ARRAY => 'array', |
|
| 615 | - Type::BIGINT => 'string', |
|
| 616 | - Type::BOOLEAN => 'bool', |
|
| 617 | - Type::DATETIME => '\DateTimeInterface', |
|
| 618 | - Type::DATETIMETZ => '\DateTimeInterface', |
|
| 619 | - Type::DATE => '\DateTimeInterface', |
|
| 620 | - Type::TIME => '\DateTimeInterface', |
|
| 621 | - Type::DECIMAL => 'float', |
|
| 622 | - Type::INTEGER => 'int', |
|
| 623 | - Type::OBJECT => 'string', |
|
| 624 | - Type::SMALLINT => 'int', |
|
| 625 | - Type::STRING => 'string', |
|
| 626 | - Type::TEXT => 'string', |
|
| 627 | - Type::BINARY => 'string', |
|
| 628 | - Type::BLOB => 'string', |
|
| 629 | - Type::FLOAT => 'float', |
|
| 630 | - Type::GUID => 'string' |
|
| 631 | - ]; |
|
| 632 | - |
|
| 633 | - return isset($map[$type->getName()])?$map[$type->getName()]:$type->getName(); |
|
| 634 | - } |
|
| 635 | - |
|
| 636 | - /** |
|
| 637 | - * |
|
| 638 | - * @param string $beanNamespace |
|
| 639 | - * @return \string[] Returns a map mapping table name to beans name |
|
| 640 | - */ |
|
| 641 | - public function buildTableToBeanMap($beanNamespace) { |
|
| 642 | - $tableToBeanMap = []; |
|
| 643 | - |
|
| 644 | - $tables = $this->schema->getTables(); |
|
| 645 | - |
|
| 646 | - foreach ($tables as $table) { |
|
| 647 | - $tableName = $table->getName(); |
|
| 648 | - $tableToBeanMap[$tableName] = $beanNamespace . "\\" . self::getBeanNameFromTableName($tableName); |
|
| 649 | - } |
|
| 650 | - return $tableToBeanMap; |
|
| 651 | - } |
|
| 568 | + /** |
|
| 569 | + * Put the first letter of the string in lower case. |
|
| 570 | + * Very useful to transform a class name into a variable name. |
|
| 571 | + * |
|
| 572 | + * @param $str string |
|
| 573 | + * @return string |
|
| 574 | + */ |
|
| 575 | + public static function toVariableName($str) { |
|
| 576 | + return strtolower(substr($str, 0, 1)).substr($str, 1); |
|
| 577 | + } |
|
| 578 | + |
|
| 579 | + /** |
|
| 580 | + * Ensures the file passed in parameter can be written in its directory. |
|
| 581 | + * @param string $fileName |
|
| 582 | + * @throws TDBMException |
|
| 583 | + */ |
|
| 584 | + private function ensureDirectoryExist($fileName) { |
|
| 585 | + $dirName = dirname($fileName); |
|
| 586 | + if (!file_exists($dirName)) { |
|
| 587 | + $old = umask(0); |
|
| 588 | + $result = mkdir($dirName, 0775, true); |
|
| 589 | + umask($old); |
|
| 590 | + if ($result === false) { |
|
| 591 | + throw new TDBMException("Unable to create directory: '".$dirName."'."); |
|
| 592 | + } |
|
| 593 | + } |
|
| 594 | + } |
|
| 595 | + |
|
| 596 | + /** |
|
| 597 | + * @param string $rootPath |
|
| 598 | + */ |
|
| 599 | + public function setRootPath($rootPath) |
|
| 600 | + { |
|
| 601 | + $this->rootPath = $rootPath; |
|
| 602 | + } |
|
| 603 | + |
|
| 604 | + /** |
|
| 605 | + * Transforms a DBAL type into a PHP type (for PHPDoc purpose) |
|
| 606 | + * |
|
| 607 | + * @param Type $type The DBAL type |
|
| 608 | + * @return string The PHP type |
|
| 609 | + */ |
|
| 610 | + public static function dbalTypeToPhpType(Type $type) { |
|
| 611 | + $map = [ |
|
| 612 | + Type::TARRAY => 'array', |
|
| 613 | + Type::SIMPLE_ARRAY => 'array', |
|
| 614 | + Type::JSON_ARRAY => 'array', |
|
| 615 | + Type::BIGINT => 'string', |
|
| 616 | + Type::BOOLEAN => 'bool', |
|
| 617 | + Type::DATETIME => '\DateTimeInterface', |
|
| 618 | + Type::DATETIMETZ => '\DateTimeInterface', |
|
| 619 | + Type::DATE => '\DateTimeInterface', |
|
| 620 | + Type::TIME => '\DateTimeInterface', |
|
| 621 | + Type::DECIMAL => 'float', |
|
| 622 | + Type::INTEGER => 'int', |
|
| 623 | + Type::OBJECT => 'string', |
|
| 624 | + Type::SMALLINT => 'int', |
|
| 625 | + Type::STRING => 'string', |
|
| 626 | + Type::TEXT => 'string', |
|
| 627 | + Type::BINARY => 'string', |
|
| 628 | + Type::BLOB => 'string', |
|
| 629 | + Type::FLOAT => 'float', |
|
| 630 | + Type::GUID => 'string' |
|
| 631 | + ]; |
|
| 632 | + |
|
| 633 | + return isset($map[$type->getName()])?$map[$type->getName()]:$type->getName(); |
|
| 634 | + } |
|
| 635 | + |
|
| 636 | + /** |
|
| 637 | + * |
|
| 638 | + * @param string $beanNamespace |
|
| 639 | + * @return \string[] Returns a map mapping table name to beans name |
|
| 640 | + */ |
|
| 641 | + public function buildTableToBeanMap($beanNamespace) { |
|
| 642 | + $tableToBeanMap = []; |
|
| 643 | + |
|
| 644 | + $tables = $this->schema->getTables(); |
|
| 645 | + |
|
| 646 | + foreach ($tables as $table) { |
|
| 647 | + $tableName = $table->getName(); |
|
| 648 | + $tableToBeanMap[$tableName] = $beanNamespace . "\\" . self::getBeanNameFromTableName($tableName); |
|
| 649 | + } |
|
| 650 | + return $tableToBeanMap; |
|
| 651 | + } |
|
| 652 | 652 | } |
@@ -15,96 +15,96 @@ |
||
| 15 | 15 | class TDBMSchemaAnalyzer |
| 16 | 16 | { |
| 17 | 17 | |
| 18 | - private $connection; |
|
| 18 | + private $connection; |
|
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * @var Schema |
|
| 22 | - */ |
|
| 23 | - private $schema; |
|
| 20 | + /** |
|
| 21 | + * @var Schema |
|
| 22 | + */ |
|
| 23 | + private $schema; |
|
| 24 | 24 | |
| 25 | - /** |
|
| 26 | - * @var string |
|
| 27 | - */ |
|
| 28 | - private $cachePrefix; |
|
| 25 | + /** |
|
| 26 | + * @var string |
|
| 27 | + */ |
|
| 28 | + private $cachePrefix; |
|
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * @var Cache |
|
| 32 | - */ |
|
| 33 | - private $cache; |
|
| 30 | + /** |
|
| 31 | + * @var Cache |
|
| 32 | + */ |
|
| 33 | + private $cache; |
|
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * @var SchemaAnalyzer |
|
| 37 | - */ |
|
| 38 | - private $schemaAnalyzer; |
|
| 35 | + /** |
|
| 36 | + * @var SchemaAnalyzer |
|
| 37 | + */ |
|
| 38 | + private $schemaAnalyzer; |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * @param Connection $connection The DBAL DB connection to use |
|
| 42 | - * @param Cache $cache A cache service to be used |
|
| 43 | - * @param SchemaAnalyzer $schemaAnalyzer The schema analyzer that will be used to find shortest paths... |
|
| 44 | - * Will be automatically created if not passed. |
|
| 45 | - */ |
|
| 46 | - public function __construct(Connection $connection, Cache $cache, SchemaAnalyzer $schemaAnalyzer) { |
|
| 47 | - $this->connection = $connection; |
|
| 48 | - $this->cache = $cache; |
|
| 49 | - $this->schemaAnalyzer = $schemaAnalyzer; |
|
| 50 | - } |
|
| 40 | + /** |
|
| 41 | + * @param Connection $connection The DBAL DB connection to use |
|
| 42 | + * @param Cache $cache A cache service to be used |
|
| 43 | + * @param SchemaAnalyzer $schemaAnalyzer The schema analyzer that will be used to find shortest paths... |
|
| 44 | + * Will be automatically created if not passed. |
|
| 45 | + */ |
|
| 46 | + public function __construct(Connection $connection, Cache $cache, SchemaAnalyzer $schemaAnalyzer) { |
|
| 47 | + $this->connection = $connection; |
|
| 48 | + $this->cache = $cache; |
|
| 49 | + $this->schemaAnalyzer = $schemaAnalyzer; |
|
| 50 | + } |
|
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * Returns a unique ID for the current connection. Useful for namespacing cache entries in the current connection. |
|
| 54 | - * @return string |
|
| 55 | - */ |
|
| 56 | - public function getCachePrefix() { |
|
| 57 | - if ($this->cachePrefix === null) { |
|
| 58 | - $this->cachePrefix = hash('md4', $this->connection->getHost()."-".$this->connection->getPort()."-".$this->connection->getDatabase()."-".$this->connection->getDriver()->getName()); |
|
| 59 | - } |
|
| 60 | - return $this->cachePrefix; |
|
| 61 | - } |
|
| 52 | + /** |
|
| 53 | + * Returns a unique ID for the current connection. Useful for namespacing cache entries in the current connection. |
|
| 54 | + * @return string |
|
| 55 | + */ |
|
| 56 | + public function getCachePrefix() { |
|
| 57 | + if ($this->cachePrefix === null) { |
|
| 58 | + $this->cachePrefix = hash('md4', $this->connection->getHost()."-".$this->connection->getPort()."-".$this->connection->getDatabase()."-".$this->connection->getDriver()->getName()); |
|
| 59 | + } |
|
| 60 | + return $this->cachePrefix; |
|
| 61 | + } |
|
| 62 | 62 | |
| 63 | - /** |
|
| 64 | - * Returns the (cached) schema. |
|
| 65 | - * |
|
| 66 | - * @return Schema |
|
| 67 | - */ |
|
| 68 | - public function getSchema() { |
|
| 69 | - if ($this->schema === null) { |
|
| 70 | - $cacheKey = $this->getCachePrefix().'_schema'; |
|
| 71 | - if ($this->cache->contains($cacheKey)) { |
|
| 72 | - $this->schema = $this->cache->fetch($cacheKey); |
|
| 73 | - } else { |
|
| 74 | - $this->schema = $this->connection->getSchemaManager()->createSchema(); |
|
| 75 | - $this->cache->save($cacheKey, $this->schema); |
|
| 76 | - } |
|
| 77 | - } |
|
| 78 | - return $this->schema; |
|
| 79 | - } |
|
| 63 | + /** |
|
| 64 | + * Returns the (cached) schema. |
|
| 65 | + * |
|
| 66 | + * @return Schema |
|
| 67 | + */ |
|
| 68 | + public function getSchema() { |
|
| 69 | + if ($this->schema === null) { |
|
| 70 | + $cacheKey = $this->getCachePrefix().'_schema'; |
|
| 71 | + if ($this->cache->contains($cacheKey)) { |
|
| 72 | + $this->schema = $this->cache->fetch($cacheKey); |
|
| 73 | + } else { |
|
| 74 | + $this->schema = $this->connection->getSchemaManager()->createSchema(); |
|
| 75 | + $this->cache->save($cacheKey, $this->schema); |
|
| 76 | + } |
|
| 77 | + } |
|
| 78 | + return $this->schema; |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - /** |
|
| 82 | - * Returns the list of pivot tables linked to table $tableName |
|
| 83 | - * @param string $tableName |
|
| 84 | - * @return array|string[] |
|
| 85 | - */ |
|
| 86 | - public function getPivotTableLinkedToTable($tableName) { |
|
| 87 | - $cacheKey = $this->getCachePrefix().'_pivottables_link'; |
|
| 88 | - if ($this->cache->contains($cacheKey)) { |
|
| 89 | - return $this->cache->fetch($cacheKey); |
|
| 90 | - } |
|
| 81 | + /** |
|
| 82 | + * Returns the list of pivot tables linked to table $tableName |
|
| 83 | + * @param string $tableName |
|
| 84 | + * @return array|string[] |
|
| 85 | + */ |
|
| 86 | + public function getPivotTableLinkedToTable($tableName) { |
|
| 87 | + $cacheKey = $this->getCachePrefix().'_pivottables_link'; |
|
| 88 | + if ($this->cache->contains($cacheKey)) { |
|
| 89 | + return $this->cache->fetch($cacheKey); |
|
| 90 | + } |
|
| 91 | 91 | |
| 92 | - $pivotTables = []; |
|
| 92 | + $pivotTables = []; |
|
| 93 | 93 | |
| 94 | - $junctionTables = $this->schemaAnalyzer->detectJunctionTables(); |
|
| 95 | - foreach ($junctionTables as $table) { |
|
| 96 | - $fks = $table->getForeignKeys(); |
|
| 97 | - foreach ($fks as $fk) { |
|
| 98 | - if ($fk->getForeignTableName() == $tableName) { |
|
| 99 | - $pivotTables[] = $table->getName(); |
|
| 100 | - break; |
|
| 101 | - } |
|
| 102 | - } |
|
| 103 | - } |
|
| 94 | + $junctionTables = $this->schemaAnalyzer->detectJunctionTables(); |
|
| 95 | + foreach ($junctionTables as $table) { |
|
| 96 | + $fks = $table->getForeignKeys(); |
|
| 97 | + foreach ($fks as $fk) { |
|
| 98 | + if ($fk->getForeignTableName() == $tableName) { |
|
| 99 | + $pivotTables[] = $table->getName(); |
|
| 100 | + break; |
|
| 101 | + } |
|
| 102 | + } |
|
| 103 | + } |
|
| 104 | 104 | |
| 105 | - $this->cache->save($cacheKey, $pivotTables); |
|
| 106 | - return $pivotTables; |
|
| 107 | - } |
|
| 105 | + $this->cache->save($cacheKey, $pivotTables); |
|
| 106 | + return $pivotTables; |
|
| 107 | + } |
|
| 108 | 108 | |
| 109 | 109 | |
| 110 | 110 | } |
@@ -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") { |
@@ -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 | } |
@@ -18,7 +18,6 @@ |
||
| 18 | 18 | along with this program; if not, write to the Free Software |
| 19 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 | */ |
| 21 | -use Doctrine\DBAL\Driver\Connection; |
|
| 22 | 21 | |
| 23 | 22 | |
| 24 | 23 | /** |
@@ -18,7 +18,6 @@ |
||
| 18 | 18 | along with this program; if not, write to the Free Software |
| 19 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 | */ |
| 21 | -use Doctrine\DBAL\Driver\Connection; |
|
| 22 | 21 | |
| 23 | 22 | |
| 24 | 23 | /** |
@@ -18,7 +18,6 @@ |
||
| 18 | 18 | along with this program; if not, write to the Free Software |
| 19 | 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 | */ |
| 21 | -use Doctrine\DBAL\Driver\Connection; |
|
| 22 | 21 | |
| 23 | 22 | |
| 24 | 23 | /** |