2008-06-05 23:01:58 +04:00
|
|
|
<?php
|
2008-06-15 19:56:28 +04:00
|
|
|
/*
|
|
|
|
* $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
|
2009-04-03 15:06:58 +04:00
|
|
|
* <http://www.doctrine-project.org>.
|
2008-06-15 19:56:28 +04:00
|
|
|
*/
|
2008-06-05 23:01:58 +04:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\DBAL;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Types\Type;
|
2008-06-05 23:01:58 +04:00
|
|
|
|
|
|
|
/**
|
2009-01-03 22:50:13 +03:00
|
|
|
* Configuration container for the Doctrine DBAL.
|
2008-06-05 23:01:58 +04:00
|
|
|
*
|
2009-08-11 02:43:27 +04:00
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @link www.doctrine-project.org
|
|
|
|
* @since 2.0
|
|
|
|
* @version $Revision: 3938 $
|
|
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
|
|
* @author Jonathan Wage <jonwage@gmail.com>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
|
|
*
|
2009-04-03 15:06:58 +04:00
|
|
|
* @internal When adding a new configuration option just write a getter/setter
|
|
|
|
* pair and add the option to the _attributes array with a proper default value.
|
2008-06-05 23:01:58 +04:00
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
class Configuration
|
2008-06-05 23:01:58 +04:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The attributes that are contained in the configuration.
|
2008-09-12 16:14:14 +04:00
|
|
|
* Values are default values.
|
2008-06-05 23:01:58 +04:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2008-12-18 17:21:21 +03:00
|
|
|
protected $_attributes = array();
|
2008-06-05 23:01:58 +04:00
|
|
|
|
2008-06-15 19:56:28 +04:00
|
|
|
/**
|
2009-08-11 14:51:38 +04:00
|
|
|
* Creates a new DBAL configuration instance.
|
2008-06-15 19:56:28 +04:00
|
|
|
*/
|
2008-06-05 23:01:58 +04:00
|
|
|
public function __construct()
|
2008-12-18 17:21:21 +03:00
|
|
|
{
|
|
|
|
$this->_attributes = array(
|
2009-05-28 15:13:12 +04:00
|
|
|
'sqlLogger' => null
|
2008-12-18 17:21:21 +03:00
|
|
|
);
|
|
|
|
}
|
2009-05-28 15:13:12 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the SQL logger to use. Defaults to NULL which means SQL logging is disabled.
|
|
|
|
*
|
|
|
|
* @param SqlLogger $logger
|
|
|
|
*/
|
|
|
|
public function setSqlLogger($logger)
|
|
|
|
{
|
|
|
|
$this->_attributes['sqlLogger'] = $logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the SQL logger that is used.
|
|
|
|
*
|
|
|
|
* @return SqlLogger
|
|
|
|
*/
|
|
|
|
public function getSqlLogger()
|
|
|
|
{
|
|
|
|
return $this->_attributes['sqlLogger'];
|
|
|
|
}
|
2009-02-18 02:26:46 +03:00
|
|
|
|
2009-08-11 02:43:27 +04:00
|
|
|
/**
|
|
|
|
* Defines new custom types to be supported by Doctrine
|
|
|
|
*
|
|
|
|
* @param array $types Key-value map of types to include
|
|
|
|
* @param boolean $override Optional flag to support only inclusion or also override
|
|
|
|
*/
|
|
|
|
public function setCustomTypes(array $types, $override = false)
|
2008-08-31 22:27:16 +04:00
|
|
|
{
|
|
|
|
foreach ($types as $name => $typeClassName) {
|
2009-08-13 14:13:06 +04:00
|
|
|
$method = (Type::hasType($name) && $override ? 'override' : 'add') . 'Type';
|
2009-08-11 02:43:27 +04:00
|
|
|
|
|
|
|
Type::$method($name, $typeClassName);
|
2008-06-05 23:01:58 +04:00
|
|
|
}
|
|
|
|
}
|
2009-02-18 02:26:46 +03:00
|
|
|
|
2009-08-11 02:43:27 +04:00
|
|
|
/**
|
|
|
|
* Overrides existent types in Doctrine
|
|
|
|
*
|
|
|
|
* @param array $types Key-value map of types to override
|
|
|
|
*/
|
2008-08-31 22:27:16 +04:00
|
|
|
public function setTypeOverrides(array $overrides)
|
2008-06-05 23:01:58 +04:00
|
|
|
{
|
2008-08-31 22:27:16 +04:00
|
|
|
foreach ($override as $name => $typeClassName) {
|
2009-01-22 22:38:10 +03:00
|
|
|
Type::overrideType($name, $typeClassName);
|
2008-08-31 22:27:16 +04:00
|
|
|
}
|
2008-06-05 23:01:58 +04:00
|
|
|
}
|
|
|
|
}
|