mirror of https://github.com/flightphp/core
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							216 lines
						
					
					
						
							5.8 KiB
						
					
					
				
			
		
		
	
	
							216 lines
						
					
					
						
							5.8 KiB
						
					
					
				<?php
 | 
						|
/**
 | 
						|
 * Flight: An extensible micro-framework.
 | 
						|
 *
 | 
						|
 * @copyright   Copyright (c) 2011, Mike Cao <mike@mikecao.com>
 | 
						|
 * @license     MIT, http://flightphp.com/license
 | 
						|
 */
 | 
						|
 | 
						|
namespace flight\core;
 | 
						|
 | 
						|
/**
 | 
						|
 * The Loader class is responsible for loading objects. It maintains
 | 
						|
 * a list of reusable class instances and can generate a new class
 | 
						|
 * instances with custom initialization parameters. It also performs
 | 
						|
 * class autoloading.
 | 
						|
 */
 | 
						|
class Loader {
 | 
						|
    /**
 | 
						|
     * Registered classes.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $classes = array();
 | 
						|
 | 
						|
    /**
 | 
						|
     * Class instances.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected $instances = array();
 | 
						|
 | 
						|
    /**
 | 
						|
     * Autoload directories.
 | 
						|
     *
 | 
						|
     * @var array
 | 
						|
     */
 | 
						|
    protected static $dirs = array();
 | 
						|
 | 
						|
    /**
 | 
						|
     * Registers a class.
 | 
						|
     *
 | 
						|
     * @param string $name Registry name
 | 
						|
     * @param string|callable $class Class name or function to instantiate class
 | 
						|
     * @param array $params Class initialization parameters
 | 
						|
     * @param callback $callback Function to call after object instantiation
 | 
						|
     */
 | 
						|
    public function register($name, $class, array $params = array(), $callback = null) {
 | 
						|
        unset($this->instances[$name]);
 | 
						|
 | 
						|
        $this->classes[$name] = array($class, $params, $callback);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Unregisters a class.
 | 
						|
     *
 | 
						|
     * @param string $name Registry name
 | 
						|
     */
 | 
						|
    public function unregister($name) {
 | 
						|
        unset($this->classes[$name]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Loads a registered class.
 | 
						|
     *
 | 
						|
     * @param string $name Method name
 | 
						|
     * @param bool $shared Shared instance
 | 
						|
     * @return object Class instance
 | 
						|
     * @throws \Exception
 | 
						|
     */
 | 
						|
    public function load($name, $shared = true) {
 | 
						|
        $obj = null;
 | 
						|
 | 
						|
        if (isset($this->classes[$name])) {
 | 
						|
            list($class, $params, $callback) = $this->classes[$name];
 | 
						|
 | 
						|
            $exists = isset($this->instances[$name]);
 | 
						|
 | 
						|
            if ($shared) {
 | 
						|
                $obj = ($exists) ?
 | 
						|
                    $this->getInstance($name) :
 | 
						|
                    $this->newInstance($class, $params);
 | 
						|
                
 | 
						|
                if (!$exists) {
 | 
						|
                    $this->instances[$name] = $obj;
 | 
						|
                }
 | 
						|
            }
 | 
						|
            else {
 | 
						|
                $obj = $this->newInstance($class, $params);
 | 
						|
            }
 | 
						|
 | 
						|
            if ($callback && (!$shared || !$exists)) {
 | 
						|
                $ref = array(&$obj);
 | 
						|
                call_user_func_array($callback, $ref);
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        return $obj;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Gets a single instance of a class.
 | 
						|
     *
 | 
						|
     * @param string $name Instance name
 | 
						|
     * @return object Class instance
 | 
						|
     */
 | 
						|
    public function getInstance($name) {
 | 
						|
        return isset($this->instances[$name]) ? $this->instances[$name] : null;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Gets a new instance of a class.
 | 
						|
     *
 | 
						|
     * @param string|callable $class Class name or callback function to instantiate class
 | 
						|
     * @param array $params Class initialization parameters
 | 
						|
     * @return object Class instance
 | 
						|
     * @throws \Exception
 | 
						|
     */
 | 
						|
    public function newInstance($class, array $params = array()) {
 | 
						|
        if (is_callable($class)) {
 | 
						|
            return call_user_func_array($class, $params);
 | 
						|
        }
 | 
						|
 | 
						|
        switch (count($params)) {
 | 
						|
            case 0:
 | 
						|
                return new $class();
 | 
						|
            case 1:
 | 
						|
                return new $class($params[0]);
 | 
						|
            case 2:
 | 
						|
                return new $class($params[0], $params[1]);
 | 
						|
            case 3:
 | 
						|
                return new $class($params[0], $params[1], $params[2]);
 | 
						|
            case 4:
 | 
						|
                return new $class($params[0], $params[1], $params[2], $params[3]);
 | 
						|
            case 5:
 | 
						|
                return new $class($params[0], $params[1], $params[2], $params[3], $params[4]);
 | 
						|
            default:
 | 
						|
                try {
 | 
						|
                    $refClass = new \ReflectionClass($class);
 | 
						|
                    return $refClass->newInstanceArgs($params);
 | 
						|
                } catch (\ReflectionException $e) {
 | 
						|
                    throw new \Exception("Cannot instantiate {$class}", 0, $e);
 | 
						|
                }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param string $name Registry name
 | 
						|
     * @return mixed Class information or null if not registered
 | 
						|
     */
 | 
						|
    public function get($name) {
 | 
						|
        return isset($this->classes[$name]) ? $this->classes[$name] : null;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Resets the object to the initial state.
 | 
						|
     */
 | 
						|
    public function reset() {
 | 
						|
        $this->classes = array();
 | 
						|
        $this->instances = array();
 | 
						|
    }
 | 
						|
 | 
						|
    /*** Autoloading Functions ***/
 | 
						|
 | 
						|
    /**
 | 
						|
     * Starts/stops autoloader.
 | 
						|
     *
 | 
						|
     * @param bool $enabled Enable/disable autoloading
 | 
						|
     * @param array $dirs Autoload directories
 | 
						|
     */
 | 
						|
    public static function autoload($enabled = true, $dirs = array()) {
 | 
						|
        if ($enabled) {
 | 
						|
            spl_autoload_register(array(__CLASS__, 'loadClass'));
 | 
						|
        }
 | 
						|
        else {
 | 
						|
            spl_autoload_unregister(array(__CLASS__, 'loadClass'));
 | 
						|
        }
 | 
						|
 | 
						|
        if (!empty($dirs)) {
 | 
						|
            self::addDirectory($dirs);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Autoloads classes.
 | 
						|
     *
 | 
						|
     * @param string $class Class name
 | 
						|
     */
 | 
						|
    public static function loadClass($class) {
 | 
						|
        $class_file = str_replace(array('\\', '_'), '/', $class).'.php';
 | 
						|
 | 
						|
        foreach (self::$dirs as $dir) {
 | 
						|
            $file = $dir.'/'.$class_file;
 | 
						|
            if (file_exists($file)) {
 | 
						|
                require $file;
 | 
						|
                return;
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Adds a directory for autoloading classes.
 | 
						|
     *
 | 
						|
     * @param mixed $dir Directory path
 | 
						|
     */
 | 
						|
    public static function addDirectory($dir) {
 | 
						|
        if (is_array($dir) || is_object($dir)) {
 | 
						|
            foreach ($dir as $value) {
 | 
						|
                self::addDirectory($value);
 | 
						|
            }
 | 
						|
        }
 | 
						|
        else if (is_string($dir)) {
 | 
						|
            if (!in_array($dir, self::$dirs)) self::$dirs[] = $dir;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |