5 * @author Roland Haeder <webmaster@ship-simu.org>
7 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Hub Developer Team
8 * @license GNU GPL 3.0 or any newer version
9 * @link http://www.ship-simu.org
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation, either version 3 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 class TaskHandler extends BaseHandler implements Registerable, HandleableTask {
25 // Exception constants
26 const EXCEPTION_TASK_IS_INVALID = 0xb00;
29 * Visitor instance for all tasks while they are active
31 private $visitorInstance = null;
34 * Protected constructor
38 protected function __construct () {
39 // Call parent constructor
40 parent::__construct(__CLASS__);
43 $this->setHandlerName('task');
46 $this->setListInstance(ObjectFactory::createObjectByConfiguredName('task_list_class'));
48 // Get default instance
49 $this->setIteratorInstance($this->getListInstance()->getIterator());
51 // Init visitor instance for faster loop
52 $this->visitorInstance = ObjectFactory::createObjectByConfiguredName('active_task_visitor_class');
56 * Creates an instance of this class
58 * @return $handlerInstance An instance of a HandleableTask class
60 public static final function createTaskHandler () {
62 $handlerInstance = new TaskHandler();
64 // Output debug message
65 $handlerInstance->debugOutput('TASK-HANDLER: Task handler initialized.');
67 // Return the prepared instance
68 return $handlerInstance;
72 * Tries to execute the given task. If as task should not be started (yet)
73 * or the interval time (see task_interval_delay) is not yet reached the
74 * task is quietly skipped.
77 * @throws InvalidTaskException If the current task is invalid
79 private function executeCurrentTask () {
80 // Update no task by default
83 // Is the current task valid?
84 if (!$this->getIteratorInstance()->valid()) {
86 throw new InvalidTaskException($this, self::EXCEPTION_TASK_IS_INVALID);
90 $currentTask = $this->getIteratorInstance()->current();
92 // Is the task not yet started?
93 if ($currentTask['task_started'] === false) {
94 // Determine difference between current time and registration
95 $diff = ($this->getMilliTime() - $currentTask['task_registered']) * 1000;
97 // Should we start now?
98 if ($diff < $currentTask['task_startup_delay']) {
103 // Launch the task and mark it as updated
104 $currentTask['task_started'] = true;
108 $this->debugOutput('TASK-HANDLER: Task ' . $currentTask['id'] . ' started with startup_delay=' . $currentTask['task_startup_delay'] . 'ms');
111 // Get time difference from interval delay
112 $diff = ($this->getMilliTime() - $currentTask['task_last_activity']) * 1000;
114 // Is the interval delay reached?
115 if ((($diff < $currentTask['task_interval_delay']) && ($currentTask['task_max_runs'] == 0)) || (($currentTask['task_total_runs'] == $currentTask['task_max_runs']) && ($currentTask['task_max_runs'] > 0))) {
116 // Should we update the task from startup?
117 if ($updateTask === true) {
118 // Update the task before leaving
119 $this->updateTask($currentTask);
122 // Skip this silently
127 $currentTask['task_last_activity'] = $this->getMilliTime();
130 $currentTask['task_total_runs']++;
133 $this->updateTask($currentTask);
136 // @TODO Messurement can be added around this call
137 $currentTask['task_instance']->accept($this->visitorInstance);
141 * Updates given task by updating the underlaying list
143 * @param $taskEntry An array with a task
146 private function updateTask (array $taskEntry) {
147 // Get the key from current iteration
148 $key = $this->getIteratorInstance()->key();
150 // Get the hash from key
151 $hash = $this->getListInstance()->getHash($key);
154 $this->getListInstance()->updateCurrentEntryByHash($hash, $taskEntry);
158 * Unregisters the given task
160 * @param $taskData Data of the task
163 private function unregisterTask (array $taskData) {
165 $this->debugOutput('TASK-HANDLER: Removing task ' . $taskData['id'] . ' from queue - START');
168 $this->getListInstance()->removeEntry('tasks', $taskData);
171 $this->debugOutput('TASK-HANDLER: Removing task ' . $taskData['id'] . ' from queue - FINISHED');
175 * Registers a task with a task handler.
177 * @param $taskName A task name to register the task on
178 * @param $taskInstance The instance we should register as a task
181 public function registerTask ($taskName, Visitable $taskInstance) {
184 // Identifier for the generateHash() method
186 // Wether the task is started
187 'task_started' => false,
188 // Wether the task is paused (not yet implemented)
189 'task_paused' => false,
190 // Wether the task can be paused (not yet implemented)
191 'task_pauseable' => true,
192 // Timestamp of registration
193 'task_registered' => $this->getMilliTime(),
194 // Last activity timestamp
195 'task_last_activity' => 0,
196 // Total runs of this task
197 'task_total_runs' => 0,
198 // Task instance itself
199 'task_instance' => $taskInstance,
200 // Startup delay in milliseconds
201 'task_startup_delay' => $this->getConfigInstance()->getConfigEntry('task_' . $taskName . '_startup_delay'),
202 // Interval time (delay) in milliseconds before this task is executed again
203 'task_interval_delay' => $this->getConfigInstance()->getConfigEntry('task_' . $taskName . '_interval_delay'),
204 // How often should this task run?
205 'task_max_runs' => $this->getConfigInstance()->getConfigEntry('task_' . $taskName . '_max_runs'),
209 $this->getListInstance()->addEntry('tasks', $taskEntry);
212 $this->debugOutput('TASK-HANDLER: Task ' . $taskName .
213 ' (taskInstance=' . $taskInstance->__toString() . ')' .
214 ', startupDelay=' . $taskEntry['task_startup_delay'] . 'ms' .
215 ', intervalDelay=' . $taskEntry['task_interval_delay'] . 'ms' .
216 ', maxRuns=' . $taskEntry['task_max_runs'] . ' times registered.'
221 * Checks wether tasks are left including idle task
223 * @return $tasksLeft Wether there are tasks left to handle
225 public function hasTasksLeft () {
226 // Do we have tasks there?
227 $tasksLeft = (($this->getListInstance() instanceof Listable) && ($this->getListInstance()->count() > 0));
234 * Handles all tasks by checking if they should startup or if it is their
235 * turn to run. You should use this method in a while() loop in conjuntion
236 * with hasTasksLeft() so you can e.g. shutdown by adding a ShutdownTask
237 * which will attempt to remove all tasks from the task handler.
241 public function handleTasks () {
243 if (!$this->getIteratorInstance()->valid()) {
244 // Rewind to the beginning for next loop
245 $this->getIteratorInstance()->rewind();
248 // Try to execute the task
249 $this->executeCurrentTask();
252 $this->getIteratorInstance()->next();
256 * Shuts down all tasks and the task handler itself. This method should be
257 * called from a corresponding filter class.
261 public function doShutdown () {
263 if (!$this->getIteratorInstance()->valid()) {
264 // Rewind to the beginning for next loop
265 $this->getIteratorInstance()->rewind();
269 $this->debugOutput('TASK-HANDLER: Shutting down all ' . $this->getListInstance()->count() . ' tasks...');
271 // Remember all tasks that has been shutdown for removal
274 // Instance a visitor
275 $this->visitorInstance = ObjectFactory::createObjectByConfiguredName('shutdown_task_visitor_class');
277 // Shutdown all tasks in once go
278 while ($this->getIteratorInstance()->valid()) {
280 $currentTask = $this->getIteratorInstance()->current();
282 // Output debug message
283 $this->debugOutput('TASK-HANDLER: Shutting down task ' . $currentTask['id'] . ' (taskInstance=' . $currentTask['task_instance']->__toString() . ') ...');
286 $currentTask['task_instance']->accept($this->visitorInstance);
288 // Remember this task
289 $tasks[] = $currentTask;
291 // Advance to next one
292 $this->getIteratorInstance()->next();
297 $this->debugOutput('TASK-HANDLER: Shutdown of all tasks completed.');
300 foreach ($tasks as $entry) {
301 $this->unregisterTask($entry);