X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FProfiler.php;h=240273bde3ce319594cbe4c6a4adc7de6dcada33;hb=05bd0d0b671ad509465fa6cddabc3c2a07c796a7;hp=115e75f7ba6ce44f97962fed9717653f3b19e62a;hpb=107293bd6173af37bcabb946b932169009ce84b9;p=friendica.git diff --git a/src/Util/Profiler.php b/src/Util/Profiler.php index 115e75f7ba..240273bde3 100644 --- a/src/Util/Profiler.php +++ b/src/Util/Profiler.php @@ -1,7 +1,28 @@ . + * + */ namespace Friendica\Util; +use Friendica\Core\Config\Cache; +use Friendica\Core\Config\IConfig; use Psr\Container\ContainerExceptionInterface; use Psr\Container\ContainerInterface; use Psr\Container\NotFoundExceptionInterface; @@ -11,7 +32,7 @@ use Psr\Log\LoggerInterface; * A class to store profiling data * It can handle different logging data for specific functions or global performance measures * - * It stores the data as log entries (@see LoggerInterface ) + * It stores the data as log entries (@see LoggerInterface) */ class Profiler implements ContainerInterface { @@ -33,13 +54,33 @@ class Profiler implements ContainerInterface private $rendertime; /** - * @param bool $enabled True, if the Profiler is enabled - * @param bool $renderTime True, if the Profiler should measure the whole rendertime including functions + * True, if the Profiler should measure the whole rendertime including functions + * + * @return bool */ - public function __construct($enabled = false, $renderTime = false) + public function isRendertime() { - $this->enabled = $enabled; - $this->rendertime = $renderTime; + return $this->rendertime; + } + + /** + * Updates the enabling of the current profiler + * + * @param IConfig $config + */ + public function update(IConfig $config) + { + $this->enabled = $config->get('system', 'profiler'); + $this->rendertime = $config->get('rendertime', 'callstack'); + } + + /** + * @param Cache $configCache The configuration cache + */ + public function __construct(Cache $configCache) + { + $this->enabled = $configCache->get('system', 'profiler'); + $this->rendertime = $configCache->get('rendertime', 'callstack'); $this->reset(); } @@ -57,7 +98,7 @@ class Profiler implements ContainerInterface return; } - $duration = (float) (microtime(true) - $timestamp); + $duration = floatval(microtime(true) - $timestamp); if (!isset($this->performance[$value])) { // Prevent ugly E_NOTICE @@ -207,8 +248,10 @@ class Profiler implements ContainerInterface ] ); - $output = $this->getRendertimeString(); - $logger->info($message . ": " . $output, ['action' => 'profiling']); + if ($this->isRendertime()) { + $output = $this->getRendertimeString(); + $logger->info($message . ": " . $output, ['action' => 'profiling']); + } } /**