2 /***************************************************************
5 * (c) 2008 Markus Friedrich (markus.friedrich@dkd.de>
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
17 * This script is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * This copyright notice MUST APPEAR in all copies of the script!
23 ***************************************************************/
26 * Starts all due tasks, used by the command line interface
27 * This script must be included by the "CLI module dispatcher"
29 * @author Markus Friedrich <markus.friedrich@dkd.de>
31 * @subpackage tx_scheduler
33 if ((TYPO3_REQUESTTYPE
& TYPO3_REQUESTTYPE_CLI
) && basename(PATH_thisScript
) == 'cli_dispatch.phpsh') {
35 // Create an instance of the scheduler object
39 $scheduler = t3lib_div
::makeInstance('tx_scheduler');
40 // Loop as long as there are tasks
42 // Try getting the next task and execute it
43 // If there are no more tasks to execute, an exception is thrown by tx_scheduler::fetchTask()
46 * @var tx_scheduler_Task
48 $task = $scheduler->fetchTask();
51 $scheduler->executeTask($task);
53 catch (Exception
$e) {
54 // We ignore any exception that may have been thrown during execution,
55 // as this is a background process.
56 // The exception message has been recorded to the database anyway
60 // There are no more tasks, quit the run
61 catch (OutOfBoundsException
$e) {
64 // A task could not be unserialized properly, skip to next task
65 catch (UnexpectedValueException
$e) {
69 // Record the run in the system registry
70 $scheduler->recordLastRun();
72 die('This script must be included by the "CLI module dispatcher"');