123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * sfLogger is the abstract class for all logging classes.
- *
- * This level list is ordered by highest priority (self::EMERG) to lowest priority (self::DEBUG):
- * - EMERG: System is unusable
- * - ALERT: Immediate action required
- * - CRIT: Critical conditions
- * - ERR: Error conditions
- * - WARNING: Warning conditions
- * - NOTICE: Normal but significant
- * - INFO: Informational
- * - DEBUG: Debug-level messages
- *
- * @package symfony
- * @subpackage log
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfLogger.class.php 16344 2009-03-16 16:51:28Z fabien $
- */
- abstract class sfLogger
- {
- const EMERG = 0; // System is unusable
- const ALERT = 1; // Immediate action required
- const CRIT = 2; // Critical conditions
- const ERR = 3; // Error conditions
- const WARNING = 4; // Warning conditions
- const NOTICE = 5; // Normal but significant
- const INFO = 6; // Informational
- const DEBUG = 7; // Debug-level messages
- protected
- $level = self::INFO;
- /**
- * Class constructor.
- *
- * @see initialize()
- */
- public function __construct(sfEventDispatcher $dispatcher, $options = array())
- {
- $this->initialize($dispatcher, $options);
- if (!isset($options['auto_shutdown']) || $options['auto_shutdown'])
- {
- register_shutdown_function(array($this, 'shutdown'));
- }
- }
- /**
- * Initializes this sfLogger instance.
- *
- * Available options:
- *
- * - level: The log level.
- *
- * @param sfEventDispatcher $dispatcher A sfEventDispatcher instance
- * @param array $options An array of options.
- *
- * @return Boolean true, if initialization completes successfully, otherwise false.
- *
- * @throws <b>sfInitializationException</b> If an error occurs while initializing this sfLogger.
- */
- public function initialize(sfEventDispatcher $dispatcher, $options = array())
- {
- if (isset($options['level']))
- {
- $this->setLogLevel($options['level']);
- }
- $dispatcher->connect('application.log', array($this, 'listenToLogEvent'));
- }
- /**
- * Retrieves the log level for the current logger instance.
- *
- * @return string Log level
- */
- public function getLogLevel()
- {
- return $this->level;
- }
- /**
- * Sets a log level for the current logger instance.
- *
- * @param string $level Log level
- */
- public function setLogLevel($level)
- {
- if (!is_int($level))
- {
- $level = constant('sfLogger::'.strtoupper($level));
- }
- $this->level = $level;
- }
- /**
- * Logs a message.
- *
- * @param string $message Message
- * @param string $priority Message priority
- */
- public function log($message, $priority = self::INFO)
- {
- if ($this->getLogLevel() < $priority)
- {
- return false;
- }
- return $this->doLog($message, $priority);
- }
- /**
- * Logs a message.
- *
- * @param string $message Message
- * @param string $priority Message priority
- */
- abstract protected function doLog($message, $priority);
- /**
- * Logs an emerg message.
- *
- * @param string $message Message
- */
- public function emerg($message)
- {
- $this->log($message, self::EMERG);
- }
- /**
- * Logs an alert message.
- *
- * @param string $message Message
- */
- public function alert($message)
- {
- $this->log($message, self::ALERT);
- }
- /**
- * Logs a critical message.
- *
- * @param string $message Message
- */
- public function crit($message)
- {
- $this->log($message, self::CRIT);
- }
- /**
- * Logs an error message.
- *
- * @param string $message Message
- */
- public function err($message)
- {
- $this->log($message, self::ERR);
- }
- /**
- * Logs a warning message.
- *
- * @param string $message Message
- */
- public function warning($message)
- {
- $this->log($message, self::WARNING);
- }
- /**
- * Logs a notice message.
- *
- * @param string $message Message
- */
- public function notice($message)
- {
- $this->log($message, self::NOTICE);
- }
- /**
- * Logs an info message.
- *
- * @param string $message Message
- */
- public function info($message)
- {
- $this->log($message, self::INFO);
- }
- /**
- * Logs a debug message.
- *
- * @param string $message Message
- */
- public function debug($message)
- {
- $this->log($message, self::DEBUG);
- }
- /**
- * Listens to application.log events.
- *
- * @param sfEvent $event An sfEvent instance
- */
- public function listenToLogEvent(sfEvent $event)
- {
- $priority = isset($event['priority']) ? $event['priority'] : self::INFO;
- $subject = $event->getSubject();
- $subject = is_object($subject) ? get_class($subject) : (is_string($subject) ? $subject : 'main');
- foreach ($event->getParameters() as $key => $message)
- {
- if ('priority' === $key)
- {
- continue;
- }
- $this->log(sprintf('{%s} %s', $subject, $message), $priority);
- }
- }
- /**
- * Executes the shutdown procedure.
- *
- * Cleans up the current logger instance.
- */
- public function shutdown()
- {
- }
- /**
- * Returns the priority name given a priority class constant
- *
- * @param integer $priority A priority class constant
- *
- * @return string The priority name
- *
- * @throws sfException if the priority level does not exist
- */
- static public function getPriorityName($priority)
- {
- static $levels = array(
- self::EMERG => 'emerg',
- self::ALERT => 'alert',
- self::CRIT => 'crit',
- self::ERR => 'err',
- self::WARNING => 'warning',
- self::NOTICE => 'notice',
- self::INFO => 'info',
- self::DEBUG => 'debug',
- );
- if (!isset($levels[$priority]))
- {
- throw new sfException(sprintf('The priority level "%s" does not exist.', $priority));
- }
- return $levels[$priority];
- }
- }
|