1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- namespace Symfony\Component\Console\Command;
- use Symfony\Component\Console\Exception\LogicException;
- use Symfony\Component\Lock\Factory;
- use Symfony\Component\Lock\Lock;
- use Symfony\Component\Lock\Store\FlockStore;
- use Symfony\Component\Lock\Store\SemaphoreStore;
- trait LockableTrait
- {
-
- private $lock;
-
- private function lock($name = null, $blocking = false)
- {
- if (!class_exists(SemaphoreStore::class)) {
- throw new LogicException('To enable the locking feature you must install the symfony/lock component.');
- }
- if (null !== $this->lock) {
- throw new LogicException('A lock is already in place.');
- }
- if (SemaphoreStore::isSupported()) {
- $store = new SemaphoreStore();
- } else {
- $store = new FlockStore();
- }
- $this->lock = (new Factory($store))->createLock($name ?: $this->getName());
- if (!$this->lock->acquire($blocking)) {
- $this->lock = null;
- return false;
- }
- return true;
- }
-
- private function release()
- {
- if ($this->lock) {
- $this->lock->release();
- $this->lock = null;
- }
- }
- }
|