]> git.mxchange.org Git - city.git/blob - application/city/classes/filter/task/city_daemon/class_CityDaemonTaskHandlerInitializerFilter.php
Next wave:
[city.git] / application / city / classes / filter / task / city_daemon / class_CityDaemonTaskHandlerInitializerFilter.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\City\Daemon\Filter\Initialization\Tasks;
4
5 // Import own stuff
6 use Org\Mxchange\City\Daemon\Factory\CityDaemonFactory;
7 use Org\Mxchange\City\Filter\BaseCityFilter;
8
9 // Import framework stuff
10 use Org\Mxchange\CoreFramework\Factory\ObjectFactory;
11 use Org\Mxchange\CoreFramework\Filter\Filterable;
12 use Org\Mxchange\CoreFramework\Request\Requestable;
13 use Org\Mxchange\CoreFramework\Response\Responseable;
14
15 /**
16  * A TaskHandlerInitializer filter for hubs
17  *
18  * @author              Roland Haeder <webmaster@shipsimu.org>
19  * @version             0.0.0
20  * @copyright   Copyright (c) 2015, 2016 City Developer Team
21  * @license             GNU GPL 3.0 or any newer version
22  * @link                http://www.shipsimu.org
23  *
24  * This program is free software: you can redistribute it and/or modify
25  * it under the terms of the GNU General Public License as published by
26  * the Free Software Foundation, either version 3 of the License, or
27  * (at your option) any later version.
28  *
29  * This program is distributed in the hope that it will be useful,
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32  * GNU General Public License for more details.
33  *
34  * You should have received a copy of the GNU General Public License
35  * along with this program. If not, see <http://www.gnu.org/licenses/>.
36  */
37 class CityDaemonTaskHandlerInitializerFilter extends BaseCityFilter implements Filterable {
38         /**
39          * Protected constructor
40          *
41          * @return      void
42          */
43         protected function __construct () {
44                 // Call parent constructor
45                 parent::__construct(__CLASS__);
46         }
47
48         /**
49          * Creates an instance of this filter class
50          *
51          * @return      $filterInstance         An instance of this filter class
52          */
53         public static final function createCityDaemonTaskHandlerInitializerFilter () {
54                 // Get a new instance
55                 $filterInstance = new CityDaemonTaskHandlerInitializerFilter();
56
57                 // Return the instance
58                 return $filterInstance;
59         }
60
61         /**
62          * Executes the filter with given request and response objects
63          *
64          * @param       $requestInstance        An instance of a class with an Requestable interface
65          * @param       $responseInstance       An instance of a class with an Responseable interface
66          * @return      void
67          * @throws      FilterChainException    If the filter chain needs to be interrupted
68          * @todo        Add more tasks
69          */
70         public function execute (Requestable $requestInstance, Responseable $responseInstance) {
71                 // Get city instance
72                 $cityInstance = CityDaemonFactory::createCityDaemonInstance();
73
74                 // Get a new task handler instance
75                 $handlerInstance = ObjectFactory::createObjectByConfiguredName('task_handler_class');
76
77                 // Put the task handler in registry
78                 Registry::getRegistry()->addInstance('task_handler', $handlerInstance);
79
80                 // Prepare a city map expansion task
81                 $taskInstance = ObjectFactory::createObjectByConfiguredName('city_daemon_map_expander_task_class');
82
83                 // Register it
84                 $handlerInstance->registerTask('map_expander', $taskInstance);
85
86                 // Prepare a household growth task
87                 $taskInstance = ObjectFactory::createObjectByConfiguredName('city_daemon_household_growth_task_class');
88
89                 // Register it
90                 $handlerInstance->registerTask('household_growth', $taskInstance);
91
92                 // Prepare a building growth task
93                 $taskInstance = ObjectFactory::createObjectByConfiguredName('city_daemon_building_growth_task_class');
94
95                 // Register it
96                 $handlerInstance->registerTask('building_growth', $taskInstance);
97
98                 /*
99                  * Add extra tasks depending on daemon modus.
100                  */
101                 $cityInstance->addExtraTasks($handlerInstance);
102         }
103 }