container.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <?php namespace Laravel;
  2. class IoC {
  3. /**
  4. * The active container instance.
  5. *
  6. * @var Container
  7. */
  8. public static $container;
  9. /**
  10. * Bootstrap the global IoC instance.
  11. *
  12. * @return void
  13. */
  14. public static function bootstrap()
  15. {
  16. Config::load('container');
  17. static::$container = new Container(Config::$items['container']);
  18. }
  19. /**
  20. * Get the active container instance.
  21. *
  22. * @return Container
  23. */
  24. public static function container()
  25. {
  26. return static::$container;
  27. }
  28. /**
  29. * Resolve a core Laravel class from the container.
  30. *
  31. * <code>
  32. * // Resolve the "laravel.router" class from the container
  33. * $input = IoC::core('router');
  34. *
  35. * // Equivalent resolution using the "resolve" method
  36. * $input = IoC::resolve('laravel.router');
  37. *
  38. * // Pass an array of parameters to the resolver
  39. * $input = IoC::core('router', array('test'));
  40. * </code>
  41. *
  42. * @param string $name
  43. * @param array $parameters
  44. * @return mixed
  45. */
  46. public static function core($name, $parameters = array())
  47. {
  48. return static::$container->core($name, $parameters);
  49. }
  50. /**
  51. * Magic Method for calling methods on the active container instance.
  52. *
  53. * <code>
  54. * // Call the "resolve" method on the active container
  55. * $instance = IoC::resolve('laravel.routing.router');
  56. *
  57. * // Call the "instance" method on the active container
  58. * IoC::instance('mailer', new Mailer);
  59. * </code>
  60. */
  61. public static function __callStatic($method, $parameters)
  62. {
  63. return call_user_func_array(array(static::$container, $method), $parameters);
  64. }
  65. }
  66. class Container {
  67. /**
  68. * The resolved singleton instances.
  69. *
  70. * @var array
  71. */
  72. public $singletons = array();
  73. /**
  74. * The registered dependencies.
  75. *
  76. * @var array
  77. */
  78. protected $registry = array();
  79. /**
  80. * Create a new IoC container instance.
  81. *
  82. * @param array $registry
  83. * @return void
  84. */
  85. public function __construct($registry = array())
  86. {
  87. $this->registry = $registry;
  88. }
  89. /**
  90. * Register an object and its resolver.
  91. *
  92. * The IoC container instance is always passed to the resolver, allowing the
  93. * nested resolution of other objects from the container.
  94. *
  95. * <code>
  96. * // Register an object and its resolver
  97. * IoC::register('mailer', function($c) {return new Mailer;});
  98. * </code>
  99. *
  100. * @param string $name
  101. * @param Closure $resolver
  102. * @return void
  103. */
  104. public function register($name, $resolver, $singleton = false)
  105. {
  106. $this->registry[$name] = array('resolver' => $resolver, 'singleton' => $singleton);
  107. }
  108. /**
  109. * Determine if an object has been registered in the container.
  110. *
  111. * @param string $name
  112. * @return bool
  113. */
  114. public function registered($name)
  115. {
  116. return array_key_exists($name, $this->registry);
  117. }
  118. /**
  119. * Register an object as a singleton.
  120. *
  121. * Singletons will only be instantiated the first time they are resolved.
  122. * On subsequent requests for the object, the original instance will be returned.
  123. *
  124. * @param string $name
  125. * @param Closure $resolver
  126. * @return void
  127. */
  128. public function singleton($name, $resolver)
  129. {
  130. $this->register($name, $resolver, true);
  131. }
  132. /**
  133. * Register an instance as a singleton.
  134. *
  135. * This method allows you to register an already existing object instance
  136. * with the container to be managed as a singleton instance.
  137. *
  138. * <code>
  139. * // Register an instance as a singleton in the container
  140. * IoC::instance('mailer', new Mailer);
  141. * </code>
  142. *
  143. * @param string $name
  144. * @param mixed $instance
  145. * @return void
  146. */
  147. public function instance($name, $instance)
  148. {
  149. $this->singletons[$name] = $instance;
  150. }
  151. /**
  152. * Resolve a core Laravel class from the container.
  153. *
  154. * <code>
  155. * // Resolve the "laravel.router" class from the container
  156. * $input = IoC::core('router');
  157. *
  158. * // Equivalent resolution using the "resolve" method
  159. * $input = IoC::resolve('laravel.router');
  160. *
  161. * // Pass an array of parameters to the resolver
  162. * $input = IoC::core('router', array('test'));
  163. * </code>
  164. *
  165. * @param string $name
  166. * @param array $parameters
  167. * @return mixed
  168. */
  169. public function core($name, $parameters = array())
  170. {
  171. return $this->resolve("laravel.{$name}", $parameters);
  172. }
  173. /**
  174. * Resolve an object instance from the container.
  175. *
  176. * <code>
  177. * // Get an instance of the "mailer" object registered in the container
  178. * $mailer = IoC::resolve('mailer');
  179. *
  180. * // Pass an array of parameters to the resolver
  181. * $mailer = IoC::resolve('mailer', array('test'));
  182. * </code>
  183. *
  184. * @param string $name
  185. * @param array $parameters
  186. * @return mixed
  187. */
  188. public function resolve($name, $parameters = array())
  189. {
  190. if (array_key_exists($name, $this->singletons)) return $this->singletons[$name];
  191. if ( ! $this->registered($name))
  192. {
  193. throw new \Exception("Error resolving [$name]. No resolver has been registered in the container.");
  194. }
  195. $object = call_user_func($this->registry[$name]['resolver'], $this, $parameters);
  196. if (isset($this->registry[$name]['singleton']) and $this->registry[$name]['singleton'])
  197. {
  198. return $this->singletons[$name] = $object;
  199. }
  200. return $object;
  201. }
  202. }