Source for file mysql.dbtools.php
Documentation is available at mysql.dbtools.php
- <?php
- /**
- * @package jelix
- * @subpackage db_driver
- * @author GĂ©rald Croes, Laurent Jouanneau
- * @contributor Laurent Jouanneau
- * @copyright 2001-2005 CopixTeam, 2005-2011 Laurent Jouanneau
- * This class was get originally from the Copix project (CopixDbToolsMysql, Copix 2.3dev20050901, http://www.copix.org)
- * Some lines of code are copyrighted 2001-2005 CopixTeam (LGPL licence).
- * Initial authors of this Copix class are Gerald Croes and Laurent Jouanneau,
- * and this class was adapted/improved for Jelix by Laurent Jouanneau
- *
- * @link http://www.jelix.org
- * @licence http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file
- */
-
- /**
- * Provides utilities methods for a mysql database
- * @package jelix
- * @subpackage db_driver
- */
- class mysqlDbTools extends jDbTools {
-
- protected $typesInfo = array(
- // type native type unified type minvalue maxvalue minlength maxlength
- 'bool' =>array('boolean', 'boolean', 0, 1, null, null),
- 'boolean' =>array('boolean', 'boolean', 0, 1, null, null),
- 'bit' =>array('bit', 'integer', 0, 1, null, null),
- 'tinyint' =>array('tinyint', 'integer', -128, 127, null, null),
- 'smallint' =>array('smallint', 'integer', -32768, 32767, null, null),
- 'mediumint' =>array('mediumint', 'integer', -8388608, 8388607, null, null),
- 'integer' =>array('integer', 'integer', -2147483648, 2147483647, null, null),
- 'int' =>array('integer', 'integer', -2147483648, 2147483647, null, null),
- 'bigint' =>array('bigint', 'numeric', '-9223372036854775808', '9223372036854775807', null, null),
- 'serial' =>array('integer', 'numeric', '-9223372036854775808', '9223372036854775807', null, null),
- 'bigserial' =>array('integer', 'numeric', '-9223372036854775808', '9223372036854775807', null, null),
- 'autoincrement' =>array('integer', 'integer', -2147483648, 2147483647, null, null), // for old dao files
- 'bigautoincrement'=>array('bigint', 'numeric', '-9223372036854775808', '9223372036854775807', null, null),// for old dao files
-
- 'float' =>array('float', 'float', null, null, null, null), //4bytes
- 'money' =>array('float', 'float', null, null, null, null), //4bytes
- 'double precision'=>array('double precision', 'decimal', null, null, null, null), //8bytes
- 'double' =>array('double precision', 'decimal', null, null, null, null), //8bytes
- 'real' =>array('real', 'decimal', null, null, null, null), //8bytes
- 'number' =>array('real', 'decimal', null, null, null, null), //8bytes
- 'binary_float' =>array('float', 'float', null, null, null, null), //4bytes
- 'binary_double' =>array('real', 'decimal', null, null, null, null), //8bytes
-
- 'numeric' =>array('numeric', 'numeric', null, null, null, null),
- 'decimal' =>array('decimal', 'decimal', null, null, null, null),
- 'dec' =>array('decimal', 'decimal', null, null, null, null),
-
- 'date' =>array('date', 'date', null, null, 10, 10),
- 'time' =>array('time', 'time', null, null, 8, 8),
- 'datetime' =>array('datetime', 'datetime', null, null, 19, 19),
- 'timestamp' =>array('datetime', 'datetime', null, null, 19, 19), // oracle/pgsql timestamp
- 'utimestamp' =>array('timestamp', 'integer', 0, 2147483647, null, null), // mysql timestamp
- 'year' =>array('year', 'year', null, null, 2, 4),
- 'interval' =>array('datetime', 'datetime', null, null, 19, 19),
-
- 'char' =>array('char', 'char', null, null, 0, 255),
- 'nchar' =>array('char', 'char', null, null, 0, 255),
- 'varchar' =>array('varchar', 'varchar', null, null, 0, 65535),
- 'varchar2' =>array('varchar', 'varchar', null, null, 0, 4000),
- 'nvarchar2' =>array('varchar', 'varchar', null, null, 0, 4000),
- 'character' =>array('varchar', 'varchar', null, null, 0, 65535),
- 'character varying'=>array('varchar', 'varchar', null, null, 0, 65535),
- 'name' =>array('varchar', 'varchar', null, null, 0, 64),
- 'longvarchar' =>array('varchar', 'varchar', null, null, 0, 65535),
- 'string' =>array('varchar', 'varchar', null, null, 0, 65535),// for old dao files
-
- 'tinytext' =>array('tinytext', 'text', null, null, 0, 255),
- 'text' =>array('text', 'text', null, null, 0, 65535),
- 'mediumtext' =>array('mediumtext', 'text', null, null, 0, 16777215),
- 'longtext' =>array('longtext', 'text', null, null, 0, 0),
- 'long' =>array('longtext', 'text', null, null, 0, 0),
- 'clob' =>array('longtext', 'text', null, null, 0, 0),
- 'nclob' =>array('longtext', 'text', null, null, 0, 0),
-
-
- 'tinyblob' =>array('tinyblob', 'varbinary', null, null, 0, 255),
- 'blob' =>array('blob', 'varbinary', null, null, 0, 65535),
- 'mediumblob' =>array('mediumblob', 'varbinary', null, null, 0, 16777215),
- 'longblob' =>array('longblob', 'varbinary', null, null, 0, 0),
- 'bfile' =>array('longblob', 'varbinary', null, null, 0, 0),
-
- 'bytea' =>array('longblob', 'varbinary', null, null, 0, 0),
- 'binary' =>array('binary', 'binary', null, null, 0, 255),
- 'varbinary' =>array('varbinary', 'varbinary', null, null, 0, 255),
- 'raw' =>array('varbinary', 'varbinary', null, null, 0, 2000),
- 'long raw' =>array('varbinary', 'varbinary', null, null, 0, 0),
-
- 'enum' =>array('varchar', 'varchar', null, null, 0, 65535),
- 'set' =>array('varchar', 'varchar', null, null, 0, 65535),
- 'xmltype' =>array('varchar', 'varchar', null, null, 0, 65535),
-
- 'point' =>array('varchar', 'varchar', null, null, 0, 16),
- 'line' =>array('varchar', 'varchar', null, null, 0, 32),
- 'lsed' =>array('varchar', 'varchar', null, null, 0, 32),
- 'box' =>array('varchar', 'varchar', null, null, 0, 32),
- 'path' =>array('varchar', 'varchar', null, null, 0, 65535),
- 'polygon' =>array('varchar', 'varchar', null, null, 0, 65535),
- 'circle' =>array('varchar', 'varchar', null, null, 0, 24),
- 'cidr' =>array('varchar', 'varchar', null, null, 0, 24),
- 'inet' =>array('varchar', 'varchar', null, null, 0, 24),
- 'macaddr' =>array('integer', 'integer', 0, 0xFFFFFFFFFFFF, null, null),
- 'bit varying' =>array('varchar', 'varchar', null, null, 0, 65535),
- 'arrays' =>array('varchar', 'varchar', null, null, 0, 65535),
- 'complex types' =>array('varchar', 'varchar', null, null, 0, 65535),
- );
-
- public function encloseName($name){
- return '`'.$name.'`';
- }
-
- /**
- * returns the list of tables
- * @return array list of table names
- */
- public function getTableList () {
- $results = array ();
- if (isset($this->_conn->profile['database'])) {
- $db = $this->_conn->profile['database'];
- }
- else if (isset($this->_conn->profile['dsn'])
- && preg_match('/dbname=([a-z0-9_ ]*)/', $this->_conn->profile['dsn'], $m)){
- $db = $m[1];
- }
- else {
- throw new jException("jelix~error.no.database.name", $this->_conn->profile['name']);
- }
- $rs = $this->_conn->query ('SHOW TABLES FROM '.$this->encloseName($db));
- $col_name = 'Tables_in_'.$db;
-
- while ($line = $rs->fetch ()){
- $results[] = $line->$col_name;
- }
-
- return $results;
- }
-
- /**
- * retrieve the list of fields of a table
- * @param string $tableName the name of the table
- * @param string $sequence the sequence used to auto increment the primary key (not supported here)
- * @return array keys are field names and values are jDbFieldProperties objects
- */
- public function getFieldList ($tableName, $sequence='') {
-
- $tableName = $this->_conn->prefixTable($tableName);
- $results = array ();
-
- $rs = $this->_conn->query ('SHOW FIELDS FROM `'.$tableName.'`');
-
- while ($line = $rs->fetch ()){
- $field = new jDbFieldProperties();
-
- if (preg_match('/^(\w+)\s*(\((\d+)\))?.*$/',$line->Type,$m)) {
- $field->type = strtolower($m[1]);
- if ($field->type == 'varchar' && isset($m[3])) {
- $field->length = intval($m[3]);
- }
- } else {
- $field->type = $line->Type;
- }
- $typeinfo = $this->getTypeInfo($field->type);
- $field->unifiedType = $typeinfo[1];
- $field->maxValue = $typeinfo[3];
- $field->minValue = $typeinfo[2];
- $field->maxLength = $typeinfo[5];
- $field->minLength = $typeinfo[4];
- if ($field->length !=0)
- $field->maxLength = $field->length;
-
- $field->name = $line->Field;
- $field->notNull = ($line->Null == 'NO');
- $field->primary = ($line->Key == 'PRI');
- $field->autoIncrement = ($line->Extra == 'auto_increment');
- $field->hasDefault = ($line->Default != '' || !($line->Default == null && $field->notNull));
- // to fix a bug in php 5.2.5 or mysql 5.0.51
- if($field->notNull && $line->Default === null && !$field->autoIncrement)
- $field->default ='';
- else
- $field->default = $line->Default;
- $results[$line->Field] = $field;
- }
- return $results;
- }
-
- public function execSQLScript ($file) {
- if(!isset($this->_conn->profile['table_prefix']))
- $prefix = '';
- else
- $prefix = $this->_conn->profile['table_prefix'];
- $sqlQueries = str_replace('%%PREFIX%%', $prefix, file_get_contents($file));
- $queries = $this->parseSQLScript($sqlQueries);
- foreach($queries as $query)
- $this->_conn->exec($query);
- return count($queries);
- }
-
- /**
- *
- */
- protected function parseSQLScript($script) {
-
- $delimiters = array();
- $distinctDelimiters = array(';');
- if(preg_match_all("/DELIMITER ([^\n]*)/i", $script, $d, PREG_SET_ORDER)) {
- $delimiters = $d[1];
- $distinctDelimiters = array_unique(array_merge($distinctDelimiters,$delimiters));
- }
- $preg= '';
- foreach($distinctDelimiters as $dd) {
- $preg.='|'.preg_quote($dd);
- }
-
- $tokens = preg_split('!(\'|"|\\\\|`|DELIMITER |#|/\\*|\\*/|\\-\\-(?=\s)|'."\n".$preg.')!i', $script, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
-
- $currentDelimiter = ';';
- $context = 0;
- $queries = array();
- $query = '';
- $previousToken = '';
- foreach ($tokens as $k=>$token) {
- switch ($context) {
- // 0 : statement
- case 0:
- $previousToken = $token;
- switch($token) {
- case $currentDelimiter:
- if (preg_replace("/\s/","",$query) != '') {
- $queries[] = trim($query);
- }
- $query = '';
- break;
- case '\'':
- $context = 1;
- $previousToken = '';
- $query.=$token;
- break;
- case '"':
- $context = 2;
- $previousToken = '';
- $query.=$token;
- break;
- case '`':
- $context = 3;
- $query.=$token;
- $previousToken = '';
- break;
- case 'DELIMITER ':
- $context = 6;
- break;
- case '#':
- case '--':
- $context = 4;
- break;
- case '/*':
- $context = 5;
- break;
- case "\n":
- default :
- $query.=$token;
- }
- break;
- // 1 : string '
- case 1:
- if ($token =="'") {
- if ($previousToken != "\\" && $previousToken != "'") {
- if(isset($tokens[$k+1])) {
- if ($tokens[$k+1] != "'") {
- $context = 0;
- }
- }
- else
- $context = 0;
- }
- }
- $previousToken = $token;
- $query.=$token;
- break;
- // 2 : string "
- case 2:
- if ($token =='"') {
- if ($previousToken != "\\" && $previousToken != '"') {
- if(isset($tokens[$k+1])) {
- if ($tokens[$k+1] != '"') {
- $context = 0;
- }
- }
- else
- $context = 0;
- }
- }
- $previousToken = $token;
- $query.=$token;
- break;
- // 3 : name with `
- case 3:
- if ($token =='`') {
- if ($previousToken != "\\" && $previousToken != '`') {
- if(isset($tokens[$k+1])) {
- if ($tokens[$k+1] != '`') {
- $context = 0;
- }
- }
- else
- $context = 0;
- }
- }
- $previousToken = $token;
- $query.=$token;
- break;
- // 4 : comment single line
- case 4:
- if ($token == "\n") {
- //$query.=$token;
- $context = 0;
- }
- break;
- // 5 : comment multi line
- case 5:
- if ($token == "*/") {
- $context = 0;
- }
- break;
- // 6 : delimiter definition
- case 6:
- $currentDelimiter = $token;
- $context = 0;
- break;
- }
-
- }
- if (preg_replace("/\s/","",$query) != '') {
- $queries[] = trim($query);
- }
- return $queries;
- }
- }
Documentation generated on Mon, 26 Oct 2015 21:57:40 +0100 by phpDocumentor 1.4.3