Files
espocrm/application/Espo/Core/Job/JobManager.php
Yuri Kuznetsov 87911fc3b6 ref cs
2023-04-18 19:23:01 +03:00

205 lines
6.0 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2023 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://www.espocrm.com
*
* EspoCRM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* EspoCRM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Core\Job;
use Espo\Core\Exceptions\Error;
use Espo\Core\Utils\Config;
use Espo\Core\Utils\File\Manager as FileManager;
use Espo\Core\Utils\Log;
use Espo\Entities\Job as JobEntity;
use RuntimeException;
use Throwable;
/**
* Handles processing jobs.
*/
class JobManager
{
private bool $useProcessPool = false;
protected string $lastRunTimeFile = 'data/cache/application/cronLastRunTime.php';
public function __construct(
private Config $config,
private FileManager $fileManager,
private JobRunner $jobRunner,
private Log $log,
private ScheduleProcessor $scheduleProcessor,
private QueueUtil $queueUtil,
private AsyncPoolFactory $asyncPoolFactory,
private QueueProcessorFactory $queueProcessorFactory
) {
if ($this->config->get('jobRunInParallel')) {
if ($this->asyncPoolFactory->isSupported()) {
$this->useProcessPool = true;
}
else {
$this->log->warning("JobManager: useProcessPool requires pcntl and posix extensions.");
}
}
}
/**
* Process jobs. Jobs will be created according scheduling. Then pending jobs will be processed.
* This method supposed to be called on every Cron run or loop iteration of the Daemon.
*/
public function process(): void
{
if (!$this->checkLastRunTime()) {
$this->log->info('JobManager: Skip job processing. Too frequent execution.');
return;
}
$this->updateLastRunTime();
$this->queueUtil->markJobsFailed();
$this->queueUtil->updateFailedJobAttempts();
$this->scheduleProcessor->process();
$this->queueUtil->removePendingJobDuplicates();
$this->processMainQueue();
}
/**
* Process pending jobs from a specific queue. Jobs within a queue are processed one by one.
*/
public function processQueue(string $queue, int $limit): void
{
$params = QueueProcessorParams
::create()
->withQueue($queue)
->withLimit($limit)
->withUseProcessPool(false)
->withNoLock(true);
$processor = $this->queueProcessorFactory->create($params);
$processor->process();
}
/**
* Process pending jobs from a specific group. Jobs within a group are processed one by one.
*/
public function processGroup(string $group, int $limit): void
{
$params = QueueProcessorParams
::create()
->withGroup($group)
->withLimit($limit)
->withUseProcessPool(false)
->withNoLock(true);
$processor = $this->queueProcessorFactory->create($params);
$processor->process();
}
private function processMainQueue(): void
{
$limit = (int) $this->config->get('jobMaxPortion', 0);
$params = QueueProcessorParams
::create()
->withUseProcessPool($this->useProcessPool)
->withLimit($limit);
$processor = $this->queueProcessorFactory->create($params);
$processor->process();
}
/**
* Run a specific job by ID. A job status should be set to 'Ready'.
*
* @throws Error
* @throws Throwable
*/
public function runJobById(string $id): void
{
$this->jobRunner->runById($id);
}
/**
* Run a specific job.
*
* @throws Throwable
*/
public function runJob(JobEntity $job): void
{
$this->jobRunner->runThrowingException($job);
}
/**
* @todo Move to a separate class.
*/
private function getLastRunTime(): int
{
if ($this->fileManager->isFile($this->lastRunTimeFile)) {
try {
$data = $this->fileManager->getPhpContents($this->lastRunTimeFile);
}
catch (RuntimeException) {
$data = null;
}
if (is_array($data) && isset($data['time'])) {
return (int) $data['time'];
}
}
return time() - intval($this->config->get('cronMinInterval', 0)) - 1;
}
/**
* @todo Move to a separate class.
*/
private function updateLastRunTime(): void
{
$data = ['time' => time()];
$this->fileManager->putPhpContents($this->lastRunTimeFile, $data, false, true);
}
private function checkLastRunTime(): bool
{
$currentTime = time();
$lastRunTime = $this->getLastRunTime();
$cronMinInterval = $this->config->get('cronMinInterval', 0);
if ($currentTime > ($lastRunTime + $cronMinInterval)) {
return true;
}
return false;
}
}