brainworxx/kreXX

View on GitHub
src/Analyse/Routing/Process/ProcessBacktrace.php

Summary

Maintainability
A
0 mins
Test Coverage
A
94%
<?php

/**
 * kreXX: Krumo eXXtended
 *
 * kreXX is a debugging tool, which displays structured information
 * about any PHP object. It is a nice replacement for print_r() or var_dump()
 * which are used by a lot of PHP developers.
 *
 * kreXX is a fork of Krumo, which was originally written by:
 * Kaloyan K. Tsvetkov <kaloyan@kaloyan.info>
 *
 * @author
 *   brainworXX GmbH <info@brainworxx.de>
 *
 * @license
 *   http://opensource.org/licenses/LGPL-2.1
 *
 *   GNU Lesser General Public License Version 2.1
 *
 *   kreXX Copyright (C) 2014-2024 Brainworxx GmbH
 *
 *   This library is free software; you can redistribute it and/or modify it
 *   under the terms of the GNU Lesser General Public License as published by
 *   the Free Software Foundation; either version 2.1 of the License, or (at
 *   your option) any later version.
 *   This library 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 Lesser General Public License
 *   for more details.
 *   You should have received a copy of the GNU Lesser General Public License
 *   along with this library; if not, write to the Free Software Foundation,
 *   Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

declare(strict_types=1);

namespace Brainworxx\Krexx\Analyse\Routing\Process;

use Brainworxx\Krexx\Analyse\Callback\AbstractCallback;
use Brainworxx\Krexx\Analyse\Callback\Analyse\BacktraceStep;
use Brainworxx\Krexx\Analyse\Callback\CallbackConstInterface;
use Brainworxx\Krexx\Analyse\Caller\BacktraceConstInterface;
use Brainworxx\Krexx\Analyse\Model;
use Brainworxx\Krexx\Service\Config\ConfigConstInterface;

/**
 * Processing of a backtrace. No abstract for you, because we are dealing with
 * an array here.
 */
class ProcessBacktrace extends AbstractCallback implements
    ProcessConstInterface,
    CallbackConstInterface,
    BacktraceConstInterface,
    ConfigConstInterface
{
    /**
     * Wrapper around the process method, so we can use this one as a callback.
     *
     * @return string
     *   The generated DOM.
     */
    public function callMe(): string
    {
        return $this->handle($this->parameters[static::PARAM_DATA]);
    }

    /**
     * Do a backtrace analysis.
     *
     * @param array|null $backtrace
     *   The backtrace, which may (or may not) come from other sources.
     *   If omitted, a new debug_backtrace() will be retrieved.
     *
     * @return string
     *   The rendered backtrace.
     */
    public function handle(?array &$backtrace = []): string
    {
        if (empty($backtrace)) {
            $backtrace = $this->getBacktrace();
        }

        if (empty($backtrace)) {
            // Not sure if this is possible.
            // But, there is no backtrace, which means there is nothing to analyse.
            return '';
        }

        $output = '';
        $maxStep = (int) $this->pool->config->getSetting(static::SETTING_MAX_STEP_NUMBER);
        $stepCount = count($backtrace);

        // Remove steps according to the configuration.
        if ($maxStep < $stepCount) {
            $this->pool->messages->addMessage('omittedBacktrace', [($maxStep + 1), $stepCount], true);
        } else {
            // We will not analyse more steps than we actually have.
            $maxStep = $stepCount;
        }

        for ($step = 1; $step <= $maxStep; ++$step) {
            $output .= $this->pool->render->renderExpandableChild(
                $this->pool->createClass(Model::class)
                    ->setName($step)
                    ->setType(static::TYPE_STACK_FRAME)
                    ->addParameter(static::PARAM_DATA, $this->filterFilePath($backtrace[$step - 1]))
                    ->injectCallback($this->pool->createClass(BacktraceStep::class))
            );
        }

        return $output;
    }

    /**
     * Filter the file path, for better readability.
     *
     * @param array $backtraceStep
     *   The backtrace step.
     *
     * @return array
     *   The same backtrace step., but with a filtered file path.
     */
    protected function filterFilePath(array $backtraceStep): array
    {
        if (isset($backtraceStep[static::TRACE_FILE])) {
            $backtraceStep[static::TRACE_ORG_FILE] = $backtraceStep[static::TRACE_FILE];
            $backtraceStep[static::TRACE_FILE] = $this->pool->fileService
                ->filterFilePath($backtraceStep[static::TRACE_FILE]);
        }

        return $backtraceStep;
    }

    /**
     * Get the backtrace, and remove all steps that were caused by kreXX.
     *
     * @return array
     *   The scrubbed backtrace.
     */
    protected function getBacktrace(): array
    {
        $backtrace = debug_backtrace();

        // We remove all steps that came from inside the kreXX lib.
        $krexxScr = KREXX_DIR . 'src';
        foreach ($backtrace as $key => $step) {
            if (isset($step[static::TRACE_FILE]) && strpos($step[static::TRACE_FILE], $krexxScr) !== false) {
                unset($backtrace[$key]);
            } else {
                // No need to go further, because we should have passed the
                // kreXX part.
                // Reset the array keys, because the 0 is now missing.
                return array_values($backtrace);
            }
        }

        // Fallback to an empty array.
        return [];
    }
}