CI框架装载器Loader.php源码分析
程序员文章站
2023-01-19 07:58:46
顾名思义,装载器就是加载元素的,使用ci时,经常加载的有:
$this->load->library()
$this->load->view()...
顾名思义,装载器就是加载元素的,使用ci时,经常加载的有:
$this->load->library()
$this->load->view()
$this->load->model()
$this->load->database()
$this->load->helper()
$this->load->config()
$this->load->add_package_path()
复制代码 代码如下:
/**
* loader class
*
* 用户加载views和files,常见的函数有model(),view(),library(),helper()
*
* controller的好助手,$this->load =& load_class('loader', 'core');,加载了loader,controller就无比强大了
*/
class ci_loader {
protected $_ci_ob_level;
protected $_ci_view_paths = array();
protected $_ci_library_paths = array();
protected $_ci_model_paths = array();
protected $_ci_helper_paths = array();
protected $_base_classes = array(); // set by the controller class
protected $_ci_cached_vars = array();
protected $_ci_classes = array();
protected $_ci_loaded_files = array();
protected $_ci_models = array();
protected $_ci_helpers = array();
protected $_ci_varmap = array('unit_test' => 'unit',
'user_agent' => 'agent');
public function __construct()
{
//获取缓冲嵌套级别
$this->_ci_ob_level = ob_get_level();
//library路径
$this->_ci_library_paths = array(apppath, basepath);
//helper路径
$this->_ci_helper_paths = array(apppath, basepath);
//model路径
$this->_ci_model_paths = array(apppath);
//view路径
$this->_ci_view_paths = array(apppath.'views/' => true);
log_message('debug', "loader class initialized");
}
// --------------------------------------------------------------------
/**
* 初始化loader
*
*/
public function initialize()
{
$this->_ci_classes = array();
$this->_ci_loaded_files = array();
$this->_ci_models = array();
//将is_loaded(common中记录加载核心类函数)加载的核心类交给_base_classes
$this->_base_classes =& is_loaded();
//加载autoload.php配置中文件
$this->_ci_autoloader();
return $this;
}
// --------------------------------------------------------------------
/**
* 检测类是否加载
*/
public function is_loaded($class)
{
if (isset($this->_ci_classes[$class]))
{
return $this->_ci_classes[$class];
}
return false;
}
// --------------------------------------------------------------------
/**
* 加载class
*/
public function library($library = '', $params = null, $object_name = null)
{
if (is_array($library))
{
foreach ($library as $class)
{
$this->library($class, $params);
}
return;
}
//如果$library为空或者已经加载。。。
if ($library == '' or isset($this->_base_classes[$library]))
{
return false;
}
if ( ! is_null($params) && ! is_array($params))
{
$params = null;
}
$this->_ci_load_class($library, $params, $object_name);
}
// --------------------------------------------------------------------
/**
* 加载和实例化model
*/
public function model($model, $name = '', $db_conn = false)
{
//ci支持数组加载多个model
if (is_array($model))
{
foreach ($model as $babe)
{
$this->model($babe);
}
return;
}
if ($model == '')
{
return;
}
$path = '';
// 是否存在子目录
if (($last_slash = strrpos($model, '/')) !== false)
{
// the path is in front of the last slash
$path = substr($model, 0, $last_slash + 1);
// and the model name behind it
$model = substr($model, $last_slash + 1);
}
if ($name == '')
{
$name = $model;
}
if (in_array($name, $this->_ci_models, true))
{
return;
}
$ci =& get_instance();
if (isset($ci->$name))
{
show_error('the model name you are loading is the name of a resource that is already being used: '.$name);
}
$model = strtolower($model); //model文件名全小写
foreach ($this->_ci_model_paths as $mod_path)
{
if ( ! file_exists($mod_path.'models/'.$path.$model.'.php'))
{
continue;
}
if ($db_conn !== false and ! class_exists('ci_db'))
{
if ($db_conn === true)
{
$db_conn = '';
}
$ci->load->database($db_conn, false, true);
}
if ( ! class_exists('ci_model'))
{
load_class('model', 'core');
}
require_once($mod_path.'models/'.$path.$model.'.php');
$model = ucfirst($model);
$ci->$name = new $model();
//保存在loader::_ci_models中,以后可以用它来判断某个model是否已经加载过。
$this->_ci_models[] = $name;
return;
}
// couldn't find the model
show_error('unable to locate the model you have specified: '.$model);
}
// --------------------------------------------------------------------
/**
* 数据库loader
*/
public function database($params = '', $return = false, $active_record = null)
{
// grab the super object
$ci =& get_instance();
// 是否需要加载db
if (class_exists('ci_db') and $return == false and $active_record == null and isset($ci->db) and is_object($ci->db))
{
return false;
}
require_once(basepath.'database/db.php');
if ($return === true)
{
return db($params, $active_record);
}
// initialize the db variable. needed to prevent
// reference errors with some configurations
$ci->db = '';
// load the db class
$ci->db =& db($params, $active_record);
}
// --------------------------------------------------------------------
/**
* 加载数据库工具类
*/
public function dbutil()
{
if ( ! class_exists('ci_db'))
{
$this->database();
}
$ci =& get_instance();
// for backwards compatibility, load dbforge so we can extend dbutils off it
// this use is deprecated and strongly discouraged
$ci->load->dbforge();
require_once(basepath.'database/db_utility.php');
require_once(basepath.'database/drivers/'.$ci->db->dbdriver.'/'.$ci->db->dbdriver.'_utility.php');
$class = 'ci_db_'.$ci->db->dbdriver.'_utility';
$ci->dbutil = new $class();
}
// --------------------------------------------------------------------
/**
* load the database forge class
*
* @return string
*/
public function dbforge()
{
if ( ! class_exists('ci_db'))
{
$this->database();
}
$ci =& get_instance();
require_once(basepath.'database/db_forge.php');
require_once(basepath.'database/drivers/'.$ci->db->dbdriver.'/'.$ci->db->dbdriver.'_forge.php');
$class = 'ci_db_'.$ci->db->dbdriver.'_forge';
$ci->dbforge = new $class();
}
// --------------------------------------------------------------------
/**
* 加载视图文件
*/
public function view($view, $vars = array(), $return = false)
{
return $this->_ci_load(array('_ci_view' => $view, '_ci_vars' => $this->_ci_object_to_array($vars), '_ci_return' => $return));
}
// --------------------------------------------------------------------
/**
* 加载普通文件
*/
public function file($path, $return = false)
{
return $this->_ci_load(array('_ci_path' => $path, '_ci_return' => $return));
}
// --------------------------------------------------------------------
/**
* 设置变量
*
* once variables are set they become available within
* the controller class and its "view" files.
*
*/
public function vars($vars = array(), $val = '')
{
if ($val != '' and is_string($vars))
{
$vars = array($vars => $val);
}
$vars = $this->_ci_object_to_array($vars);
if (is_array($vars) and count($vars) > 0)
{
foreach ($vars as $key => $val)
{
$this->_ci_cached_vars[$key] = $val;
}
}
}
// --------------------------------------------------------------------
/**
* 检查并获取变量
*/
public function get_var($key)
{
return isset($this->_ci_cached_vars[$key]) ? $this->_ci_cached_vars[$key] : null;
}
// --------------------------------------------------------------------
/**
* 加载helper
*/
public function helper($helpers = array())
{
foreach ($this->_ci_prep_filename($helpers, '_helper') as $helper)
{
if (isset($this->_ci_helpers[$helper]))
{
continue;
}
$ext_helper = apppath.'helpers/'.config_item('subclass_prefix').$helper.'.php';
// 如果是扩展helper的话
if (file_exists($ext_helper))
{
$base_helper = basepath.'helpers/'.$helper.'.php';
if ( ! file_exists($base_helper))
{
show_error('unable to load the requested file: helpers/'.$helper.'.php');
}
include_once($ext_helper);
include_once($base_helper);
$this->_ci_helpers[$helper] = true;
log_message('debug', 'helper loaded: '.$helper);
continue;
}
// 如果不是扩展helper,helper路径中加载helper
foreach ($this->_ci_helper_paths as $path)
{
if (file_exists($path.'helpers/'.$helper.'.php'))
{
include_once($path.'helpers/'.$helper.'.php');
$this->_ci_helpers[$helper] = true;
log_message('debug', 'helper loaded: '.$helper);
break;
}
}
// 如果该helper还没加载成功的话,说明加载helper失败
if ( ! isset($this->_ci_helpers[$helper]))
{
show_error('unable to load the requested file: helpers/'.$helper.'.php');
}
}
}
// --------------------------------------------------------------------
/**
* 可以看到helpers调用也是上面的helper,只是helpers的别名而已
*/
public function helpers($helpers = array())
{
$this->helper($helpers);
}
// --------------------------------------------------------------------
/**
* 加载language文件
*/
public function language($file = array(), $lang = '')
{
$ci =& get_instance();
if ( ! is_array($file))
{
$file = array($file);
}
foreach ($file as $langfile)
{
$ci->lang->load($langfile, $lang);
}
}
// --------------------------------------------------------------------
/**
* 加载配置文件
*/
public function config($file = '', $use_sections = false, $fail_gracefully = false)
{
$ci =& get_instance();
$ci->config->load($file, $use_sections, $fail_gracefully);
}
// --------------------------------------------------------------------
/**
* driver
*
* 加载 driver library
*/
public function driver($library = '', $params = null, $object_name = null)
{
if ( ! class_exists('ci_driver_library'))
{
// we aren't instantiating an object here, that'll be done by the library itself
require basepath.'libraries/driver.php';
}
if ($library == '')
{
return false;
}
// we can save the loader some time since drivers will *always* be in a subfolder,
// and typically identically named to the library
if ( ! strpos($library, '/'))
{
$library = ucfirst($library).'/'.$library;
}
return $this->library($library, $params, $object_name);
}
// --------------------------------------------------------------------
/**
* 添加 package 路径
*
* 把package路径添加到库,模型,助手,配置路径
*/
public function add_package_path($path, $view_cascade=true)
{
$path = rtrim($path, '/').'/';
array_unshift($this->_ci_library_paths, $path);
array_unshift($this->_ci_model_paths, $path);
array_unshift($this->_ci_helper_paths, $path);
$this->_ci_view_paths = array($path.'views/' => $view_cascade) + $this->_ci_view_paths;
$config =& $this->_ci_get_component('config');
array_unshift($config->_config_paths, $path);
}
// --------------------------------------------------------------------
/**
* 获取package paths,默认不包含basepath
*/
public function get_package_paths($include_base = false)
{
return $include_base === true ? $this->_ci_library_paths : $this->_ci_model_paths;
}
// --------------------------------------------------------------------
/**
* 剔除package path
*
* remove a path from the library, model, and helper path arrays if it exists
* if no path is provided, the most recently added path is removed.
*
*/
public function remove_package_path($path = '', $remove_config_path = true)
{
$config =& $this->_ci_get_component('config');
if ($path == '')
{
$void = array_shift($this->_ci_library_paths);
$void = array_shift($this->_ci_model_paths);
$void = array_shift($this->_ci_helper_paths);
$void = array_shift($this->_ci_view_paths);
$void = array_shift($config->_config_paths);
}
else
{
$path = rtrim($path, '/').'/';
foreach (array('_ci_library_paths', '_ci_model_paths', '_ci_helper_paths') as $var)
{
if (($key = array_search($path, $this->{$var})) !== false)
{
unset($this->{$var}[$key]);
}
}
if (isset($this->_ci_view_paths[$path.'views/']))
{
unset($this->_ci_view_paths[$path.'views/']);
}
if (($key = array_search($path, $config->_config_paths)) !== false)
{
unset($config->_config_paths[$key]);
}
}
// 保证应用默认的路径依然存在
$this->_ci_library_paths = array_unique(array_merge($this->_ci_library_paths, array(apppath, basepath)));
$this->_ci_helper_paths = array_unique(array_merge($this->_ci_helper_paths, array(apppath, basepath)));
$this->_ci_model_paths = array_unique(array_merge($this->_ci_model_paths, array(apppath)));
$this->_ci_view_paths = array_merge($this->_ci_view_paths, array(apppath.'views/' => true));
$config->_config_paths = array_unique(array_merge($config->_config_paths, array(apppath)));
}
// --------------------------------------------------------------------
/**
* loader
*
* this function is used to load views and files.
* variables are prefixed with _ci_ to avoid symbol collision with
* variables made available to view files
*
* @param array
* @return void
*/
protected function _ci_load($_ci_data)
{
// set the default data variables
foreach (array('_ci_view', '_ci_vars', '_ci_path', '_ci_return') as $_ci_val)
{
$$_ci_val = ( ! isset($_ci_data[$_ci_val])) ? false : $_ci_data[$_ci_val];
}
$file_exists = false;
//如果$_ci_path不为空,则说明当前要加载普通文件。loader::file才会有path
if ($_ci_path != '')
{
$_ci_x = explode('/', $_ci_path);
$_ci_file = end($_ci_x);
}
else
{
$_ci_ext = pathinfo($_ci_view, pathinfo_extension);
$_ci_file = ($_ci_ext == '') ? $_ci_view.'.php' : $_ci_view;
foreach ($this->_ci_view_paths as $view_file => $cascade)
{
if (file_exists($view_file.$_ci_file))
{
$_ci_path = $view_file.$_ci_file;
$file_exists = true;
break;
}
if ( ! $cascade)
{
break;
}
}
}
//view文件不存在则会报错
if ( ! $file_exists && ! file_exists($_ci_path))
{
show_error('unable to load the requested file: '.$_ci_file);
}
// 把ci的所有属性都传递给loader,view中$this指的是loader
$_ci_ci =& get_instance();
foreach (get_object_vars($_ci_ci) as $_ci_key => $_ci_var)
{
if ( ! isset($this->$_ci_key))
{
$this->$_ci_key =& $_ci_ci->$_ci_key;
}
}
/*
* extract and cache variables
*
* you can either set variables using the dedicated $this->load_vars()
* function or via the second parameter of this function. we'll merge
* the two types and cache them so that views that are embedded within
* other views can have access to these variables.
*/
if (is_array($_ci_vars))
{
$this->_ci_cached_vars = array_merge($this->_ci_cached_vars, $_ci_vars);
}
extract($this->_ci_cached_vars);
/*
* 将视图内容放到缓存区
*
*/
ob_start();
// 支持短标签
if ((bool) @ini_get('short_open_tag') === false and config_item('rewrite_short_tags') == true)
{
echo eval('?>'.preg_replace("/;*\s*\?>/", "; ?>", str_replace('<?=', '<?php echo ', file_get_contents($_ci_path))));
}
else
{
include($_ci_path); // include() vs include_once() allows for multiple views with the same name
}
log_message('debug', 'file loaded: '.$_ci_path);
// 是否直接返回view数据
if ($_ci_return === true)
{
$buffer = ob_get_contents();
@ob_end_clean();
return $buffer;
}
//当前这个视图文件是被另一个视图文件通过$this->view()方法引入,即视图文件嵌入视图文件
if (ob_get_level() > $this->_ci_ob_level + 1)
{
ob_end_flush();
}
else
{ ////把缓冲区的内容交给output组件并清空关闭缓冲区。
$_ci_ci->output->append_output(ob_get_contents());
@ob_end_clean();
}
}
// --------------------------------------------------------------------
/**
* 加载类
*/
protected function _ci_load_class($class, $params = null, $object_name = null)
{
// 去掉.php和两端的/获取的$class就是类名或目录名+类名
$class = str_replace('.php', '', trim($class, '/'));
// ci允许dir/filename方式
$subdir = '';
if (($last_slash = strrpos($class, '/')) !== false)
{
// 目录
$subdir = substr($class, 0, $last_slash + 1);
// 文件名
$class = substr($class, $last_slash + 1);
}
// 允许加载的类名首字母大写或全小写
foreach (array(ucfirst($class), strtolower($class)) as $class)
{
$subclass = apppath.'libraries/'.$subdir.config_item('subclass_prefix').$class.'.php';
// 是否是扩展类
if (file_exists($subclass))
{
$baseclass = basepath.'libraries/'.ucfirst($class).'.php';
if ( ! file_exists($baseclass))
{
log_message('error', "unable to load the requested class: ".$class);
show_error("unable to load the requested class: ".$class);
}
// safety: was the class already loaded by a previous call?
if (in_array($subclass, $this->_ci_loaded_files))
{
// before we deem this to be a duplicate request, let's see
// if a custom object name is being supplied. if so, we'll
// return a new instance of the object
if ( ! is_null($object_name))
{
$ci =& get_instance();
if ( ! isset($ci->$object_name))
{
return $this->_ci_init_class($class, config_item('subclass_prefix'), $params, $object_name);
}
}
$is_duplicate = true;
log_message('debug', $class." class already loaded. second attempt ignored.");
return;
}
include_once($baseclass);
include_once($subclass);
$this->_ci_loaded_files[] = $subclass;
//实例化类
return $this->_ci_init_class($class, config_item('subclass_prefix'), $params, $object_name);
}
// 如果不是扩展,和上面类似
$is_duplicate = false;
foreach ($this->_ci_library_paths as $path)
{
$filepath = $path.'libraries/'.$subdir.$class.'.php';
// does the file exist? no? bummer...
if ( ! file_exists($filepath))
{
continue;
}
// safety: was the class already loaded by a previous call?
if (in_array($filepath, $this->_ci_loaded_files))
{
// before we deem this to be a duplicate request, let's see
// if a custom object name is being supplied. if so, we'll
// return a new instance of the object
if ( ! is_null($object_name))
{
$ci =& get_instance();
if ( ! isset($ci->$object_name))
{
return $this->_ci_init_class($class, '', $params, $object_name);
}
}
$is_duplicate = true;
log_message('debug', $class." class already loaded. second attempt ignored.");
return;
}
include_once($filepath);
$this->_ci_loaded_files[] = $filepath;
return $this->_ci_init_class($class, '', $params, $object_name);
}
} // end foreach
// 如果还没有找到该class,最后的尝试是该class会不会在同名的子目录下
if ($subdir == '')
{
$path = strtolower($class).'/'.$class;
return $this->_ci_load_class($path, $params);
}
// 加载失败,报错
if ($is_duplicate == false)
{
log_message('error', "unable to load the requested class: ".$class);
show_error("unable to load the requested class: ".$class);
}
}
// --------------------------------------------------------------------
/**
* 实例化已经加载的类
*/
protected function _ci_init_class($class, $prefix = '', $config = false, $object_name = null)
{
// 是否有类的配置信息
if ($config === null)
{
// fetch the config paths containing any package paths
$config_component = $this->_ci_get_component('config');
if (is_array($config_component->_config_paths))
{
// break on the first found file, thus package files
// are not overridden by default paths
foreach ($config_component->_config_paths as $path)
{
// we test for both uppercase and lowercase, for servers that
// are case-sensitive with regard to file names. check for environment
// first, global next
if (defined('environment') and file_exists($path .'config/'.environment.'/'.strtolower($class).'.php'))
{
include($path .'config/'.environment.'/'.strtolower($class).'.php');
break;
}
elseif (defined('environment') and file_exists($path .'config/'.environment.'/'.ucfirst(strtolower($class)).'.php'))
{
include($path .'config/'.environment.'/'.ucfirst(strtolower($class)).'.php');
break;
}
elseif (file_exists($path .'config/'.strtolower($class).'.php'))
{
include($path .'config/'.strtolower($class).'.php');
break;
}
elseif (file_exists($path .'config/'.ucfirst(strtolower($class)).'.php'))
{
include($path .'config/'.ucfirst(strtolower($class)).'.php');
break;
}
}
}
}
if ($prefix == '')
{ //system下library
if (class_exists('ci_'.$class))
{
$name = 'ci_'.$class;
}
elseif (class_exists(config_item('subclass_prefix').$class))
{ //扩展library
$name = config_item('subclass_prefix').$class;
}
else
{
$name = $class;
}
}
else
{
$name = $prefix.$class;
}
// is the class name valid?
if ( ! class_exists($name))
{
log_message('error', "non-existent class: ".$name);
show_error("non-existent class: ".$class);
}
// set the variable name we will assign the class to
// was a custom class name supplied? if so we'll use it
$class = strtolower($class);
if (is_null($object_name))
{
$classvar = ( ! isset($this->_ci_varmap[$class])) ? $class : $this->_ci_varmap[$class];
}
else
{
$classvar = $object_name;
}
// save the class name and object name
$this->_ci_classes[$class] = $classvar;
// 将初始化的类的实例给ci超级句柄
$ci =& get_instance();
if ($config !== null)
{
$ci->$classvar = new $name($config);
}
else
{
$ci->$classvar = new $name;
}
}
// --------------------------------------------------------------------
/**
* 自动加载器
*
* autoload.php配置的自动加载文件有:
* | 1. packages
| 2. libraries
| 3. helper files
| 4. custom config files
| 5. language files
| 6. models
*/
private function _ci_autoloader()
{
if (defined('environment') and file_exists(apppath.'config/'.environment.'/autoload.php'))
{
include(apppath.'config/'.environment.'/autoload.php');
}
else
{
include(apppath.'config/autoload.php');
}
if ( ! isset($autoload))
{
return false;
}
// 自动加载packages,也就是将package_path加入到library,model,helper,config
if (isset($autoload['packages']))
{
foreach ($autoload['packages'] as $package_path)
{
$this->add_package_path($package_path);
}
}
// 加载config文件
if (count($autoload['config']) > 0)
{
$ci =& get_instance();
foreach ($autoload['config'] as $key => $val)
{
$ci->config->load($val);
}
}
// 加载helper和language
foreach (array('helper', 'language') as $type)
{
if (isset($autoload[$type]) and count($autoload[$type]) > 0)
{
$this->$type($autoload[$type]);
}
}
// 这个好像是为了兼容以前版本的
if ( ! isset($autoload['libraries']) and isset($autoload['core']))
{
$autoload['libraries'] = $autoload['core'];
}
// 加载libraries
if (isset($autoload['libraries']) and count($autoload['libraries']) > 0)
{
// 加载db
if (in_array('database', $autoload['libraries']))
{
$this->database();
$autoload['libraries'] = array_diff($autoload['libraries'], array('database'));
}
// 加载所有其他libraries
foreach ($autoload['libraries'] as $item)
{
$this->library($item);
}
}
// autoload models
if (isset($autoload['model']))
{
$this->model($autoload['model']);
}
}
// --------------------------------------------------------------------
/**
* 返回由对象属性组成的关联数组
*/
protected function _ci_object_to_array($object)
{
return (is_object($object)) ? get_object_vars($object) : $object;
}
// --------------------------------------------------------------------
/**
* 获取ci某个组件的实例
*/
protected function &_ci_get_component($component)
{
$ci =& get_instance();
return $ci->$component;
}
// --------------------------------------------------------------------
/**
* 处理文件名,这个函数主要是返回正确文件名
*/
protected function _ci_prep_filename($filename, $extension)
{
if ( ! is_array($filename))
{
return array(strtolower(str_replace('.php', '', str_replace($extension, '', $filename)).$extension));
}
else
{
foreach ($filename as $key => $val)
{
$filename[$key] = strtolower(str_replace('.php', '', str_replace($extension, '', $val)).$extension);
}
return $filename;
}
}
}
下一篇: 你今天一共接待了几个人
推荐阅读
-
CI框架安全类Security.php源码分析
-
CI框架装载器Loader.php源码分析
-
CI框架Session.php源码分析
-
CI框架源码阅读笔记8 控制器Controller.php
-
CI框架源码解读之URI.php中_fetch_uri_string()函数用法分析_PHP
-
CI框架源码解读之URI.php中_fetch_uri_string()函数用法分析,ciuristring_PHP教程
-
CI框架Session.php源码分析,ci框架session.php
-
CI框架源码解读之URI.php中_fetch_uri_string()函数用法分析,ciuristring_PHP教程
-
CI框架源码阅读笔记8 控制器Controller.php
-
CI框架安全类Security.php源码分析_PHP