123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- <?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 MIT license. For more information, see
- * <http://www.doctrine-project.org>.
- */
- namespace Doctrine\ORM;
- use Doctrine\ORM\Mapping\ClassMetadata;
- use InvalidArgumentException;
- use function array_map;
- use function count;
- use function get_class;
- use function gettype;
- use function implode;
- use function is_object;
- use function method_exists;
- use function reset;
- use function spl_object_hash;
- use function sprintf;
- /**
- * Contains exception messages for all invalid lifecycle state exceptions inside UnitOfWork
- */
- class ORMInvalidArgumentException extends InvalidArgumentException
- {
- /**
- * @param object $entity
- *
- * @return ORMInvalidArgumentException
- */
- public static function scheduleInsertForManagedEntity($entity)
- {
- return new self('A managed+dirty entity ' . self::objToStr($entity) . ' can not be scheduled for insertion.');
- }
- /**
- * @param object $entity
- *
- * @return ORMInvalidArgumentException
- */
- public static function scheduleInsertForRemovedEntity($entity)
- {
- return new self('Removed entity ' . self::objToStr($entity) . ' can not be scheduled for insertion.');
- }
- /**
- * @param object $entity
- *
- * @return ORMInvalidArgumentException
- */
- public static function scheduleInsertTwice($entity)
- {
- return new self('Entity ' . self::objToStr($entity) . ' can not be scheduled for insertion twice.');
- }
- /**
- * @param string $className
- * @param object $entity
- *
- * @return ORMInvalidArgumentException
- */
- public static function entityWithoutIdentity($className, $entity)
- {
- return new self(
- "The given entity of type '" . $className . "' (" . self::objToStr($entity) . ') has no identity/no ' .
- 'id values set. It cannot be added to the identity map.'
- );
- }
- /**
- * @param object $entity
- *
- * @return ORMInvalidArgumentException
- */
- public static function readOnlyRequiresManagedEntity($entity)
- {
- return new self('Only managed entities can be marked or checked as read only. But ' . self::objToStr($entity) . ' is not');
- }
- /**
- * @param array[][]|object[][] $newEntitiesWithAssociations non-empty an array
- * of [array $associationMapping, object $entity] pairs
- *
- * @return ORMInvalidArgumentException
- */
- public static function newEntitiesFoundThroughRelationships($newEntitiesWithAssociations)
- {
- $errorMessages = array_map(
- static function (array $newEntityWithAssociation): string {
- [$associationMapping, $entity] = $newEntityWithAssociation;
- return self::newEntityFoundThroughRelationshipMessage($associationMapping, $entity);
- },
- $newEntitiesWithAssociations
- );
- if (count($errorMessages) === 1) {
- return new self(reset($errorMessages));
- }
- return new self(
- 'Multiple non-persisted new entities were found through the given association graph:'
- . "\n\n * "
- . implode("\n * ", $errorMessages)
- );
- }
- /**
- * @param object $entry
- *
- * @return ORMInvalidArgumentException
- *
- * @psalm-param array<string, string> $associationMapping
- */
- public static function newEntityFoundThroughRelationship(array $associationMapping, $entry)
- {
- return new self(self::newEntityFoundThroughRelationshipMessage($associationMapping, $entry));
- }
- /**
- * @param object $entry
- *
- * @return ORMInvalidArgumentException
- *
- * @psalm-param array<string, string> $assoc
- */
- public static function detachedEntityFoundThroughRelationship(array $assoc, $entry)
- {
- return new self('A detached entity of type ' . $assoc['targetEntity'] . ' (' . self::objToStr($entry) . ') '
- . " was found through the relationship '" . $assoc['sourceEntity'] . '#' . $assoc['fieldName'] . "' "
- . 'during cascading a persist operation.');
- }
- /**
- * @param object $entity
- *
- * @return ORMInvalidArgumentException
- */
- public static function entityNotManaged($entity)
- {
- return new self('Entity ' . self::objToStr($entity) . ' is not managed. An entity is managed if its fetched ' .
- 'from the database or registered as new through EntityManager#persist');
- }
- /**
- * @param object $entity
- * @param string $operation
- *
- * @return ORMInvalidArgumentException
- */
- public static function entityHasNoIdentity($entity, $operation)
- {
- return new self('Entity has no identity, therefore ' . $operation . ' cannot be performed. ' . self::objToStr($entity));
- }
- /**
- * @param object $entity
- * @param string $operation
- *
- * @return ORMInvalidArgumentException
- */
- public static function entityIsRemoved($entity, $operation)
- {
- return new self('Entity is removed, therefore ' . $operation . ' cannot be performed. ' . self::objToStr($entity));
- }
- /**
- * @param object $entity
- * @param string $operation
- *
- * @return ORMInvalidArgumentException
- */
- public static function detachedEntityCannot($entity, $operation)
- {
- return new self('Detached entity ' . self::objToStr($entity) . ' cannot be ' . $operation);
- }
- /**
- * @param string $context
- * @param mixed $given
- * @param int $parameterIndex
- *
- * @return ORMInvalidArgumentException
- */
- public static function invalidObject($context, $given, $parameterIndex = 1)
- {
- return new self($context . ' expects parameter ' . $parameterIndex .
- ' to be an entity object, ' . gettype($given) . ' given.');
- }
- /**
- * @return ORMInvalidArgumentException
- */
- public static function invalidCompositeIdentifier()
- {
- return new self('Binding an entity with a composite primary key to a query is not supported. ' .
- 'You should split the parameter into the explicit fields and bind them separately.');
- }
- /**
- * @return ORMInvalidArgumentException
- */
- public static function invalidIdentifierBindingEntity()
- {
- return new self('Binding entities to query parameters only allowed for entities that have an identifier.');
- }
- /**
- * @param mixed[] $assoc
- * @param mixed $actualValue
- *
- * @return self
- */
- public static function invalidAssociation(ClassMetadata $targetClass, $assoc, $actualValue)
- {
- $expectedType = $targetClass->getName();
- return new self(sprintf(
- 'Expected value of type "%s" for association field "%s#$%s", got "%s" instead.',
- $expectedType,
- $assoc['sourceEntity'],
- $assoc['fieldName'],
- is_object($actualValue) ? get_class($actualValue) : gettype($actualValue)
- ));
- }
- /**
- * Used when a given entityName hasn't the good type
- *
- * @param mixed $entityName The given entity (which shouldn't be a string)
- *
- * @return self
- */
- public static function invalidEntityName($entityName)
- {
- return new self(sprintf('Entity name must be a string, %s given', gettype($entityName)));
- }
- /**
- * Helper method to show an object as string.
- */
- private static function objToStr(object $obj): string
- {
- return method_exists($obj, '__toString') ? (string) $obj : get_class($obj) . '@' . spl_object_hash($obj);
- }
- /**
- * @psalm-param array<string,string> $associationMapping
- */
- private static function newEntityFoundThroughRelationshipMessage(array $associationMapping, object $entity): string
- {
- return 'A new entity was found through the relationship \''
- . $associationMapping['sourceEntity'] . '#' . $associationMapping['fieldName'] . '\' that was not'
- . ' configured to cascade persist operations for entity: ' . self::objToStr($entity) . '.'
- . ' To solve this issue: Either explicitly call EntityManager#persist()'
- . ' on this unknown entity or configure cascade persist'
- . ' this association in the mapping for example @ManyToOne(..,cascade={"persist"}).'
- . (method_exists($entity, '__toString')
- ? ''
- : ' If you cannot find out which entity causes the problem implement \''
- . $associationMapping['targetEntity'] . '#__toString()\' to get a clue.'
- );
- }
- }
|