TYPO3 CMS  TYPO3_8-7
TimeTracker.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
20 
27 {
32  protected $isEnabled = false;
33 
39  public $starttime = 0;
40 
47  public $LR = 1;
48 
52  public $printConf = [
53  'showParentKeys' => 1,
54  'contentLength' => 10000,
55  // Determines max length of displayed content before it gets cropped.
56  'contentLength_FILE' => 400,
57  // Determines max length of displayed content FROM FILE cObjects before it gets cropped. Reason is that most FILE cObjects are huge and often used as template-code.
58  'flag_tree' => 1,
59  'flag_messages' => 1,
60  'flag_content' => 0,
61  'allTime' => 0,
62  'keyLgd' => 40
63  ];
64 
68  public $wrapError = [
69  0 => ['', ''],
70  1 => ['<strong>', '</strong>'],
71  2 => ['<strong style="color:#ff6600;">', '</strong>'],
72  3 => ['<strong style="color:#ff0000;">', '</strong>']
73  ];
74 
78  public $wrapIcon = [
79  0 => '',
80  1 => 'actions-document-info',
81  2 => 'status-dialog-warning',
82  3 => 'status-dialog-error'
83  ];
84 
88  public $uniqueCounter = 0;
89 
93  public $tsStack = [[]];
94 
98  public $tsStackLevel = 0;
99 
103  public $tsStackLevelMax = [];
104 
108  public $tsStackLog = [];
109 
113  public $tsStackPointer = 0;
114 
118  public $currentHashPointer = [];
119 
126 
127  /*******************************************
128  *
129  * Logging parsing times in the scripts
130  *
131  *******************************************/
132 
138  public function __construct($isEnabled = true)
139  {
140  $this->isEnabled = $isEnabled;
141  }
142 
146  public function start()
147  {
148  if (!$this->isEnabled) {
149  return;
150  }
151  $this->starttime = $this->getMilliseconds();
152  }
153 
161  public function push($tslabel, $value = '')
162  {
163  if (!$this->isEnabled) {
164  return;
165  }
166  $this->tsStack[$this->tsStackPointer][] = $tslabel;
167  $this->currentHashPointer[] = 'timetracker_' . $this->uniqueCounter++;
168  $this->tsStackLevel++;
169  $this->tsStackLevelMax[] = $this->tsStackLevel;
170  // setTSlog
171  $k = end($this->currentHashPointer);
172  $this->tsStackLog[$k] = [
173  'level' => $this->tsStackLevel,
174  'tsStack' => $this->tsStack,
175  'value' => $value,
176  'starttime' => microtime(true),
177  'stackPointer' => $this->tsStackPointer
178  ];
179  }
180 
187  public function pull($content = '')
188  {
189  if (!$this->isEnabled) {
190  return;
191  }
192  $k = end($this->currentHashPointer);
193  $this->tsStackLog[$k]['endtime'] = microtime(true);
194  $this->tsStackLog[$k]['content'] = $content;
195  $this->tsStackLevel--;
196  array_pop($this->tsStack[$this->tsStackPointer]);
197  array_pop($this->currentHashPointer);
198  }
199 
207  public function setTSlogMessage($content, $num = 0)
208  {
209  if (!$this->isEnabled) {
210  return;
211  }
212  end($this->currentHashPointer);
213  $k = current($this->currentHashPointer);
214  $placeholder = '';
215  // Enlarge the "details" column by adding a span
216  if (strlen($content) > 30) {
217  $placeholder = '<br /><span style="width: 300px; height: 1px; display: inline-block;"></span>';
218  }
219  $iconFactory = GeneralUtility::makeInstance(IconFactory::class);
220  $this->tsStackLog[$k]['message'][] = $iconFactory->getIcon($this->wrapIcon[$num], Icon::SIZE_SMALL)->render() . $this->wrapError[$num][0] . htmlspecialchars($content) . $this->wrapError[$num][1] . $placeholder;
221  }
222 
229  public function setTSselectQuery(array $data, $msg = '')
230  {
231  if (!$this->isEnabled) {
232  return;
233  }
234  end($this->currentHashPointer);
235  $k = current($this->currentHashPointer);
236  if ($msg !== '') {
237  $data['msg'] = $msg;
238  }
239  $this->tsStackLog[$k]['selectQuery'][] = $data;
240  }
241 
247  public function incStackPointer()
248  {
249  if (!$this->isEnabled) {
250  return;
251  }
252  $this->tsStackPointer++;
253  $this->tsStack[$this->tsStackPointer] = [];
254  }
255 
261  public function decStackPointer()
262  {
263  if (!$this->isEnabled) {
264  return;
265  }
266  unset($this->tsStack[$this->tsStackPointer]);
267  $this->tsStackPointer--;
268  }
269 
276  public function getMilliseconds($microtime = null)
277  {
278  if (!$this->isEnabled) {
279  return 0;
280  }
281  if (!isset($microtime)) {
282  $microtime = microtime(true);
283  }
284  return round($microtime * 1000);
285  }
286 
293  public function getDifferenceToStarttime($microtime = null)
294  {
295  return $this->getMilliseconds($microtime) - $this->starttime;
296  }
297 
303  public function getParseTime(): int
304  {
305  // Compensates for the time consumed with Back end user initialization.
306  $processStart = $this->getMilliseconds($GLOBALS['TYPO3_MISC']['microtime_start'] ?? null);
307 
308  $beUserInitializationStart = $this->getMilliseconds($GLOBALS['TYPO3_MISC']['microtime_BE_USER_start'] ?? null);
309  $beUserInitializationEnd = $this->getMilliseconds($GLOBALS['TYPO3_MISC']['microtime_BE_USER_end'] ?? null);
310  $beUserInitialization = $beUserInitializationEnd - $beUserInitializationStart;
311 
312  $processEnd = $this->getMilliseconds($GLOBALS['TYPO3_MISC']['microtime_end'] ?? null);
313  $totalParseTime = $processEnd - $processStart;
314 
315  if ($beUserInitialization > 0) {
316  $totalParseTime -= $beUserInitialization;
317  }
318 
319  return $totalParseTime;
320  }
321 
322  /*******************************************
323  *
324  * Printing the parsing time information (for Admin Panel)
325  *
326  *******************************************/
332  public function printTSlog()
333  {
334  if (!$this->isEnabled) {
335  return '';
336  }
337  // Calculate times and keys for the tsStackLog
338  foreach ($this->tsStackLog as $uniqueId => &$data) {
339  $data['endtime'] = $this->getDifferenceToStarttime($data['endtime']);
340  $data['starttime'] = $this->getDifferenceToStarttime($data['starttime']);
341  $data['deltatime'] = $data['endtime'] - $data['starttime'];
342  if (is_array($data['tsStack'])) {
343  $data['key'] = implode($data['stackPointer'] ? '.' : '/', end($data['tsStack']));
344  }
345  }
346  unset($data);
347  // Create hierarchical array of keys pointing to the stack
348  $arr = [];
349  foreach ($this->tsStackLog as $uniqueId => $data) {
350  $this->createHierarchyArray($arr, $data['level'], $uniqueId);
351  }
352  // Parsing the registeret content and create icon-html for the tree
353  $this->tsStackLog[$arr['0.'][0]]['content'] = $this->fixContent($arr['0.'], $this->tsStackLog[$arr['0.'][0]]['content'], '', 0, $arr['0.'][0]);
354  // Displaying the tree:
355  $outputArr = [];
356  $outputArr[] = $this->fw('TypoScript Key');
357  $outputArr[] = $this->fw('Value');
358  if ($this->printConf['allTime']) {
359  $outputArr[] = $this->fw('Time');
360  $outputArr[] = $this->fw('Own');
361  $outputArr[] = $this->fw('Sub');
362  $outputArr[] = $this->fw('Total');
363  } else {
364  $outputArr[] = $this->fw('Own');
365  }
366  $outputArr[] = $this->fw('Details');
367  $out = '';
368  foreach ($outputArr as $row) {
369  $out .= '<th>' . $row . '</th>';
370  }
371  $out = '<thead><tr>' . $out . '</tr></thead>';
372  $flag_tree = $this->printConf['flag_tree'];
373  $flag_messages = $this->printConf['flag_messages'];
374  $flag_content = $this->printConf['flag_content'];
375  $keyLgd = $this->printConf['keyLgd'];
376  $c = 0;
377  foreach ($this->tsStackLog as $uniqueId => $data) {
378  if ($this->highlightLongerThan && (int)$data['owntime'] > (int)$this->highlightLongerThan) {
379  $logRowClass = 'typo3-adminPanel-logRow-highlight';
380  } else {
381  $logRowClass = $c % 2 ? 'line-odd' : 'line-even';
382  }
383  $item = '';
384  // If first...
385  if (!$c) {
386  $data['icons'] = '';
387  $data['key'] = 'Script Start';
388  $data['value'] = '';
389  }
390  // Key label:
391  $keyLabel = '';
392  if (!$flag_tree && $data['stackPointer']) {
393  $temp = [];
394  foreach ($data['tsStack'] as $k => $v) {
395  $temp[] = GeneralUtility::fixed_lgd_cs(implode($k ? '.' : '/', $v), -$keyLgd);
396  }
397  array_pop($temp);
398  $temp = array_reverse($temp);
399  array_pop($temp);
400  if (!empty($temp)) {
401  $keyLabel = '<br /><span style="color:#999999;">' . implode('<br />', $temp) . '</span>';
402  }
403  }
404  if ($flag_tree) {
405  $tmp = GeneralUtility::trimExplode('.', $data['key'], true);
406  $theLabel = end($tmp);
407  } else {
408  $theLabel = $data['key'];
409  }
410  $theLabel = GeneralUtility::fixed_lgd_cs($theLabel, -$keyLgd);
411  $theLabel = $data['stackPointer'] ? '<span class="stackPointer">' . $theLabel . '</span>' : $theLabel;
412  $keyLabel = $theLabel . $keyLabel;
413  $item .= '<td class="typo3-adminPanel-table-cell-nowrap ' . $logRowClass . '">' . ($flag_tree ? $data['icons'] : '') . $this->fw($keyLabel) . '</td>';
414  // Key value:
415  $keyValue = $data['value'];
416  $item .= '<td class="' . $logRowClass . ' typo3-adminPanel-tsLogTime">' . $this->fw(htmlspecialchars($keyValue)) . '</td>';
417  if ($this->printConf['allTime']) {
418  $item .= '<td class="' . $logRowClass . ' typo3-adminPanel-tsLogTime"> ' . $this->fw($data['starttime']) . '</td>';
419  $item .= '<td class="' . $logRowClass . ' typo3-adminPanel-tsLogTime"> ' . $this->fw($data['owntime']) . '</td>';
420  $item .= '<td class="' . $logRowClass . ' typo3-adminPanel-tsLogTime"> ' . $this->fw(($data['subtime'] ? '+' . $data['subtime'] : '')) . '</td>';
421  $item .= '<td class="' . $logRowClass . ' typo3-adminPanel-tsLogTime"> ' . $this->fw(($data['subtime'] ? '=' . $data['deltatime'] : '')) . '</td>';
422  } else {
423  $item .= '<td class="' . $logRowClass . ' typo3-adminPanel-tsLogTime"> ' . $this->fw($data['owntime']) . '</td>';
424  }
425  // Messages:
426  $msgArr = [];
427  $msg = '';
428  if ($flag_messages && is_array($data['message'])) {
429  foreach ($data['message'] as $v) {
430  $msgArr[] = nl2br($v);
431  }
432  }
433  if ($flag_content && (string)$data['content'] !== '') {
434  $maxlen = 120;
435  // Break lines which are too longer than $maxlen chars (can happen if content contains long paths...)
436  if (preg_match_all('/(\\S{' . $maxlen . ',})/', $data['content'], $reg)) {
437  foreach ($reg[1] as $key => $match) {
438  $match = preg_replace('/(.{' . $maxlen . '})/', '$1 ', $match);
439  $data['content'] = str_replace($reg[0][$key], $match, $data['content']);
440  }
441  }
442  $msgArr[] = nl2br($data['content']);
443  }
444  if (!empty($msgArr)) {
445  $msg = implode('<hr />', $msgArr);
446  }
447  $item .= '<td class="typo3-adminPanel-table-cell-content">' . $this->fw($msg) . '</td>';
448  $out .= '<tr>' . $item . '</tr>';
449  $c++;
450  }
451  $out = '<div class="typo3-adminPanel-table-overflow"><table class="typo3-adminPanel-table">' . $out . '</table></div>';
452  return $out;
453  }
454 
465  protected function fixContent(&$arr, $content, $depthData = '', $first = 0, $vKey = '')
466  {
467  $ac = 0;
468  $c = 0;
469  // First, find number of entries
470  foreach ($arr as $k => $v) {
471  if (\TYPO3\CMS\Core\Utility\MathUtility::canBeInterpretedAsInteger($k)) {
472  $ac++;
473  }
474  }
475  // Traverse through entries
476  $subtime = 0;
477  foreach ($arr as $k => $v) {
478  if (\TYPO3\CMS\Core\Utility\MathUtility::canBeInterpretedAsInteger($k)) {
479  $c++;
480  $deeper = is_array($arr[$k . '.']) ? 1 : 0;
481  $LN = $ac == $c ? 'blank' : 'line';
482 
483  $BTM = $ac == $c ? 'bottom' : '';
484  $PM = is_array($arr[$k . '.']) ? '<i class="fa fa-' . ($deeper ? 'minus' : 'plus') . '-square-o"></i>' : '<span class="treeline-icon treeline-icon-join' . ($BTM ? 'bottom' : '') . '"></span>';
485 
486  $this->tsStackLog[$v]['icons'] = $depthData . ($first ? '' : $PM);
487  if ($this->tsStackLog[$v]['content'] !== '') {
488  $content = str_replace($this->tsStackLog[$v]['content'], $v, $content);
489  }
490  if (is_array($arr[$k . '.'])) {
491  $this->tsStackLog[$v]['content'] = $this->fixContent($arr[$k . '.'], $this->tsStackLog[$v]['content'], $depthData . ($first ? '' : '<span class="treeline-icon treeline-icon-' . $LN . '"></span>'), 0, $v);
492  } else {
493  $this->tsStackLog[$v]['content'] = $this->fixCLen($this->tsStackLog[$v]['content'], $this->tsStackLog[$v]['value']);
494  $this->tsStackLog[$v]['subtime'] = '';
495  $this->tsStackLog[$v]['owntime'] = $this->tsStackLog[$v]['deltatime'];
496  }
497  $subtime += $this->tsStackLog[$v]['deltatime'];
498  }
499  }
500  // Set content with special chars
501  if (isset($this->tsStackLog[$vKey])) {
502  $this->tsStackLog[$vKey]['subtime'] = $subtime;
503  $this->tsStackLog[$vKey]['owntime'] = $this->tsStackLog[$vKey]['deltatime'] - $subtime;
504  }
505  $content = $this->fixCLen($content, $this->tsStackLog[$vKey]['value']);
506  // Traverse array again, this time substitute the unique hash with the red key
507  foreach ($arr as $k => $v) {
508  if (\TYPO3\CMS\Core\Utility\MathUtility::canBeInterpretedAsInteger($k)) {
509  if ($this->tsStackLog[$v]['content'] !== '') {
510  $content = str_replace($v, '<strong style="color:red;">[' . $this->tsStackLog[$v]['key'] . ']</strong>', $content);
511  }
512  }
513  }
514  // Return the content
515  return $content;
516  }
517 
525  protected function fixCLen($c, $v)
526  {
527  $len = $v === 'FILE' ? $this->printConf['contentLength_FILE'] : $this->printConf['contentLength'];
528  if (strlen($c) > $len) {
529  $c = '<span style="color:green;">' . htmlspecialchars(GeneralUtility::fixed_lgd_cs($c, $len)) . '</span>';
530  } else {
531  $c = htmlspecialchars($c);
532  }
533  return $c;
534  }
535 
542  protected function fw($str)
543  {
544  return '<span>' . $str . '</span>';
545  }
546 
556  protected function createHierarchyArray(&$arr, $pointer, $uniqueId)
557  {
558  if (!is_array($arr)) {
559  $arr = [];
560  }
561  if ($pointer > 0) {
562  end($arr);
563  $k = key($arr);
564  $this->createHierarchyArray($arr[(int)$k . '.'], $pointer - 1, $uniqueId);
565  } else {
566  $arr[] = $uniqueId;
567  }
568  }
569 }
fixContent(&$arr, $content, $depthData='', $first=0, $vKey='')
static trimExplode($delim, $string, $removeEmptyValues=false, $limit=0)
setTSselectQuery(array $data, $msg='')
static makeInstance($className,... $constructorArguments)
createHierarchyArray(&$arr, $pointer, $uniqueId)
static fixed_lgd_cs($string, $chars, $appendString='...')
if(TYPO3_MODE==='BE') $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tsfebeuserauth.php']['frontendEditingController']['default']