]> git.mxchange.org Git - friendica-addons.git/blobdiff - rendertime/rendertime.php
Split and delete `ModuleController`
[friendica-addons.git] / rendertime / rendertime.php
old mode 100755 (executable)
new mode 100644 (file)
index b5e486c..7947668
@@ -1,44 +1,68 @@
 <?php
-
-
 /**
  * Name: rendertime
  * Description: Shows the time that was needed to render the current page
  * Version: 0.1
- * Author: Michael Vvogel <http://pirati.ca/profile/heluecht>
+ * Author: Michael Vogel <http://pirati.ca/profile/heluecht>
  *
  */
 
-function rendertime_install() {
-       register_hook('page_end', 'addon/rendertime/rendertime.php', 'rendertime_page_end');
-}
+use Friendica\Core\Hook;
+use Friendica\DI;
 
-
-function rendertime_uninstall() {
-       unregister_hook('init_1', 'addon/rendertime/rendertime.php', 'rendertime_init_1');
-       unregister_hook('page_end', 'addon/rendertime/rendertime.php', 'rendertime_page_end');
+function rendertime_install() {
+       Hook::register('page_end', 'addon/rendertime/rendertime.php', 'rendertime_page_end');
 }
 
 function rendertime_init_1(&$a) {
 }
 
-function rendertime_page_end(&$a, &$o) {
-
-       $duration = microtime(true)-$a->performance["start"];
-
-       if (is_site_admin() AND ($_GET["mode"] != "minimal") AND !$a->is_mobile AND !$a->is_tablet)
-               $o = $o.'<div class="renderinfo">'.sprintf(t("Performance: Database: %s, Network: %s, Rendering: %s, Parser: %s, I/O: %s, Other: %s, Total: %s"),
-                                               round($a->performance["database"], 3),
-                                               round($a->performance["network"], 3),
-                                               round($a->performance["rendering"], 3),
-                                               round($a->performance["parser"], 3),
-                                               round($a->performance["file"], 3),
-                                               round($duration - $a->performance["database"] - $a->performance["network"]
-                                                        - $a->performance["rendering"] - $a->performance["parser"]
-                                                        - $a->performance["file"], 3),
-                                               round($duration, 3)
-                                               //round($a->performance["markstart"], 3)
-                                               //round($a->performance["plugin"], 3)
-                                               )."</div>";
+/**
+ * @param Friendica\App $a
+ * @param string $o
+ */
+function rendertime_page_end(Friendica\App $a, &$o)
+{
+
+       $profiler = DI::profiler();
+
+       $duration = microtime(true) - $profiler->get('start');
+
+       $ignored_modules = ["fbrowser"];
+       $ignored = in_array(DI::args()->getModuleName(), $ignored_modules);
+
+       if ($a->isSiteAdmin() && (($_GET['mode'] ?? '') != 'minimal') && !DI::mode()->isMobile() && !DI::mode()->isMobile() && !$ignored) {
+
+               $o = $o . '<div class="renderinfo">' . DI::l10n()->t("Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s",
+                               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('session'), 2),
+                               round($profiler->get('file'), 2),
+                               round($duration - $profiler->get('database')
+                                       - $profiler->get('network') - $profiler->get('rendering')
+                                       - $profiler->get('session') - $profiler->get('file'), 2),
+                               round($duration, 2)
+                       //round($profiler->get('markstart'), 3)
+                       //round($profiler->get('plugin'), 3)
+                       ) . '</div>';
+
+                       $total = microtime(true) - $profiler->get('start');
+                       $rest = $total - ($profiler->get('ready') - $profiler->get('start')) - $profiler->get('init') - $profiler->get('content');
+                       $o = $o . '<div class="renderinfo">' . DI::l10n()->t("Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s",
+                               round($profiler->get('classinit') - $profiler->get('start'), 3),
+                               round($profiler->get('ready') - $profiler->get('classinit'), 3),
+                               round($profiler->get('init'), 3),
+                               round($profiler->get('content'), 3),
+                               round($rest, 3),
+                               round($total, 3)
+                               ) . '</div>';
 
+               if ($profiler->isRendertime()) {
+                       $o .= '<pre>';
+                       $o .= $profiler->getRendertimeString(DI::config()->get('rendertime', 'minimal_time', 0));
+                       $o .= '</pre>';
+               }
+       }
 }