123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <?php
- namespace Symfony\Component\Stopwatch;
- class StopwatchEvent
- {
-
- private array $periods = [];
- private float $origin;
- private string $category;
- private bool $morePrecision;
-
- private array $started = [];
- private string $name;
-
- public function __construct(float $origin, ?string $category = null, bool $morePrecision = false, ?string $name = null)
- {
- $this->origin = $this->formatTime($origin);
- $this->category = \is_string($category) ? $category : 'default';
- $this->morePrecision = $morePrecision;
- $this->name = $name ?? 'default';
- }
-
- public function getCategory(): string
- {
- return $this->category;
- }
-
- public function getOrigin(): float
- {
- return $this->origin;
- }
-
- public function start(): static
- {
- $this->started[] = $this->getNow();
- return $this;
- }
-
- public function stop(): static
- {
- 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;
- }
-
- public function isStarted(): bool
- {
- return !empty($this->started);
- }
-
- public function lap(): static
- {
- return $this->stop()->start();
- }
-
- public function ensureStopped()
- {
- while (\count($this->started)) {
- $this->stop();
- }
- }
-
- public function getPeriods(): array
- {
- return $this->periods;
- }
-
- public function getStartTime(): int|float
- {
- if (isset($this->periods[0])) {
- return $this->periods[0]->getStartTime();
- }
- if ($this->started) {
- return $this->started[0];
- }
- return 0;
- }
-
- public function getEndTime(): int|float
- {
- $count = \count($this->periods);
- return $count ? $this->periods[$count - 1]->getEndTime() : 0;
- }
-
- public function getDuration(): int|float
- {
- $periods = $this->periods;
- $left = \count($this->started);
- for ($i = $left - 1; $i >= 0; --$i) {
- $periods[] = new StopwatchPeriod($this->started[$i], $this->getNow(), $this->morePrecision);
- }
- $total = 0;
- foreach ($periods as $period) {
- $total += $period->getDuration();
- }
- return $total;
- }
-
- public function getMemory(): int
- {
- $memory = 0;
- foreach ($this->periods as $period) {
- if ($period->getMemory() > $memory) {
- $memory = $period->getMemory();
- }
- }
- return $memory;
- }
-
- protected function getNow(): float
- {
- return $this->formatTime(microtime(true) * 1000 - $this->origin);
- }
-
- private function formatTime(float $time): float
- {
- return round($time, 1);
- }
-
- public function getName(): string
- {
- return $this->name;
- }
- public function __toString(): string
- {
- return sprintf('%s/%s: %.2F MiB - %d ms', $this->getCategory(), $this->getName(), $this->getMemory() / 1024 / 1024, $this->getDuration());
- }
- }
|