]> git.mxchange.org Git - friendica.git/blob - src/Util/Profiler.php
Merge branch 'develop' of https://github.com/friendica/friendica into develop
[friendica.git] / src / Util / Profiler.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Util;
23
24 use Friendica\Core\Config\Cache;
25 use Friendica\Core\Config\IConfig;
26 use Friendica\Core\System;
27 use Psr\Container\ContainerExceptionInterface;
28 use Psr\Container\ContainerInterface;
29 use Psr\Container\NotFoundExceptionInterface;
30 use Psr\Log\LoggerInterface;
31
32 /**
33  * A class to store profiling data
34  * It can handle different logging data for specific functions or global performance measures
35  *
36  * It stores the data as log entries (@see LoggerInterface)
37  */
38 class Profiler implements ContainerInterface
39 {
40         /**
41          * @var array The global performance array
42          */
43         private $performance;
44         /**
45          * @var array The function specific callstack
46          */
47         private $callstack;
48         /**
49          * @var bool True, if the Profiler is enabled
50          */
51         private $enabled;
52         /**
53          * @var bool True, if the Profiler should measure the whole rendertime including functions
54          */
55         private $rendertime;
56
57         /**
58          * True, if the Profiler should measure the whole rendertime including functions
59          *
60          * @return bool
61          */
62         public function isRendertime()
63         {
64                 return $this->rendertime;
65         }
66
67         /**
68          * Updates the enabling of the current profiler
69          *
70          * @param IConfig $config
71          */
72         public function update(IConfig $config)
73         {
74                 $this->enabled = $config->get('system', 'profiler');
75                 $this->rendertime = $config->get('rendertime', 'callstack');
76         }
77
78         /**
79          * @param Cache $configCache The configuration cache
80          */
81         public function __construct(Cache $configCache)
82         {
83                 $this->enabled = $configCache->get('system', 'profiler');
84                 $this->rendertime = $configCache->get('rendertime', 'callstack');
85                 $this->reset();
86         }
87
88         /**
89          * Saves a timestamp for a value - f.e. a call
90          * Necessary for profiling Friendica
91          *
92          * @param int    $timestamp the Timestamp
93          * @param string $value     A value to profile
94          * @param string $callstack A callstack string, generated if absent
95          */
96         public function saveTimestamp($timestamp, $value, $callstack = '')
97         {
98                 if (!$this->enabled) {
99                         return;
100                 }
101
102                 $callstack = $callstack ?: System::callstack(4, 1);
103
104                 $duration = floatval(microtime(true) - $timestamp);
105
106                 if (!isset($this->performance[$value])) {
107                         // Prevent ugly E_NOTICE
108                         $this->performance[$value] = 0;
109                 }
110
111                 $this->performance[$value] += (float) $duration;
112                 $this->performance['marktime'] += (float) $duration;
113
114                 if (!isset($this->callstack[$value][$callstack])) {
115                         // Prevent ugly E_NOTICE
116                         $this->callstack[$value][$callstack] = 0;
117                 }
118
119                 $this->callstack[$value][$callstack] += (float) $duration;
120         }
121
122         /**
123          * Resets the performance and callstack profiling
124          */
125         public function reset()
126         {
127                 $this->resetPerformance();
128                 $this->resetCallstack();
129         }
130
131         /**
132          * Resets the performance profiling data
133          */
134         public function resetPerformance()
135         {
136                 $this->performance = [];
137                 $this->performance['start'] = microtime(true);
138                 $this->performance['database'] = 0;
139                 $this->performance['database_write'] = 0;
140                 $this->performance['cache'] = 0;
141                 $this->performance['cache_write'] = 0;
142                 $this->performance['network'] = 0;
143                 $this->performance['file'] = 0;
144                 $this->performance['rendering'] = 0;
145                 $this->performance['parser'] = 0;
146                 $this->performance['marktime'] = 0;
147                 $this->performance['marktime'] = microtime(true);
148         }
149
150         /**
151          * Resets the callstack profiling data
152          */
153         public function resetCallstack()
154         {
155                 $this->callstack = [];
156                 $this->callstack['database'] = [];
157                 $this->callstack['database_write'] = [];
158                 $this->callstack['cache'] = [];
159                 $this->callstack['cache_write'] = [];
160                 $this->callstack['network'] = [];
161                 $this->callstack['file'] = [];
162                 $this->callstack['rendering'] = [];
163                 $this->callstack['parser'] = [];
164         }
165
166         /**
167          * Returns the rendertime string
168          *
169          * @return string the rendertime
170          */
171         public function getRendertimeString()
172         {
173                 $output = '';
174
175                 if (!$this->enabled || !$this->rendertime) {
176                         return $output;
177                 }
178
179                 if (isset($this->callstack["database"])) {
180                         $output .= "\nDatabase Read:\n";
181                         foreach ($this->callstack["database"] as $func => $time) {
182                                 $time = round($time, 3);
183                                 if ($time > 0) {
184                                         $output .= $func . ": " . $time . "\n";
185                                 }
186                         }
187                 }
188                 if (isset($this->callstack["database_write"])) {
189                         $output .= "\nDatabase Write:\n";
190                         foreach ($this->callstack["database_write"] as $func => $time) {
191                                 $time = round($time, 3);
192                                 if ($time > 0) {
193                                         $output .= $func . ": " . $time . "\n";
194                                 }
195                         }
196                 }
197                 if (isset($this->callstack["cache"])) {
198                         $output .= "\nCache Read:\n";
199                         foreach ($this->callstack["cache"] as $func => $time) {
200                                 $time = round($time, 3);
201                                 if ($time > 0) {
202                                         $output .= $func . ": " . $time . "\n";
203                                 }
204                         }
205                 }
206                 if (isset($this->callstack["cache_write"])) {
207                         $output .= "\nCache Write:\n";
208                         foreach ($this->callstack["cache_write"] as $func => $time) {
209                                 $time = round($time, 3);
210                                 if ($time > 0) {
211                                         $output .= $func . ": " . $time . "\n";
212                                 }
213                         }
214                 }
215                 if (isset($this->callstack["network"])) {
216                         $output .= "\nNetwork:\n";
217                         foreach ($this->callstack["network"] as $func => $time) {
218                                 $time = round($time, 3);
219                                 if ($time > 0) {
220                                         $output .= $func . ": " . $time . "\n";
221                                 }
222                         }
223                 }
224
225                 return $output;
226         }
227
228         /**
229          * Save the current profiling data to a log entry
230          *
231          * @param LoggerInterface $logger  The logger to save the current log
232          * @param string          $message Additional message for the log
233          */
234         public function saveLog(LoggerInterface $logger, $message = '')
235         {
236                 $duration = microtime(true) - $this->get('start');
237                 $logger->info(
238                         $message,
239                         [
240                                 'action' => 'profiling',
241                                 'database_read' => round($this->get('database') - $this->get('database_write'), 3),
242                                 'database_write' => round($this->get('database_write'), 3),
243                                 'cache_read' => round($this->get('cache'), 3),
244                                 'cache_write' => round($this->get('cache_write'), 3),
245                                 'network_io' => round($this->get('network'), 2),
246                                 'file_io' => round($this->get('file'), 2),
247                                 'other_io' => round($duration - ($this->get('database')
248                                                 + $this->get('cache') + $this->get('cache_write')
249                                                 + $this->get('network') + $this->get('file')), 2),
250                                 'total' => round($duration, 2)
251                         ]
252                 );
253
254                 if ($this->isRendertime()) {
255                         $output = $this->getRendertimeString();
256                         $logger->info($message . ": " . $output, ['action' => 'profiling']);
257                 }
258         }
259
260         /**
261          * Finds an entry of the container by its identifier and returns it.
262          *
263          * @param string $id Identifier of the entry to look for.
264          *
265          * @throws NotFoundExceptionInterface  No entry was found for **this** identifier.
266          * @throws ContainerExceptionInterface Error while retrieving the entry.
267          *
268          * @return int Entry.
269          */
270         public function get($id)
271         {
272                 if (!$this->has($id)) {
273                         return 0;
274                 } else {
275                         return $this->performance[$id];
276                 }
277         }
278
279         /**
280          * Returns true if the container can return an entry for the given identifier.
281          * Returns false otherwise.
282          *
283          * `has($id)` returning true does not mean that `get($id)` will not throw an exception.
284          * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
285          *
286          * @param string $id Identifier of the entry to look for.
287          *
288          * @return bool
289          */
290         public function has($id)
291         {
292                 return isset($this->performance[$id]);
293         }
294 }