]> git.mxchange.org Git - core.git/blob - application/tests/classes/resolver/controller/class_TestsConsoleControllerResolver.php
1b35dcec1a3b6586adaf5ccd77329f669cd66694
[core.git] / application / tests / classes / resolver / controller / class_TestsConsoleControllerResolver.php
1 <?php
2 // Own namespace
3 namespace CoreFramework\Tests\Resolver\Controller;
4
5 // Import framework stuff
6 use CoreFramework\Controller\BaseController;
7 use CoreFramework\Controller\Controller;
8 use CoreFramework\Manager\ManageableApplication;
9 use CoreFramework\Resolver\Controller\BaseControllerResolver;
10 use CoreFramework\Resolver\Controller\ControllerResolver;
11
12 /**
13  * A resolver for resolving controllers locally
14  *
15  * @author              Roland Haeder <webmaster@shipsimu.org>
16  * @version             0.0.0
17  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
18  * @license             GNU GPL 3.0 or any newer version
19  * @link                http://www.shipsimu.org
20  *
21  * This program is free software: you can redistribute it and/or modify
22  * it under the terms of the GNU General Public License as published by
23  * the Free Software Foundation, either version 3 of the License, or
24  * (at your option) any later version.
25  *
26  * This program is distributed in the hope that it will be useful,
27  * but WITHOUT ANY WARRANTY; without even the implied warranty of
28  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29  * GNU General Public License for more details.
30  *
31  * You should have received a copy of the GNU General Public License
32  * along with this program. If not, see <http://www.gnu.org/licenses/>.
33  */
34 class TestsConsoleControllerResolver extends BaseControllerResolver implements ControllerResolver {
35         /**
36          * Protected constructor
37          *
38          * @return      void
39          */
40         protected function __construct () {
41                 // Call parent constructor
42                 parent::__construct(__CLASS__);
43
44                 // Set prefix to "TestsConsole"
45                 $this->setClassPrefix('tests_console');
46         }
47
48         /**
49          * Creates an instance of a resolver class with a given command
50          *
51          * @param       $controllerName                         The controller we shall resolve
52          * @param       $applicationInstance            An instance of a manageable application helper class
53          * @return      $resolverInstance                       The prepared controller resolver instance
54          * @throws      EmptyVariableException          Thrown if default command is not set
55          * @throws      InvalidControllerException      Thrown if default controller is invalid
56          */
57         public static final function createTestsConsoleControllerResolver ($controllerName, ManageableApplication $applicationInstance) {
58                 // Create the new instance
59                 $resolverInstance = new TestsConsoleControllerResolver();
60
61                 // Is the variable $controllerName set and the command is valid?
62                 if (empty($controllerName)) {
63                         // Then thrown an exception here
64                         throw new EmptyVariableException(array($resolverInstance, 'commandName'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
65                 } elseif ($resolverInstance->isControllerValid('CoreFramework\Tests\Controller', $controllerName) === FALSE) {
66                         // Invalid command found
67                         throw new InvalidControllerException(array($resolverInstance, $controllerName), self::EXCEPTION_INVALID_CONTROLLER);
68                 }
69
70                 // Set the application instance
71                 $resolverInstance->setApplicationInstance($applicationInstance);
72
73                 // Set namespace and controller name
74                 $resolverInstance->setNamespace('CoreFramework\Tests\Controller');
75                 $resolverInstance->setControllerName($controllerName);
76
77                 // Return the prepared instance
78                 return $resolverInstance;
79         }
80
81         /**
82          * Resolves the default controller of the given command
83          *
84          * @return      $controllerInstance             A controller instance for the default
85          *                                                                      command
86          * @throws      InvalidControllerInstanceException      Thrown if $controllerInstance
87          *                                                                                              is invalid
88          */
89         public function resolveController () {
90                 // Init variables
91                 $controllerName = '';
92                 $controllerInstance = NULL;
93
94                 // Get namespace and command name
95                 $controllerName = $this->getControllerName();
96
97                 // Get the command
98                 $controllerInstance = $this->loadController($controllerName);
99
100                 // And validate it
101                 if ((!is_object($controllerInstance)) || (!$controllerInstance instanceof Controller)) {
102                         // This command has an invalid instance!
103                         throw new InvalidControllerInstanceException(array($this, $controllerName), self::EXCEPTION_INVALID_CONTROLLER);
104                 } // END - if
105
106                 // Set last controller
107                 $this->setResolvedInstance($controllerInstance);
108
109                 // Return the maybe resolved instance
110                 return $controllerInstance;
111         }
112
113 }