Update copyright
[friendica.git/.git] / src / Util / Profiler.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
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['ready'] = 0;
139                 $this->performance['database'] = 0;
140                 $this->performance['database_write'] = 0;
141                 $this->performance['cache'] = 0;
142                 $this->performance['cache_write'] = 0;
143                 $this->performance['network'] = 0;
144                 $this->performance['file'] = 0;
145                 $this->performance['rendering'] = 0;
146                 $this->performance['parser'] = 0;
147                 $this->performance['marktime'] = 0;
148                 $this->performance['marktime'] = microtime(true);
149                 $this->performance['classcreate'] = 0;
150                 $this->performance['classinit'] = 0;
151                 $this->performance['init'] = 0;
152                 $this->performance['content'] = 0;
153         }
154
155         /**
156          * Resets the callstack profiling data
157          */
158         public function resetCallstack()
159         {
160                 $this->callstack = [];
161                 $this->callstack['database'] = [];
162                 $this->callstack['database_write'] = [];
163                 $this->callstack['cache'] = [];
164                 $this->callstack['cache_write'] = [];
165                 $this->callstack['network'] = [];
166                 $this->callstack['file'] = [];
167                 $this->callstack['rendering'] = [];
168                 $this->callstack['parser'] = [];
169         }
170
171         /**
172          * Returns the rendertime string
173          * @param float $limit Minimal limit for displaying the execution duration
174          *
175          * @return string the rendertime
176          */
177         public function getRendertimeString(float $limit = 0)
178         {
179                 $output = '';
180
181                 if (!$this->enabled || !$this->rendertime) {
182                         return $output;
183                 }
184
185                 if (isset($this->callstack["database"])) {
186                         $output .= "\nDatabase Read:\n";
187                         foreach ($this->callstack["database"] as $func => $time) {
188                                 $time = round($time, 3);
189                                 if ($time > $limit) {
190                                         $output .= $func . ": " . $time . "\n";
191                                 }
192                         }
193                 }
194                 if (isset($this->callstack["database_write"])) {
195                         $output .= "\nDatabase Write:\n";
196                         foreach ($this->callstack["database_write"] as $func => $time) {
197                                 $time = round($time, 3);
198                                 if ($time > $limit) {
199                                         $output .= $func . ": " . $time . "\n";
200                                 }
201                         }
202                 }
203                 if (isset($this->callstack["cache"])) {
204                         $output .= "\nCache Read:\n";
205                         foreach ($this->callstack["cache"] as $func => $time) {
206                                 $time = round($time, 3);
207                                 if ($time > $limit) {
208                                         $output .= $func . ": " . $time . "\n";
209                                 }
210                         }
211                 }
212                 if (isset($this->callstack["cache_write"])) {
213                         $output .= "\nCache Write:\n";
214                         foreach ($this->callstack["cache_write"] as $func => $time) {
215                                 $time = round($time, 3);
216                                 if ($time > $limit) {
217                                         $output .= $func . ": " . $time . "\n";
218                                 }
219                         }
220                 }
221                 if (isset($this->callstack["network"])) {
222                         $output .= "\nNetwork:\n";
223                         foreach ($this->callstack["network"] as $func => $time) {
224                                 $time = round($time, 3);
225                                 if ($time > $limit) {
226                                         $output .= $func . ": " . $time . "\n";
227                                 }
228                         }
229                 }
230
231                 return $output;
232         }
233
234         /**
235          * Save the current profiling data to a log entry
236          *
237          * @param LoggerInterface $logger  The logger to save the current log
238          * @param string          $message Additional message for the log
239          */
240         public function saveLog(LoggerInterface $logger, $message = '')
241         {
242                 $duration = microtime(true) - $this->get('start');
243                 $logger->info(
244                         $message,
245                         [
246                                 'action' => 'profiling',
247                                 'database_read' => round($this->get('database') - $this->get('database_write'), 3),
248                                 'database_write' => round($this->get('database_write'), 3),
249                                 'cache_read' => round($this->get('cache'), 3),
250                                 'cache_write' => round($this->get('cache_write'), 3),
251                                 'network_io' => round($this->get('network'), 2),
252                                 'file_io' => round($this->get('file'), 2),
253                                 'other_io' => round($duration - ($this->get('database')
254                                                 + $this->get('cache') + $this->get('cache_write')
255                                                 + $this->get('network') + $this->get('file')), 2),
256                                 'total' => round($duration, 2)
257                         ]
258                 );
259
260                 if ($this->isRendertime()) {
261                         $output = $this->getRendertimeString();
262                         $logger->info($message . ": " . $output, ['action' => 'profiling']);
263                 }
264         }
265
266         /**
267          * Finds an entry of the container by its identifier and returns it.
268          *
269          * @param string $id Identifier of the entry to look for.
270          *
271          * @throws NotFoundExceptionInterface  No entry was found for **this** identifier.
272          * @throws ContainerExceptionInterface Error while retrieving the entry.
273          *
274          * @return int Entry.
275          */
276         public function get($id)
277         {
278                 if (!$this->has($id)) {
279                         return 0;
280                 } else {
281                         return $this->performance[$id];
282                 }
283         }
284
285         public function set($timestamp, $id)
286         {
287                 $this->performance[$id] = $timestamp;
288         }
289
290         /**
291          * Returns true if the container can return an entry for the given identifier.
292          * Returns false otherwise.
293          *
294          * `has($id)` returning true does not mean that `get($id)` will not throw an exception.
295          * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
296          *
297          * @param string $id Identifier of the entry to look for.
298          *
299          * @return bool
300          */
301         public function has($id)
302         {
303                 return isset($this->performance[$id]);
304         }
305 }