QueryCacheProfile.php 3.83 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?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
Benjamin Eberlei's avatar
Benjamin Eberlei committed
16
 * and is licensed under the MIT license. For more information, see
17 18 19 20 21
 * <http://www.doctrine-project.org>.
 */

namespace Doctrine\DBAL\Cache;

22 23
use Doctrine\Common\Cache\Cache;

24 25 26
/**
 * Query Cache Profile handles the data relevant for query caching.
 *
27 28
 * It is a value object, setter methods return NEW instances.
 *
29 30 31 32 33
 * @author Benjamin Eberlei <kontakt@beberlei.de>
 */
class QueryCacheProfile
{
    /**
Benjamin Morel's avatar
Benjamin Morel committed
34
     * @var \Doctrine\Common\Cache\Cache|null
35 36
     */
    private $resultCacheDriver;
Benjamin Morel's avatar
Benjamin Morel committed
37

38
    /**
Benjamin Morel's avatar
Benjamin Morel committed
39
     * @var integer
40 41
     */
    private $lifetime = 0;
Benjamin Morel's avatar
Benjamin Morel committed
42

43
    /**
Benjamin Morel's avatar
Benjamin Morel committed
44
     * @var string|null
45 46 47 48
     */
    private $cacheKey;

    /**
Benjamin Morel's avatar
Benjamin Morel committed
49 50 51
     * @param integer                           $lifetime
     * @param string|null                       $cacheKey
     * @param \Doctrine\Common\Cache\Cache|null $resultCache
52 53 54 55 56 57 58 59 60
     */
    public function __construct($lifetime = 0, $cacheKey = null, Cache $resultCache = null)
    {
        $this->lifetime = $lifetime;
        $this->cacheKey = $cacheKey;
        $this->resultCacheDriver = $resultCache;
    }

    /**
Benjamin Morel's avatar
Benjamin Morel committed
61
     * @return \Doctrine\Common\Cache\Cache|null
62 63 64 65 66 67 68
     */
    public function getResultCacheDriver()
    {
        return $this->resultCacheDriver;
    }

    /**
Benjamin Morel's avatar
Benjamin Morel committed
69
     * @return integer
70 71 72 73 74 75 76 77
     */
    public function getLifetime()
    {
        return $this->lifetime;
    }

    /**
     * @return string
Benjamin Morel's avatar
Benjamin Morel committed
78 79
     *
     * @throws \Doctrine\DBAL\Cache\CacheException
80 81 82 83 84 85
     */
    public function getCacheKey()
    {
        if ($this->cacheKey === null) {
            throw CacheException::noCacheKey();
        }
Benjamin Morel's avatar
Benjamin Morel committed
86

87 88 89 90
        return $this->cacheKey;
    }

    /**
Benjamin Morel's avatar
Benjamin Morel committed
91
     * Generates the real cache key from query, params and types.
92
     *
93
     * @param string $query
Benjamin Morel's avatar
Benjamin Morel committed
94 95 96
     * @param array  $params
     * @param array  $types
     *
97 98 99 100 101 102 103 104 105 106 107
     * @return array
     */
    public function generateCacheKeys($query, $params, $types)
    {
        $realCacheKey = $query . "-" . serialize($params) . "-" . serialize($types);
        // should the key be automatically generated using the inputs or is the cache key set?
        if ($this->cacheKey === null) {
            $cacheKey = sha1($realCacheKey);
        } else {
            $cacheKey = $this->cacheKey;
        }
Benjamin Morel's avatar
Benjamin Morel committed
108

109 110
        return array($cacheKey, $realCacheKey);
    }
111 112

    /**
Benjamin Morel's avatar
Benjamin Morel committed
113 114 115
     * @param \Doctrine\Common\Cache\Cache $cache
     *
     * @return \Doctrine\DBAL\Cache\QueryCacheProfile
116 117 118 119 120 121 122 123
     */
    public function setResultCacheDriver(Cache $cache)
    {
        return new QueryCacheProfile($this->lifetime, $this->cacheKey, $cache);
    }

    /**
     * @param string|null $cacheKey
Benjamin Morel's avatar
Benjamin Morel committed
124 125
     *
     * @return \Doctrine\DBAL\Cache\QueryCacheProfile
126 127 128 129 130 131 132
     */
    public function setCacheKey($cacheKey)
    {
        return new QueryCacheProfile($this->lifetime, $cacheKey, $this->resultCacheDriver);
    }

    /**
Benjamin Morel's avatar
Benjamin Morel committed
133 134 135
     * @param integer $lifetime
     *
     * @return \Doctrine\DBAL\Cache\QueryCacheProfile
136 137 138 139 140
     */
    public function setLifetime($lifetime)
    {
        return new QueryCacheProfile($lifetime, $this->cacheKey, $this->resultCacheDriver);
    }
Benjamin Eberlei's avatar
Benjamin Eberlei committed
141
}