forked from zendframework/zendframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogger.php
453 lines (410 loc) · 12.3 KB
/
Logger.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Log
*/
namespace Zend\Log;
use DateTime;
use Traversable;
use Zend\Stdlib\ArrayUtils;
use Zend\Stdlib\SplPriorityQueue;
/**
* Logging messages with a stack of backends
*
* @category Zend
* @package Zend_Log
*/
class Logger implements LoggerInterface
{
/**
* @const int defined from the BSD Syslog message severities
* @link http://tools.ietf.org/html/rfc3164
*/
const EMERG = 0;
const ALERT = 1;
const CRIT = 2;
const ERR = 3;
const WARN = 4;
const NOTICE = 5;
const INFO = 6;
const DEBUG = 7;
/**
* List of priority code => priority (short) name
*
* @var array
*/
protected $priorities = array(
self::EMERG => 'EMERG',
self::ALERT => 'ALERT',
self::CRIT => 'CRIT',
self::ERR => 'ERR',
self::WARN => 'WARN',
self::NOTICE => 'NOTICE',
self::INFO => 'INFO',
self::DEBUG => 'DEBUG',
);
/**
* Writers
*
* @var SplPriorityQueue
*/
protected $writers;
/**
* Writer plugins
*
* @var WriterPluginManager
*/
protected $writerPlugins;
/**
* Registered error handler
*
* @var boolean
*/
protected static $registeredErrorHandler = false;
/**
* Registered exception handler
*
* @var boolean
*/
protected static $registeredExceptionHandler = false;
/**
* Constructor
*
* @todo support configuration (writers, dateTimeFormat, and writer plugin manager)
* @return Logger
*/
public function __construct()
{
$this->writers = new SplPriorityQueue();
}
/**
* Shutdown all writers
*
* @return void
*/
public function __destruct()
{
foreach ($this->writers as $writer) {
try {
$writer->shutdown();
} catch (\Exception $e) {}
}
}
/**
* Get writer plugin manager
*
* @return WriterPluginManager
*/
public function getWriterPluginManager()
{
if (null === $this->writerPlugins) {
$this->setWriterPluginManager(new WriterPluginManager());
}
return $this->writerPlugins;
}
/**
* Set writer plugin manager
*
* @param string|WriterPluginManager $plugins
* @return Logger
* @throws Exception\InvalidArgumentException
*/
public function setWriterPluginManager($plugins)
{
if (is_string($plugins)) {
$plugins = new $plugins;
}
if (!$plugins instanceof WriterPluginManager) {
throw new Exception\InvalidArgumentException(sprintf(
'Writer plugin manager must extend %s\WriterPluginManager; received %s',
__NAMESPACE__,
is_object($plugins) ? get_class($plugins) : gettype($plugins)
));
}
$this->writerPlugins = $plugins;
return $this;
}
/**
* Get writer instance
*
* @param string $name
* @param array|null $options
* @return Writer\WriterInterface
*/
public function writerPlugin($name, array $options = null)
{
return $this->getWriterPluginManager()->get($name, $options);
}
/**
* Add a writer to a logger
*
* @param string|Writer\WriterInterface $writer
* @param int $priority
* @param array|null $options
* @return Logger
* @throws Exception\InvalidArgumentException
*/
public function addWriter($writer, $priority = 1, array $options = null)
{
if (is_string($writer)) {
$writer = $this->writerPlugin($writer, $options);
} elseif (!$writer instanceof Writer\WriterInterface) {
throw new Exception\InvalidArgumentException(sprintf(
'Writer must implement Zend\Log\Writer; received "%s"',
is_object($writer) ? get_class($writer) : gettype($writer)
));
}
$this->writers->insert($writer, $priority);
return $this;
}
/**
* Get writers
*
* @return SplPriorityQueue
*/
public function getWriters()
{
return $this->writers;
}
/**
* Set the writers
*
* @param SplPriorityQueue $writers
* @return Logger
* @throws Exception\InvalidArgumentException
*/
public function setWriters(SplPriorityQueue $writers)
{
foreach ($writers->toArray() as $writer) {
if (!$writer instanceof Writer\WriterInterface) {
throw new Exception\InvalidArgumentException('Writers must be a SplPriorityQueue of Zend\Log\Writer');
}
}
$this->writers = $writers;
return $this;
}
/**
* Add a message as a log entry
*
* @param int $priority
* @param mixed $message
* @param array|Traversable $extra
* @return Logger
* @throws Exception\InvalidArgumentException if message can't be cast to string
* @throws Exception\InvalidArgumentException if extra can't be iterated over
* @throws Exception\RuntimeException if no log writer specified
*/
public function log($priority, $message, $extra = array())
{
if (!is_int($priority) || ($priority<0) || ($priority>=count($this->priorities))) {
throw new Exception\InvalidArgumentException(sprintf(
'$priority must be an integer > 0 and < %d; received %s',
count($this->priorities),
var_export($priority, 1)
));
}
if (is_object($message) && !method_exists($message, '__toString')) {
throw new Exception\InvalidArgumentException(
'$message must implement magic __toString() method'
);
}
if (!is_array($extra) && !$extra instanceof Traversable) {
throw new Exception\InvalidArgumentException(
'$extra must be an array or implement Traversable'
);
} elseif ($extra instanceof Traversable) {
$extra = ArrayUtils::iteratorToArray($extra);
}
if ($this->writers->count() === 0) {
throw new Exception\RuntimeException('No log writer specified');
}
$timestamp = new DateTime();
if (is_array($message)) {
$message = var_export($message, true);
}
foreach ($this->writers->toArray() as $writer) {
$writer->write(array(
'timestamp' => $timestamp,
'priority' => (int) $priority,
'priorityName' => $this->priorities[$priority],
'message' => (string) $message,
'extra' => $extra
));
}
return $this;
}
/**
* @param string $message
* @param array|Traversable $extra
* @return Logger
*/
public function emerg($message, $extra = array())
{
return $this->log(self::EMERG, $message, $extra);
}
/**
* @param string $message
* @param array|Traversable $extra
* @return Logger
*/
public function alert($message, $extra = array())
{
return $this->log(self::ALERT, $message, $extra);
}
/**
* @param string $message
* @param array|Traversable $extra
* @return Logger
*/
public function crit($message, $extra = array())
{
return $this->log(self::CRIT, $message, $extra);
}
/**
* @param string $message
* @param array|Traversable $extra
* @return Logger
*/
public function err($message, $extra = array())
{
return $this->log(self::ERR, $message, $extra);
}
/**
* @param string $message
* @param array|Traversable $extra
* @return Logger
*/
public function warn($message, $extra = array())
{
return $this->log(self::WARN, $message, $extra);
}
/**
* @param string $message
* @param array|Traversable $extra
* @return Logger
*/
public function notice($message, $extra = array())
{
return $this->log(self::NOTICE, $message, $extra);
}
/**
* @param string $message
* @param array|Traversable $extra
* @return Logger
*/
public function info($message, $extra = array())
{
return $this->log(self::INFO, $message, $extra);
}
/**
* @param string $message
* @param array|Traversable $extra
* @return Logger
*/
public function debug($message, $extra = array())
{
return $this->log(self::DEBUG, $message, $extra);
}
/**
* Register logging system as an error handler to log PHP errors
*
* @link http://www.php.net/manual/en/function.set-error-handler.php
* @param Logger $logger
* @return bool
* @throws Exception\InvalidArgumentException if logger is null
*/
public static function registerErrorHandler(Logger $logger)
{
// Only register once per instance
if (static::$registeredErrorHandler) {
return false;
}
if ($logger === null) {
throw new Exception\InvalidArgumentException('Invalid Logger specified');
}
$errorHandlerMap = array(
E_NOTICE => self::NOTICE,
E_USER_NOTICE => self::NOTICE,
E_WARNING => self::WARN,
E_CORE_WARNING => self::WARN,
E_USER_WARNING => self::WARN,
E_ERROR => self::ERR,
E_USER_ERROR => self::ERR,
E_CORE_ERROR => self::ERR,
E_RECOVERABLE_ERROR => self::ERR,
E_STRICT => self::DEBUG,
E_DEPRECATED => self::DEBUG,
E_USER_DEPRECATED => self::DEBUG
);
set_error_handler(function($errno, $errstr, $errfile, $errline, $errcontext) use ($errorHandlerMap, $logger) {
$errorLevel = error_reporting();
if ($errorLevel & $errno) {
if (isset($errorHandlerMap[$errno])) {
$priority = $errorHandlerMap[$errno];
} else {
$priority = Logger::INFO;
}
$logger->log($priority, $errstr, array(
'errno' => $errno,
'file' => $errfile,
'line' => $errline,
'context' => $errcontext
));
}
});
static::$registeredErrorHandler = true;
return true;
}
/**
* Unregister error handler
*
*/
public static function unregisterErrorHandler()
{
restore_error_handler();
static::$registeredErrorHandler = false;
}
/**
* Register logging system as an exception handler to log PHP exceptions
*
* @link http://www.php.net/manual/en/function.set-exception-handler.php
* @param Logger $logger
* @return bool
* @throws Exception\InvalidArgumentException if logger is null
*/
public static function registerExceptionHandler(Logger $logger)
{
// Only register once per instance
if (static::$registeredExceptionHandler) {
return false;
}
if ($logger === null) {
throw new Exception\InvalidArgumentException('Invalid Logger specified');
}
set_exception_handler(function ($exception) use ($logger) {
$extra = array(
'file' => $exception->getFile(),
'line' => $exception->getLine(),
'trace' => $exception->getTrace()
);
if (isset($exception->xdebug_message)) {
$extra['xdebug'] = $exception->xdebug_message;
}
$logger->log(Logger::ERR, $exception->getMessage(), $extra);
});
static::$registeredExceptionHandler = true;
return true;
}
/**
* Unregister exception handler
*/
public static function unregisterExceptionHandler()
{
restore_exception_handler();
static::$registeredExceptionHandler = false;
}
}