. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Services; /** * Check for PHP timeouts. */ class TimeoutService { //Long-running scripts run in small chunks private const TIME_LIMIT = 1.5; // Seconds until we run out of time private const TIME_UP_THRESHOLD = 3.0; // The start time of the request private float $start_time; /** * TimeoutService constructor. * * @param float|null $start_time */ public function __construct(float $start_time = null) { $this->start_time = $start_time ?? microtime(true); } /** * Some long-running scripts need to know when to stop. * * @param float $threshold * * @return bool */ public function isTimeNearlyUp(float $threshold = self::TIME_UP_THRESHOLD): bool { $max_execution_time = (int) ini_get('max_execution_time'); // If there's no time limit, then we can't run out of time. if ($max_execution_time === 0) { return false; } $now = microtime(true); return $now + $threshold > $this->start_time + (float) $max_execution_time; } /** * Some long running scripts are broken down into small chunks. * * @param float $limit * * @return bool */ public function isTimeLimitUp(float $limit = self::TIME_LIMIT): bool { $now = microtime(true); return $now > $this->start_time + $limit; } }