container.php 4.5 KB

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