2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Logging.
|
|
|
|
*
|
|
|
|
* Log messages to text files.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
|
|
|
* Copyright 2005-2009, 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.
|
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* @copyright Copyright 2005-2009, 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
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Logs messages to text files
|
|
|
|
*
|
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
|
|
|
|
* @access protected
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-11-04 23:19:22 +00:00
|
|
|
var $_streams = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get an instance
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @static
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-11-06 00:16:46 +00:00
|
|
|
function &getInstance() {
|
2009-11-04 23:19:22 +00:00
|
|
|
static $instance = array();
|
|
|
|
if (!isset($instance[0])) {
|
2010-01-15 03:33:14 +00:00
|
|
|
$instance[0] =& new CakeLog();
|
2009-11-04 23:19:22 +00:00
|
|
|
}
|
|
|
|
return $instance[0];
|
|
|
|
}
|
|
|
|
|
2009-11-06 00:16:46 +00:00
|
|
|
/**
|
|
|
|
* Configure and add a new logging stream to CakeLog
|
|
|
|
* You can use add loggers from app/libs use app.loggername, or any plugin/libs using plugin.loggername
|
|
|
|
*
|
|
|
|
* @param string $key The keyname for this logger, used to revmoe the logger later.
|
|
|
|
* @param array $config Array of configuration information for the logger
|
2009-11-06 01:13:15 +00:00
|
|
|
* @return boolean success of configuration.
|
2009-11-06 04:25:08 +00:00
|
|
|
* @static
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-11-06 00:16:46 +00:00
|
|
|
function config($key, $config) {
|
|
|
|
if (empty($config['engine'])) {
|
|
|
|
trigger_error(__('Missing logger classname', true), E_USER_WARNING);
|
|
|
|
return false;
|
|
|
|
}
|
2010-01-15 03:33:14 +00:00
|
|
|
$self =& CakeLog::getInstance();
|
2009-11-06 01:13:15 +00:00
|
|
|
$className = $self->_getLogger($config['engine']);
|
2009-11-06 00:16:46 +00:00
|
|
|
if (!$className) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
unset($config['engine']);
|
|
|
|
$self->_streams[$key] = new $className($config);
|
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.
|
|
|
|
*
|
2009-11-06 04:25:08 +00:00
|
|
|
* @return mixed boolean false on any failures, string of classname to use if search was successful.\
|
|
|
|
* @access protected
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-11-06 00:16:46 +00:00
|
|
|
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)) {
|
|
|
|
trigger_error(sprintf(__('Could not load logger class %s', true), $loggerName), E_USER_WARNING);
|
|
|
|
return false;
|
|
|
|
}
|
2010-01-15 03:33:14 +00:00
|
|
|
if (!is_callable(array($loggerName, 'write'))) {
|
2009-11-06 00:16:46 +00:00
|
|
|
trigger_error(
|
2009-11-06 01:16:25 +00:00
|
|
|
sprintf(__('logger class %s does not implement a write method.', true), $loggerName),
|
2009-11-06 00:16:46 +00:00
|
|
|
E_USER_WARNING
|
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return $loggerName;
|
|
|
|
}
|
|
|
|
|
2009-11-04 23:19:22 +00:00
|
|
|
/**
|
|
|
|
* Returns the keynames of the currently active streams
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
* @static
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-11-15 01:42:57 +00:00
|
|
|
function configured() {
|
2010-01-15 03:33:14 +00:00
|
|
|
$self =& CakeLog::getInstance();
|
2009-11-04 23:19:22 +00:00
|
|
|
return array_keys($self->_streams);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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
|
|
|
*
|
|
|
|
* @param string $keyname Key name of callable to remove.
|
|
|
|
* @return void
|
|
|
|
* @static
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-11-15 01:42:57 +00:00
|
|
|
function drop($streamName) {
|
2010-01-15 03:33:14 +00:00
|
|
|
$self =& CakeLog::getInstance();
|
2009-11-04 23:19:22 +00:00
|
|
|
unset($self->_streams[$streamName]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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-06 04:25:08 +00:00
|
|
|
* @access protected
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-11-04 23:19:22 +00:00
|
|
|
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-01-15 03:33:14 +00:00
|
|
|
$this->_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
|
|
|
/**
|
|
|
|
* Writes given message to a log file in the logs directory.
|
|
|
|
*
|
|
|
|
* @param string $type Type of log, becomes part of the log's filename
|
2009-11-04 23:19:22 +00:00
|
|
|
* @param string $message Message to log
|
2008-05-30 11:40:08 +00:00
|
|
|
* @return boolean Success
|
|
|
|
* @access public
|
2008-09-25 16:49:56 +00:00
|
|
|
* @static
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-11-04 23:19:22 +00:00
|
|
|
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-01-15 03:33:14 +00:00
|
|
|
$self =& CakeLog::getInstance();
|
2009-11-04 23:19:22 +00:00
|
|
|
if (empty($self->_streams)) {
|
|
|
|
$self->_autoConfig();
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-11-06 00:16:46 +00:00
|
|
|
$keys = array_keys($self->_streams);
|
|
|
|
foreach ($keys as $key) {
|
|
|
|
$logger =& $self->_streams[$key];
|
|
|
|
$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
|
|
|
|
|
|
|
/**
|
|
|
|
* An error_handler that will log errors to file using CakeLog::write();
|
|
|
|
*
|
|
|
|
* @param integer $code Code of error
|
|
|
|
* @param string $description Error description
|
|
|
|
* @param string $file File on which error occurred
|
|
|
|
* @param integer $line Line that triggered the error
|
|
|
|
* @param array $context Context
|
|
|
|
* @return void
|
2009-11-14 12:19:25 +00:00
|
|
|
*/
|
2009-09-08 03:59:31 +00:00
|
|
|
function handleError($code, $description, $file = null, $line = null, $context = null) {
|
|
|
|
if ($code === 2048 || $code === 8192) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
switch ($code) {
|
|
|
|
case E_PARSE:
|
|
|
|
case E_ERROR:
|
|
|
|
case E_CORE_ERROR:
|
|
|
|
case E_COMPILE_ERROR:
|
|
|
|
case E_USER_ERROR:
|
2009-09-10 15:32:21 +00:00
|
|
|
$error = 'Fatal Error';
|
2009-09-08 03:59:31 +00:00
|
|
|
$level = LOG_ERROR;
|
|
|
|
break;
|
|
|
|
case E_WARNING:
|
|
|
|
case E_USER_WARNING:
|
|
|
|
case E_COMPILE_WARNING:
|
|
|
|
case E_RECOVERABLE_ERROR:
|
2009-09-10 15:32:21 +00:00
|
|
|
$error = 'Warning';
|
2009-09-08 03:59:31 +00:00
|
|
|
$level = LOG_WARNING;
|
|
|
|
break;
|
|
|
|
case E_NOTICE:
|
|
|
|
case E_USER_NOTICE:
|
2009-09-10 15:32:21 +00:00
|
|
|
$error = 'Notice';
|
2009-09-08 03:59:31 +00:00
|
|
|
$level = LOG_NOTICE;
|
|
|
|
break;
|
|
|
|
default:
|
2009-09-10 15:32:21 +00:00
|
|
|
return;
|
2009-09-08 03:59:31 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-09-10 15:32:21 +00:00
|
|
|
$message = $error . ' (' . $code . '): ' . $description . ' in [' . $file . ', line ' . $line . ']';
|
2009-09-08 03:59:31 +00:00
|
|
|
CakeLog::write($level, $message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!defined('DISABLE_DEFAULT_ERROR_HANDLING')) {
|
|
|
|
set_error_handler(array('CakeLog', 'handleError'));
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
|
|
|
?>
|