X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FProfiler.php;h=24289678c266a41450b751fff3b6132ff8355cd7;hb=720a43461d67ab229de0aecfc5008f22cc4c1c54;hp=240273bde3ce319594cbe4c6a4adc7de6dcada33;hpb=01640a7045e146759bc936dd499ac27738b78940;p=friendica.git diff --git a/src/Util/Profiler.php b/src/Util/Profiler.php index 240273bde3..24289678c2 100644 --- a/src/Util/Profiler.php +++ b/src/Util/Profiler.php @@ -1,6 +1,6 @@ enabled = $config->get('system', 'profiler'); $this->rendertime = $config->get('rendertime', 'callstack'); } /** - * @param Cache $configCache The configuration cache + * @param \Friendica\Core\Config\ValueObject\Cache $configCache The configuration cache */ public function __construct(Cache $configCache) { @@ -84,13 +87,66 @@ class Profiler implements ContainerInterface $this->reset(); } + /** + * Start a profiler recording + * + * @param string $value + * @return void + */ + public function startRecording(string $value) + { + if (!$this->enabled) { + return; + } + + $this->timestamps[] = ['value' => $value, 'stamp' => microtime(true), 'credit' => 0]; + } + + /** + * Stop a profiler recording + * + * @param string $callstack + * @return void + */ + public function stopRecording(string $callstack = '') + { + if (!$this->enabled || empty($this->timestamps)) { + return; + } + + $timestamp = array_pop($this->timestamps); + + $duration = floatval(microtime(true) - $timestamp['stamp'] - $timestamp['credit']); + $value = $timestamp['value']; + + foreach ($this->timestamps as $key => $stamp) { + $this->timestamps[$key]['credit'] += $duration; + } + + $callstack = $callstack ?: System::callstack(4, $value == 'rendering' ? 0 : 1); + + if (!isset($this->performance[$value])) { + $this->performance[$value] = 0; + } + + $this->performance[$value] += (float) $duration; + $this->performance['marktime'] += (float) $duration; + + if (!isset($this->callstack[$value][$callstack])) { + // Prevent ugly E_NOTICE + $this->callstack[$value][$callstack] = 0; + } + + $this->callstack[$value][$callstack] += (float) $duration; + } + /** * Saves a timestamp for a value - f.e. a call * Necessary for profiling Friendica * - * @param int $timestamp the Timestamp - * @param string $value A value to profile - * @param string $callstack The callstack of the current profiling data + * @param int $timestamp the Timestamp + * @param string $value A value to profile + * @param string $callstack A callstack string, generated if absent */ public function saveTimestamp($timestamp, $value, $callstack = '') { @@ -98,6 +154,8 @@ class Profiler implements ContainerInterface return; } + $callstack = $callstack ?: System::callstack(4, 1); + $duration = floatval(microtime(true) - $timestamp); if (!isset($this->performance[$value])) { @@ -132,6 +190,7 @@ class Profiler implements ContainerInterface { $this->performance = []; $this->performance['start'] = microtime(true); + $this->performance['ready'] = 0; $this->performance['database'] = 0; $this->performance['database_write'] = 0; $this->performance['cache'] = 0; @@ -139,9 +198,13 @@ class Profiler implements ContainerInterface $this->performance['network'] = 0; $this->performance['file'] = 0; $this->performance['rendering'] = 0; - $this->performance['parser'] = 0; + $this->performance['session'] = 0; $this->performance['marktime'] = 0; $this->performance['marktime'] = microtime(true); + $this->performance['classcreate'] = 0; + $this->performance['classinit'] = 0; + $this->performance['init'] = 0; + $this->performance['content'] = 0; } /** @@ -157,15 +220,16 @@ class Profiler implements ContainerInterface $this->callstack['network'] = []; $this->callstack['file'] = []; $this->callstack['rendering'] = []; - $this->callstack['parser'] = []; + $this->callstack['session'] = []; } /** * Returns the rendertime string + * @param float $limit Minimal limit for displaying the execution duration * * @return string the rendertime */ - public function getRendertimeString() + public function getRendertimeString(float $limit = 0) { $output = ''; @@ -177,7 +241,7 @@ class Profiler implements ContainerInterface $output .= "\nDatabase Read:\n"; foreach ($this->callstack["database"] as $func => $time) { $time = round($time, 3); - if ($time > 0) { + if ($time > $limit) { $output .= $func . ": " . $time . "\n"; } } @@ -186,7 +250,7 @@ class Profiler implements ContainerInterface $output .= "\nDatabase Write:\n"; foreach ($this->callstack["database_write"] as $func => $time) { $time = round($time, 3); - if ($time > 0) { + if ($time > $limit) { $output .= $func . ": " . $time . "\n"; } } @@ -195,7 +259,7 @@ class Profiler implements ContainerInterface $output .= "\nCache Read:\n"; foreach ($this->callstack["cache"] as $func => $time) { $time = round($time, 3); - if ($time > 0) { + if ($time > $limit) { $output .= $func . ": " . $time . "\n"; } } @@ -204,7 +268,7 @@ class Profiler implements ContainerInterface $output .= "\nCache Write:\n"; foreach ($this->callstack["cache_write"] as $func => $time) { $time = round($time, 3); - if ($time > 0) { + if ($time > $limit) { $output .= $func . ": " . $time . "\n"; } } @@ -213,7 +277,17 @@ class Profiler implements ContainerInterface $output .= "\nNetwork:\n"; foreach ($this->callstack["network"] as $func => $time) { $time = round($time, 3); - if ($time > 0) { + if ($time > $limit) { + $output .= $func . ": " . $time . "\n"; + } + } + } + + if (isset($this->callstack["rendering"])) { + $output .= "\nRendering:\n"; + foreach ($this->callstack["rendering"] as $func => $time) { + $time = round($time, 3); + if ($time > $limit) { $output .= $func . ": " . $time . "\n"; } } @@ -273,6 +347,11 @@ class Profiler implements ContainerInterface } } + public function set($timestamp, $id) + { + $this->performance[$id] = $timestamp; + } + /** * Returns true if the container can return an entry for the given identifier. * Returns false otherwise.