3 namespace Org\Mxchange\CoreFramework\Tests\Resolver\Controller;
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Controller\BaseController;
7 use Org\Mxchange\CoreFramework\Controller\Controller;
8 use Org\Mxchange\CoreFramework\Controller\InvalidControllerException;
9 use Org\Mxchange\CoreFramework\Resolver\Controller\BaseControllerResolver;
10 use Org\Mxchange\CoreFramework\Resolver\Controller\ControllerResolver;
13 use \InvalidArgumentException;
16 * A resolver for resolving controllers locally
18 * @author Roland Haeder <webmaster@shipsimu.org>
20 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team
21 * @license GNU GPL 3.0 or any newer version
22 * @link http://www.shipsimu.org
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.
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.
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/>.
37 class TestsConsoleControllerResolver extends BaseControllerResolver implements ControllerResolver {
39 * Protected constructor
43 protected function __construct () {
44 // Call parent constructor
45 parent::__construct(__CLASS__);
47 // Set prefix to "TestsConsole"
48 $this->setClassPrefix('tests_console');
52 * Creates an instance of a resolver class with a given command
54 * @param $controllerName The controller we shall resolve
55 * @return $resolverInstance The prepared controller resolver instance
56 * @throws InvalidArgumentException Thrown if default command is not set
57 * @throws InvalidControllerException Thrown if default controller is invalid
59 public static final function createTestsConsoleControllerResolver ($controllerName) {
60 // Create the new instance
61 $resolverInstance = new TestsConsoleControllerResolver();
63 // Is the variable $controllerName set and the command is valid?
64 if (empty($controllerName)) {
65 // Then thrown an exception here
66 throw new InvalidArgumentException('Parameter "controllerName" is empty');
67 } elseif ($resolverInstance->isControllerValid('Org\Mxchange\CoreFramework\Tests\Controller', $controllerName) === false) {
68 // Invalid command found
69 throw new InvalidControllerException(array($resolverInstance, $controllerName), self::EXCEPTION_INVALID_CONTROLLER);
72 // Set namespace and controller name
73 $resolverInstance->setNamespace('Org\Mxchange\CoreFramework\Tests\Controller');
74 $resolverInstance->setControllerName($controllerName);
76 // Return the prepared instance
77 return $resolverInstance;
81 * Resolves the default controller of the given command
83 * @return $controllerInstance A controller instance for the default
85 * @throws InvalidControllerInstanceException Thrown if $controllerInstance
88 public function resolveController () {
91 $controllerInstance = NULL;
93 // Get namespace and command name
94 $controllerName = $this->getControllerName();
97 $controllerInstance = $this->loadController($controllerName);
100 if ((!is_object($controllerInstance)) || (!$controllerInstance instanceof Controller)) {
101 // This command has an invalid instance!
102 throw new InvalidControllerInstanceException(array($this, $controllerName), self::EXCEPTION_INVALID_CONTROLLER);
105 // Set last controller
106 $this->setResolvedInstance($controllerInstance);
108 // Return the maybe resolved instance
109 return $controllerInstance;