/lib/Config.php
https://github.com/unikent/php-activerecord · PHP · 304 lines · 91 code · 28 blank · 185 comment · 7 complexity · 0382e700e342a10b5291b5b0839a0ca9 MD5 · raw file
- <?php
- /**
- * @package ActiveRecord
- */
- namespace ActiveRecord;
- use Closure;
- /**
- * Manages configuration options for ActiveRecord.
- *
- * <code>
- * ActiveRecord::initialize(function($cfg) {
- * $cfg->set_model_home('models');
- * $cfg->set_connections(array(
- * 'development' => 'mysql://user:pass@development.com/awesome_development',
- * 'production' => 'mysql://user:pass@production.com/awesome_production'));
- * });
- * </code>
- *
- * @package ActiveRecord
- */
- class Config extends Singleton
- {
- /**
- * Name of the connection to use by default.
- *
- * <code>
- * ActiveRecord\Config::initialize(function($cfg) {
- * $cfg->set_model_directory('/your/app/models');
- * $cfg->set_connections(array(
- * 'development' => 'mysql://user:pass@development.com/awesome_development',
- * 'production' => 'mysql://user:pass@production.com/awesome_production'));
- * });
- * </code>
- *
- * This is a singleton class so you can retrieve the {@link Singleton} instance by doing:
- *
- * <code>
- * $config = ActiveRecord\Config::instance();
- * </code>
- *
- * @var string
- */
- private $default_connection = 'development';
- /**
- * Contains the list of database connection strings.
- *
- * @var array
- */
- private $connections = array();
- /**
- * Directory for the auto_loading of model classes.
- *
- * @see activerecord_autoload
- * @var string
- */
- private $model_directory;
- /**
- * Switch for logging.
- *
- * @var bool
- */
- private $logging = false;
- /**
- * Contains a Logger object that must impelement a log() method.
- *
- * @var object
- */
- private $logger;
- /**
- * The format to serialize DateTime values into.
- *
- * @var string
- */
- private $date_format = \DateTime::ISO8601;
- /**
- * Allows config initialization using a closure.
- *
- * This method is just syntatic sugar.
- *
- * <code>
- * ActiveRecord\Config::initialize(function($cfg) {
- * $cfg->set_model_directory('/path/to/your/model_directory');
- * $cfg->set_connections(array(
- * 'development' => 'mysql://username:password@127.0.0.1/database_name'));
- * });
- * </code>
- *
- * You can also initialize by grabbing the singleton object:
- *
- * <code>
- * $cfg = ActiveRecord\Config::instance();
- * $cfg->set_model_directory('/path/to/your/model_directory');
- * $cfg->set_connections(array('development' =>
- * 'mysql://username:password@localhost/database_name'));
- * </code>
- *
- * @param Closure $initializer A closure
- * @return void
- */
- public static function initialize(Closure $initializer)
- {
- $initializer(parent::instance());
- }
- /**
- * Sets the list of database connection strings.
- *
- * <code>
- * $config->set_connections(array(
- * 'development' => 'mysql://username:password@127.0.0.1/database_name'));
- * </code>
- *
- * @param array $connections Array of connections
- * @param string $default_connection Optionally specify the default_connection
- * @return void
- * @throws ActiveRecord\ConfigException
- */
- public function set_connections($connections, $default_connection=null)
- {
- if (!is_array($connections))
- throw new ConfigException("Connections must be an array");
- if ($default_connection)
- $this->set_default_connection($default_connection);
- $this->connections = $connections;
- }
- /**
- * Returns the connection strings array.
- *
- * @return array
- */
- public function get_connections()
- {
- return $this->connections;
- }
- /**
- * Returns a connection string if found otherwise null.
- *
- * @param string $name Name of connection to retrieve
- * @return string connection info for specified connection name
- */
- public function get_connection($name)
- {
- if (array_key_exists($name, $this->connections))
- return $this->connections[$name];
- return null;
- }
- /**
- * Returns the default connection string or null if there is none.
- *
- * @return string
- */
- public function get_default_connection_string()
- {
- return array_key_exists($this->default_connection,$this->connections) ?
- $this->connections[$this->default_connection] : null;
- }
- /**
- * Returns the name of the default connection.
- *
- * @return string
- */
- public function get_default_connection()
- {
- return $this->default_connection;
- }
- /**
- * Set the name of the default connection.
- *
- * @param string $name Name of a connection in the connections array
- * @return void
- */
- public function set_default_connection($name)
- {
- $this->default_connection = $name;
- }
- /**
- * Sets the directory where models are located.
- *
- * @param string $dir Directory path containing your models
- * @return void
- */
- public function set_model_directory($dir)
- {
- $this->model_directory = $dir;
- }
- /**
- * Returns the model directory.
- *
- * @return string
- * @throws ConfigException if specified directory was not found
- */
- public function get_model_directory()
- {
- if ($this->model_directory && !file_exists($this->model_directory))
- throw new ConfigException('Invalid or non-existent directory: '.$this->model_directory);
- return $this->model_directory;
- }
- /**
- * Turn on/off logging
- *
- * @param boolean $bool
- * @return void
- */
- public function set_logging($bool)
- {
- $this->logging = (bool)$bool;
- }
- /**
- * Sets the logger object for future SQL logging
- *
- * @param object $logger
- * @return void
- * @throws ConfigException if Logger objecct does not implement public log()
- */
- public function set_logger($logger)
- {
- $klass = Reflections::instance()->add($logger)->get($logger);
- if (!$klass->getMethod('log') || !$klass->getMethod('log')->isPublic())
- throw new ConfigException("Logger object must implement a public log method");
- $this->logger = $logger;
- }
- /**
- * Return whether or not logging is on
- *
- * @return boolean
- */
- public function get_logging()
- {
- return $this->logging;
- }
- /**
- * Returns the logger
- *
- * @return object
- */
- public function get_logger()
- {
- return $this->logger;
- }
- /**
- * @deprecated
- */
- public function get_date_format()
- {
- trigger_error('Use ActiveRecord\Serialization::$DATETIME_FORMAT. Config::get_date_format() has been deprecated.', E_USER_DEPRECATED);
- return Serialization::$DATETIME_FORMAT;
- }
- /**
- * @deprecated
- */
- public function set_date_format($format)
- {
- trigger_error('Use ActiveRecord\Serialization::$DATETIME_FORMAT. Config::set_date_format() has been deprecated.', E_USER_DEPRECATED);
- Serialization::$DATETIME_FORMAT = $format;
- }
- /**
- * Sets the url for the cache server to enable query caching.
- *
- * Only table schema queries are cached at the moment. A general query cache
- * will follow.
- *
- * Example:
- *
- * <code>
- * $config->set_cache("memcached://localhost");
- * $config->set_cache("memcached://localhost",array("expire" => 60));
- * </code>
- *
- * @param string $url Url to your cache server.
- * @param array $options Array of options
- */
- public function set_cache($url, $options=array())
- {
- Cache::initialize($url,$options);
- }
- };
- ?>