loader.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php namespace System;
  2. class Loader {
  3. /**
  4. * The paths to be searched by the loader.
  5. *
  6. * @var array
  7. */
  8. public static $paths = array(BASE_PATH, MODEL_PATH, LIBRARY_PATH);
  9. /**
  10. * All of the class aliases.
  11. *
  12. * @var array
  13. */
  14. public static $aliases = array();
  15. /**
  16. * All of the active modules.
  17. *
  18. * @var array
  19. */
  20. public static $modules = array();
  21. /**
  22. * Bootstrap the auto-loader.
  23. *
  24. * @return void
  25. */
  26. public static function bootstrap()
  27. {
  28. static::$aliases = Config::get('aliases');
  29. static::$modules = Config::get('application.modules');
  30. }
  31. /**
  32. * Load a class file for a given class name.
  33. *
  34. * This function is registered on the SPL auto-loader stack by the front controller during each request.
  35. * All Laravel class names follow a namespace to directory convention.
  36. *
  37. * @param string $class
  38. * @return void
  39. */
  40. public static function load($class)
  41. {
  42. $file = strtolower(str_replace('\\', '/', $class));
  43. if (array_key_exists($class, static::$aliases))
  44. {
  45. return class_alias(static::$aliases[$class], $class);
  46. }
  47. if ( ! static::load_from_registered($file))
  48. {
  49. static::load_from_module($file);
  50. }
  51. }
  52. /**
  53. * Load a class that is stored in the registered directories.
  54. *
  55. * @param string $file
  56. * @return bool
  57. */
  58. private static function load_from_registered($file)
  59. {
  60. foreach (static::$paths as $directory)
  61. {
  62. if (file_exists($path = $directory.$file.EXT))
  63. {
  64. require $path;
  65. return true;
  66. }
  67. }
  68. return false;
  69. }
  70. /**
  71. * Load a class that is stored in a module.
  72. *
  73. * @param string $file
  74. * @return void
  75. */
  76. private static function load_from_module($file)
  77. {
  78. // Since all module models and libraries must be namespaced to the
  79. // module name, we'll extract the module name from the file.
  80. $module = substr($file, 0, strpos($file, '/'));
  81. if (in_array($module, static::$modules))
  82. {
  83. $module = MODULE_PATH.$module.'/';
  84. // Slice the module name off of the filename. Even though module libraries
  85. // and models are namespaced under the module, there will obviously not be
  86. // a folder matching that namespace in the libraries or models directories
  87. // of the module. Slicing it off will allow us to make a clean search for
  88. // the relevant class file.
  89. $file = substr($file, strpos($file, '/') + 1);
  90. foreach (array($module.'models', $module.'libraries') as $directory)
  91. {
  92. if (file_exists($path = $directory.'/'.$file.EXT))
  93. {
  94. return require $path;
  95. }
  96. }
  97. }
  98. }
  99. /**
  100. * Register a path with the auto-loader. After registering the path, it will be
  101. * checked similarly to the models and libraries directories.
  102. *
  103. * @param string $path
  104. * @return void
  105. */
  106. public static function register($path)
  107. {
  108. static::$paths[] = rtrim($path, '/').'/';
  109. }
  110. }