| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?php
- /*
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * This software consists of voluntary contributions made by many individuals
- * and is licensed under the MIT license. For more information, see
- * <http://www.doctrine-project.org>.
- */
- namespace Doctrine\DBAL\Tools\Console;
- use Doctrine\DBAL\Connection;
- use Doctrine\DBAL\Tools\Console\Command\ImportCommand;
- use Doctrine\DBAL\Tools\Console\Command\ReservedWordsCommand;
- use Doctrine\DBAL\Tools\Console\Command\RunSqlCommand;
- use Symfony\Component\Console\Helper\HelperSet;
- use Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper;
- use Symfony\Component\Console\Application;
- use Doctrine\DBAL\Version;
- /**
- * Handles running the Console Tools inside Symfony Console context.
- */
- class ConsoleRunner
- {
- /**
- * Create a Symfony Console HelperSet
- *
- * @param Connection $connection
- *
- * @return HelperSet
- */
- static public function createHelperSet(Connection $connection)
- {
- return new HelperSet(array(
- 'db' => new ConnectionHelper($connection)
- ));
- }
- /**
- * Runs console with the given helperset.
- *
- * @param \Symfony\Component\Console\Helper\HelperSet $helperSet
- * @param \Symfony\Component\Console\Command\Command[] $commands
- *
- * @return void
- */
- static public function run(HelperSet $helperSet, $commands = array())
- {
- $cli = new Application('Doctrine Command Line Interface', Version::VERSION);
- $cli->setCatchExceptions(true);
- $cli->setHelperSet($helperSet);
- self::addCommands($cli);
- $cli->addCommands($commands);
- $cli->run();
- }
- /**
- * @param Application $cli
- *
- * @return void
- */
- static public function addCommands(Application $cli)
- {
- $cli->addCommands(array(
- new RunSqlCommand(),
- new ImportCommand(),
- new ReservedWordsCommand(),
- ));
- }
- /**
- * Prints the instructions to create a configuration file
- */
- static public function printCliConfigTemplate()
- {
- echo <<<'HELP'
- You are missing a "cli-config.php" or "config/cli-config.php" file in your
- project, which is required to get the Doctrine-DBAL Console working. You can use the
- following sample as a template:
- <?php
- use Doctrine\DBAL\Tools\Console\ConsoleRunner;
- // replace with the mechanism to retrieve DBAL connection in your app
- $connection = getDBALConnection();
- // You can append new commands to $commands array, if needed
- return ConsoleRunner::createHelperSet($connection);
- HELP;
- }
- }
|