2020-03-16 09:17:58 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Measurement.php
|
|
|
|
*
|
|
|
|
* -Description-
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-02-09 00:29:04 +01:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-03-16 09:17:58 -05:00
|
|
|
*
|
2021-02-09 00:29:04 +01:00
|
|
|
* @link https://www.librenms.org
|
2021-09-10 20:09:53 +02:00
|
|
|
*
|
2021-10-06 17:09:54 -05:00
|
|
|
* @copyright 2021 Tony Murray
|
2020-03-16 09:17:58 -05:00
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2021-10-06 17:09:54 -05:00
|
|
|
namespace App\Polling\Measure;
|
2020-03-16 09:17:58 -05:00
|
|
|
|
|
|
|
class Measurement
|
|
|
|
{
|
|
|
|
private $start;
|
|
|
|
private $type;
|
|
|
|
private $duration;
|
|
|
|
|
2021-10-06 17:09:54 -05:00
|
|
|
private function __construct(string $type, float $duration = null)
|
2020-03-16 09:17:58 -05:00
|
|
|
{
|
|
|
|
$this->type = $type;
|
|
|
|
$this->start = microtime(true);
|
2021-10-06 17:09:54 -05:00
|
|
|
if ($duration !== null) {
|
|
|
|
$this->duration = $duration;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a measurement with an existing duration
|
|
|
|
*/
|
|
|
|
public static function make(string $type, float $duration): Measurement
|
|
|
|
{
|
|
|
|
return new static($type, $duration);
|
2020-03-16 09:17:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start the timer for a new operation
|
|
|
|
*
|
2021-09-08 23:35:56 +02:00
|
|
|
* @param string $type
|
2020-03-16 09:17:58 -05:00
|
|
|
* @return static
|
|
|
|
*/
|
2021-10-06 17:09:54 -05:00
|
|
|
public static function start(string $type): Measurement
|
2020-03-16 09:17:58 -05:00
|
|
|
{
|
|
|
|
return new static($type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* End the timer for this operation
|
|
|
|
*/
|
2021-10-06 17:09:54 -05:00
|
|
|
public function end(): Measurement
|
2020-03-16 09:17:58 -05:00
|
|
|
{
|
|
|
|
$this->duration = microtime(true) - $this->start;
|
2020-09-21 14:54:51 +02:00
|
|
|
|
2020-03-16 09:17:58 -05:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the duration of the operation
|
|
|
|
*/
|
2021-10-06 17:09:54 -05:00
|
|
|
public function getDuration(): float
|
2020-03-16 09:17:58 -05:00
|
|
|
{
|
|
|
|
return $this->duration;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the type of the operation
|
|
|
|
*/
|
2021-10-06 17:09:54 -05:00
|
|
|
public function getType(): string
|
2020-03-16 09:17:58 -05:00
|
|
|
{
|
|
|
|
return $this->type;
|
|
|
|
}
|
2021-10-06 17:09:54 -05:00
|
|
|
|
|
|
|
public function manager(): MeasurementManager
|
|
|
|
{
|
|
|
|
return app(MeasurementManager::class);
|
|
|
|
}
|
2020-03-16 09:17:58 -05:00
|
|
|
}
|