123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254 |
- <?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 Countable;
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\Common\Collections\Collection;
- use Doctrine\DBAL\Cache\QueryCacheProfile;
- use Doctrine\DBAL\Driver\Statement;
- use Doctrine\ORM\Cache\Logging\CacheLogger;
- use Doctrine\ORM\Cache\QueryCacheKey;
- use Doctrine\ORM\Cache\TimestampCacheKey;
- use Doctrine\ORM\Internal\Hydration\IterableResult;
- use Doctrine\ORM\Mapping\MappingException as ORMMappingException;
- use Doctrine\ORM\Query\Parameter;
- use Doctrine\ORM\Query\QueryException;
- use Doctrine\ORM\Query\ResultSetMapping;
- use Doctrine\Persistence\Mapping\MappingException;
- use Traversable;
- use function array_map;
- use function array_shift;
- use function count;
- use function is_array;
- use function is_numeric;
- use function is_object;
- use function is_scalar;
- use function iterator_count;
- use function iterator_to_array;
- use function ksort;
- use function reset;
- use function serialize;
- use function sha1;
- use function trigger_error;
- use const E_USER_DEPRECATED;
- /**
- * Base contract for ORM queries. Base class for Query and NativeQuery.
- *
- * @link www.doctrine-project.org
- */
- abstract class AbstractQuery
- {
- /* Hydration mode constants */
- /**
- * Hydrates an object graph. This is the default behavior.
- */
- public const HYDRATE_OBJECT = 1;
- /**
- * Hydrates an array graph.
- */
- public const HYDRATE_ARRAY = 2;
- /**
- * Hydrates a flat, rectangular result set with scalar values.
- */
- public const HYDRATE_SCALAR = 3;
- /**
- * Hydrates a single scalar value.
- */
- public const HYDRATE_SINGLE_SCALAR = 4;
- /**
- * Very simple object hydrator (optimized for performance).
- */
- public const HYDRATE_SIMPLEOBJECT = 5;
- /**
- * The parameter map of this query.
- *
- * @var ArrayCollection|Parameter[]
- * @psalm-var ArrayCollection<int, Parameter>
- */
- protected $parameters;
- /**
- * The user-specified ResultSetMapping to use.
- *
- * @var ResultSetMapping
- */
- protected $_resultSetMapping;
- /**
- * The entity manager used by this query object.
- *
- * @var EntityManagerInterface
- */
- protected $_em;
- /**
- * The map of query hints.
- *
- * @psalm-var array<string, mixed>
- */
- protected $_hints = [];
- /**
- * The hydration mode.
- *
- * @var string|int
- */
- protected $_hydrationMode = self::HYDRATE_OBJECT;
- /** @var QueryCacheProfile */
- protected $_queryCacheProfile;
- /**
- * Whether or not expire the result cache.
- *
- * @var bool
- */
- protected $_expireResultCache = false;
- /** @var QueryCacheProfile */
- protected $_hydrationCacheProfile;
- /**
- * Whether to use second level cache, if available.
- *
- * @var bool
- */
- protected $cacheable = false;
- /** @var bool */
- protected $hasCache = false;
- /**
- * Second level cache region name.
- *
- * @var string|null
- */
- protected $cacheRegion;
- /**
- * Second level query cache mode.
- *
- * @var int|null
- */
- protected $cacheMode;
- /** @var CacheLogger|null */
- protected $cacheLogger;
- /** @var int */
- protected $lifetime = 0;
- /**
- * Initializes a new instance of a class derived from <tt>AbstractQuery</tt>.
- */
- public function __construct(EntityManagerInterface $em)
- {
- $this->_em = $em;
- $this->parameters = new ArrayCollection();
- $this->_hints = $em->getConfiguration()->getDefaultQueryHints();
- $this->hasCache = $this->_em->getConfiguration()->isSecondLevelCacheEnabled();
- if ($this->hasCache) {
- $this->cacheLogger = $em->getConfiguration()
- ->getSecondLevelCacheConfiguration()
- ->getCacheLogger();
- }
- }
- /**
- * Enable/disable second level query (result) caching for this query.
- *
- * @param bool $cacheable
- *
- * @return static This query instance.
- */
- public function setCacheable($cacheable)
- {
- $this->cacheable = (bool) $cacheable;
- return $this;
- }
- /**
- * @return bool TRUE if the query results are enable for second level cache, FALSE otherwise.
- */
- public function isCacheable()
- {
- return $this->cacheable;
- }
- /**
- * @param string $cacheRegion
- *
- * @return static This query instance.
- */
- public function setCacheRegion($cacheRegion)
- {
- $this->cacheRegion = (string) $cacheRegion;
- return $this;
- }
- /**
- * Obtain the name of the second level query cache region in which query results will be stored
- *
- * @return string|null The cache region name; NULL indicates the default region.
- */
- public function getCacheRegion()
- {
- return $this->cacheRegion;
- }
- /**
- * @return bool TRUE if the query cache and second level cache are enabled, FALSE otherwise.
- */
- protected function isCacheEnabled()
- {
- return $this->cacheable && $this->hasCache;
- }
- /**
- * @return int
- */
- public function getLifetime()
- {
- return $this->lifetime;
- }
- /**
- * Sets the life-time for this query into second level cache.
- *
- * @param int $lifetime
- *
- * @return static This query instance.
- */
- public function setLifetime($lifetime)
- {
- $this->lifetime = (int) $lifetime;
- return $this;
- }
- /**
- * @return int
- */
- public function getCacheMode()
- {
- return $this->cacheMode;
- }
- /**
- * @param int $cacheMode
- *
- * @return static This query instance.
- */
- public function setCacheMode($cacheMode)
- {
- $this->cacheMode = (int) $cacheMode;
- return $this;
- }
- /**
- * Gets the SQL query that corresponds to this query object.
- * The returned SQL syntax depends on the connection driver that is used
- * by this query object at the time of this method call.
- *
- * @return string SQL query
- */
- abstract public function getSQL();
- /**
- * Retrieves the associated EntityManager of this Query instance.
- *
- * @return EntityManager
- */
- public function getEntityManager()
- {
- return $this->_em;
- }
- /**
- * Frees the resources used by the query object.
- *
- * Resets Parameters, Parameter Types and Query Hints.
- *
- * @return void
- */
- public function free()
- {
- $this->parameters = new ArrayCollection();
- $this->_hints = $this->_em->getConfiguration()->getDefaultQueryHints();
- }
- /**
- * Get all defined parameters.
- *
- * @return ArrayCollection The defined query parameters.
- */
- public function getParameters()
- {
- return $this->parameters;
- }
- /**
- * Gets a query parameter.
- *
- * @param mixed $key The key (index or name) of the bound parameter.
- *
- * @return Query\Parameter|null The value of the bound parameter, or NULL if not available.
- */
- public function getParameter($key)
- {
- $key = Query\Parameter::normalizeName($key);
- $filteredParameters = $this->parameters->filter(
- static function (Query\Parameter $parameter) use ($key): bool {
- $parameterName = $parameter->getName();
- return $key === $parameterName;
- }
- );
- return ! $filteredParameters->isEmpty() ? $filteredParameters->first() : null;
- }
- /**
- * Sets a collection of query parameters.
- *
- * @param ArrayCollection|mixed[] $parameters
- *
- * @return static This query instance.
- *
- * @psalm-param ArrayCollection<int, Parameter>|mixed[] $parameters
- */
- public function setParameters($parameters)
- {
- // BC compatibility with 2.3-
- if (is_array($parameters)) {
- /** @psalm-var ArrayCollection<int, Parameter> $parameterCollection */
- $parameterCollection = new ArrayCollection();
- foreach ($parameters as $key => $value) {
- $parameterCollection->add(new Parameter($key, $value));
- }
- $parameters = $parameterCollection;
- }
- $this->parameters = $parameters;
- return $this;
- }
- /**
- * Sets a query parameter.
- *
- * @param string|int $key The parameter position or name.
- * @param mixed $value The parameter value.
- * @param string|null $type The parameter type. If specified, the given value will be run through
- * the type conversion of this type. This is usually not needed for
- * strings and numeric types.
- *
- * @return static This query instance.
- */
- public function setParameter($key, $value, $type = null)
- {
- $existingParameter = $this->getParameter($key);
- if ($existingParameter !== null) {
- $existingParameter->setValue($value, $type);
- return $this;
- }
- $this->parameters->add(new Parameter($key, $value, $type));
- return $this;
- }
- /**
- * Processes an individual parameter value.
- *
- * @param mixed $value
- *
- * @return mixed[]|string|int|float|bool
- *
- * @throws ORMInvalidArgumentException
- *
- * @psalm-return array|scalar
- */
- public function processParameterValue($value)
- {
- if (is_scalar($value)) {
- return $value;
- }
- if ($value instanceof Collection) {
- $value = iterator_to_array($value);
- }
- if (is_array($value)) {
- $value = $this->processArrayParameterValue($value);
- return $value;
- }
- if ($value instanceof Mapping\ClassMetadata) {
- return $value->name;
- }
- if (! is_object($value)) {
- return $value;
- }
- try {
- $value = $this->_em->getUnitOfWork()->getSingleIdentifierValue($value);
- if ($value === null) {
- throw ORMInvalidArgumentException::invalidIdentifierBindingEntity();
- }
- } catch (MappingException | ORMMappingException $e) {
- /* Silence any mapping exceptions. These can occur if the object in
- question is not a mapped entity, in which case we just don't do
- any preparation on the value.
- Depending on MappingDriver, either MappingException or
- ORMMappingException is thrown. */
- $value = $this->potentiallyProcessIterable($value);
- }
- return $value;
- }
- /**
- * If no mapping is detected, trying to resolve the value as a Traversable
- *
- * @param mixed $value
- *
- * @return mixed
- */
- private function potentiallyProcessIterable($value)
- {
- if ($value instanceof Traversable) {
- $value = iterator_to_array($value);
- $value = $this->processArrayParameterValue($value);
- }
- return $value;
- }
- /**
- * Process a parameter value which was previously identified as an array
- *
- * @param mixed[] $value
- *
- * @return mixed[]
- */
- private function processArrayParameterValue(array $value): array
- {
- foreach ($value as $key => $paramValue) {
- $paramValue = $this->processParameterValue($paramValue);
- $value[$key] = is_array($paramValue) ? reset($paramValue) : $paramValue;
- }
- return $value;
- }
- /**
- * Sets the ResultSetMapping that should be used for hydration.
- *
- * @return static This query instance.
- */
- public function setResultSetMapping(Query\ResultSetMapping $rsm)
- {
- $this->translateNamespaces($rsm);
- $this->_resultSetMapping = $rsm;
- return $this;
- }
- /**
- * Gets the ResultSetMapping used for hydration.
- *
- * @return ResultSetMapping
- */
- protected function getResultSetMapping()
- {
- return $this->_resultSetMapping;
- }
- /**
- * Allows to translate entity namespaces to full qualified names.
- *
- * @return void
- */
- private function translateNamespaces(Query\ResultSetMapping $rsm)
- {
- $translate = function ($alias): string {
- return $this->_em->getClassMetadata($alias)->getName();
- };
- $rsm->aliasMap = array_map($translate, $rsm->aliasMap);
- $rsm->declaringClasses = array_map($translate, $rsm->declaringClasses);
- }
- /**
- * Set a cache profile for hydration caching.
- *
- * If no result cache driver is set in the QueryCacheProfile, the default
- * result cache driver is used from the configuration.
- *
- * Important: Hydration caching does NOT register entities in the
- * UnitOfWork when retrieved from the cache. Never use result cached
- * entities for requests that also flush the EntityManager. If you want
- * some form of caching with UnitOfWork registration you should use
- * {@see AbstractQuery::setResultCacheProfile()}.
- *
- * @return static This query instance.
- *
- * @example
- * $lifetime = 100;
- * $resultKey = "abc";
- * $query->setHydrationCacheProfile(new QueryCacheProfile());
- * $query->setHydrationCacheProfile(new QueryCacheProfile($lifetime, $resultKey));
- */
- public function setHydrationCacheProfile(?QueryCacheProfile $profile = null)
- {
- if ($profile !== null && ! $profile->getResultCacheDriver()) {
- $resultCacheDriver = $this->_em->getConfiguration()->getHydrationCacheImpl();
- $profile = $profile->setResultCacheDriver($resultCacheDriver);
- }
- $this->_hydrationCacheProfile = $profile;
- return $this;
- }
- /**
- * @return QueryCacheProfile
- */
- public function getHydrationCacheProfile()
- {
- return $this->_hydrationCacheProfile;
- }
- /**
- * Set a cache profile for the result cache.
- *
- * If no result cache driver is set in the QueryCacheProfile, the default
- * result cache driver is used from the configuration.
- *
- * @return static This query instance.
- */
- public function setResultCacheProfile(?QueryCacheProfile $profile = null)
- {
- if ($profile !== null && ! $profile->getResultCacheDriver()) {
- $resultCacheDriver = $this->_em->getConfiguration()->getResultCacheImpl();
- $profile = $profile->setResultCacheDriver($resultCacheDriver);
- }
- $this->_queryCacheProfile = $profile;
- return $this;
- }
- /**
- * Defines a cache driver to be used for caching result sets and implicitly enables caching.
- *
- * @param \Doctrine\Common\Cache\Cache|null $resultCacheDriver Cache driver
- *
- * @return static This query instance.
- *
- * @throws ORMException
- */
- public function setResultCacheDriver($resultCacheDriver = null)
- {
- if ($resultCacheDriver !== null && ! ($resultCacheDriver instanceof \Doctrine\Common\Cache\Cache)) {
- throw ORMException::invalidResultCacheDriver();
- }
- $this->_queryCacheProfile = $this->_queryCacheProfile
- ? $this->_queryCacheProfile->setResultCacheDriver($resultCacheDriver)
- : new QueryCacheProfile(0, null, $resultCacheDriver);
- return $this;
- }
- /**
- * Returns the cache driver used for caching result sets.
- *
- * @deprecated
- *
- * @return \Doctrine\Common\Cache\Cache Cache driver
- */
- public function getResultCacheDriver()
- {
- if ($this->_queryCacheProfile && $this->_queryCacheProfile->getResultCacheDriver()) {
- return $this->_queryCacheProfile->getResultCacheDriver();
- }
- return $this->_em->getConfiguration()->getResultCacheImpl();
- }
- /**
- * Set whether or not to cache the results of this query and if so, for
- * how long and which ID to use for the cache entry.
- *
- * @deprecated 2.7 Use {@see enableResultCache} and {@see disableResultCache} instead.
- *
- * @param bool $useCache
- * @param int $lifetime
- * @param string $resultCacheId
- *
- * @return static This query instance.
- */
- public function useResultCache($useCache, $lifetime = null, $resultCacheId = null)
- {
- return $useCache
- ? $this->enableResultCache($lifetime, $resultCacheId)
- : $this->disableResultCache();
- }
- /**
- * Enables caching of the results of this query, for given or default amount of seconds
- * and optionally specifies which ID to use for the cache entry.
- *
- * @param int|null $lifetime How long the cache entry is valid, in seconds.
- * @param string|null $resultCacheId ID to use for the cache entry.
- *
- * @return static This query instance.
- */
- public function enableResultCache(?int $lifetime = null, ?string $resultCacheId = null): self
- {
- $this->setResultCacheLifetime($lifetime);
- $this->setResultCacheId($resultCacheId);
- return $this;
- }
- /**
- * Disables caching of the results of this query.
- *
- * @return static This query instance.
- */
- public function disableResultCache(): self
- {
- $this->_queryCacheProfile = null;
- return $this;
- }
- /**
- * Defines how long the result cache will be active before expire.
- *
- * @param int|null $lifetime How long the cache entry is valid.
- *
- * @return static This query instance.
- */
- public function setResultCacheLifetime($lifetime)
- {
- $lifetime = $lifetime !== null ? (int) $lifetime : 0;
- $this->_queryCacheProfile = $this->_queryCacheProfile
- ? $this->_queryCacheProfile->setLifetime($lifetime)
- : new QueryCacheProfile($lifetime, null, $this->_em->getConfiguration()->getResultCacheImpl());
- return $this;
- }
- /**
- * Retrieves the lifetime of resultset cache.
- *
- * @deprecated
- *
- * @return int
- */
- public function getResultCacheLifetime()
- {
- return $this->_queryCacheProfile ? $this->_queryCacheProfile->getLifetime() : 0;
- }
- /**
- * Defines if the result cache is active or not.
- *
- * @param bool $expire Whether or not to force resultset cache expiration.
- *
- * @return static This query instance.
- */
- public function expireResultCache($expire = true)
- {
- $this->_expireResultCache = $expire;
- return $this;
- }
- /**
- * Retrieves if the resultset cache is active or not.
- *
- * @return bool
- */
- public function getExpireResultCache()
- {
- return $this->_expireResultCache;
- }
- /**
- * @return QueryCacheProfile
- */
- public function getQueryCacheProfile()
- {
- return $this->_queryCacheProfile;
- }
- /**
- * Change the default fetch mode of an association for this query.
- *
- * $fetchMode can be one of ClassMetadata::FETCH_EAGER or ClassMetadata::FETCH_LAZY
- *
- * @param string $class
- * @param string $assocName
- * @param int $fetchMode
- *
- * @return static This query instance.
- */
- public function setFetchMode($class, $assocName, $fetchMode)
- {
- if ($fetchMode !== Mapping\ClassMetadata::FETCH_EAGER) {
- $fetchMode = Mapping\ClassMetadata::FETCH_LAZY;
- }
- $this->_hints['fetchMode'][$class][$assocName] = $fetchMode;
- return $this;
- }
- /**
- * Defines the processing mode to be used during hydration / result set transformation.
- *
- * @param string|int $hydrationMode Doctrine processing mode to be used during hydration process.
- * One of the Query::HYDRATE_* constants.
- *
- * @return static This query instance.
- */
- public function setHydrationMode($hydrationMode)
- {
- $this->_hydrationMode = $hydrationMode;
- return $this;
- }
- /**
- * Gets the hydration mode currently used by the query.
- *
- * @return string|int
- */
- public function getHydrationMode()
- {
- return $this->_hydrationMode;
- }
- /**
- * Gets the list of results for the query.
- *
- * Alias for execute(null, $hydrationMode = HYDRATE_OBJECT).
- *
- * @param string|int $hydrationMode
- *
- * @return mixed
- */
- public function getResult($hydrationMode = self::HYDRATE_OBJECT)
- {
- return $this->execute(null, $hydrationMode);
- }
- /**
- * Gets the array of results for the query.
- *
- * Alias for execute(null, HYDRATE_ARRAY).
- *
- * @return mixed[]
- */
- public function getArrayResult()
- {
- return $this->execute(null, self::HYDRATE_ARRAY);
- }
- /**
- * Gets the scalar results for the query.
- *
- * Alias for execute(null, HYDRATE_SCALAR).
- *
- * @return mixed[]
- */
- public function getScalarResult()
- {
- return $this->execute(null, self::HYDRATE_SCALAR);
- }
- /**
- * Get exactly one result or null.
- *
- * @param string|int $hydrationMode
- *
- * @return mixed
- *
- * @throws NonUniqueResultException
- */
- public function getOneOrNullResult($hydrationMode = null)
- {
- try {
- $result = $this->execute(null, $hydrationMode);
- } catch (NoResultException $e) {
- return null;
- }
- if ($this->_hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {
- return null;
- }
- if (! is_array($result)) {
- return $result;
- }
- if (count($result) > 1) {
- throw new NonUniqueResultException();
- }
- return array_shift($result);
- }
- /**
- * Gets the single result of the query.
- *
- * Enforces the presence as well as the uniqueness of the result.
- *
- * If the result is not unique, a NonUniqueResultException is thrown.
- * If there is no result, a NoResultException is thrown.
- *
- * @param string|int $hydrationMode
- *
- * @return mixed
- *
- * @throws NonUniqueResultException If the query result is not unique.
- * @throws NoResultException If the query returned no result and hydration mode is not HYDRATE_SINGLE_SCALAR.
- */
- public function getSingleResult($hydrationMode = null)
- {
- $result = $this->execute(null, $hydrationMode);
- if ($this->_hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {
- throw new NoResultException();
- }
- if (! is_array($result)) {
- return $result;
- }
- if (count($result) > 1) {
- throw new NonUniqueResultException();
- }
- return array_shift($result);
- }
- /**
- * Gets the single scalar result of the query.
- *
- * Alias for getSingleResult(HYDRATE_SINGLE_SCALAR).
- *
- * @return mixed The scalar result.
- *
- * @throws NoResultException If the query returned no result.
- * @throws NonUniqueResultException If the query result is not unique.
- */
- public function getSingleScalarResult()
- {
- return $this->getSingleResult(self::HYDRATE_SINGLE_SCALAR);
- }
- /**
- * Sets a query hint. If the hint name is not recognized, it is silently ignored.
- *
- * @param string $name The name of the hint.
- * @param mixed $value The value of the hint.
- *
- * @return static This query instance.
- */
- public function setHint($name, $value)
- {
- $this->_hints[$name] = $value;
- return $this;
- }
- /**
- * Gets the value of a query hint. If the hint name is not recognized, FALSE is returned.
- *
- * @param string $name The name of the hint.
- *
- * @return mixed The value of the hint or FALSE, if the hint name is not recognized.
- */
- public function getHint($name)
- {
- return $this->_hints[$name] ?? false;
- }
- /**
- * Check if the query has a hint
- *
- * @param string $name The name of the hint
- *
- * @return bool False if the query does not have any hint
- */
- public function hasHint($name)
- {
- return isset($this->_hints[$name]);
- }
- /**
- * Return the key value map of query hints that are currently set.
- *
- * @return array<string,mixed>
- */
- public function getHints()
- {
- return $this->_hints;
- }
- /**
- * Executes the query and returns an IterableResult that can be used to incrementally
- * iterate over the result.
- *
- * @deprecated
- *
- * @param ArrayCollection|mixed[]|null $parameters The query parameters.
- * @param string|int|null $hydrationMode The hydration mode to use.
- *
- * @return IterableResult
- */
- public function iterate($parameters = null, $hydrationMode = null)
- {
- @trigger_error(
- 'Method ' . __METHOD__ . '() is deprecated and will be removed in Doctrine ORM 3.0. Use toIterable() instead.',
- E_USER_DEPRECATED
- );
- if ($hydrationMode !== null) {
- $this->setHydrationMode($hydrationMode);
- }
- if (! empty($parameters)) {
- $this->setParameters($parameters);
- }
- $rsm = $this->getResultSetMapping();
- $stmt = $this->_doExecute();
- return $this->_em->newHydrator($this->_hydrationMode)->iterate($stmt, $rsm, $this->_hints);
- }
- /**
- * Executes the query and returns an iterable that can be used to incrementally
- * iterate over the result.
- *
- * @param ArrayCollection|mixed[] $parameters The query parameters.
- * @param string|int|null $hydrationMode The hydration mode to use.
- *
- * @return iterable<mixed>
- */
- public function toIterable(iterable $parameters = [], $hydrationMode = null): iterable
- {
- if ($hydrationMode !== null) {
- $this->setHydrationMode($hydrationMode);
- }
- if (
- ($this->isCountable($parameters) && count($parameters) !== 0)
- || ($parameters instanceof Traversable && iterator_count($parameters) !== 0)
- ) {
- $this->setParameters($parameters);
- }
- $rsm = $this->getResultSetMapping();
- if ($rsm->isMixed && count($rsm->scalarMappings) > 0) {
- throw QueryException::iterateWithMixedResultNotAllowed();
- }
- $stmt = $this->_doExecute();
- return $this->_em->newHydrator($this->_hydrationMode)->toIterable($stmt, $rsm, $this->_hints);
- }
- /**
- * Executes the query.
- *
- * @param ArrayCollection|mixed[]|null $parameters Query parameters.
- * @param string|int|null $hydrationMode Processing mode to be used during the hydration process.
- *
- * @return mixed
- */
- public function execute($parameters = null, $hydrationMode = null)
- {
- if ($this->cacheable && $this->isCacheEnabled()) {
- return $this->executeUsingQueryCache($parameters, $hydrationMode);
- }
- return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
- }
- /**
- * Execute query ignoring second level cache.
- *
- * @param ArrayCollection|mixed[]|null $parameters
- * @param string|int|null $hydrationMode
- *
- * @return mixed
- */
- private function executeIgnoreQueryCache($parameters = null, $hydrationMode = null)
- {
- if ($hydrationMode !== null) {
- $this->setHydrationMode($hydrationMode);
- }
- if (! empty($parameters)) {
- $this->setParameters($parameters);
- }
- $setCacheEntry = static function (): void {
- };
- if ($this->_hydrationCacheProfile !== null) {
- [$cacheKey, $realCacheKey] = $this->getHydrationCacheId();
- $queryCacheProfile = $this->getHydrationCacheProfile();
- $cache = $queryCacheProfile->getResultCacheDriver();
- $result = $cache->fetch($cacheKey);
- if (isset($result[$realCacheKey])) {
- return $result[$realCacheKey];
- }
- if (! $result) {
- $result = [];
- }
- $setCacheEntry = static function ($data) use ($cache, $result, $cacheKey, $realCacheKey, $queryCacheProfile): void {
- $result[$realCacheKey] = $data;
- $cache->save($cacheKey, $result, $queryCacheProfile->getLifetime());
- };
- }
- $stmt = $this->_doExecute();
- if (is_numeric($stmt)) {
- $setCacheEntry($stmt);
- return $stmt;
- }
- $rsm = $this->getResultSetMapping();
- $data = $this->_em->newHydrator($this->_hydrationMode)->hydrateAll($stmt, $rsm, $this->_hints);
- $setCacheEntry($data);
- return $data;
- }
- /**
- * Load from second level cache or executes the query and put into cache.
- *
- * @param ArrayCollection|mixed[]|null $parameters
- * @param string|int|null $hydrationMode
- *
- * @return mixed
- */
- private function executeUsingQueryCache($parameters = null, $hydrationMode = null)
- {
- $rsm = $this->getResultSetMapping();
- $queryCache = $this->_em->getCache()->getQueryCache($this->cacheRegion);
- $queryKey = new QueryCacheKey(
- $this->getHash(),
- $this->lifetime,
- $this->cacheMode ?: Cache::MODE_NORMAL,
- $this->getTimestampKey()
- );
- $result = $queryCache->get($queryKey, $rsm, $this->_hints);
- if ($result !== null) {
- if ($this->cacheLogger) {
- $this->cacheLogger->queryCacheHit($queryCache->getRegion()->getName(), $queryKey);
- }
- return $result;
- }
- $result = $this->executeIgnoreQueryCache($parameters, $hydrationMode);
- $cached = $queryCache->put($queryKey, $rsm, $result, $this->_hints);
- if ($this->cacheLogger) {
- $this->cacheLogger->queryCacheMiss($queryCache->getRegion()->getName(), $queryKey);
- if ($cached) {
- $this->cacheLogger->queryCachePut($queryCache->getRegion()->getName(), $queryKey);
- }
- }
- return $result;
- }
- /**
- * @return TimestampCacheKey|null
- */
- private function getTimestampKey()
- {
- $entityName = reset($this->_resultSetMapping->aliasMap);
- if (empty($entityName)) {
- return null;
- }
- $metadata = $this->_em->getClassMetadata($entityName);
- return new Cache\TimestampCacheKey($metadata->rootEntityName);
- }
- /**
- * Get the result cache id to use to store the result set cache entry.
- * Will return the configured id if it exists otherwise a hash will be
- * automatically generated for you.
- *
- * @return array<string, string> ($key, $hash)
- */
- protected function getHydrationCacheId()
- {
- $parameters = [];
- foreach ($this->getParameters() as $parameter) {
- $parameters[$parameter->getName()] = $this->processParameterValue($parameter->getValue());
- }
- $sql = $this->getSQL();
- $queryCacheProfile = $this->getHydrationCacheProfile();
- $hints = $this->getHints();
- $hints['hydrationMode'] = $this->getHydrationMode();
- ksort($hints);
- return $queryCacheProfile->generateCacheKeys($sql, $parameters, $hints);
- }
- /**
- * Set the result cache id to use to store the result set cache entry.
- * If this is not explicitly set by the developer then a hash is automatically
- * generated for you.
- *
- * @param string $id
- *
- * @return static This query instance.
- */
- public function setResultCacheId($id)
- {
- $this->_queryCacheProfile = $this->_queryCacheProfile
- ? $this->_queryCacheProfile->setCacheKey($id)
- : new QueryCacheProfile(0, $id, $this->_em->getConfiguration()->getResultCacheImpl());
- return $this;
- }
- /**
- * Get the result cache id to use to store the result set cache entry if set.
- *
- * @deprecated
- *
- * @return string
- */
- public function getResultCacheId()
- {
- return $this->_queryCacheProfile ? $this->_queryCacheProfile->getCacheKey() : null;
- }
- /**
- * Executes the query and returns a the resulting Statement object.
- *
- * @return Statement The executed database statement that holds the results.
- */
- abstract protected function _doExecute();
- /**
- * Cleanup Query resource when clone is called.
- *
- * @return void
- */
- public function __clone()
- {
- $this->parameters = new ArrayCollection();
- $this->_hints = [];
- $this->_hints = $this->_em->getConfiguration()->getDefaultQueryHints();
- }
- /**
- * Generates a string of currently query to use for the cache second level cache.
- *
- * @return string
- */
- protected function getHash()
- {
- $query = $this->getSQL();
- $hints = $this->getHints();
- $params = array_map(function (Parameter $parameter) {
- $value = $parameter->getValue();
- // Small optimization
- // Does not invoke processParameterValue for scalar value
- if (is_scalar($value)) {
- return $value;
- }
- return $this->processParameterValue($value);
- }, $this->parameters->getValues());
- ksort($hints);
- return sha1($query . '-' . serialize($params) . '-' . serialize($hints));
- }
- /** @param iterable<mixed> $subject */
- private function isCountable(iterable $subject): bool
- {
- return $subject instanceof Countable || is_array($subject);
- }
- }
|