]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/Profiler.php
Make EMailer util dynamic
[friendica.git] / src / Util / Profiler.php
index 115e75f7ba6ce44f97962fed9717653f3b19e62a..c3fddfac70f4a3751d356ef2dca941b046c7c360 100644 (file)
@@ -2,6 +2,8 @@
 
 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 +13,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 +35,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 isRendertime()
+       {
+               return $this->rendertime;
+       }
+
+       /**
+        * Updates the enabling of the current profiler
+        *
+        * @param IConfig $config
         */
-       public function __construct($enabled = false, $renderTime = false)
+       public function update(IConfig $config)
        {
-               $this->enabled = $enabled;
-               $this->rendertime = $renderTime;
+               $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 +79,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 +229,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']);
+               }
        }
 
        /**