* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * sfWebDebugPanelTimer adds a panel to the web debug toolbar with timer information. * * @package symfony * @subpackage debug * @author Fabien Potencier * @version SVN: $Id: sfWebDebugPanelTimer.class.php 12982 2008-11-13 17:25:10Z hartym $ */ class sfWebDebugPanelTimer extends sfWebDebugPanel { static protected $startTime = null; /** * Constructor. * * @param sfWebDebug $webDebug The web debut toolbar instance */ public function __construct(sfWebDebug $webDebug) { parent::__construct($webDebug); $this->webDebug->getEventDispatcher()->connect('debug.web.filter_logs', array($this, 'filterLogs')); } public function getTitle() { return 'Time '.$this->getTotalTime().' ms'; } public function getPanelTitle() { return 'Timers'; } public function getPanelContent() { if (sfTimerManager::getTimers()) { $totalTime = $this->getTotalTime(); $panel = ''; foreach (sfTimerManager::getTimers() as $name => $timer) { $panel .= sprintf('', $name, $timer->getCalls(), $timer->getElapsedTime() * 1000, $totalTime ? ($timer->getElapsedTime() * 1000 * 100 / $totalTime) : 'N/A'); } $panel .= '
typecallstime (ms)time (%)
%s%d%.2f%d
'; return $panel; } } public function filterLogs(sfEvent $event, $logs) { $newLogs = array(); foreach ($logs as $log) { if ('sfWebDebugLogger' != $log['type']) { $newLogs[] = $log; } } return $newLogs; } static public function startTime() { self::$startTime = microtime(true); } static public function isStarted() { return !is_null(self::$startTime); } protected function getTotalTime() { return !is_null(self::$startTime) ? sprintf('%.0f', (microtime(true) - self::$startTime) * 1000) : 0; } }