Logger.php 8.21 KB
Newer Older
w  
Qiang Xue committed
1 2 3 4 5
<?php
/**
 * Logger class file
 *
 * @link http://www.yiiframework.com/
Qiang Xue committed
6
 * @copyright Copyright &copy; 2008 Yii Software LLC
w  
Qiang Xue committed
7 8 9 10 11
 * @license http://www.yiiframework.com/license/
 */

namespace yii\logging;

12 13
use yii\base\Event;

w  
Qiang Xue committed
14 15 16
/**
 * Logger records logged messages in memory.
 *
Qiang Xue committed
17 18
 * When [[flushInterval()]] is reached or when application terminates, it will
 * call [[flush()]] to send logged messages to different log targets, such as
w  
Qiang Xue committed
19 20
 * file, email, Web.
 *
21 22
 * Logger provides a set of events for further customization:
 *
w  
Qiang Xue committed
23 24 25 26 27
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
class Logger extends \yii\base\Component
{
28 29 30 31 32
	/**
	 * @event Event an event that is triggered when messages are being flushed from memory to targets
	 */
	const EVENT_FLUSH = 'flush';

Qiang Xue committed
33 34 35 36 37 38
	const LEVEL_ERROR = 'error';
	const LEVEL_WARNING = 'warning';
	const LEVEL_INFO = 'info';
	const LEVEL_TRACE = 'trace';
	const LEVEL_PROFILE_BEGIN = 'profile-begin';
	const LEVEL_PROFILE_END = 'profile-end';
w  
Qiang Xue committed
39 40 41 42 43 44

	/**
	 * @var integer how many messages should be logged before they are flushed from memory and sent to targets.
	 * Defaults to 1000, meaning the [[flush]] method will be invoked once every 1000 messages logged.
	 * Set this property to be 0 if you don't want to flush messages until the application terminates.
	 * This property mainly affects how much memory will be taken by the logged messages.
Qiang Xue committed
45
	 * A smaller value means less memory, but will increase the execution time due to the overhead of [[flush()]].
w  
Qiang Xue committed
46 47 48
	 */
	public $flushInterval = 1000;
	/**
Qiang Xue committed
49
	 * @var array logged messages. This property is mainly managed by [[log()]] and [[flush()]].
w  
Qiang Xue committed
50 51 52 53
	 * Each log message is of the following structure:
	 *
	 * ~~~
	 * array(
Qiang Xue committed
54
	 *   [0] => message (mixed)
w  
Qiang Xue committed
55 56 57 58 59
	 *   [1] => level (string)
	 *   [2] => category (string)
	 *   [3] => timestamp (float, obtained by microtime(true))
	 * )
	 * ~~~
w  
Qiang Xue committed
60 61 62 63 64 65 66
	 */
	public $messages = array();

	/**
	 * Logs an error message.
	 * An error message is typically logged when an unrecoverable error occurs
	 * during the execution of an application.
Qiang Xue committed
67
	 * @param mixed $message the message to be logged.
w  
Qiang Xue committed
68 69 70 71 72 73 74 75 76 77 78
	 * @param string $category the category of the message.
	 */
	public function error($message, $category = 'application')
	{
		$this->log($message, self::LEVEL_ERROR, $category);
	}

	/**
	 * Logs a trace message.
	 * Trace messages are logged mainly for development purpose to see
	 * the execution work flow of some code.
Qiang Xue committed
79
	 * @param mixed $message the message to be logged.
w  
Qiang Xue committed
80 81 82 83 84 85 86 87 88 89 90
	 * @param string $category the category of the message.
	 */
	public function trace($message, $category = 'application')
	{
		$this->log($message, self::LEVEL_TRACE, $category);
	}

	/**
	 * Logs a warning message.
	 * A warning message is typically logged when an error occurs while the execution
	 * can still continue.
Qiang Xue committed
91
	 * @param mixed $message the message to be logged.
w  
Qiang Xue committed
92 93
	 * @param string $category the category of the message.
	 */
w  
Qiang Xue committed
94
	public function warning($message, $category = 'application')
w  
Qiang Xue committed
95
	{
Qiang Xue committed
96
		$this->log($message, self::LEVEL_WARNING, $category);
w  
Qiang Xue committed
97 98 99 100 101 102
	}

	/**
	 * Logs an informative message.
	 * An informative message is typically logged by an application to keep record of
	 * something important (e.g. an administrator logs in).
Qiang Xue committed
103
	 * @param mixed $message the message to be logged.
w  
Qiang Xue committed
104 105 106 107
	 * @param string $category the category of the message.
	 */
	public function info($message, $category = 'application')
	{
Qiang Xue committed
108
		$this->log($message, self::LEVEL_INFO, $category);
w  
Qiang Xue committed
109 110 111 112
	}

	/**
	 * Marks the beginning of a code block for profiling.
113 114
	 * This has to be matched with a call to [[endProfile()]] with the same category name.
	 * The begin- and end- calls must also be properly nested.
Qiang Xue committed
115 116
	 * @param string $token token for the code block
	 * @param string $category the category of this log message
w  
Qiang Xue committed
117 118
	 * @see endProfile
	 */
Qiang Xue committed
119
	public function beginProfile($token, $category = 'application')
w  
Qiang Xue committed
120
	{
Qiang Xue committed
121
		$this->log($token, self::LEVEL_PROFILE_BEGIN, $category);
w  
Qiang Xue committed
122 123 124 125
	}

	/**
	 * Marks the end of a code block for profiling.
126
	 * This has to be matched with a previous call to [[beginProfile()]] with the same category name.
Qiang Xue committed
127 128
	 * @param string $token token for the code block
	 * @param string $category the category of this log message
w  
Qiang Xue committed
129 130
	 * @see beginProfile
	 */
Qiang Xue committed
131
	public function endProfile($token, $category = 'application')
w  
Qiang Xue committed
132
	{
Qiang Xue committed
133
		$this->log($token, self::LEVEL_PROFILE_END, $category);
w  
Qiang Xue committed
134 135 136 137 138 139 140 141
	}

	/**
	 * Logs a message with the given type and category.
	 * If `YII_DEBUG` is true and `YII_TRACE_LEVEL` is greater than 0, then additional
	 * call stack information about application code will be appended to the message.
	 * @param string $message the message to be logged.
	 * @param string $level the level of the message. This must be one of the following:
w  
Qiang Xue committed
142
	 * 'trace', 'info', 'warning', 'error', 'profile'.
w  
Qiang Xue committed
143 144
	 * @param string $category the category of the message.
	 */
Qiang Xue committed
145
	public function log($message, $level, $category = 'application')
w  
Qiang Xue committed
146
	{
Qiang Xue committed
147 148
		$time = microtime(true);
		if (YII_DEBUG && YII_TRACE_LEVEL > 0) {
w  
Qiang Xue committed
149 150 151
			$traces = debug_backtrace();
			$count = 0;
			foreach ($traces as $trace) {
Qiang Xue committed
152
				if (isset($trace['file'], $trace['line']) && strpos($trace['file'], YII_PATH) !== 0) {
Qiang Xue committed
153
					$message .= "\nin {$trace['file']} ({$trace['line']})";
w  
Qiang Xue committed
154 155 156 157 158 159
					if (++$count >= YII_TRACE_LEVEL) {
						break;
					}
				}
			}
		}
Qiang Xue committed
160
		$this->messages[] = array($message, $level, $category, $time);
161
		if ($this->flushInterval > 0 && count($this->messages) >= $this->flushInterval) {
Qiang Xue committed
162
			$this->flush();
w  
Qiang Xue committed
163 164 165 166
		}
	}

	/**
167 168
	 * Flushes log messages from memory to targets.
	 * This method will trigger a [[flush]] event.
w  
Qiang Xue committed
169
	 */
Qiang Xue committed
170
	public function flush()
w  
Qiang Xue committed
171
	{
Qiang Xue committed
172
		$this->trigger('flush');
w  
Qiang Xue committed
173
		$this->messages = array();
w  
Qiang Xue committed
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
	}

	/**
	 * Returns the total elapsed time since the start of the current request.
	 * This method calculates the difference between now and the timestamp
	 * defined by constant `YII_BEGIN_TIME` which is evaluated at the beginning
	 * of [[YiiBase]] class file.
	 * @return float the total elapsed time in seconds for current request.
	 */
	public function getExecutionTime()
	{
		return microtime(true) - YII_BEGIN_TIME;
	}

	/**
	 * Returns the profiling results.
w  
Qiang Xue committed
190 191 192 193 194 195 196 197
	 *
	 * By default, all profiling results will be returned. You may provide
	 * `$categories` and `$excludeCategories` as parameters to retrieve the
	 * results that you are interested in.
	 *
	 * @param array $categories list of categories that you are interested in.
	 * You can use an asterisk at the end of a category to do a prefix match.
	 * For example, 'yii\db\*' will match categories starting with 'yii\db\',
Qiang Xue committed
198
	 * such as 'yii\db\Connection'.
199
	 * @param array $excludeCategories list of categories that you want to exclude
w  
Qiang Xue committed
200
	 * @return array the profiling results. Each array element has the following structure:
Qiang Xue committed
201
	 *  `array($token, $category, $time)`.
w  
Qiang Xue committed
202
	 */
w  
Qiang Xue committed
203
	public function getProfiling($categories = array(), $excludeCategories = array())
w  
Qiang Xue committed
204
	{
w  
Qiang Xue committed
205 206 207
		$timings = $this->calculateTimings();
		if (empty($categories) && empty($excludeCategories)) {
			return $timings;
w  
Qiang Xue committed
208
		}
w  
Qiang Xue committed
209 210 211 212 213

		foreach ($timings as $i => $timing) {
			$matched = empty($categories);
			foreach ($categories as $category) {
				$prefix = rtrim($category, '*');
Qiang Xue committed
214
				if (strpos($timing[1], $prefix) === 0 && ($timing[1] === $category || $prefix !== $category)) {
w  
Qiang Xue committed
215 216 217 218 219 220 221 222 223
					$matched = true;
					break;
				}
			}

			if ($matched) {
				foreach ($excludeCategories as $category) {
					$prefix = rtrim($category, '*');
					foreach ($timings as $i => $timing) {
Qiang Xue committed
224
						if (strpos($timing[1], $prefix) === 0 && ($timing[1] === $category || $prefix !== $category)) {
w  
Qiang Xue committed
225 226 227 228 229 230 231 232 233
							$matched = false;
							break;
						}
					}
				}
			}

			if (!$matched) {
				unset($timings[$i]);
w  
Qiang Xue committed
234 235
			}
		}
w  
Qiang Xue committed
236
		return array_values($timings);
w  
Qiang Xue committed
237 238 239 240
	}

	private function calculateTimings()
	{
w  
Qiang Xue committed
241
		$timings = array();
w  
Qiang Xue committed
242 243 244

		$stack = array();
		foreach ($this->messages as $log) {
Qiang Xue committed
245
			if ($log[1] === self::LEVEL_PROFILE_BEGIN) {
w  
Qiang Xue committed
246
				$stack[] = $log;
Qiang Xue committed
247 248
			} elseif ($log[1] === self::LEVEL_PROFILE_END) {
				list($token, $level, $category, $timestamp) = $log;
Qiang Xue committed
249 250 251 252
				if (($last = array_pop($stack)) !== null && $last[0] === $token) {
					$timings[] = array($token, $category, $timestamp - $last[3]);
				} else {
					throw new \yii\base\Exception("Unmatched profiling block: $token");
w  
Qiang Xue committed
253 254 255 256 257 258 259
				}
			}
		}

		$now = microtime(true);
		while (($last = array_pop($stack)) !== null) {
			$delta = $now - $last[3];
Qiang Xue committed
260
			$timings[] = array($last[0], $last[2], $delta);
w  
Qiang Xue committed
261 262
		}

w  
Qiang Xue committed
263
		return $timings;
w  
Qiang Xue committed
264 265 266
	}

}