2007-05-25 13:45:41 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* 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 COPYRIGHT
|
|
|
|
* OWNER 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.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.phpdoctrine.com>.
|
|
|
|
*/
|
|
|
|
Doctrine::autoload('Doctrine_Connection_Module');
|
|
|
|
/**
|
|
|
|
* Doctrine_Formatter
|
|
|
|
*
|
|
|
|
* @package Doctrine
|
2007-10-04 01:43:22 +04:00
|
|
|
* @subpackage Formatter
|
2007-05-25 13:45:41 +04:00
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @link www.phpdoctrine.com
|
|
|
|
* @since 1.0
|
|
|
|
* @version $Revision$
|
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
*/
|
|
|
|
class Doctrine_Formatter extends Doctrine_Connection_Module
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Quotes pattern (% and _) characters in a string)
|
|
|
|
*
|
|
|
|
* EXPERIMENTAL
|
|
|
|
*
|
|
|
|
* WARNING: this function is experimental and may change signature at
|
|
|
|
* any time until labelled as non-experimental
|
|
|
|
*
|
|
|
|
* @param string the input string to quote
|
|
|
|
*
|
|
|
|
* @return string quoted string
|
|
|
|
*/
|
|
|
|
public function escapePattern($text)
|
|
|
|
{
|
2007-11-18 23:37:44 +03:00
|
|
|
if ( ! $this->string_quoting['escape_pattern']) {
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
$tmp = $this->conn->string_quoting;
|
2007-06-15 00:43:04 +04:00
|
|
|
|
2007-11-18 23:37:44 +03:00
|
|
|
$text = str_replace($tmp['escape_pattern'],
|
|
|
|
$tmp['escape_pattern'] .
|
|
|
|
$tmp['escape_pattern'], $text);
|
2007-05-25 13:45:41 +04:00
|
|
|
|
2007-11-18 23:37:44 +03:00
|
|
|
foreach ($this->wildcards as $wildcard) {
|
|
|
|
$text = str_replace($wildcard, $tmp['escape_pattern'] . $wildcard, $text);
|
2007-05-25 13:45:41 +04:00
|
|
|
}
|
|
|
|
return $text;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-25 13:45:41 +04:00
|
|
|
/**
|
2007-05-27 22:56:04 +04:00
|
|
|
* convertBooleans
|
2007-05-25 13:45:41 +04:00
|
|
|
* some drivers need the boolean values to be converted into integers
|
|
|
|
* when using DQL API
|
|
|
|
*
|
|
|
|
* This method takes care of that conversion
|
|
|
|
*
|
|
|
|
* @param array $item
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function convertBooleans($item)
|
|
|
|
{
|
2007-09-03 18:57:18 +04:00
|
|
|
if (is_array($item)) {
|
2007-05-25 13:45:41 +04:00
|
|
|
foreach ($item as $k => $value) {
|
2007-06-12 20:52:35 +04:00
|
|
|
if (is_bool($value)) {
|
2007-05-25 13:45:41 +04:00
|
|
|
$item[$k] = (int) $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (is_bool($item)) {
|
|
|
|
$item = (int) $item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $item;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-25 13:45:41 +04:00
|
|
|
/**
|
|
|
|
* Quote a string so it can be safely used as a table or column name
|
|
|
|
*
|
|
|
|
* Delimiting style depends on which database driver is being used.
|
|
|
|
*
|
|
|
|
* NOTE: just because you CAN use delimited identifiers doesn't mean
|
|
|
|
* you SHOULD use them. In general, they end up causing way more
|
|
|
|
* problems than they solve.
|
|
|
|
*
|
|
|
|
* Portability is broken by using the following characters inside
|
|
|
|
* delimited identifiers:
|
|
|
|
* + backtick (<kbd>`</kbd>) -- due to MySQL
|
|
|
|
* + double quote (<kbd>"</kbd>) -- due to Oracle
|
|
|
|
* + brackets (<kbd>[</kbd> or <kbd>]</kbd>) -- due to Access
|
|
|
|
*
|
|
|
|
* Delimited identifiers are known to generally work correctly under
|
|
|
|
* the following drivers:
|
|
|
|
* + mssql
|
|
|
|
* + mysql
|
|
|
|
* + mysqli
|
|
|
|
* + oci8
|
|
|
|
* + pgsql
|
|
|
|
* + sqlite
|
|
|
|
*
|
|
|
|
* InterBase doesn't seem to be able to use delimited identifiers
|
|
|
|
* via PHP 4. They work fine under PHP 5.
|
|
|
|
*
|
|
|
|
* @param string $str identifier name to be quoted
|
|
|
|
* @param bool $checkOption check the 'quote_identifier' option
|
|
|
|
*
|
|
|
|
* @return string quoted identifier string
|
|
|
|
*/
|
|
|
|
public function quoteIdentifier($str, $checkOption = true)
|
|
|
|
{
|
2007-05-27 22:56:04 +04:00
|
|
|
if ($checkOption && ! $this->conn->getAttribute(Doctrine::ATTR_QUOTE_IDENTIFIER)) {
|
2007-05-25 13:45:41 +04:00
|
|
|
return $str;
|
|
|
|
}
|
2007-05-27 22:56:04 +04:00
|
|
|
$tmp = $this->conn->identifier_quoting;
|
|
|
|
$str = str_replace($tmp['end'],
|
2007-11-18 23:37:44 +03:00
|
|
|
$tmp['escape'] .
|
|
|
|
$tmp['end'], $str);
|
2007-05-25 13:45:41 +04:00
|
|
|
|
2007-05-27 22:56:04 +04:00
|
|
|
return $tmp['start'] . $str . $tmp['end'];
|
2007-05-25 13:45:41 +04:00
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-25 13:45:41 +04:00
|
|
|
/**
|
|
|
|
* quote
|
|
|
|
* quotes given input parameter
|
|
|
|
*
|
|
|
|
* @param mixed $input parameter to be quoted
|
|
|
|
* @param string $type
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function quote($input, $type = null)
|
|
|
|
{
|
|
|
|
if ($type == null) {
|
|
|
|
$type = gettype($input);
|
|
|
|
}
|
|
|
|
switch ($type) {
|
2007-11-18 23:37:44 +03:00
|
|
|
case 'integer':
|
|
|
|
case 'enum':
|
|
|
|
case 'boolean':
|
|
|
|
case 'double':
|
|
|
|
case 'float':
|
|
|
|
case 'bool':
|
|
|
|
case 'decimal':
|
|
|
|
case 'int':
|
|
|
|
return $input;
|
|
|
|
case 'array':
|
|
|
|
case 'object':
|
|
|
|
$input = serialize($input);
|
2007-12-03 20:56:56 +03:00
|
|
|
case 'date':
|
|
|
|
case 'time':
|
|
|
|
case 'timestamp':
|
2007-11-18 23:37:44 +03:00
|
|
|
case 'string':
|
|
|
|
case 'char':
|
|
|
|
case 'varchar':
|
|
|
|
case 'text':
|
|
|
|
case 'gzip':
|
|
|
|
case 'blob':
|
|
|
|
case 'clob':
|
|
|
|
$this->conn->connect();
|
2007-06-12 03:37:24 +04:00
|
|
|
|
2007-11-18 23:37:44 +03:00
|
|
|
return $this->conn->getDbh()->quote($input);
|
2007-05-25 13:45:41 +04:00
|
|
|
}
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-25 13:45:41 +04:00
|
|
|
/**
|
|
|
|
* Removes any formatting in an sequence name using the 'seqname_format' option
|
|
|
|
*
|
|
|
|
* @param string $sqn string that containts name of a potential sequence
|
|
|
|
* @return string name of the sequence with possible formatting removed
|
|
|
|
*/
|
|
|
|
public function fixSequenceName($sqn)
|
|
|
|
{
|
2007-05-27 22:56:04 +04:00
|
|
|
$seqPattern = '/^'.preg_replace('/%s/', '([a-z0-9_]+)', $this->conn->getAttribute(Doctrine::ATTR_SEQNAME_FORMAT)).'$/i';
|
2007-05-25 13:45:41 +04:00
|
|
|
$seqName = preg_replace($seqPattern, '\\1', $sqn);
|
|
|
|
|
|
|
|
if ($seqName && ! strcasecmp($sqn, $this->getSequenceName($seqName))) {
|
|
|
|
return $seqName;
|
|
|
|
}
|
|
|
|
return $sqn;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-25 13:45:41 +04:00
|
|
|
/**
|
|
|
|
* Removes any formatting in an index name using the 'idxname_format' option
|
|
|
|
*
|
|
|
|
* @param string $idx string that containts name of anl index
|
|
|
|
* @return string name of the index with possible formatting removed
|
|
|
|
*/
|
|
|
|
public function fixIndexName($idx)
|
|
|
|
{
|
2007-05-27 22:56:04 +04:00
|
|
|
$indexPattern = '/^'.preg_replace('/%s/', '([a-z0-9_]+)', $this->conn->getAttribute(Doctrine::ATTR_IDXNAME_FORMAT)).'$/i';
|
2007-05-25 13:45:41 +04:00
|
|
|
$indexName = preg_replace($indexPattern, '\\1', $idx);
|
|
|
|
if ($indexName && ! strcasecmp($idx, $this->getIndexName($indexName))) {
|
|
|
|
return $indexName;
|
|
|
|
}
|
|
|
|
return $idx;
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-25 13:45:41 +04:00
|
|
|
/**
|
|
|
|
* adds sequence name formatting to a sequence name
|
|
|
|
*
|
|
|
|
* @param string name of the sequence
|
|
|
|
* @return string formatted sequence name
|
|
|
|
*/
|
|
|
|
public function getSequenceName($sqn)
|
|
|
|
{
|
2007-05-27 22:56:04 +04:00
|
|
|
return sprintf($this->conn->getAttribute(Doctrine::ATTR_SEQNAME_FORMAT),
|
2007-05-25 13:45:41 +04:00
|
|
|
preg_replace('/[^a-z0-9_\$.]/i', '_', $sqn));
|
|
|
|
}
|
2007-10-21 10:23:59 +04:00
|
|
|
|
2007-05-25 13:45:41 +04:00
|
|
|
/**
|
|
|
|
* adds index name formatting to a index name
|
|
|
|
*
|
|
|
|
* @param string name of the index
|
|
|
|
* @return string formatted index name
|
|
|
|
*/
|
|
|
|
public function getIndexName($idx)
|
|
|
|
{
|
2007-05-27 22:56:04 +04:00
|
|
|
return sprintf($this->conn->getAttribute(Doctrine::ATTR_IDXNAME_FORMAT),
|
2007-11-18 23:37:44 +03:00
|
|
|
preg_replace('/[^a-z0-9_\$]/i', '_', $idx));
|
2007-05-25 13:45:41 +04:00
|
|
|
}
|
2007-11-18 23:37:44 +03:00
|
|
|
|
2007-10-30 16:30:50 +03:00
|
|
|
/**
|
|
|
|
* adds table name formatting to a table name
|
|
|
|
*
|
|
|
|
* @param string name of the table
|
|
|
|
* @return string formatted table name
|
|
|
|
*/
|
|
|
|
public function getTableName($table)
|
|
|
|
{
|
|
|
|
return sprintf($this->conn->getAttribute(Doctrine::ATTR_TBLNAME_FORMAT),
|
2007-12-06 22:02:29 +03:00
|
|
|
$table);
|
2007-10-30 16:30:50 +03:00
|
|
|
}
|
2007-11-18 23:37:44 +03:00
|
|
|
}
|