2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Logging.
|
|
|
|
*
|
|
|
|
* Log messages to text files.
|
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-26 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
|
|
|
* @since CakePHP(tm) v 0.2.9
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Set up error level constants to be used within the framework if they are not defined within the
|
|
|
|
* system.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
if (!defined('LOG_WARNING')) {
|
|
|
|
define('LOG_WARNING', 3);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_NOTICE')) {
|
|
|
|
define('LOG_NOTICE', 4);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_DEBUG')) {
|
|
|
|
define('LOG_DEBUG', 5);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_INFO')) {
|
|
|
|
define('LOG_INFO', 6);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2010-04-24 02:31:21 +00:00
|
|
|
/**
|
|
|
|
* CakeLogStreamInterface is the interface that should be implemented
|
|
|
|
* by all classes that are going to be used as Log streams.
|
|
|
|
*
|
|
|
|
* @package cake.libs
|
|
|
|
*/
|
|
|
|
interface CakeLogInterface {
|
|
|
|
/**
|
|
|
|
* Write method to handle writes being made to the Logger
|
|
|
|
*
|
|
|
|
* @param string $type
|
|
|
|
* @param string $message
|
|
|
|
* @return void
|
|
|
|
* @author Mark Story
|
|
|
|
*/
|
|
|
|
public function write($type, $message);
|
|
|
|
}
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-01-22 23:11:49 +00:00
|
|
|
* Logs messages to configured Log adapters. One or more adapters can be configured
|
|
|
|
* using CakeLogs's methods. If you don't configure any adapters, and write to the logs
|
|
|
|
* a default FileLog will be autoconfigured for you.
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
|
|
|
class CakeLog {
|
2009-11-06 01:16:25 +00:00
|
|
|
|
2009-11-04 23:19:22 +00:00
|
|
|
/**
|
2009-11-06 01:16:25 +00:00
|
|
|
* An array of connected streams.
|
2009-11-04 23:19:22 +00:00
|
|
|
* Each stream represents a callable that will be called when write() is called.
|
|
|
|
*
|
|
|
|
* @var array
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-14 04:23:15 +00:00
|
|
|
protected static $_streams = array();
|
2009-11-04 23:19:22 +00:00
|
|
|
|
2009-11-06 00:16:46 +00:00
|
|
|
/**
|
|
|
|
* Configure and add a new logging stream to CakeLog
|
2010-01-22 23:11:49 +00:00
|
|
|
* You can use add loggers from app/libs use app.loggername, or any plugin/libs using plugin.loggername.
|
|
|
|
*
|
|
|
|
* ### Usage:
|
|
|
|
*
|
|
|
|
* {{{
|
|
|
|
* CakeLog::config('second_file', array(
|
|
|
|
* 'engine' => 'FileLog',
|
|
|
|
* 'path' => '/var/logs/my_app/'
|
|
|
|
* ));
|
|
|
|
* }}}
|
|
|
|
*
|
|
|
|
* Will configure a FileLog instance to use the specified path. All options that are not `engine`
|
|
|
|
* are passed onto the logging adapter, and handled there. Any class can be configured as a logging
|
|
|
|
* adapter as long as it implements a `write` method with the following signature.
|
|
|
|
*
|
|
|
|
* `write($type, $message)`
|
|
|
|
*
|
|
|
|
* For an explaination of these parameters, see CakeLog::write()
|
2009-11-06 00:16:46 +00:00
|
|
|
*
|
2010-05-22 01:47:53 +00:00
|
|
|
* @param string $key The keyname for this logger, used to remove the logger later.
|
2009-11-06 00:16:46 +00:00
|
|
|
* @param array $config Array of configuration information for the logger
|
2009-11-06 01:13:15 +00:00
|
|
|
* @return boolean success of configuration.
|
2010-04-24 02:31:21 +00:00
|
|
|
* @throws Exception
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-11-15 02:07:23 +00:00
|
|
|
public static function config($key, $config) {
|
2009-11-06 00:16:46 +00:00
|
|
|
if (empty($config['engine'])) {
|
2010-04-24 02:31:21 +00:00
|
|
|
throw new Exception(__('Missing logger classname'));
|
2009-11-06 00:16:46 +00:00
|
|
|
}
|
2010-04-24 02:31:21 +00:00
|
|
|
$loggerName = $config['engine'];
|
2009-11-06 00:16:46 +00:00
|
|
|
unset($config['engine']);
|
2010-04-24 02:31:21 +00:00
|
|
|
$className = self::_getLogger($loggerName);
|
|
|
|
$logger = new $className($config);
|
|
|
|
if (!$logger instanceof CakeLogInterface) {
|
|
|
|
throw new Exception(sprintf(
|
|
|
|
__('logger class %s does not implement a write method.'), $loggerName
|
|
|
|
));
|
|
|
|
}
|
|
|
|
self::$_streams[$key] = $logger;
|
2009-11-06 01:13:15 +00:00
|
|
|
return true;
|
2009-11-06 00:16:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempts to import a logger class from the various paths it could be on.
|
|
|
|
* Checks that the logger class implements a write method as well.
|
|
|
|
*
|
2010-01-22 23:11:49 +00:00
|
|
|
* @param string $loggerName the plugin.className of the logger class you want to build.
|
|
|
|
* @return mixed boolean false on any failures, string of classname to use if search was successful.
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-14 04:23:15 +00:00
|
|
|
protected static function _getLogger($loggerName) {
|
2009-11-16 00:55:20 +00:00
|
|
|
list($plugin, $loggerName) = pluginSplit($loggerName);
|
|
|
|
|
2009-11-06 01:13:15 +00:00
|
|
|
if ($plugin) {
|
|
|
|
App::import('Lib', $plugin . '.log/' . $loggerName);
|
|
|
|
} else {
|
|
|
|
if (!App::import('Lib', 'log/' . $loggerName)) {
|
|
|
|
App::import('Core', 'log/' . $loggerName);
|
|
|
|
}
|
|
|
|
}
|
2009-11-06 00:16:46 +00:00
|
|
|
if (!class_exists($loggerName)) {
|
2010-12-05 01:37:13 +00:00
|
|
|
throw new Exception(__('Could not load class %s', $loggerName));
|
2009-11-06 00:16:46 +00:00
|
|
|
}
|
|
|
|
return $loggerName;
|
|
|
|
}
|
|
|
|
|
2009-11-04 23:19:22 +00:00
|
|
|
/**
|
|
|
|
* Returns the keynames of the currently active streams
|
|
|
|
*
|
2010-01-22 23:11:49 +00:00
|
|
|
* @return array Array of configured log streams.
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-14 04:23:15 +00:00
|
|
|
public static function configured() {
|
|
|
|
return array_keys(self::$_streams);
|
2009-11-04 23:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-11-15 01:42:57 +00:00
|
|
|
* Removes a stream from the active streams. Once a stream has been removed
|
|
|
|
* it will no longer have messages sent to it.
|
2009-11-04 23:19:22 +00:00
|
|
|
*
|
2010-01-22 23:11:49 +00:00
|
|
|
* @param string $keyname Key name of a configured stream to remove.
|
2009-11-04 23:19:22 +00:00
|
|
|
* @return void
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-14 04:23:15 +00:00
|
|
|
public static function drop($streamName) {
|
|
|
|
unset(self::$_streams[$streamName]);
|
2009-11-04 23:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-11-06 00:45:04 +00:00
|
|
|
* Configures the automatic/default stream a FileLog.
|
2009-11-04 23:19:22 +00:00
|
|
|
*
|
|
|
|
* @return void
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2010-04-14 04:23:15 +00:00
|
|
|
protected static function _autoConfig() {
|
2009-11-06 00:16:46 +00:00
|
|
|
if (!class_exists('FileLog')) {
|
2009-11-06 01:13:15 +00:00
|
|
|
App::import('Core', 'log/FileLog');
|
2009-11-04 23:19:22 +00:00
|
|
|
}
|
2010-04-14 04:23:15 +00:00
|
|
|
self::$_streams['default'] = new FileLog(array('path' => LOGS));
|
2009-11-04 23:19:22 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2010-01-22 23:11:49 +00:00
|
|
|
* Writes the given message and type to all of the configured log adapters.
|
|
|
|
* Configured adapters are passed both the $type and $message variables. $type
|
|
|
|
* is one of the following strings/values.
|
|
|
|
*
|
|
|
|
* ### Types:
|
|
|
|
*
|
|
|
|
* - `LOG_WARNING` => 'warning',
|
|
|
|
* - `LOG_NOTICE` => 'notice',
|
|
|
|
* - `LOG_INFO` => 'info',
|
|
|
|
* - `LOG_DEBUG` => 'debug',
|
|
|
|
* - `LOG_ERR` => 'error',
|
|
|
|
* - `LOG_ERROR` => 'error'
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-01-22 23:11:49 +00:00
|
|
|
* ### Usage:
|
|
|
|
*
|
|
|
|
* Write a message to the 'warning' log:
|
|
|
|
*
|
|
|
|
* `CakeLog::write('warning', 'Stuff is broken here');`
|
|
|
|
*
|
|
|
|
* @param string $type Type of message being written
|
|
|
|
* @param string $message Message content to log
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return boolean Success
|
|
|
|
*/
|
2010-04-14 04:23:15 +00:00
|
|
|
public static function write($type, $message) {
|
2008-05-30 11:40:08 +00:00
|
|
|
if (!defined('LOG_ERROR')) {
|
|
|
|
define('LOG_ERROR', 2);
|
|
|
|
}
|
|
|
|
if (!defined('LOG_ERR')) {
|
|
|
|
define('LOG_ERR', LOG_ERROR);
|
|
|
|
}
|
|
|
|
$levels = array(
|
|
|
|
LOG_WARNING => 'warning',
|
|
|
|
LOG_NOTICE => 'notice',
|
|
|
|
LOG_INFO => 'info',
|
|
|
|
LOG_DEBUG => 'debug',
|
|
|
|
LOG_ERR => 'error',
|
|
|
|
LOG_ERROR => 'error'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (is_int($type) && isset($levels[$type])) {
|
|
|
|
$type = $levels[$type];
|
|
|
|
}
|
2010-04-14 04:23:15 +00:00
|
|
|
if (empty(self::$_streams)) {
|
|
|
|
self::_autoConfig();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2010-04-14 04:23:15 +00:00
|
|
|
foreach (self::$_streams as $key => $logger) {
|
2009-11-06 00:16:46 +00:00
|
|
|
$logger->write($type, $message);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-11-06 04:20:40 +00:00
|
|
|
return true;
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-09-08 03:59:31 +00:00
|
|
|
}
|