c6c5c3cf29875e6d1df339c06f33c97dbe5fa3d9
[core.git] / application / tests / classes / resolver / command / console / class_TestsConsoleCommandResolver.php
1 <?php
2 // Own namespace
3 namespace CoreFramework\Tests\Resolver\Command;
4
5 // Import framework stuff
6 use CoreFramework\Command\InvalidCommandException;
7 use CoreFramework\Manager\ManageableApplication;
8 use CoreFramework\Resolver\Command\BaseCommandResolver;
9 use CoreFramework\Resolver\Command\CommandResolver;
10
11 /**
12  * A command resolver for console commands
13  *
14  * @author              Roland Haeder <webmaster@shipsimu.org>
15  * @version             0.0.0
16  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
17  * @license             GNU GPL 3.0 or any newer version
18  * @link                http://www.shipsimu.org
19  *
20  * This program is free software: you can redistribute it and/or modify
21  * it under the terms of the GNU General Public License as published by
22  * the Free Software Foundation, either version 3 of the License, or
23  * (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28  * GNU General Public License for more details.
29  *
30  * You should have received a copy of the GNU General Public License
31  * along with this program. If not, see <http://www.gnu.org/licenses/>.
32  */
33 class TestsConsoleCommandResolver extends BaseCommandResolver implements CommandResolver {
34         /**
35          * Protected constructor
36          *
37          * @return      void
38          */
39         protected function __construct () {
40                 // Call parent constructor
41                 parent::__construct(__CLASS__);
42
43                 // Set prefix to "TestsConsole"
44                 $this->setClassPrefix('tests_console');
45         }
46
47         /**
48          * Creates an instance of a TestsConsole command resolver with a given default command
49          *
50          * @param       $commandName                            The default command we shall execute
51          * @param       $applicationInstance            An instance of a manageable application helper class
52          * @return      $resolverInstance                       The prepared command resolver instance
53          * @throws      EmptyVariableException          Thrown if default command is not set
54          * @throws      InvalidCommandException         Thrown if default command is invalid
55          */
56         public static final function createTestsConsoleCommandResolver ($commandName, ManageableApplication $applicationInstance) {
57                 // Create the new instance
58                 $resolverInstance = new TestsConsoleCommandResolver();
59
60                 // Is the variable $commandName set and the command is valid?
61                 if (empty($commandName)) {
62                         // Then thrown an exception here
63                         throw new EmptyVariableException(array($resolverInstance, 'commandName'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
64                 } elseif ($resolverInstance->isCommandValid('CoreFramework\Tests\Command', $commandName) === FALSE) {
65                         // Invalid command found
66                         throw new InvalidCommandException(array($resolverInstance, $commandName), self::EXCEPTION_INVALID_COMMAND);
67                 }
68
69                 // Set the application instance
70                 $resolverInstance->setApplicationInstance($applicationInstance);
71
72                 // Return the prepared instance
73                 return $resolverInstance;
74         }
75
76 }