89 lines
2.7 KiB
PHP
89 lines
2.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This program 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; under version 2
|
|
* of the License (non-upgradable).
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* Copyright (c) 2014 (original work) Open Assessment Technologies SA;
|
|
*
|
|
*
|
|
*/
|
|
|
|
namespace oat\oatbox\task;
|
|
|
|
use oat\oatbox\service\ConfigurableService;
|
|
use common_report_Report as Report;
|
|
|
|
/**
|
|
* @deprecated since version 7.10.0, to be removed in 8.0. Use \oat\tao\model\taskQueue\QueueDispatcher instead.
|
|
*/
|
|
class TaskService extends ConfigurableService
|
|
{
|
|
/**
|
|
* @deprecated since version 7.10.0, to be removed in 8.0.
|
|
*/
|
|
const TASK_QUEUE_MANAGER_ROLE = 'http://www.tao.lu/Ontologies/TAO.rdf#TaskQueueManager';
|
|
|
|
/**
|
|
* @deprecated since version 7.10.0, to be removed in 8.0.
|
|
*/
|
|
const OPTION_LIMIT = 'limit';
|
|
|
|
|
|
/**
|
|
* @deprecated since version 7.10.0, to be removed in 8.0.
|
|
*
|
|
* @return Report
|
|
* @throws \common_exception_Error
|
|
*/
|
|
public function runQueue()
|
|
{
|
|
$count = 0;
|
|
$statistics = [];
|
|
$queue = $this->getServiceManager()->get(Queue::CONFIG_ID);
|
|
$report = new Report(Report::TYPE_SUCCESS);
|
|
$limit = $this->getLimit();
|
|
foreach ($queue as $task) {
|
|
$subReport = $queue->runTask($task);
|
|
$statistics[$subReport->getType()] = isset($statistics[$subReport->getType()])
|
|
? $statistics[$subReport->getType()] + 1
|
|
: 1;
|
|
$report->add($subReport);
|
|
$count++;
|
|
if ($limit !== 0 && $count === $limit) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (empty($statistics)) {
|
|
$report = new Report(Report::TYPE_INFO, __('No tasks to run'));
|
|
} else {
|
|
if (isset($statistics[Report::TYPE_ERROR]) || isset($statistics[Report::TYPE_WARNING])) {
|
|
$report->setType(Report::TYPE_WARNING);
|
|
}
|
|
$report->setMessage(__('Ran %s task(s):', array_sum($statistics)));
|
|
}
|
|
return $report;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
private function getLimit()
|
|
{
|
|
$limit = $this->hasOption(self::OPTION_LIMIT) ? $this->getOption(self::OPTION_LIMIT) : 0;
|
|
return (int) $limit;
|
|
}
|
|
}
|