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