autoloader.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <?php namespace Laravel; defined('APP_PATH') or die('No direct script access.');
  2. class Autoloader {
  3. /**
  4. * The mappings from class names to file paths.
  5. *
  6. * @var array
  7. */
  8. public static $mappings = array();
  9. /**
  10. * All of the class aliases registered with the auto-loader.
  11. *
  12. * @var array
  13. */
  14. public static $aliases = array();
  15. /**
  16. * The directories that use the PSR-0 naming convention.
  17. *
  18. * @var array
  19. */
  20. public static $psr = array();
  21. /**
  22. * Load the file corresponding to a given class.
  23. *
  24. * This method is registerd in the bootstrap file as an SPL auto-loader.
  25. *
  26. * @param string $class
  27. * @return void
  28. */
  29. public static function load($class)
  30. {
  31. // First, we will check to see if the class has been aliased. If it has,
  32. // we will register the alias, which may cause the auto-loader to be
  33. // called again for the "real" class name.
  34. if (isset(static::$aliases[$class]))
  35. {
  36. class_alias(static::$aliases[$class], $class);
  37. }
  38. // All classes in Laravel are staticly mapped. There is no crazy search
  39. // routine that digs through directories. It's just a simple array of
  40. // class to file path maps for ultra-fast file loading.
  41. elseif (isset(static::$mappings[$class]))
  42. {
  43. require static::$mappings[$class];
  44. }
  45. // If the class is namespaced to an existing bundle and the bundle has
  46. // not been started, we will start the bundle and attempt to load the
  47. // class file again. If that fails, an error will be thrown by PHP.
  48. //
  49. // This allows bundle classes to be loaded by the auto-loader before
  50. // their class mappings have actually been registered; however, it
  51. // is up to the bundle developer to namespace their classes to
  52. // match the name of their bundle.
  53. elseif (($slash = strpos($class, '\\')) !== false)
  54. {
  55. $bundle = substr($class, 0, $slash);
  56. // It's very important that we make sure the bundle has not been
  57. // started here. If we don't, we'll end up in an infinite loop
  58. // attempting to load a bundle's class.
  59. if (Bundle::exists($bundle) and ! Bundle::started($bundle))
  60. {
  61. Bundle::start($bundle);
  62. static::load($class);
  63. }
  64. }
  65. static::load_psr($class);
  66. }
  67. /**
  68. * Attempt to resolve a class using the PSR-0 standard.
  69. *
  70. * @param string $class
  71. * @return void
  72. */
  73. protected static function load_psr($class)
  74. {
  75. // The PSR-0 standard indicates that class namespace slashes or
  76. // underscores should be used to indicate the directory tree in
  77. // which the class resides.
  78. $file = str_replace(array('\\', '_'), '/', $class);
  79. // Once we have formatted the class name, we will simply spin
  80. // through the registered PSR-0 directories and attempt to
  81. // locate and load the class into the script.
  82. foreach (static::$psr as $directory)
  83. {
  84. if (file_exists($path = $directory.strtolower($file).EXT))
  85. {
  86. return require $path;
  87. }
  88. elseif (file_exists($path = $directory.$file.EXT))
  89. {
  90. return require $path;
  91. }
  92. }
  93. }
  94. /**
  95. * Register an array of class to path mappings.
  96. *
  97. * <code>
  98. * // Register a class mapping with the Autoloader
  99. * Autoloader::map(array('User' => APP_PATH.'models/user.php'));
  100. * </code>
  101. *
  102. * @param array $mappings
  103. * @return void
  104. */
  105. public static function map($mappings)
  106. {
  107. static::$mappings = array_merge(static::$mappings, $mappings);
  108. }
  109. /**
  110. * Register a class alias with the auto-loader.
  111. *
  112. * @param string $class
  113. * @param string $alias
  114. * @return void
  115. */
  116. public static function alias($class, $alias)
  117. {
  118. static::$aliases[$alias] = $class;
  119. }
  120. /**
  121. * Register directories to be searched as a PSR-0 library.
  122. *
  123. * @param string|array $directory
  124. * @return void
  125. */
  126. public static function psr($directory)
  127. {
  128. $directories = array_map(function($directory)
  129. {
  130. return rtrim($directory, '/').'/';
  131. }, (array) $directory);
  132. static::$psr = array_unique(array_merge(static::$psr, $directories));
  133. }
  134. }