123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View\Asset;
- use Magento\Framework\App\Filesystem\DirectoryList;
- use Magento\Framework\App\ObjectManager;
- use Magento\Framework\App\State;
- use Magento\Framework\Exception\FileSystemException;
- use Magento\Framework\Filesystem;
- use Magento\Framework\Filesystem\Directory\WriteInterface;
- /**
- * Class LockerProcess
- */
- class LockerProcess implements LockerProcessInterface
- {
- /**
- * File extension lock
- */
- const LOCK_EXTENSION = '.lock';
- /**
- * Max execution (locking) time for process (in seconds)
- */
- const MAX_LOCK_TIME = 30;
- /**
- * @var Filesystem
- */
- private $filesystem;
- /**
- * @var string
- */
- private $lockFilePath;
- /**
- * @var WriteInterface
- */
- private $tmpDirectory;
- /**
- * @var State
- */
- private $state;
- /**
- * Constructor
- *
- * @param Filesystem $filesystem
- */
- public function __construct(Filesystem $filesystem)
- {
- $this->filesystem = $filesystem;
- }
- /**
- * @inheritdoc
- */
- public function lockProcess($lockName)
- {
- if ($this->getState()->getMode() == State::MODE_PRODUCTION) {
- return;
- }
- $this->tmpDirectory = $this->filesystem->getDirectoryWrite(DirectoryList::VAR_DIR);
- $this->lockFilePath = $this->getFilePath($lockName);
- while ($this->isProcessLocked()) {
- usleep(1000);
- }
- $this->tmpDirectory->writeFile($this->lockFilePath, time());
- }
- /**
- * @inheritdoc
- * @throws FileSystemException
- */
- public function unlockProcess()
- {
- if ($this->getState()->getMode() == State::MODE_PRODUCTION) {
- return;
- }
- $this->tmpDirectory->delete($this->lockFilePath);
- }
- /**
- * Check whether generation process has already locked
- *
- * @return bool
- */
- private function isProcessLocked()
- {
- if ($this->tmpDirectory->isExist($this->lockFilePath)) {
- try {
- $lockTime = (int)$this->tmpDirectory->readFile($this->lockFilePath);
- if ((time() - $lockTime) >= self::MAX_LOCK_TIME) {
- $this->tmpDirectory->delete($this->lockFilePath);
- return false;
- }
- } catch (FileSystemException $e) {
- return false;
- }
- return true;
- }
- return false;
- }
- /**
- * Get name of lock file
- *
- * @param string $name
- * @return string
- */
- private function getFilePath($name)
- {
- return DirectoryList::TMP . DIRECTORY_SEPARATOR . $name . self::LOCK_EXTENSION;
- }
- /**
- * @return State
- * @deprecated 100.1.1
- */
- private function getState()
- {
- if (null === $this->state) {
- $this->state = ObjectManager::getInstance()->get(State::class);
- }
- return $this->state;
- }
- }
|