2013-01-25 18:22:46 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Name: rendertime
|
|
|
|
* Description: Shows the time that was needed to render the current page
|
|
|
|
* Version: 0.1
|
2018-04-01 05:43:49 -04:00
|
|
|
* Author: Michael Vogel <http://pirati.ca/profile/heluecht>
|
2013-01-25 18:22:46 -05:00
|
|
|
*
|
|
|
|
*/
|
2019-02-20 11:28:32 -05:00
|
|
|
|
2018-12-26 02:28:16 -05:00
|
|
|
use Friendica\Core\Hook;
|
2019-12-15 17:50:35 -05:00
|
|
|
use Friendica\DI;
|
2017-11-06 18:55:24 -05:00
|
|
|
|
2013-01-25 18:22:46 -05:00
|
|
|
function rendertime_install() {
|
2018-12-26 02:28:16 -05:00
|
|
|
Hook::register('page_end', 'addon/rendertime/rendertime.php', 'rendertime_page_end');
|
2013-01-25 18:22:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function rendertime_init_1(&$a) {
|
|
|
|
}
|
|
|
|
|
2019-02-20 11:12:40 -05:00
|
|
|
/**
|
|
|
|
* @param Friendica\App $a
|
|
|
|
* @param string $o
|
|
|
|
*/
|
2019-02-20 11:28:38 -05:00
|
|
|
function rendertime_page_end(Friendica\App $a, &$o)
|
2019-02-20 11:12:40 -05:00
|
|
|
{
|
2013-01-25 18:22:46 -05:00
|
|
|
|
2019-12-15 17:50:35 -05:00
|
|
|
$profiler = DI::profiler();
|
2019-02-20 11:12:40 -05:00
|
|
|
|
|
|
|
$duration = microtime(true) - $profiler->get('start');
|
2013-01-25 18:22:46 -05:00
|
|
|
|
2018-01-15 08:15:33 -05:00
|
|
|
$ignored_modules = ["fbrowser"];
|
2019-12-15 19:35:25 -05:00
|
|
|
$ignored = in_array(DI::module()->getName(), $ignored_modules);
|
2016-09-15 05:52:30 -04:00
|
|
|
|
2019-12-15 19:12:07 -05:00
|
|
|
if (is_site_admin() && (($_GET['mode'] ?? '') != 'minimal') && !DI::mode()->isMobile() && !DI::mode()->isMobile() && !$ignored) {
|
2016-01-17 08:56:05 -05:00
|
|
|
|
2020-01-18 14:52:33 -05:00
|
|
|
$o = $o . '<div class="renderinfo">' . DI::l10n()->t("Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s",
|
2019-02-20 11:12:40 -05:00
|
|
|
round($profiler->get('database') - $profiler->get('database_write'), 3),
|
|
|
|
round($profiler->get('database_write'), 3),
|
|
|
|
round($profiler->get('network'), 2),
|
|
|
|
round($profiler->get('rendering'), 2),
|
|
|
|
round($profiler->get('parser'), 2),
|
|
|
|
round($profiler->get('file'), 2),
|
|
|
|
round($duration - $profiler->get('database')
|
|
|
|
- $profiler->get('network') - $profiler->get('rendering')
|
|
|
|
- $profiler->get('parser') - $profiler->get('file'), 2),
|
|
|
|
round($duration, 2)
|
|
|
|
//round($profiler->get('markstart'), 3)
|
|
|
|
//round($profiler->get('plugin'), 3)
|
|
|
|
) . '</div>';
|
|
|
|
|
2020-12-09 17:10:44 -05:00
|
|
|
$total = microtime(true) - $profiler->get('start');
|
|
|
|
$rest = $total - ($profiler->get('ready') - $profiler->get('start')) - $profiler->get('init') - $profiler->get('content');
|
2020-12-09 19:03:00 -05:00
|
|
|
$o = $o . '<div class="renderinfo">' . DI::l10n()->t("Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s",
|
2020-12-09 17:10:44 -05:00
|
|
|
round($profiler->get('classinit') - $profiler->get('start'), 3),
|
2020-12-09 17:42:45 -05:00
|
|
|
round($profiler->get('ready') - $profiler->get('classinit'), 3),
|
2020-12-09 17:10:44 -05:00
|
|
|
round($profiler->get('init'), 3),
|
|
|
|
round($profiler->get('content'), 3),
|
|
|
|
round($rest, 3),
|
|
|
|
round($total, 3)
|
|
|
|
) . '</div>';
|
|
|
|
|
2019-02-20 11:20:16 -05:00
|
|
|
if ($profiler->isRendertime()) {
|
|
|
|
$o .= '<pre>';
|
2020-11-20 04:02:39 -05:00
|
|
|
$o .= $profiler->getRendertimeString(DI::config()->get('rendertime', 'minimal_time', 0));
|
2019-02-20 11:20:16 -05:00
|
|
|
$o .= '</pre>';
|
|
|
|
}
|
2016-01-17 08:56:05 -05:00
|
|
|
}
|
2013-01-25 18:22:46 -05:00
|
|
|
}
|