Configuration.php 8.66 KB
Newer Older
1
<?php 
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *  $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
19
 * <http://www.doctrine-project.org>.
20
 */
21

22
namespace Doctrine\ORM;
23

24 25
use Doctrine\Common\DoctrineException;

26
/**
27
 * Configuration container for all configuration options of Doctrine.
28
 * It combines all configuration options from DBAL & ORM.
29
 *
30
 * @author Roman Borschel <roman@code-factory.org>
31
 * @since 2.0
32 33
 * @internal When adding a new configuration option just write a getter/setter
 * pair and add the option to the _attributes array with a proper default value.
34
 */
35
class Configuration extends \Doctrine\DBAL\Configuration
36
{    
37 38 39
    /**
     * Creates a new configuration that can be used for Doctrine.
     */
40
    public function __construct()
41
    {
42
        parent::__construct();
43
        
44 45 46
        $this->_attributes = array_merge($this->_attributes, array(
            'resultCacheImpl' => null,
            'queryCacheImpl' => null,
47
            'metadataCacheImpl' => null,
48
            'metadataDriverImpl' => null,
49
            'proxyDir' => null,
50 51
            'useCExtension' => false,
            'namedQueries' => array(),
52 53 54
            'namedNativeQueries' => array(),
            'autoGenerateProxyClasses' => true,
            'proxyNamespace' => null
55
        ));
56
    }
57

58
    /**
59
     * Sets the directory where Doctrine generates any necessary proxy class files.
60 61 62
     *
     * @param string $dir
     */
63
    public function setProxyDir($dir)
64
    {
65
        $this->_attributes['proxyDir'] = $dir;
66 67
    }

68
    /**
69
     * Gets the directory where Doctrine generates any necessary proxy class files.
70 71 72
     *
     * @return string
     */
73
    public function getProxyDir()
74
    {
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
        return $this->_attributes['proxyDir'];
    }
    
    /**
     * Gets a boolean flag that indicates whether proxy classes should always be regenerated
     * during each script execution.
     *
     * @return boolean
     */
    public function getAutoGenerateProxyClasses()
    {
        return $this->_attributes['autoGenerateProxyClasses'];
    }
    
    /**
     * Sets a boolean flag that indicates whether proxy classes should always be regenerated
     * during each script execution.
     *
     * @param boolean $bool
     */
    public function setAutoGenerateProxyClasses($bool)
    {
        $this->_attributes['autoGenerateProxyClasses'] = $bool;
    }
    
    public function getProxyNamespace()
    {
        return $this->_attributes['proxyNamespace'];
    }
    
    public function setProxyNamespace($ns)
    {
        $this->_attributes['proxyNamespace'] = $ns;
108 109
    }

110 111 112 113
    /**
     * Sets the cache driver implementation that is used for metadata caching.
     *
     * @param object $driverImpl
114 115
     * @todo Force parameter to be a Closure to ensure lazy evaluation
     *       (as soon as a metadata cache is in effect, the driver never needs to initialize).
116
     */
117 118 119 120 121
    public function setMetadataDriverImpl($driverImpl)
    {
        $this->_attributes['metadataDriverImpl'] = $driverImpl;
    }

122 123 124 125 126
    /**
     * Gets the cache driver implementation that is used for the mapping metadata.
     *
     * @return object
     */
127 128
    public function getMetadataDriverImpl()
    {
129
        if ($this->_attributes['metadataDriverImpl'] == null) {
130 131 132 133 134
            $reader = new \Doctrine\Common\Annotations\AnnotationReader(new \Doctrine\Common\Cache\ArrayCache);
            $reader->setDefaultAnnotationNamespace('Doctrine\ORM\Mapping\\');
            $this->_attributes['metadataDriverImpl'] = new \Doctrine\ORM\Mapping\Driver\AnnotationDriver($reader);
        }

135 136
        return $this->_attributes['metadataDriverImpl'];
    }
137 138 139 140 141 142

    /**
     * Gets the cache driver implementation that is used for query result caching.
     *
     * @return object
     */
143 144 145 146
    public function getResultCacheImpl()
    {
        return $this->_attributes['resultCacheImpl'];
    }
147 148 149 150 151 152

    /**
     * Sets the cache driver implementation that is used for query result caching.
     *
     * @param object $cacheImpl
     */
153
    public function setResultCacheImpl($cacheImpl)
154 155 156
    {
        $this->_attributes['resultCacheImpl'] = $cacheImpl;
    }
157 158 159 160 161 162

    /**
     * Gets the cache driver implementation that is used for the query cache (SQL cache).
     *
     * @return object
     */
163 164 165 166
    public function getQueryCacheImpl()
    {
        return $this->_attributes['queryCacheImpl'];
    }
167 168 169 170 171 172

    /**
     * Sets the cache driver implementation that is used for the query cache (SQL cache).
     *
     * @param object $cacheImpl
     */
173
    public function setQueryCacheImpl($cacheImpl)
174 175 176
    {
        $this->_attributes['queryCacheImpl'] = $cacheImpl;
    }
177 178 179 180 181 182

    /**
     * Gets the cache driver implementation that is used for metadata caching.
     *
     * @return object
     */
183 184 185 186
    public function getMetadataCacheImpl()
    {
        return $this->_attributes['metadataCacheImpl'];
    }
187 188 189 190 191 192

    /**
     * Sets the cache driver implementation that is used for metadata caching.
     *
     * @param object $cacheImpl
     */
193
    public function setMetadataCacheImpl($cacheImpl)
194 195 196
    {
        $this->_attributes['metadataCacheImpl'] = $cacheImpl;
    }
197 198 199 200 201 202 203
    
    /**
     * Gets a boolean flag that indicates whether Doctrine should make use of the
     * C extension.
     * 
     * @return boolean TRUE if Doctrine is configured to use the C extension, FALSE otherwise.
     */
204 205 206 207
    public function getUseCExtension()
    {
        return $this->_attributes['useCExtension'];
    }
208 209 210 211 212 213 214
    
    /**
     * Sets a boolean flag that indicates whether Doctrine should make use of the
     * C extension.
     * 
     * @param boolean $boolean Whether to make use of the C extension or not.
     */
215 216 217 218
    public function setUseCExtension($boolean)
    {
        $this->_attributes['useCExtension'] = $boolean;
    }
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
    
    /**
     * Adds a named DQL query to the configuration.
     * 
     * @param string $name The name of the query.
     * @param string $dql The DQL query string.
     */
    public function addNamedQuery($name, $dql)
    {
        $this->_attributes['namedQueries'][$name] = $dql;
    }
    
    /**
     * Gets a previously registered named DQL query.
     * 
     * @param string $name The name of the query.
     * @return string The DQL query.
     */
    public function getNamedQuery($name)
    {
        return $this->_attributes['namedQueries'][$name];
    }
    
    /**
     * Adds a named native query to the configuration.
     * 
     * @param string $name The name of the query.
     * @param string $sql The native SQL query string. 
     * @param ResultSetMapping $rsm The ResultSetMapping used for the results of the SQL query.
     */
    public function addNamedNativeQuery($name, $sql, Query\ResultSetMapping $rsm)
    {
        $this->_attributes['namedNativeQueries'][$name] = array($sql, $rsm);
    }
    
    /**
     * Gets the components of a previously registered named native query.
     * 
     * @param string $name The name of the query.
     * @return array A tuple with the first element being the SQL string and the second
     *          element being the ResultSetMapping.
     */
    public function getNamedNativeQuery($name)
    {
        return $this->_attributes['namedNativeQueries'][$name];
    }
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
    
    /**
     * Ensures that this Configuration instance contains settings that are
     * suitable for a production environment.
     * 
     * @throws DoctrineException If a configuration setting has a value that is not
     *                           suitable for a production environment.
     */
    public function ensureProductionSettings()
    {
        if ( ! $this->_attributes['queryCacheImpl']) {
            throw DoctrineException::queryCacheNotConfigured();
        }
        if ( ! $this->_attributes['metadataCacheImpl']) {
            throw DoctrineException::metadataCacheNotConfigured();
        }
        if ($this->_attributes['autoGenerateProxyClasses']) {
            throw DoctrineException::proxyClassesAlwaysRegenerating();
        }
    }
285
}