friendica/src/Util/Logger/Introspection.php

104 lines
2.6 KiB
PHP
Raw Normal View History

2019-01-24 08:13:44 +01:00
<?php
namespace Friendica\Util\Logger;
use Monolog\Logger;
use Monolog\Processor\ProcessorInterface;
/**
* Injects line/file//function where the log message came from
*
* Based on the class IntrospectionProcessor without the "class" information
* @see IntrospectionProcessor
*/
2019-02-27 16:40:35 +01:00
class Introspection implements ProcessorInterface
2019-01-24 08:13:44 +01:00
{
private $level;
private $skipStackFramesCount;
2019-01-28 11:21:48 +01:00
private $skipClassesPartials;
2019-01-24 08:13:44 +01:00
private $skipFunctions = [
'call_user_func',
'call_user_func_array',
];
/**
* @param string|int $level The minimum logging level at which this Processor will be triggered
2019-01-28 11:21:48 +01:00
* @param array $skipClassesPartials An array of classes to skip during logging
2019-01-24 08:13:44 +01:00
* @param int $skipStackFramesCount If the logger should use information from other hierarchy levels of the call
*/
2019-01-28 11:35:08 +01:00
public function __construct($level = Logger::DEBUG, $skipClassesPartials = array(), $skipStackFramesCount = 0)
2019-01-24 08:13:44 +01:00
{
$this->level = Logger::toMonologLevel($level);
2019-01-28 11:21:48 +01:00
$this->skipClassesPartials = array_merge(array('Monolog\\'), $skipClassesPartials);
2019-01-24 08:13:44 +01:00
$this->skipStackFramesCount = $skipStackFramesCount;
}
public function __invoke(array $record)
{
// return if the level is not high enough
if ($record['level'] < $this->level) {
return $record;
}
2019-02-27 16:40:35 +01:00
// we should have the call source now
$record['extra'] = array_merge(
$record['extra'],
$this->getRecord()
);
2019-01-24 08:13:44 +01:00
2019-02-27 16:40:35 +01:00
return $record;
}
/**
* Returns the introspection record of the current call
*
* @return array
*/
public function getRecord()
{
2019-01-24 08:13:44 +01:00
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
$i = 1;
2019-01-24 08:13:44 +01:00
2019-01-28 11:21:48 +01:00
while ($this->isTraceClassOrSkippedFunction($trace, $i)) {
2019-01-28 18:26:35 +01:00
$i++;
2019-01-24 08:13:44 +01:00
}
2019-01-28 11:21:48 +01:00
$i += $this->skipStackFramesCount;
2019-02-27 16:40:35 +01:00
return [
2019-02-27 17:29:32 +01:00
'file' => isset($trace[$i - 1]['file']) ? basename($trace[$i - 1]['file']) : null,
'line' => isset($trace[$i - 1]['line']) ? $trace[$i - 1]['line'] : null,
2019-02-27 16:40:35 +01:00
'function' => isset($trace[$i]['function']) ? $trace[$i]['function'] : null,
];
2019-01-24 08:13:44 +01:00
}
2019-01-28 11:21:48 +01:00
2019-01-28 18:26:35 +01:00
/**
* Checks if the current trace class or function has to be skipped
*
* @param array $trace The current trace array
* @param int $index The index of the current hierarchy level
* @return bool True if the class or function should get skipped, otherwise false
*/
2019-01-28 11:21:48 +01:00
private function isTraceClassOrSkippedFunction(array $trace, $index)
{
if (!isset($trace[$index])) {
return false;
}
2019-01-28 18:26:35 +01:00
if (isset($trace[$index]['class'])) {
foreach ($this->skipClassesPartials as $part) {
if (strpos($trace[$index]['class'], $part) !== false) {
return true;
}
}
} elseif (in_array($trace[$index]['function'], $this->skipFunctions)) {
return true;
}
return false;
2019-01-28 11:21:48 +01:00
}
2019-01-24 08:13:44 +01:00
}