LoggerAppender.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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. * @ignore
  20. */
  21. if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__));
  22. /**
  23. * Abstract class that defines output logs strategies.
  24. *
  25. * @author VxR <vxr@vxr.it>
  26. * @version $Revision: 1.1 $
  27. * @package log4php
  28. * @abstract
  29. */
  30. class LoggerAppender {
  31. /**
  32. * Factory
  33. *
  34. * @param string $name appender name
  35. * @param string $class create an instance of this appender class
  36. * @return LoggerAppender
  37. */
  38. function factory($name, $class)
  39. {
  40. $class = basename($class);
  41. if (!empty($class)) {
  42. if (!class_exists($class))
  43. @include_once(LOG4PHP_DIR . "/appenders/{$class}.php");
  44. if (class_exists($class))
  45. return new $class($name);
  46. }
  47. return null;
  48. }
  49. /**
  50. * Singleton
  51. *
  52. * @param string $name appender name
  53. * @param string $class create or get a reference instance of this class
  54. */
  55. function &singleton($name, $class = '')
  56. {
  57. static $instances;
  58. if (!empty($name)) {
  59. if (!isset($instances[$name])) {
  60. if (!empty($class)) {
  61. $appender = LoggerAppender::factory($name, $class);
  62. if ($appender !== null) {
  63. $instances[$name] = $appender;
  64. return $instances[$name];
  65. }
  66. }
  67. return null;
  68. }
  69. return $instances[$name];
  70. }
  71. return null;
  72. }
  73. /* --------------------------------------------------------------------------*/
  74. /* --------------------------------------------------------------------------*/
  75. /* --------------------------------------------------------------------------*/
  76. /**
  77. * Add a filter to the end of the filter list.
  78. *
  79. * @param LoggerFilter $newFilter add a new LoggerFilter
  80. * @abstract
  81. */
  82. function addFilter($newFilter)
  83. {
  84. // override
  85. }
  86. /**
  87. * Clear the list of filters by removing all the filters in it.
  88. * @abstract
  89. */
  90. function clearFilters()
  91. {
  92. // override
  93. }
  94. /**
  95. * Return the first filter in the filter chain for this Appender.
  96. * The return value may be <i>null</i> if no is filter is set.
  97. * @return Filter
  98. */
  99. function &getFilter()
  100. {
  101. // override
  102. }
  103. /**
  104. * Release any resources allocated.
  105. * Subclasses of {@link LoggerAppender} should implement
  106. * this method to perform proper closing procedures.
  107. * @abstract
  108. */
  109. function close()
  110. {
  111. //override me
  112. }
  113. /**
  114. * This method performs threshold checks and invokes filters before
  115. * delegating actual logging to the subclasses specific <i>append()</i> method.
  116. * @param LoggerLoggingEvent $event
  117. * @abstract
  118. */
  119. function doAppend($event)
  120. {
  121. //override me
  122. }
  123. /**
  124. * Get the name of this appender.
  125. * @return string
  126. */
  127. function getName()
  128. {
  129. //override me
  130. }
  131. /**
  132. * Do not use this method.
  133. *
  134. * @param object $errorHandler
  135. */
  136. function setErrorHandler($errorHandler)
  137. {
  138. // override me
  139. }
  140. /**
  141. * Do not use this method.
  142. * @return object Returns the ErrorHandler for this appender.
  143. */
  144. function &getErrorHandler()
  145. {
  146. return $this->errorHandler;
  147. }
  148. /**
  149. * Set the Layout for this appender.
  150. *
  151. * @param LoggerLayout $layout
  152. */
  153. function setLayout($layout)
  154. {
  155. // override me
  156. }
  157. /**
  158. * Returns this appender layout.
  159. * @return LoggerLayout
  160. */
  161. function &getLayout()
  162. {
  163. // override me
  164. }
  165. /**
  166. * Set the name of this appender.
  167. *
  168. * The name is used by other components to identify this appender.
  169. *
  170. * @param string $name
  171. */
  172. function setName($name)
  173. {
  174. // override me
  175. }
  176. /**
  177. * Configurators call this method to determine if the appender
  178. * requires a layout.
  179. *
  180. * <p>If this method returns <i>true</i>, meaning that layout is required,
  181. * then the configurator will configure a layout using the configuration
  182. * information at its disposal. If this method returns <i>false</i>,
  183. * meaning that a layout is not required, then layout configuration will be
  184. * skipped even if there is available layout configuration
  185. * information at the disposal of the configurator.</p>
  186. *
  187. * <p>In the rather exceptional case, where the appender
  188. * implementation admits a layout but can also work without it, then
  189. * the appender should return <i>true</i>.</p>
  190. *
  191. * @return boolean
  192. */
  193. function requiresLayout()
  194. {
  195. // override me
  196. }
  197. }
  198. ?>