LoggerManager.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <?php
  2. /**
  3. * log4php is a PHP port of the log4j java logging package.
  4. *
  5. * <p>This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).</p>
  6. * <p>Design, strategies and part of the methods documentation are developed by log4j team
  7. * (Ceki Gülcü as log4j project founder and
  8. * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).</p>
  9. *
  10. * <p>PHP port, extensions and modifications by VxR. All rights reserved.<br>
  11. * For more information, please see {@link http://www.vxr.it/log4php/}.</p>
  12. *
  13. * <p>This software is published under the terms of the LGPL License
  14. * a copy of which has been included with this distribution in the LICENSE file.</p>
  15. *
  16. * @package log4php
  17. */
  18. /**
  19. * LOG4PHP_DIR points to the log4php root directory.
  20. *
  21. * If not defined it will be set automatically when the first package classfile
  22. * is included
  23. *
  24. * @var string
  25. */
  26. if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__));
  27. require_once(LOG4PHP_DIR . '/LoggerHierarchy.php');
  28. /**
  29. * Use the LoggerManager to get Logger instances.
  30. *
  31. * @author VxR <vxr@vxr.it>
  32. * @version $Revision: 1.1 $
  33. * @package log4php
  34. * @see Logger
  35. * @todo create a configurator selector
  36. */
  37. class LoggerManager {
  38. /**
  39. * check if a given logger exists.
  40. *
  41. * @param string $name logger name
  42. * @static
  43. * @return boolean
  44. */
  45. function exists($name)
  46. {
  47. $repository =& LoggerManager::getLoggerRepository();
  48. return $repository->exists($name);
  49. }
  50. /**
  51. * Returns an array this whole Logger instances.
  52. *
  53. * @static
  54. * @see Logger
  55. * @return array
  56. */
  57. function getCurrentLoggers()
  58. {
  59. $repository =& LoggerManager::getLoggerRepository();
  60. return $repository->getCurrentLoggers();
  61. }
  62. /**
  63. * Returns the root logger.
  64. *
  65. * @static
  66. * @return object
  67. * @see LoggerRoot
  68. */
  69. function &getRootLogger()
  70. {
  71. $repository =& LoggerManager::getLoggerRepository();
  72. return $repository->getRootLogger();
  73. }
  74. /**
  75. * Returns the specified Logger.
  76. *
  77. * @param string $name logger name
  78. * @param LoggerFactory $factory a {@link LoggerFactory} instance or null
  79. * @static
  80. * @return Logger
  81. */
  82. function &getLogger($name, $factory = null)
  83. {
  84. $repository =& LoggerManager::getLoggerRepository();
  85. return $repository->getLogger($name, $factory);
  86. }
  87. /**
  88. * Returns the LoggerHierarchy.
  89. *
  90. * @static
  91. * @return LoggerHierarchy
  92. */
  93. function &getLoggerRepository()
  94. {
  95. return LoggerHierarchy::singleton();
  96. }
  97. /**
  98. * Destroy loggers object tree.
  99. *
  100. * @static
  101. * @return boolean
  102. */
  103. function resetConfiguration()
  104. {
  105. $repository =& LoggerManager::getLoggerRepository();
  106. return $repository->resetConfiguration();
  107. }
  108. /**
  109. * Does nothing.
  110. * @static
  111. */
  112. function setRepositorySelector($selector, $guard)
  113. {
  114. return;
  115. }
  116. /**
  117. * Safely close all appenders.
  118. * @static
  119. */
  120. function shutdown()
  121. {
  122. $repository =& LoggerManager::getLoggerRepository();
  123. return $repository->shutdown();
  124. }
  125. }
  126. // ---------------------------------------------------------------------------
  127. // ---------------------------------------------------------------------------
  128. // ---------------------------------------------------------------------------
  129. if (!defined('LOG4PHP_DEFAULT_INIT_OVERRIDE')) {
  130. if (isset($_ENV['log4php.defaultInitOverride'])) {
  131. /**
  132. * @ignore
  133. */
  134. define('LOG4PHP_DEFAULT_INIT_OVERRIDE',
  135. LoggerOptionConverter::toBoolean($_ENV['log4php.defaultInitOverride'], false)
  136. );
  137. } elseif (isset($GLOBALS['log4php.defaultInitOverride'])) {
  138. /**
  139. * @ignore
  140. */
  141. define('LOG4PHP_DEFAULT_INIT_OVERRIDE',
  142. LoggerOptionConverter::toBoolean($GLOBALS['log4php.defaultInitOverride'], false)
  143. );
  144. } else {
  145. /**
  146. * Controls init execution
  147. *
  148. * With this constant users can skip the default init procedure that is
  149. * called when this file is included.
  150. *
  151. * <p>If it is not user defined, log4php tries to autoconfigure using (in order):</p>
  152. *
  153. * - the <code>$_ENV['log4php.defaultInitOverride']</code> variable.
  154. * - the <code>$GLOBALS['log4php.defaultInitOverride']</code> global variable.
  155. * - defaults to <i>false</i>
  156. *
  157. * @var boolean
  158. */
  159. define('LOG4PHP_DEFAULT_INIT_OVERRIDE', false);
  160. }
  161. }
  162. if (!defined('LOG4PHP_CONFIGURATION')) {
  163. if (isset($_ENV['log4php.configuration'])) {
  164. /**
  165. * @ignore
  166. */
  167. define('LOG4PHP_CONFIGURATION', trim($_ENV['log4php.configuration']));
  168. } else {
  169. /**
  170. * Configuration file.
  171. *
  172. * <p>This constant tells configurator classes where the configuration
  173. * file is located.</p>
  174. * <p>If not set by user, log4php tries to set it automatically using
  175. * (in order):</p>
  176. *
  177. * - the <code>$_ENV['log4php.configuration']</code> enviroment variable.
  178. * - defaults to 'log4php.properties'.
  179. *
  180. * @var string
  181. */
  182. define('LOG4PHP_CONFIGURATION', 'log4php.properties');
  183. }
  184. }
  185. if (!defined('LOG4PHP_CONFIGURATOR_CLASS')) {
  186. if ( strtolower(substr( LOG4PHP_CONFIGURATION, -4 )) == '.xml') {
  187. /**
  188. * @ignore
  189. */
  190. define('LOG4PHP_CONFIGURATOR_CLASS', LOG4PHP_DIR . '/xml/LoggerDOMConfigurator');
  191. } else {
  192. /**
  193. * Holds the configurator class name.
  194. *
  195. * <p>This constant is set with the fullname (path included but non the
  196. * .php extension) of the configurator class that init procedure will use.</p>
  197. * <p>If not set by user, log4php tries to set it automatically.</p>
  198. * <p>If {@link LOG4PHP_CONFIGURATION} has '.xml' extension set the
  199. * constants to '{@link LOG4PHP_DIR}/xml/{@link LoggerDOMConfigurator}'.</p>
  200. * <p>Otherwise set the constants to
  201. * '{@link LOG4PHP_DIR}/{@link LoggerPropertyConfigurator}'.</p>
  202. *
  203. * <p><b>Security Note</b>: classfile pointed by this constant will be brutally
  204. * included with a:
  205. * <code>@include_once(LOG4PHP_CONFIGURATOR_CLASS . ".php");</code></p>
  206. *
  207. * @var string
  208. */
  209. define('LOG4PHP_CONFIGURATOR_CLASS', LOG4PHP_DIR . '/LoggerPropertyConfigurator');
  210. }
  211. }
  212. if (!LOG4PHP_DEFAULT_INIT_OVERRIDE) {
  213. if (!LoggerManagerDefaultInit())
  214. LoggerLog::warn("LOG4PHP main() Default Init failed.");
  215. }
  216. /**
  217. * Default init procedure.
  218. *
  219. * <p>This procedure tries to configure the {@link LoggerHierarchy} using the
  220. * configurator class defined via {@link LOG4PHP_CONFIGURATOR_CLASS} that tries
  221. * to load the configurator file defined in {@link LOG4PHP_CONFIGURATION}.
  222. * If something goes wrong a warn is raised.</p>
  223. * <p>Users can skip this procedure using {@link LOG4PHP_DEFAULT_INIT_OVERRIDE}
  224. * constant.</p>
  225. *
  226. * @return boolean
  227. */
  228. function LoggerManagerDefaultInit()
  229. {
  230. $configuratorClass = basename(LOG4PHP_CONFIGURATOR_CLASS);
  231. if (!class_exists($configuratorClass)) {
  232. @include_once(LOG4PHP_CONFIGURATOR_CLASS . ".php");
  233. }
  234. if (class_exists($configuratorClass)) {
  235. return call_user_func(array($configuratorClass, 'configure'), LOG4PHP_CONFIGURATION);
  236. } else {
  237. LoggerLog::warn("LoggerManagerDefaultInit() Configurator '{$configuratorClass}' doesnt exists");
  238. return false;
  239. }
  240. }
  241. ?>