123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425 |
- <?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.doctrine-project.org>.
- */
- namespace Doctrine\ORM\Persisters;
- use Doctrine\ORM\Mapping\ClassMetadata,
- Doctrine\ORM\PersistentCollection,
- Doctrine\ORM\UnitOfWork;
- /**
- * Persister for many-to-many collections.
- *
- * @author Roman Borschel <roman@code-factory.org>
- * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
- * @author Alexander <iam.asm89@gmail.com>
- * @since 2.0
- */
- class ManyToManyPersister extends AbstractCollectionPersister
- {
- /**
- * {@inheritdoc}
- *
- * @override
- */
- protected function _getDeleteRowSQL(PersistentCollection $coll)
- {
- $mapping = $coll->getMapping();
- $class = $this->_em->getClassMetadata(get_class($coll->getOwner()));
- return 'DELETE FROM ' . $class->getQuotedJoinTableName($mapping, $this->_conn->getDatabasePlatform())
- . ' WHERE ' . implode(' = ? AND ', $mapping['joinTableColumns']) . ' = ?';
- }
- /**
- * {@inheritdoc}
- *
- * @override
- * @internal Order of the parameters must be the same as the order of the columns in
- * _getDeleteRowSql.
- */
- protected function _getDeleteRowSQLParameters(PersistentCollection $coll, $element)
- {
- return $this->_collectJoinTableColumnParameters($coll, $element);
- }
- /**
- * {@inheritdoc}
- *
- * @override
- */
- protected function _getUpdateRowSQL(PersistentCollection $coll)
- {}
- /**
- * {@inheritdoc}
- *
- * @override
- * @internal Order of the parameters must be the same as the order of the columns in
- * _getInsertRowSql.
- */
- protected function _getInsertRowSQL(PersistentCollection $coll)
- {
- $mapping = $coll->getMapping();
- $columns = $mapping['joinTableColumns'];
- $class = $this->_em->getClassMetadata(get_class($coll->getOwner()));
- $joinTable = $class->getQuotedJoinTableName($mapping, $this->_conn->getDatabasePlatform());
- return 'INSERT INTO ' . $joinTable . ' (' . implode(', ', $columns) . ')'
- . ' VALUES (' . implode(', ', array_fill(0, count($columns), '?')) . ')';
- }
- /**
- * {@inheritdoc}
- *
- * @override
- * @internal Order of the parameters must be the same as the order of the columns in
- * _getInsertRowSql.
- */
- protected function _getInsertRowSQLParameters(PersistentCollection $coll, $element)
- {
- return $this->_collectJoinTableColumnParameters($coll, $element);
- }
- /**
- * Collects the parameters for inserting/deleting on the join table in the order
- * of the join table columns as specified in ManyToManyMapping#joinTableColumns.
- *
- * @param $coll
- * @param $element
- * @return array
- */
- private function _collectJoinTableColumnParameters(PersistentCollection $coll, $element)
- {
- $params = array();
- $mapping = $coll->getMapping();
- $isComposite = count($mapping['joinTableColumns']) > 2;
- $identifier1 = $this->_uow->getEntityIdentifier($coll->getOwner());
- $identifier2 = $this->_uow->getEntityIdentifier($element);
- if ($isComposite) {
- $class1 = $this->_em->getClassMetadata(get_class($coll->getOwner()));
- $class2 = $coll->getTypeClass();
- }
- foreach ($mapping['joinTableColumns'] as $joinTableColumn) {
- $isRelationToSource = isset($mapping['relationToSourceKeyColumns'][$joinTableColumn]);
- if ( ! $isComposite) {
- $params[] = $isRelationToSource ? array_pop($identifier1) : array_pop($identifier2);
- continue;
- }
- if ($isRelationToSource) {
- $params[] = $identifier1[$class1->getFieldForColumn($mapping['relationToSourceKeyColumns'][$joinTableColumn])];
- continue;
- }
- $params[] = $identifier2[$class2->getFieldForColumn($mapping['relationToTargetKeyColumns'][$joinTableColumn])];
- }
- return $params;
- }
- /**
- * {@inheritdoc}
- *
- * @override
- */
- protected function _getDeleteSQL(PersistentCollection $coll)
- {
- $class = $this->_em->getClassMetadata(get_class($coll->getOwner()));
- $mapping = $coll->getMapping();
- return 'DELETE FROM ' . $class->getQuotedJoinTableName($mapping, $this->_conn->getDatabasePlatform())
- . ' WHERE ' . implode(' = ? AND ', array_keys($mapping['relationToSourceKeyColumns'])) . ' = ?';
- }
- /**
- * {@inheritdoc}
- *
- * @override
- * @internal Order of the parameters must be the same as the order of the columns in
- * _getDeleteSql.
- */
- protected function _getDeleteSQLParameters(PersistentCollection $coll)
- {
- $identifier = $this->_uow->getEntityIdentifier($coll->getOwner());
- $mapping = $coll->getMapping();
- $params = array();
- // Optimization for single column identifier
- if (count($mapping['relationToSourceKeyColumns']) === 1) {
- $params[] = array_pop($identifier);
- return $params;
- }
- // Composite identifier
- $sourceClass = $this->_em->getClassMetadata(get_class($mapping->getOwner()));
- foreach ($mapping['relationToSourceKeyColumns'] as $relColumn => $srcColumn) {
- $params[] = $identifier[$sourceClass->fieldNames[$srcColumn]];
- }
- return $params;
- }
- /**
- * {@inheritdoc}
- */
- public function count(PersistentCollection $coll)
- {
- $mapping = $filterMapping = $coll->getMapping();
- $class = $this->_em->getClassMetadata($mapping['sourceEntity']);
- $id = $this->_em->getUnitOfWork()->getEntityIdentifier($coll->getOwner());
- if ($mapping['isOwningSide']) {
- $joinColumns = $mapping['relationToSourceKeyColumns'];
- } else {
- $mapping = $this->_em->getClassMetadata($mapping['targetEntity'])->associationMappings[$mapping['mappedBy']];
- $joinColumns = $mapping['relationToTargetKeyColumns'];
- }
- $whereClauses = array();
- $params = array();
- foreach ($mapping['joinTableColumns'] as $joinTableColumn) {
- if ( ! isset($joinColumns[$joinTableColumn])) {
- continue;
- }
- $whereClauses[] = $joinTableColumn . ' = ?';
- $params[] = ($class->containsForeignIdentifier)
- ? $id[$class->getFieldForColumn($joinColumns[$joinTableColumn])]
- : $id[$class->fieldNames[$joinColumns[$joinTableColumn]]];
- }
- list($joinTargetEntitySQL, $filterSql) = $this->getFilterSql($filterMapping);
- if ($filterSql) {
- $whereClauses[] = $filterSql;
- }
- $sql = 'SELECT COUNT(*)'
- . ' FROM ' . $class->getQuotedJoinTableName($mapping, $this->_conn->getDatabasePlatform()) . ' t'
- . $joinTargetEntitySQL
- . ' WHERE ' . implode(' AND ', $whereClauses);
- return $this->_conn->fetchColumn($sql, $params);
- }
- /**
- * @param PersistentCollection $coll
- * @param int $offset
- * @param int $length
- * @return array
- */
- public function slice(PersistentCollection $coll, $offset, $length = null)
- {
- $mapping = $coll->getMapping();
- return $this->_em->getUnitOfWork()->getEntityPersister($mapping['targetEntity'])->getManyToManyCollection($mapping, $coll->getOwner(), $offset, $length);
- }
- /**
- * @param PersistentCollection $coll
- * @param object $element
- * @return boolean
- */
- public function contains(PersistentCollection $coll, $element)
- {
- $uow = $this->_em->getUnitOfWork();
- // Shortcut for new entities
- $entityState = $uow->getEntityState($element, UnitOfWork::STATE_NEW);
- if ($entityState === UnitOfWork::STATE_NEW) {
- return false;
- }
- // Entity is scheduled for inclusion
- if ($entityState === UnitOfWork::STATE_MANAGED && $uow->isScheduledForInsert($element)) {
- return false;
- }
- list($quotedJoinTable, $whereClauses, $params) = $this->getJoinTableRestrictions($coll, $element, true);
- $sql = 'SELECT 1 FROM ' . $quotedJoinTable . ' WHERE ' . implode(' AND ', $whereClauses);
- return (bool) $this->_conn->fetchColumn($sql, $params);
- }
- /**
- * @param PersistentCollection $coll
- * @param object $element
- * @return boolean
- */
- public function removeElement(PersistentCollection $coll, $element)
- {
- $uow = $this->_em->getUnitOfWork();
- // shortcut for new entities
- $entityState = $uow->getEntityState($element, UnitOfWork::STATE_NEW);
- if ($entityState === UnitOfWork::STATE_NEW) {
- return false;
- }
- // If Entity is scheduled for inclusion, it is not in this collection.
- // We can assure that because it would have return true before on array check
- if ($entityState === UnitOfWork::STATE_MANAGED && $uow->isScheduledForInsert($element)) {
- return false;
- }
- list($quotedJoinTable, $whereClauses, $params) = $this->getJoinTableRestrictions($coll, $element, false);
- $sql = 'DELETE FROM ' . $quotedJoinTable . ' WHERE ' . implode(' AND ', $whereClauses);
- return (bool) $this->_conn->executeUpdate($sql, $params);
- }
- /**
- * @param \Doctrine\ORM\PersistentCollection $coll
- * @param object $element
- * @param boolean $addFilters Whether the filter SQL should be included or not.
- * @return array
- */
- private function getJoinTableRestrictions(PersistentCollection $coll, $element, $addFilters)
- {
- $uow = $this->_em->getUnitOfWork();
- $mapping = $filterMapping = $coll->getMapping();
- if ( ! $mapping['isOwningSide']) {
- $sourceClass = $this->_em->getClassMetadata($mapping['targetEntity']);
- $targetClass = $this->_em->getClassMetadata($mapping['sourceEntity']);
- $sourceId = $uow->getEntityIdentifier($element);
- $targetId = $uow->getEntityIdentifier($coll->getOwner());
- $mapping = $sourceClass->associationMappings[$mapping['mappedBy']];
- } else {
- $sourceClass = $this->_em->getClassMetadata($mapping['sourceEntity']);
- $targetClass = $this->_em->getClassMetadata($mapping['targetEntity']);
- $sourceId = $uow->getEntityIdentifier($coll->getOwner());
- $targetId = $uow->getEntityIdentifier($element);
- }
- $quotedJoinTable = $sourceClass->getQuotedJoinTableName($mapping, $this->_conn->getDatabasePlatform());
- $whereClauses = array();
- $params = array();
- foreach ($mapping['joinTableColumns'] as $joinTableColumn) {
- $whereClauses[] = $joinTableColumn . ' = ?';
- if (isset($mapping['relationToTargetKeyColumns'][$joinTableColumn])) {
- $params[] = ($targetClass->containsForeignIdentifier)
- ? $targetId[$targetClass->getFieldForColumn($mapping['relationToTargetKeyColumns'][$joinTableColumn])]
- : $targetId[$targetClass->fieldNames[$mapping['relationToTargetKeyColumns'][$joinTableColumn]]];
- continue;
- }
- // relationToSourceKeyColumns
- $params[] = ($sourceClass->containsForeignIdentifier)
- ? $sourceId[$sourceClass->getFieldForColumn($mapping['relationToSourceKeyColumns'][$joinTableColumn])]
- : $sourceId[$sourceClass->fieldNames[$mapping['relationToSourceKeyColumns'][$joinTableColumn]]];
- }
- if ($addFilters) {
- list($joinTargetEntitySQL, $filterSql) = $this->getFilterSql($filterMapping);
- if ($filterSql) {
- $quotedJoinTable .= ' t ' . $joinTargetEntitySQL;
- $whereClauses[] = $filterSql;
- }
- }
- return array($quotedJoinTable, $whereClauses, $params);
- }
- /**
- * Generates the filter SQL for a given mapping.
- *
- * This method is not used for actually grabbing the related entities
- * but when the extra-lazy collection methods are called on a filtered
- * association. This is why besides the many to many table we also
- * have to join in the actual entities table leading to additional
- * JOIN.
- *
- * @param array $mapping Array containing mapping information.
- *
- * @return string The SQL query part to add to a query.
- */
- public function getFilterSql($mapping)
- {
- $targetClass = $this->_em->getClassMetadata($mapping['targetEntity']);
- if ($mapping['isOwningSide']) {
- $joinColumns = $mapping['relationToTargetKeyColumns'];
- } else {
- $mapping = $targetClass->associationMappings[$mapping['mappedBy']];
- $joinColumns = $mapping['relationToSourceKeyColumns'];
- }
- $targetClass = $this->_em->getClassMetadata($targetClass->rootEntityName);
- // A join is needed if there is filtering on the target entity
- $joinTargetEntitySQL = '';
- if ($filterSql = $this->generateFilterConditionSQL($targetClass, 'te')) {
- $joinTargetEntitySQL = ' JOIN '
- . $targetClass->getQuotedTableName($this->_conn->getDatabasePlatform()) . ' te'
- . ' ON';
- $joinTargetEntitySQLClauses = array();
- foreach ($joinColumns as $joinTableColumn => $targetTableColumn) {
- $joinTargetEntitySQLClauses[] = ' t.' . $joinTableColumn . ' = ' . 'te.' . $targetTableColumn;
- }
- $joinTargetEntitySQL .= implode(' AND ', $joinTargetEntitySQLClauses);
- }
- return array($joinTargetEntitySQL, $filterSql);
- }
- /**
- * Generates the filter SQL for a given entity and table alias.
- *
- * @param ClassMetadata $targetEntity Metadata of the target entity.
- * @param string $targetTableAlias The table alias of the joined/selected table.
- *
- * @return string The SQL query part to add to a query.
- */
- protected function generateFilterConditionSQL(ClassMetadata $targetEntity, $targetTableAlias)
- {
- $filterClauses = array();
- foreach ($this->_em->getFilters()->getEnabledFilters() as $filter) {
- if ($filterExpr = $filter->addFilterConstraint($targetEntity, $targetTableAlias)) {
- $filterClauses[] = '(' . $filterExpr . ')';
- }
- }
- $sql = implode(' AND ', $filterClauses);
- return $sql ? "(" . $sql . ")" : "";
- }
- }
|