This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Stopwatch/StopwatchEvent.php

231 lines
4.9 KiB
PHP
Raw Normal View History

2011-10-17 09:25:52 +01:00
<?php
/*
2012-03-31 22:00:32 +01:00
* This file is part of the Symfony package.
2011-10-17 09:25:52 +01:00
*
* (c) Fabien Potencier <fabien@symfony.com>
*
2012-03-31 22:00:32 +01:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
2011-10-17 09:25:52 +01:00
*/
namespace Symfony\Component\Stopwatch;
2011-10-17 09:25:52 +01:00
/**
* Represents an Event managed by Stopwatch.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
class StopwatchEvent
{
/**
* @var StopwatchPeriod[]
*/
2011-10-17 09:25:52 +01:00
private $periods;
/**
* @var float
*/
2011-10-17 09:25:52 +01:00
private $origin;
/**
* @var string
*/
2011-10-17 09:25:52 +01:00
private $category;
/**
* @var float[]
*/
2011-10-17 09:25:52 +01:00
private $started;
/**
* Constructor.
*
2012-05-15 21:19:31 +01:00
* @param float $origin The origin time in milliseconds
* @param string $category The event category
2012-01-25 13:27:59 +00:00
*
* @throws \InvalidArgumentException When the raw time is not valid
2011-10-17 09:25:52 +01:00
*/
public function __construct($origin, $category = null)
{
2012-01-25 13:27:59 +00:00
$this->origin = $this->formatTime($origin);
$this->category = is_string($category) ? $category : 'default';
2011-10-17 09:25:52 +01:00
$this->started = array();
$this->periods = array();
}
/**
* Gets the category.
*
* @return string The category
*/
public function getCategory()
{
return $this->category;
}
/**
* Gets the origin.
*
2014-04-16 11:30:19 +01:00
* @return int The origin in milliseconds
2011-10-17 09:25:52 +01:00
*/
public function getOrigin()
{
return $this->origin;
}
/**
* Starts a new event period.
*
* @return StopwatchEvent The event
2011-10-17 09:25:52 +01:00
*/
public function start()
{
$this->started[] = $this->getNow();
return $this;
2011-10-17 09:25:52 +01:00
}
/**
* Stops the last started event period.
*
* @throws \LogicException When start wasn't called before stopping
*
* @return StopwatchEvent The event
*
* @throws \LogicException When stop() is called without a matching call to start()
2011-10-17 09:25:52 +01:00
*/
public function stop()
{
if (!count($this->started)) {
throw new \LogicException('stop() called but start() has not been called before.');
}
$this->periods[] = new StopwatchPeriod(array_pop($this->started), $this->getNow());
return $this;
2011-10-17 09:25:52 +01:00
}
/**
* Checks if the event was started
*
* @return bool
*/
public function isStarted()
{
return !empty($this->started);
}
2011-10-17 09:25:52 +01:00
/**
* Stops the current period and then starts a new one.
*
* @return StopwatchEvent The event
2011-10-17 09:25:52 +01:00
*/
public function lap()
{
return $this->stop()->start();
2011-10-17 09:25:52 +01:00
}
/**
* Stops all non already stopped periods.
*/
public function ensureStopped()
{
while (count($this->started)) {
$this->stop();
}
}
/**
* Gets all event periods.
*
* @return StopwatchPeriod[] An array of StopwatchPeriod instances
2011-10-17 09:25:52 +01:00
*/
public function getPeriods()
{
return $this->periods;
}
/**
* Gets the relative time of the start of the first period.
*
2014-04-16 11:30:19 +01:00
* @return int The time (in milliseconds)
2011-10-17 09:25:52 +01:00
*/
public function getStartTime()
{
return isset($this->periods[0]) ? $this->periods[0]->getStartTime() : 0;
2011-10-17 09:25:52 +01:00
}
/**
* Gets the relative time of the end of the last period.
*
2014-04-16 11:30:19 +01:00
* @return int The time (in milliseconds)
2011-10-17 09:25:52 +01:00
*/
public function getEndTime()
{
2014-02-11 07:51:18 +00:00
$count = count($this->periods);
return $count ? $this->periods[$count - 1]->getEndTime() : 0;
2011-10-17 09:25:52 +01:00
}
/**
* Gets the duration of the events (including all periods).
2011-10-17 09:25:52 +01:00
*
2014-04-16 11:30:19 +01:00
* @return int The duration (in milliseconds)
2011-10-17 09:25:52 +01:00
*/
public function getDuration()
2011-10-17 09:25:52 +01:00
{
$total = 0;
foreach ($this->periods as $period) {
$total += $period->getDuration();
2011-10-17 09:25:52 +01:00
}
2012-01-25 13:27:59 +00:00
return $this->formatTime($total);
2011-10-17 09:25:52 +01:00
}
/**
* Gets the max memory usage of all periods.
*
2014-04-16 11:30:19 +01:00
* @return int The memory usage (in bytes)
*/
public function getMemory()
{
$memory = 0;
foreach ($this->periods as $period) {
if ($period->getMemory() > $memory) {
$memory = $period->getMemory();
}
}
return $memory;
}
/**
* Return the current time relative to origin.
*
* @return float Time in ms
*/
protected function getNow()
2011-10-17 09:25:52 +01:00
{
2012-01-25 13:27:59 +00:00
return $this->formatTime(microtime(true) * 1000 - $this->origin);
}
/**
* Formats a time.
*
2014-04-16 07:51:57 +01:00
* @param int|float $time A raw time
2012-01-25 13:27:59 +00:00
*
* @return float The formatted time
*
* @throws \InvalidArgumentException When the raw time is not valid
*/
private function formatTime($time)
{
if (!is_numeric($time)) {
throw new \InvalidArgumentException('The time must be a numerical value');
}
return round($time, 1);
2011-10-17 09:25:52 +01:00
}
}