Files
archived-scheduler/Generator/Checkpoint.php
2025-12-19 09:33:17 +01:00

95 lines
2.5 KiB
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Scheduler\Generator;
use Symfony\Component\Lock\LockInterface;
use Symfony\Contracts\Cache\CacheInterface;
final class Checkpoint implements CheckpointInterface
{
private \DateTimeImmutable $from;
private \DateTimeImmutable $time;
private int $index = -1;
private bool $reset = false;
public function __construct(
private readonly string $name,
private readonly ?LockInterface $lock = null,
private readonly ?CacheInterface $cache = null,
) {
}
public function acquire(\DateTimeImmutable $now): bool
{
if ($this->lock && !$this->lock->acquire()) {
// Reset local state if a Lock is acquired by another Worker and state is not shared through cache.
$this->reset = true;
return false;
}
if ($this->cache) {
[$this->time, $this->index, $this->from] = $this->cache->get($this->name, static fn () => [$now, -1, $now]) + [2 => $now];
$this->save($this->time, $this->index);
} elseif ($this->reset) {
$this->reset = false;
$this->save($now, -1);
}
$this->time ??= $now;
$this->from ??= $now;
return true;
}
public function from(): \DateTimeImmutable
{
return $this->from;
}
public function time(): \DateTimeImmutable
{
return $this->time;
}
public function index(): int
{
return $this->index;
}
public function save(\DateTimeImmutable $time, int $index): void
{
$this->time = $time;
$this->index = $index;
$this->from ??= $time;
$this->cache?->get($this->name, fn () => [$time, $index, $this->from], \INF);
}
/**
* Releases State, not Lock.
*
* It tries to keep a Lock as long as a Worker is alive.
*/
public function release(\DateTimeImmutable $now, ?\DateTimeImmutable $nextTime): void
{
if (!$this->lock) {
return;
}
if (!$nextTime) {
$this->lock->release();
} elseif ($remaining = $this->lock->getRemainingLifetime()) {
$this->lock->refresh((float) $nextTime->format('U.u') - (float) $now->format('U.u') + $remaining);
}
}
}