Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/www/core/xpdo/om/mysql/ |
<?php /* * Copyright 2010-2013 by MODX, LLC. * * This file is part of xPDO. * * xPDO is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later * version. * * xPDO is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with * xPDO; if not, write to the Free Software Foundation, Inc., 59 Temple Place, * Suite 330, Boston, MA 02111-1307 USA */ /** * MySQL classes for generating xPDOObject classes and maps from an xPDO schema. * * @package xpdo * @subpackage om.mysql */ /** * Include the parent {@link xPDOGenerator} class. */ include_once (dirname(dirname(__FILE__)) . '/xpdogenerator.class.php'); /** * An extension for generating {@link xPDOObject} class and map files for MySQL. * * A MySQL-specific extension to an {@link xPDOManager} instance that can * generate class stub and meta-data map files from a provided XML schema of a * database structure. * * @package xpdo * @subpackage om.mysql */ class xPDOGenerator_mysql extends xPDOGenerator { public function compile($path = '') { return false; } public function getIndex($index) { switch ($index) { case 'PRI': $index= 'pk'; break; case 'UNI': $index= 'unique'; break; case 'MUL': $index= 'index'; break; default: break; } if (!empty ($index)) { $index= ' index="' . $index . '"'; } return $index; } /** * Write an xPDO XML Schema from your database. * * @param string $schemaFile The name (including path) of the schemaFile you * want to write. * @param string $package Name of the package to generate the classes in. * @param string $baseClass The class which all classes in the package will * extend; by default this is set to {@link xPDOObject} and any * auto_increment fields with the column name 'id' will extend {@link * xPDOSimpleObject} automatically. * @param string $tablePrefix The table prefix for the current connection, * which will be removed from all of the generated class and table names. * Specify a prefix when creating a new {@link xPDO} instance to recreate * the tables with the same prefix, but still use the generic class names. * @param boolean $restrictPrefix Only reverse-engineer tables that have the * specified tablePrefix; if tablePrefix is empty, this is ignored. * @return boolean True on success, false on failure. */ public function writeSchema($schemaFile, $package= '', $baseClass= '', $tablePrefix= '', $restrictPrefix= false) { if (empty ($package)) $package= $this->manager->xpdo->package; if (empty ($baseClass)) $baseClass= 'xPDOObject'; if (empty ($tablePrefix)) $tablePrefix= $this->manager->xpdo->config[xPDO::OPT_TABLE_PREFIX]; $schemaVersion = xPDO::SCHEMA_VERSION; $xmlContent = array(); $xmlContent[] = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; $xmlContent[] = "<model package=\"{$package}\" baseClass=\"{$baseClass}\" platform=\"mysql\" defaultEngine=\"MyISAM\" version=\"{$schemaVersion}\">"; //read list of tables $dbname= $this->manager->xpdo->escape($this->manager->xpdo->config['dbname']); $tableLike= ($tablePrefix && $restrictPrefix) ? " LIKE '{$tablePrefix}%'" : ''; $tablesStmt= $this->manager->xpdo->prepare("SHOW TABLES FROM {$dbname}{$tableLike}"); $tstart = microtime(true); $tablesStmt->execute(); $this->manager->xpdo->queryTime += microtime(true) - $tstart; $this->manager->xpdo->executedQueries++; $tables= $tablesStmt->fetchAll(PDO::FETCH_NUM); if ($this->manager->xpdo->getDebug() === true) $this->manager->xpdo->log(xPDO::LOG_LEVEL_DEBUG, print_r($tables, true)); foreach ($tables as $table) { $xmlObject= array(); $xmlFields= array(); $xmlIndices= array(); if (!$tableName= $this->getTableName($table[0], $tablePrefix, $restrictPrefix)) { continue; } $class= $this->getClassName($tableName); $extends= $baseClass; $fieldsStmt= $this->manager->xpdo->query('SHOW COLUMNS FROM ' . $this->manager->xpdo->escape($table[0])); if ($fieldsStmt) { $fields= $fieldsStmt->fetchAll(PDO::FETCH_ASSOC); if ($this->manager->xpdo->getDebug() === true) $this->manager->xpdo->log(xPDO::LOG_LEVEL_DEBUG, print_r($fields, true)); if (!empty($fields)) { foreach ($fields as $field) { $Field= ''; $Type= ''; $Null= ''; $Key= ''; $Default= ''; $Extra= ''; extract($field, EXTR_OVERWRITE); $Type= xPDO :: escSplit(' ', $Type, "'", 2); $precisionPos= strpos($Type[0], '('); $dbType= $precisionPos? substr($Type[0], 0, $precisionPos): $Type[0]; $dbType= strtolower($dbType); $Precision= $precisionPos? substr($Type[0], $precisionPos + 1, strrpos($Type[0], ')') - ($precisionPos + 1)): ''; if (!empty ($Precision)) { $Precision= ' precision="' . trim($Precision) . '"'; } $attributes= ''; if (isset ($Type[1]) && !empty ($Type[1])) { $attributes= ' attributes="' . trim($Type[1]) . '"'; } $PhpType= $this->manager->xpdo->driver->getPhpType($dbType); $Null= ' null="' . (($Null === 'NO') ? 'false' : 'true') . '"'; $Key= $this->getIndex($Key); $Default= $this->getDefault($Default); if (!empty ($Extra)) { if ($Extra === 'auto_increment') { if ($baseClass === 'xPDOObject' && $Field === 'id') { $extends= 'xPDOSimpleObject'; continue; } else { $Extra= ' generated="native"'; } } else { $Extra= ' extra="' . strtolower($Extra) . '"'; } $Extra= ' ' . $Extra; } $xmlFields[] = "\t\t<field key=\"{$Field}\" dbtype=\"{$dbType}\"{$Precision}{$attributes} phptype=\"{$PhpType}\"{$Null}{$Default}{$Key}{$Extra} />"; } } else { $this->manager->xpdo->log(xPDO::LOG_LEVEL_ERROR, 'No columns were found in table ' . $table[0]); } } else { $this->manager->xpdo->log(xPDO::LOG_LEVEL_ERROR, 'Error retrieving columns for table ' . $table[0]); } $whereClause= ($extends === 'xPDOSimpleObject' ? " WHERE `Key_name` != 'PRIMARY'" : ''); $indexesStmt= $this->manager->xpdo->query('SHOW INDEXES FROM ' . $this->manager->xpdo->escape($table[0]) . $whereClause); if ($indexesStmt) { $indexes= $indexesStmt->fetchAll(PDO::FETCH_ASSOC); if ($this->manager->xpdo->getDebug() === true) $this->manager->xpdo->log(xPDO::LOG_LEVEL_DEBUG, "Indices for table {$table[0]}: " . print_r($indexes, true)); if (!empty($indexes)) { $indices = array(); foreach ($indexes as $index) { if (!array_key_exists($index['Key_name'], $indices)) $indices[$index['Key_name']] = array(); $indices[$index['Key_name']][$index['Seq_in_index']] = $index; } foreach ($indices as $index) { $xmlIndexCols = array(); if ($this->manager->xpdo->getDebug() === true) $this->manager->xpdo->log(xPDO::LOG_LEVEL_DEBUG, "Details of index: " . print_r($index, true)); foreach ($index as $columnSeq => $column) { if ($columnSeq == 1) { $keyName = $column['Key_name']; $primary = $keyName == 'PRIMARY' ? 'true' : 'false'; $unique = empty($column['Non_unique']) ? 'true' : 'false'; $packed = empty($column['Packed']) ? 'false' : 'true'; $type = $column['Index_type']; } $null = $column['Null'] == 'YES' ? 'true' : 'false'; $xmlIndexCols[]= "\t\t\t<column key=\"{$column['Column_name']}\" length=\"{$column['Sub_part']}\" collation=\"{$column['Collation']}\" null=\"{$null}\" />"; } $xmlIndices[]= "\t\t<index alias=\"{$keyName}\" name=\"{$keyName}\" primary=\"{$primary}\" unique=\"{$unique}\" type=\"{$type}\" >"; $xmlIndices[]= implode("\n", $xmlIndexCols); $xmlIndices[]= "\t\t</index>"; } } else { $this->manager->xpdo->log(xPDO::LOG_LEVEL_WARN, 'No indexes were found in table ' . $table[0]); } } else { $this->manager->xpdo->log(xPDO::LOG_LEVEL_ERROR, 'Error getting indexes for table ' . $table[0]); } $xmlObject[] = "\t<object class=\"{$class}\" table=\"{$tableName}\" extends=\"{$extends}\">"; $xmlObject[] = implode("\n", $xmlFields); if (!empty($xmlIndices)) { $xmlObject[] = ''; $xmlObject[] = implode("\n", $xmlIndices); } $xmlObject[] = "\t</object>"; $xmlContent[] = implode("\n", $xmlObject); } $xmlContent[] = "</model>"; if ($this->manager->xpdo->getDebug() === true) { $this->manager->xpdo->log(xPDO::LOG_LEVEL_DEBUG, implode("\n", $xmlContent)); } $file= fopen($schemaFile, 'wb'); $written= fwrite($file, implode("\n", $xmlContent)); fclose($file); return true; } }