* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\DataCollector; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\KernelInterface; use Symfony\Component\Stopwatch\Stopwatch; /** * TimeDataCollector. * * @author Fabien Potencier */ class TimeDataCollector extends DataCollector implements LateDataCollectorInterface { protected $kernel; protected $stopwatch; public function __construct(KernelInterface $kernel = null, Stopwatch $stopwatch = null) { $this->kernel = $kernel; $this->stopwatch = $stopwatch; } /** * {@inheritdoc} */ public function collect(Request $request, Response $response, \Exception $exception = null) { if (null !== $this->kernel) { $startTime = $this->kernel->getStartTime(); } else { $startTime = $request->server->get('REQUEST_TIME_FLOAT'); } $this->data = array( 'token' => $response->headers->get('X-Debug-Token'), 'start_time' => $startTime * 1000, 'events' => array(), ); } /** * {@inheritdoc} */ public function reset() { $this->data = array(); if (null !== $this->stopwatch) { $this->stopwatch->reset(); } } /** * {@inheritdoc} */ public function lateCollect() { if (null !== $this->stopwatch && isset($this->data['token'])) { $this->setEvents($this->stopwatch->getSectionEvents($this->data['token'])); } unset($this->data['token']); } /** * Sets the request events. * * @param array $events The request events */ public function setEvents(array $events) { foreach ($events as $event) { $event->ensureStopped(); } $this->data['events'] = $events; } /** * Gets the request events. * * @return array The request events */ public function getEvents() { return $this->data['events']; } /** * Gets the request elapsed time. * * @return float The elapsed time */ public function getDuration() { if (!isset($this->data['events']['__section__'])) { return 0; } $lastEvent = $this->data['events']['__section__']; return $lastEvent->getOrigin() + $lastEvent->getDuration() - $this->getStartTime(); } /** * Gets the initialization time. * * This is the time spent until the beginning of the request handling. * * @return float The elapsed time */ public function getInitTime() { if (!isset($this->data['events']['__section__'])) { return 0; } return $this->data['events']['__section__']->getOrigin() - $this->getStartTime(); } /** * Gets the request time. * * @return int The time */ public function getStartTime() { return $this->data['start_time']; } /** * {@inheritdoc} */ public function getName() { return 'time'; } } __halt_compiler();----SIGNATURE:----BqZiA6uJHK6JdBK0PJEvstgExDfFab6at5p/1MVzYXQrbV3icCld+xXsuBPgn788L4nYtv+b525sUUWfEh5aRDx9ahdLV77sLKxvbtofgThscv/dqJDO4uF56/1YBXKS/W+F7/VPC7laFdjsQ4wNxX5OHY9IYVblGBPDrtVDK54Jsza198q99RY0kGp8slyfm7buN0cYSTsP0rIvgvbItjudaxqwd46GLBZudcQkCJe/H5cEO6scfMMaNIj7Wj/FHENCXuxYhHeatLNToijSkm4COKt6NQSTT42QXJxXTyW4UJzJPRr5wfCQ50zttMrGBVFm/3F6EorkY+6URmgotMQvQXOTYieFDd6aBoq1yfU9n1J7g8CHEXYB0xfdW6hW2WYsqPqFJbMcyKIUPmSXdsdaARwSQCO2Tnca/6WauIwBI3mwjIFs8yEDZdGR6/FoVg8GjvX/5PnLU0lJxoKttbuwDwxoGs5cJxtdc8c2d5j3dYZkeVBCrk3gFy0mKKRvDgGoi94a9bDRKN5/BsNTCm8B4oOiJHFU9nuEy7WgYKa0N0M2JMwszDDUBYqhkdKLL3bMGySfpqPNa25w43nAesUAzqgLTljvWpK4ku5mGM9HGMxZWs1D90h5OEQNHZ/dnZ6ay0/2MHoaimKvc0HvavkTjltBBp+g7UQDiQtqqWg=----ATTACHMENT:----Mzk2NDQyNzA5NjU4NTQ2MSA2Nzc2Mjc2NTUwMTI2MTg2IDEwMjY5MTY3OTM0NTk5ODE=