friendica/src/Core/Logger/Util/Introspection.php

120 lines
3.2 KiB
PHP
Raw Normal View History

2019-01-24 08:13:44 +01:00
<?php
2020-02-09 15:45:36 +01:00
/**
2023-01-01 15:36:24 +01:00
* @copyright Copyright (C) 2010-2023, the Friendica project
2020-02-09 15:45:36 +01:00
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
2019-01-24 08:13:44 +01:00
2021-10-29 12:36:14 +02:00
namespace Friendica\Core\Logger\Util;
2019-01-24 08:13:44 +01:00
2022-12-25 19:19:06 +01:00
use Friendica\App\Request;
2023-07-23 03:21:41 +02:00
use Friendica\Core\Logger\Capability\IHaveCallIntrospections;
use Friendica\Core\System;
2019-01-24 08:13:44 +01:00
/**
* Get Introspection information about the current call
2019-01-24 08:13:44 +01:00
*/
class Introspection implements IHaveCallIntrospections
2019-01-24 08:13:44 +01:00
{
2022-12-25 19:19:06 +01:00
/** @var string */
private $requestId;
2021-10-29 12:36:14 +02:00
/** @var int */
2019-01-24 08:13:44 +01:00
private $skipStackFramesCount;
2021-10-29 12:36:14 +02:00
/** @var string[] */
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',
];
/**
2021-10-29 12:36:14 +02:00
* @param string[] $skipClassesPartials An array of classes to skip during logging
* @param int $skipStackFramesCount If the logger should use information from other hierarchy levels of the call
2019-01-24 08:13:44 +01:00
*/
2022-12-25 19:19:06 +01:00
public function __construct(Request $request, array $skipClassesPartials = [], int $skipStackFramesCount = 0)
2019-01-24 08:13:44 +01:00
{
2022-12-25 19:19:06 +01:00
$this->requestId = $request->getRequestId();
$this->skipClassesPartials = $skipClassesPartials;
2019-01-24 08:13:44 +01:00
$this->skipStackFramesCount = $skipStackFramesCount;
}
/**
* Adds new classes to get skipped
2021-10-29 12:36:14 +02:00
*
* @param array $classNames
*/
public function addClasses(array $classNames): void
2019-01-24 08:13:44 +01:00
{
$this->skipClassesPartials = array_merge($this->skipClassesPartials, $classNames);
2019-02-27 16:40:35 +01:00
}
/**
* Returns the introspection record of the current call
*
* @return array
*/
2021-10-29 12:36:14 +02:00
public function getRecord(): array
2019-02-27 16:40:35 +01:00
{
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
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 [
2022-12-25 19:19:06 +01:00
'file' => isset($trace[$i - 1]['file']) ? basename($trace[$i - 1]['file']) : null,
'line' => $trace[$i - 1]['line'] ?? null,
'function' => $trace[$i]['function'] ?? null,
'request-id' => $this->requestId,
'stack' => System::callstack(10, 4),
2019-02-27 16:40:35 +01:00
];
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 $traceItem The current trace item
2019-03-04 08:57:30 +01:00
*
2019-01-28 18:26:35 +01:00
* @return bool True if the class or function should get skipped, otherwise false
*/
private function isTraceClassOrSkippedFunction(array $traceItem): bool
2019-01-28 11:21:48 +01:00
{
if (!$traceItem) {
2019-01-28 11:21:48 +01:00
return false;
}
if (isset($traceItem['class'])) {
2019-01-28 18:26:35 +01:00
foreach ($this->skipClassesPartials as $part) {
if (strpos($traceItem['class'], $part) === 0) {
2019-01-28 18:26:35 +01:00
return true;
}
}
} elseif (in_array($traceItem['function'], $this->skipFunctions)) {
2019-01-28 18:26:35 +01:00
return true;
}
return false;
2019-01-28 11:21:48 +01:00
}
2019-01-24 08:13:44 +01:00
}