2010-02-25 22:33:21 +03:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* 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.doctrine-project.org>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Doctrine\ORM\Mapping\Driver;
|
|
|
|
|
2011-02-16 19:24:42 +03:00
|
|
|
use Doctrine\ORM\Mapping\Driver\Driver,
|
|
|
|
Doctrine\ORM\Mapping\ClassMetadataInfo,
|
|
|
|
Doctrine\ORM\Mapping\MappingException;
|
2010-02-25 22:33:21 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The DriverChain allows you to add multiple other mapping drivers for
|
|
|
|
* certain namespaces
|
|
|
|
*
|
2010-04-26 15:02:30 +04:00
|
|
|
* @since 2.0
|
|
|
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
|
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
|
|
* @author Jonathan H. Wage <jonwage@gmail.com>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
|
|
* @todo Rename: MappingDriverChain or MetadataDriverChain
|
2010-02-25 22:33:21 +03:00
|
|
|
*/
|
|
|
|
class DriverChain implements Driver
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private $_drivers = array();
|
|
|
|
|
2010-02-25 22:58:39 +03:00
|
|
|
/**
|
2010-04-10 02:00:36 +04:00
|
|
|
* Add a nested driver.
|
2010-02-25 22:58:39 +03:00
|
|
|
*
|
|
|
|
* @param Driver $nestedDriver
|
|
|
|
* @param string $namespace
|
|
|
|
*/
|
2010-02-25 22:33:21 +03:00
|
|
|
public function addDriver(Driver $nestedDriver, $namespace)
|
|
|
|
{
|
|
|
|
$this->_drivers[$namespace] = $nestedDriver;
|
|
|
|
}
|
|
|
|
|
2010-02-26 04:27:10 +03:00
|
|
|
/**
|
2010-04-10 02:00:36 +04:00
|
|
|
* Get the array of nested drivers.
|
2010-02-26 04:27:10 +03:00
|
|
|
*
|
|
|
|
* @return array $drivers
|
|
|
|
*/
|
|
|
|
public function getDrivers()
|
|
|
|
{
|
|
|
|
return $this->_drivers;
|
|
|
|
}
|
|
|
|
|
2010-02-25 22:33:21 +03:00
|
|
|
/**
|
|
|
|
* Loads the metadata for the specified class into the provided container.
|
|
|
|
*
|
|
|
|
* @param string $className
|
|
|
|
* @param ClassMetadataInfo $metadata
|
|
|
|
*/
|
2011-02-16 19:24:42 +03:00
|
|
|
public function loadMetadataForClass($className, ClassMetadataInfo $metadata)
|
2010-02-25 22:33:21 +03:00
|
|
|
{
|
2010-04-10 02:00:36 +04:00
|
|
|
foreach ($this->_drivers as $namespace => $driver) {
|
2010-02-25 22:33:21 +03:00
|
|
|
if (strpos($className, $namespace) === 0) {
|
|
|
|
$driver->loadMetadataForClass($className, $metadata);
|
2010-02-25 22:58:39 +03:00
|
|
|
return;
|
2010-02-25 22:33:21 +03:00
|
|
|
}
|
|
|
|
}
|
2010-02-25 22:58:39 +03:00
|
|
|
|
|
|
|
throw MappingException::classIsNotAValidEntityOrMappedSuperClass($className);
|
2010-02-25 22:33:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the names of all mapped classes known to this driver.
|
|
|
|
*
|
|
|
|
* @return array The names of all mapped classes known to this driver.
|
|
|
|
*/
|
|
|
|
public function getAllClassNames()
|
|
|
|
{
|
|
|
|
$classNames = array();
|
2011-08-01 23:45:21 +04:00
|
|
|
$driverClasses = array();
|
2010-12-09 01:29:21 +03:00
|
|
|
foreach ($this->_drivers AS $namespace => $driver) {
|
2011-08-01 23:45:21 +04:00
|
|
|
$oid = spl_object_hash($driver);
|
|
|
|
if (!isset($driverClasses[$oid])) {
|
|
|
|
$driverClasses[$oid] = $driver->getAllClassNames();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($driverClasses[$oid] AS $className) {
|
2010-12-09 01:29:21 +03:00
|
|
|
if (strpos($className, $namespace) === 0) {
|
2011-08-01 23:45:21 +04:00
|
|
|
$classNames[$className] = true;
|
2010-12-09 01:29:21 +03:00
|
|
|
}
|
|
|
|
}
|
2010-02-25 22:33:21 +03:00
|
|
|
}
|
2011-08-01 23:45:21 +04:00
|
|
|
return array_keys($classNames);
|
2010-02-25 22:33:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the class with the specified name should have its metadata loaded.
|
2010-07-21 23:20:55 +04:00
|
|
|
*
|
|
|
|
* This is only the case for non-transient classes either mapped as an Entity or MappedSuperclass.
|
2010-02-25 22:33:21 +03:00
|
|
|
*
|
|
|
|
* @param string $className
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isTransient($className)
|
|
|
|
{
|
|
|
|
foreach ($this->_drivers AS $namespace => $driver) {
|
|
|
|
if (strpos($className, $namespace) === 0) {
|
|
|
|
return $driver->isTransient($className);
|
|
|
|
}
|
|
|
|
}
|
2010-02-25 22:58:39 +03:00
|
|
|
|
2010-07-21 23:20:55 +04:00
|
|
|
// class isTransient, i.e. not an entity or mapped superclass
|
|
|
|
return true;
|
2010-02-25 22:33:21 +03:00
|
|
|
}
|
|
|
|
}
|