123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622 |
- <?php
- // +----------------------------------------------------------------------+
- // | PHP versions 4 and 5 |
- // +----------------------------------------------------------------------+
- // | Copyright (c) 1998-2007 Manuel Lemos, Tomas V.V.Cox, |
- // | Stig. S. Bakken, Lukas Smith, Frank M. Kromann, Lorenzo Alberton |
- // | All rights reserved. |
- // +----------------------------------------------------------------------+
- // | MDB2 is a merge of PEAR DB and Metabases that provides a unified DB |
- // | API as well as database abstraction for PHP applications. |
- // | This LICENSE is in the BSD license style. |
- // | |
- // | Redistribution and use in source and binary forms, with or without |
- // | modification, are permitted provided that the following conditions |
- // | are met: |
- // | |
- // | Redistributions of source code must retain the above copyright |
- // | notice, this list of conditions and the following disclaimer. |
- // | |
- // | Redistributions in binary form must reproduce the above copyright |
- // | notice, this list of conditions and the following disclaimer in the |
- // | documentation and/or other materials provided with the distribution. |
- // | |
- // | Neither the name of Manuel Lemos, Tomas V.V.Cox, Stig. S. Bakken, |
- // | Lukas Smith nor the names of his contributors may be used to endorse |
- // | or promote products derived from this software without specific prior|
- // | written permission. |
- // | |
- // | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
- // | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
- // | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
- // | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
- // | REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
- // | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
- // | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS|
- // | OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
- // | AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
- // | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY|
- // | WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
- // | POSSIBILITY OF SUCH DAMAGE. |
- // +----------------------------------------------------------------------+
- // | Authors: Lukas Smith <smith@pooteeweet.org> |
- // | Lorenzo Alberton <l.alberton@quipo.it> |
- // +----------------------------------------------------------------------+
- //
- // $Id$
- //
- require_once 'MDB2/Driver/Reverse/Common.php';
- /**
- * MDB2 Oracle driver for the schema reverse engineering module
- *
- * @package MDB2
- * @category Database
- * @author Lukas Smith <smith@dybnet.de>
- */
- class MDB2_Driver_Reverse_oci8 extends MDB2_Driver_Reverse_Common
- {
- // {{{ getTableFieldDefinition()
- /**
- * Get the structure of a field into an array
- *
- * @param string $table_name name of table that should be used in method
- * @param string $field_name name of field that should be used in method
- * @return mixed data array on success, a MDB2 error on failure
- * @access public
- */
- function getTableFieldDefinition($table_name, $field_name)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $result = $db->loadModule('Datatype', null, true);
- if (MDB2::isError($result)) {
- return $result;
- }
- list($owner, $table) = $this->splitTableSchema($table_name);
- if (empty($owner)) {
- $owner = $db->dsn['username'];
- }
- $query = 'SELECT column_name name,
- data_type "type",
- nullable,
- data_default "default",
- COALESCE(data_precision, data_length) "length",
- data_scale "scale"
- FROM all_tab_columns
- WHERE (table_name=? OR table_name=?)
- AND (owner=? OR owner=?)
- AND (column_name=? OR column_name=?)
- ORDER BY column_id';
- $stmt = $db->prepare($query);
- if (MDB2::isError($stmt)) {
- return $stmt;
- }
- $args = array(
- $table,
- strtoupper($table),
- $owner,
- strtoupper($owner),
- $field_name,
- strtoupper($field_name)
- );
- $result = $stmt->execute($args);
- if (MDB2::isError($result)) {
- return $result;
- }
- $column = $result->fetchRow(MDB2_FETCHMODE_ASSOC);
- if (MDB2::isError($column)) {
- return $column;
- }
- $stmt->free();
- $result->free();
- if (empty($column)) {
- return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null,
- $field_name . ' is not a column in table ' . $table_name, __FUNCTION__);
- }
- $column = array_change_key_case($column, CASE_LOWER);
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- if ($db->options['field_case'] == CASE_LOWER) {
- $column['name'] = strtolower($column['name']);
- } else {
- $column['name'] = strtoupper($column['name']);
- }
- }
- $mapped_datatype = $db->datatype->mapNativeDatatype($column);
- if (MDB2::isError($mapped_datatype)) {
- return $mapped_datatype;
- }
- list($types, $length, $unsigned, $fixed) = $mapped_datatype;
- $notnull = false;
- if (!empty($column['nullable']) && $column['nullable'] == 'N') {
- $notnull = true;
- }
- $default = false;
- if (array_key_exists('default', $column)) {
- $default = $column['default'];
- if ($default === 'NULL') {
- $default = null;
- }
- if ((null === $default) && $notnull) {
- $default = '';
- }
- }
- $definition[0] = array('notnull' => $notnull, 'nativetype' => $column['type']);
- if (null !== $length) {
- $definition[0]['length'] = $length;
- }
- if (null !== $unsigned) {
- $definition[0]['unsigned'] = $unsigned;
- }
- if (null !== $fixed) {
- $definition[0]['fixed'] = $fixed;
- }
- if ($default !== false) {
- $definition[0]['default'] = $default;
- }
- foreach ($types as $key => $type) {
- $definition[$key] = $definition[0];
- if ($type == 'clob' || $type == 'blob') {
- unset($definition[$key]['default']);
- }
- $definition[$key]['type'] = $type;
- $definition[$key]['mdb2type'] = $type;
- }
- if ($type == 'integer') {
- $query= "SELECT trigger_body
- FROM all_triggers
- WHERE table_name=?
- AND triggering_event='INSERT'
- AND trigger_type='BEFORE EACH ROW'";
- // ^^ pretty reasonable mimic for "auto_increment" in oracle?
- $stmt = $db->prepare($query);
- if (MDB2::isError($stmt)) {
- return $stmt;
- }
- $result = $stmt->execute(strtoupper($table));
- if (MDB2::isError($result)) {
- return $result;
- }
- while ($triggerstr = $result->fetchOne()) {
- if (preg_match('/.*SELECT\W+(.+)\.nextval +into +\:NEW\.'.$field_name.' +FROM +dual/im', $triggerstr, $matches)) {
- $definition[0]['autoincrement'] = $matches[1];
- }
- }
- $stmt->free();
- $result->free();
- }
- return $definition;
- }
- // }}}
- // {{{ getTableIndexDefinition()
- /**
- * Get the structure of an index into an array
- *
- * @param string $table_name name of table that should be used in method
- * @param string $index_name name of index that should be used in method
- * @return mixed data array on success, a MDB2 error on failure
- * @access public
- */
- function getTableIndexDefinition($table_name, $index_name)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
-
- list($owner, $table) = $this->splitTableSchema($table_name);
- if (empty($owner)) {
- $owner = $db->dsn['username'];
- }
- $query = "SELECT aic.column_name,
- aic.column_position,
- aic.descend,
- aic.table_owner,
- alc.constraint_type
- FROM all_ind_columns aic
- LEFT JOIN all_constraints alc
- ON aic.index_name = alc.constraint_name
- AND aic.table_name = alc.table_name
- AND aic.table_owner = alc.owner
- WHERE (aic.table_name=? OR aic.table_name=?)
- AND (aic.index_name=? OR aic.index_name=?)
- AND (aic.table_owner=? OR aic.table_owner=?)
- ORDER BY column_position";
- $stmt = $db->prepare($query);
- if (MDB2::isError($stmt)) {
- return $stmt;
- }
- $indexnames = array_unique(array($db->getIndexName($index_name), $index_name));
- $i = 0;
- $row = null;
- while ((null === $row) && array_key_exists($i, $indexnames)) {
- $args = array(
- $table,
- strtoupper($table),
- $indexnames[$i],
- strtoupper($indexnames[$i]),
- $owner,
- strtoupper($owner)
- );
- $result = $stmt->execute($args);
- if (MDB2::isError($result)) {
- return $result;
- }
- $row = $result->fetchRow(MDB2_FETCHMODE_ASSOC);
- if (MDB2::isError($row)) {
- return $row;
- }
- $i++;
- }
- if (null === $row) {
- return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null,
- $index_name. ' is not an index on table '. $table_name, __FUNCTION__);
- }
- if ($row['constraint_type'] == 'U' || $row['constraint_type'] == 'P') {
- return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null,
- $index_name. ' is a constraint, not an index on table '. $table_name, __FUNCTION__);
- }
- $definition = array();
- while (null !== $row) {
- $row = array_change_key_case($row, CASE_LOWER);
- $column_name = $row['column_name'];
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- if ($db->options['field_case'] == CASE_LOWER) {
- $column_name = strtolower($column_name);
- } else {
- $column_name = strtoupper($column_name);
- }
- }
- $definition['fields'][$column_name] = array(
- 'position' => (int)$row['column_position'],
- );
- if (!empty($row['descend'])) {
- $definition['fields'][$column_name]['sorting'] =
- ($row['descend'] == 'ASC' ? 'ascending' : 'descending');
- }
- $row = $result->fetchRow(MDB2_FETCHMODE_ASSOC);
- }
- $result->free();
- if (empty($definition['fields'])) {
- return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null,
- $index_name. ' is not an index on table '. $table_name, __FUNCTION__);
- }
- return $definition;
- }
- // }}}
- // {{{ getTableConstraintDefinition()
- /**
- * Get the structure of a constraint into an array
- *
- * @param string $table_name name of table that should be used in method
- * @param string $constraint_name name of constraint that should be used in method
- * @return mixed data array on success, a MDB2 error on failure
- * @access public
- */
- function getTableConstraintDefinition($table_name, $constraint_name)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
-
- list($owner, $table) = $this->splitTableSchema($table_name);
- if (empty($owner)) {
- $owner = $db->dsn['username'];
- }
-
- $query = 'SELECT alc.constraint_name,
- CASE alc.constraint_type WHEN \'P\' THEN 1 ELSE 0 END "primary",
- CASE alc.constraint_type WHEN \'R\' THEN 1 ELSE 0 END "foreign",
- CASE alc.constraint_type WHEN \'U\' THEN 1 ELSE 0 END "unique",
- CASE alc.constraint_type WHEN \'C\' THEN 1 ELSE 0 END "check",
- alc.DELETE_RULE "ondelete",
- \'NO ACTION\' "onupdate",
- \'SIMPLE\' "match",
- CASE alc.deferrable WHEN \'NOT DEFERRABLE\' THEN 0 ELSE 1 END "deferrable",
- CASE alc.deferred WHEN \'IMMEDIATE\' THEN 0 ELSE 1 END "initiallydeferred",
- alc.search_condition,
- alc.table_name,
- cols.column_name,
- cols.position,
- r_alc.table_name "references_table",
- r_cols.column_name "references_field",
- r_cols.position "references_field_position"
- FROM all_cons_columns cols
- LEFT JOIN all_constraints alc
- ON alc.constraint_name = cols.constraint_name
- AND alc.owner = cols.owner
- LEFT JOIN all_constraints r_alc
- ON alc.r_constraint_name = r_alc.constraint_name
- AND alc.r_owner = r_alc.owner
- LEFT JOIN all_cons_columns r_cols
- ON r_alc.constraint_name = r_cols.constraint_name
- AND r_alc.owner = r_cols.owner
- AND cols.position = r_cols.position
- WHERE (alc.constraint_name=? OR alc.constraint_name=?)
- AND alc.constraint_name = cols.constraint_name
- AND (alc.owner=? OR alc.owner=?)';
- $tablenames = array();
- if (!empty($table)) {
- $query.= ' AND (alc.table_name=? OR alc.table_name=?)';
- $tablenames = array($table, strtoupper($table));
- }
- $stmt = $db->prepare($query);
- if (MDB2::isError($stmt)) {
- return $stmt;
- }
-
- $constraintnames = array_unique(array($db->getIndexName($constraint_name), $constraint_name));
- $c = 0;
- $row = null;
- while ((null === $row) && array_key_exists($c, $constraintnames)) {
- $args = array(
- $constraintnames[$c],
- strtoupper($constraintnames[$c]),
- $owner,
- strtoupper($owner)
- );
- if (!empty($table)) {
- $args = array_merge($args, $tablenames);
- }
- $result = $stmt->execute($args);
- if (MDB2::isError($result)) {
- return $result;
- }
- $row = $result->fetchRow(MDB2_FETCHMODE_ASSOC);
- if (MDB2::isError($row)) {
- return $row;
- }
- $c++;
- }
- $definition = array(
- 'primary' => (boolean)$row['primary'],
- 'unique' => (boolean)$row['unique'],
- 'foreign' => (boolean)$row['foreign'],
- 'check' => (boolean)$row['check'],
- 'deferrable' => (boolean)$row['deferrable'],
- 'initiallydeferred' => (boolean)$row['initiallydeferred'],
- 'ondelete' => $row['ondelete'],
- 'onupdate' => $row['onupdate'],
- 'match' => $row['match'],
- );
- if ($definition['check']) {
- // pattern match constraint for check constraint values into enum-style output:
- $enumregex = '/'.$row['column_name'].' in \((.+?)\)/i';
- if (preg_match($enumregex, $row['search_condition'], $rangestr)) {
- $definition['fields'][$column_name] = array();
- $allowed = explode(',', $rangestr[1]);
- foreach ($allowed as $val) {
- $val = trim($val);
- $val = preg_replace('/^\'/', '', $val);
- $val = preg_replace('/\'$/', '', $val);
- array_push($definition['fields'][$column_name], $val);
- }
- }
- }
-
- while (null !== $row) {
- $row = array_change_key_case($row, CASE_LOWER);
- $column_name = $row['column_name'];
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- if ($db->options['field_case'] == CASE_LOWER) {
- $column_name = strtolower($column_name);
- } else {
- $column_name = strtoupper($column_name);
- }
- }
- $definition['fields'][$column_name] = array(
- 'position' => (int)$row['position']
- );
- if ($row['foreign']) {
- $ref_column_name = $row['references_field'];
- $ref_table_name = $row['references_table'];
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- if ($db->options['field_case'] == CASE_LOWER) {
- $ref_column_name = strtolower($ref_column_name);
- $ref_table_name = strtolower($ref_table_name);
- } else {
- $ref_column_name = strtoupper($ref_column_name);
- $ref_table_name = strtoupper($ref_table_name);
- }
- }
- $definition['references']['table'] = $ref_table_name;
- $definition['references']['fields'][$ref_column_name] = array(
- 'position' => (int)$row['references_field_position']
- );
- }
- $lastrow = $row;
- $row = $result->fetchRow(MDB2_FETCHMODE_ASSOC);
- }
- $result->free();
- if (empty($definition['fields'])) {
- return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null,
- $constraint_name . ' is not a constraint on table '. $table_name, __FUNCTION__);
- }
- return $definition;
- }
- // }}}
- // {{{ getSequenceDefinition()
- /**
- * Get the structure of a sequence into an array
- *
- * @param string $sequence name of sequence that should be used in method
- * @return mixed data array on success, a MDB2 error on failure
- * @access public
- */
- function getSequenceDefinition($sequence)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $sequence_name = $db->getSequenceName($sequence);
- $query = 'SELECT last_number FROM user_sequences';
- $query.= ' WHERE sequence_name='.$db->quote($sequence_name, 'text');
- $query.= ' OR sequence_name='.$db->quote(strtoupper($sequence_name), 'text');
- $start = $db->queryOne($query, 'integer');
- if (MDB2::isError($start)) {
- return $start;
- }
- $definition = array();
- if ($start != 1) {
- $definition = array('start' => $start);
- }
- return $definition;
- }
- // }}}
- // {{{ getTriggerDefinition()
- /**
- * Get the structure of a trigger into an array
- *
- * EXPERIMENTAL
- *
- * WARNING: this function is experimental and may change the returned value
- * at any time until labelled as non-experimental
- *
- * @param string $trigger name of trigger that should be used in method
- * @return mixed data array on success, a MDB2 error on failure
- * @access public
- */
- function getTriggerDefinition($trigger)
- {
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $query = 'SELECT trigger_name,
- table_name,
- trigger_body,
- trigger_type,
- triggering_event trigger_event,
- description trigger_comment,
- 1 trigger_enabled,
- when_clause
- FROM user_triggers
- WHERE trigger_name = \''. strtoupper($trigger).'\'';
- $types = array(
- 'trigger_name' => 'text',
- 'table_name' => 'text',
- 'trigger_body' => 'text',
- 'trigger_type' => 'text',
- 'trigger_event' => 'text',
- 'trigger_comment' => 'text',
- 'trigger_enabled' => 'boolean',
- 'when_clause' => 'text',
- );
- $result = $db->queryRow($query, $types, MDB2_FETCHMODE_ASSOC);
- if (MDB2::isError($result)) {
- return $result;
- }
- if (!empty($result['trigger_type'])) {
- //$result['trigger_type'] = array_shift(explode(' ', $result['trigger_type']));
- $result['trigger_type'] = preg_replace('/(\S+).*/', '\\1', $result['trigger_type']);
- }
- return $result;
- }
- // }}}
- // {{{ tableInfo()
- /**
- * Returns information about a table or a result set
- *
- * NOTE: only supports 'table' and 'flags' if <var>$result</var>
- * is a table name.
- *
- * NOTE: flags won't contain index information.
- *
- * @param object|string $result MDB2_result object from a query or a
- * string containing the name of a table.
- * While this also accepts a query result
- * resource identifier, this behavior is
- * deprecated.
- * @param int $mode a valid tableInfo mode
- *
- * @return array an associative array with the information requested.
- * A MDB2_Error object on failure.
- *
- * @see MDB2_Driver_Common::tableInfo()
- */
- function tableInfo($result, $mode = null)
- {
- if (is_string($result)) {
- return parent::tableInfo($result, $mode);
- }
- $db = $this->getDBInstance();
- if (MDB2::isError($db)) {
- return $db;
- }
- $resource = MDB2::isResultCommon($result) ? $result->getResource() : $result;
- if (!is_resource($resource)) {
- return $db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null,
- 'Could not generate result resource', __FUNCTION__);
- }
- if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) {
- if ($db->options['field_case'] == CASE_LOWER) {
- $case_func = 'strtolower';
- } else {
- $case_func = 'strtoupper';
- }
- } else {
- $case_func = 'strval';
- }
- $count = @OCINumCols($resource);
- $res = array();
- if ($mode) {
- $res['num_fields'] = $count;
- }
- $db->loadModule('Datatype', null, true);
- for ($i = 0; $i < $count; $i++) {
- $column = array(
- 'table' => '',
- 'name' => $case_func(@OCIColumnName($resource, $i+1)),
- 'type' => @OCIColumnType($resource, $i+1),
- 'length' => @OCIColumnSize($resource, $i+1),
- 'flags' => '',
- );
- $res[$i] = $column;
- $res[$i]['mdb2type'] = $db->datatype->mapNativeDatatype($res[$i]);
- if ($mode & MDB2_TABLEINFO_ORDER) {
- $res['order'][$res[$i]['name']] = $i;
- }
- if ($mode & MDB2_TABLEINFO_ORDERTABLE) {
- $res['ordertable'][$res[$i]['table']][$res[$i]['name']] = $i;
- }
- }
- return $res;
- }
- }
- ?>
|