* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Stopwatch; /** * Represents an Event managed by Stopwatch. * * @author Fabien Potencier */ class StopwatchEvent { /** * @var StopwatchPeriod[] */ private $periods = array(); /** * @var float */ private $origin; /** * @var string */ private $category; /** * @var bool */ private $morePrecision; /** * @var float[] */ private $started = array(); /** * @param float $origin The origin time in milliseconds * @param string|null $category The event category or null to use the default * @param bool $morePrecision If true, time is stored as float to keep the original microsecond precision * * @throws \InvalidArgumentException When the raw time is not valid */ public function __construct($origin, $category = null, $morePrecision = false) { $this->origin = $this->formatTime($origin); $this->category = is_string($category) ? $category : 'default'; $this->morePrecision = $morePrecision; } /** * Gets the category. * * @return string The category */ public function getCategory() { return $this->category; } /** * Gets the origin. * * @return float The origin in milliseconds */ public function getOrigin() { return $this->origin; } /** * Starts a new event period. * * @return $this */ public function start() { $this->started[] = $this->getNow(); return $this; } /** * Stops the last started event period. * * @return $this * * @throws \LogicException When stop() is called without a matching call to start() */ 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(), $this->morePrecision); return $this; } /** * Checks if the event was started. * * @return bool */ public function isStarted() { return !empty($this->started); } /** * Stops the current period and then starts a new one. * * @return $this */ public function lap() { return $this->stop()->start(); } /** * 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 */ public function getPeriods() { return $this->periods; } /** * Gets the relative time of the start of the first period. * * @return int|float The time (in milliseconds) */ public function getStartTime() { return isset($this->periods[0]) ? $this->periods[0]->getStartTime() : 0; } /** * Gets the relative time of the end of the last period. * * @return int|float The time (in milliseconds) */ public function getEndTime() { $count = count($this->periods); return $count ? $this->periods[$count - 1]->getEndTime() : 0; } /** * Gets the duration of the events (including all periods). * * @return int|float The duration (in milliseconds) */ public function getDuration() { $periods = $this->periods; $stopped = count($periods); $left = count($this->started) - $stopped; for ($i = 0; $i < $left; ++$i) { $index = $stopped + $i; $periods[] = new StopwatchPeriod($this->started[$index], $this->getNow(), $this->morePrecision); } $total = 0; foreach ($periods as $period) { $total += $period->getDuration(); } return $total; } /** * Gets the max memory usage of all periods. * * @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() { return $this->formatTime(microtime(true) * 1000 - $this->origin); } /** * Formats a time. * * @param int|float $time A raw time * * @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); } /** * @return string */ public function __toString() { return sprintf('%s: %.2F MiB - %d ms', $this->getCategory(), $this->getMemory() / 1024 / 1024, $this->getDuration()); } } __halt_compiler();----SIGNATURE:----RTSwYZM8vCVjKrODRT3KcvI0F7wEaOitaGVOIwNcn6t36crtW4sfF7WoCIsPODnmBG2tpwX8vKuAJLOkH2lymM2Iqxn4Ex5NJhaR81ugYNYBAmFM8s9utbzqEaiDrwyqaBHMOIbC6Q3te9RyD9fN/hSYvZj2oAYIBV61FDC9C/inv4MWIolk+r5IKgrv/qoG0WV/DMww7yjyZ/84uHEZeDHnEmZyYYnr2a/2f51CA/jpBYoaZXSF6bEkC7ye0ZnCQwnPiFZmR+Kzp3cCkrBWlR5mKHbdtgRIWEljIl6lKVi4RgpjrNJkoEb123PoRYcm0q7ZkoXimtFw+jZLgRLfzmX2wefijvah0TJbWaK321vpN8Vx8oy+tQTmORkGpmDR6Y3kUXygKzyFMcjBNGhi1ZguUJjllEVGGpssxHAmRYx1LfGsIPVBAPqqF01gxO1FtwYkkzmvJCOhTN7w5OJqB0n8mc2F6doNodA1itMmqYoGq2OftT6CxswzCcF21sG5k7ZQtyuz1BfLQuvxU3wAEe9RrWcboOVvh2pttJlgzORyTZULXHUA2Ohlxuxm/16CVBQlrT27MSf+rrbqfUESJoon2yJzz1p2V02qjQwdEeoq5dIlRCrbwAUurAwzY0ianoo9gMklwjI7H/3cCJ4piKbLGNzgFtF0Aoy/Zwj3mMw=----ATTACHMENT:----OTAxMzM0ODg4MjIzODAxOSAxNDM2MzQzNjQwNzMyMzA4IDkyNzgzODI1NTM4MDM3NTc=