我最近升级到Symfony 3.4.x,因为弃用警告而重构LockHandler并陷入奇怪的行为。
重构前的命令代码:
class FooCommand
{
protected function configure() { /* ... does not matter ... */ }
protected function lock() : bool
{
$resource = $this->getName();
$lock = new \Symfony\Component\Filesystem\LockHandler($resource);
return $lock->lock();
}
protected function execute()
{
if (!$this->lock()) return 0;
// Execute some task
}
}
它可以防止同时运行两个命令 - 第二个命令完成而不做任务。那很好。
但是在建议重构后,它允许同时运行许多命令。这是失败的。如何防止执行?新代码:
class FooCommand
{
protected function configure() { /* ... does not matter ... */ }
protected function lock() : bool
{
$resource = $this->getName();
$store = new \Symfony\Component\Lock\FlockStore(sys_get_temp_dir());
$factory = new \Symfony\Component\Lock\Factory($store);
$lock = $factory->createLock($resource);
return $lock->acquire();
}
protected function execute()
{
if (!$this->lock()) return 0;
// Execute some task
}
}
NB#1:我不关心很多服务器,只关心应用程序的一个实例。
NB#2:如果进程被终止,那么新命令必须解锁并运行。
答案 0 :(得分:3)
您必须使用LockableTrait特征
use Symfony\Component\Console\Command\LockableTrait;
use Symfony\Component\Console\Command\Command
class FooCommand extends Command
{
use LockableTrait;
.....
protected function execute(InputInterface $input, OutputInterface $output)
{
if (!$this->lock()) {
$output->writeln('The command is already running in another process.');
return 0;
}
// If you prefer to wait until the lock is released, use this:
// $this->lock(null, true);
// ...
// if not released explicitly, Symfony releases the lock
// automatically when the execution of the command ends
$this->release();
}
答案 1 :(得分:1)
添加到穆罕默德(Mohamed)答案中,将ID分配给命令柜非常重要。
否则,锁将与其他命令并发出现问题,尤其是在您具有不同的环境(测试,生产,阶段...)的情况下。您会看到命令没有按预期的周期执行。
可以在lock()
语句本身上分配此ID。
use Symfony\Component\Console\Command\LockableTrait;
use Symfony\Component\Console\Command\Command
class FooCommand extends Command
{
use LockableTrait;
.....
protected function execute(InputInterface $input, OutputInterface $output)
{
if (!$this->lock('FooCommand'.getenv('APP_ENV'))) {
$output->writeln('The command is already running in another process.');
return 0;
}
$this->release();
}
}