[2.0] Added new Console support
This commit is contained in:
parent
45de5c6932
commit
5854bcab11
21 changed files with 2087 additions and 22 deletions
127
lib/Doctrine/DBAL/Tools/Console/Command/ImportCommand.php
Normal file
127
lib/Doctrine/DBAL/Tools/Console/Command/ImportCommand.php
Normal file
|
@ -0,0 +1,127 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\DBAL\Tools\Console\Command;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Task for executing arbitrary SQL that can come from a file or directly from
|
||||||
|
* the command line.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class ImportCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('dbal:import')
|
||||||
|
->setDescription('Import SQL file(s) directly to Database.')
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument(
|
||||||
|
'file', InputArgument::REQUIRED | InputArgument::IS_ARRAY, 'File path(s) of SQL to be executed.'
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Import SQL file(s) directly to Database.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$conn = $this->getHelper('db')->getConnection();
|
||||||
|
|
||||||
|
if (($fileNames = $input->getArgument('file')) !== null) {
|
||||||
|
foreach ((array) $fileNames as $fileName) {
|
||||||
|
$fileName = realpath($fileName);
|
||||||
|
|
||||||
|
if ( ! file_exists($fileName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("SQL file '<info>%s</info>' does not exist.", $fileName)
|
||||||
|
);
|
||||||
|
} else if ( ! is_readable($fileName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("SQL file '<info>%s</info>' does not have read permissions.", $fileName)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$output->write(sprintf("Processing file '<info>%s</info>'... ", $fileName));
|
||||||
|
$sql = file_get_contents($fileName);
|
||||||
|
|
||||||
|
if ($conn instanceof \Doctrine\DBAL\Driver\PDOConnection) {
|
||||||
|
// PDO Drivers
|
||||||
|
try {
|
||||||
|
$lines = 0;
|
||||||
|
|
||||||
|
$stmt = $conn->prepare($sql);
|
||||||
|
$stmt->execute();
|
||||||
|
|
||||||
|
do {
|
||||||
|
// Required due to "MySQL has gone away!" issue
|
||||||
|
$stmt->fetch();
|
||||||
|
$stmt->closeCursor();
|
||||||
|
|
||||||
|
$lines++;
|
||||||
|
} while ($stmt->nextRowset());
|
||||||
|
|
||||||
|
$output->write(sprintf('%d statements executed!', $lines) . PHP_EOL);
|
||||||
|
} catch (\PDOException $e) {
|
||||||
|
$output->write('error!' . PHP_EOL);
|
||||||
|
|
||||||
|
throw new \RuntimeException($e->getMessage(), $e->getCode(), $e);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Non-PDO Drivers (ie. OCI8 driver)
|
||||||
|
$stmt = $conn->prepare($sql);
|
||||||
|
$rs = $stmt->execute();
|
||||||
|
|
||||||
|
if ($rs) {
|
||||||
|
$printer->writeln('OK!');
|
||||||
|
} else {
|
||||||
|
$error = $stmt->errorInfo();
|
||||||
|
|
||||||
|
$output->write('error!' . PHP_EOL);
|
||||||
|
|
||||||
|
throw new \RuntimeException($error[2], $error[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
$stmt->closeCursor();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
87
lib/Doctrine/DBAL/Tools/Console/Command/RunSqlCommand.php
Normal file
87
lib/Doctrine/DBAL/Tools/Console/Command/RunSqlCommand.php
Normal file
|
@ -0,0 +1,87 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\DBAL\Tools\Console\Command;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Task for executing arbitrary SQL that can come from a file or directly from
|
||||||
|
* the command line.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class RunSqlCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('dbal:run-sql')
|
||||||
|
->setDescription('Executes arbitrary SQL directly from the command line.')
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument('sql', InputArgument::REQUIRED, 'The SQL statement to execute.'),
|
||||||
|
new InputOption('depth', null, InputOption::PARAMETER_REQUIRED, 'Dumping depth of result set.', 7)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Executes arbitrary SQL directly from the command line.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$conn = $this->getHelper('db')->getConnection();
|
||||||
|
|
||||||
|
if (($sql = $input->getArgument('sql')) === null) {
|
||||||
|
throw new \RuntimeException("Argument 'SQL' is required in order to execute this command correctly.");
|
||||||
|
}
|
||||||
|
|
||||||
|
$depth = $input->getOption('depth');
|
||||||
|
|
||||||
|
if ( ! is_numeric($depth)) {
|
||||||
|
throw new \LogicException("Option 'depth' must contains an integer value");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (preg_match('/^select/i', $sql)) {
|
||||||
|
$stmt = $conn->execute($sql);
|
||||||
|
$resultSet = $stmt->fetchAll(\Doctrine\DBAL\Connection::FETCH_ASSOC);
|
||||||
|
} else {
|
||||||
|
$resultSet = $em->getConnection()->executeUpdate($sql);
|
||||||
|
}
|
||||||
|
|
||||||
|
\Doctrine\Common\Util\Debug::dump($resultSet, (int) $depth);
|
||||||
|
}
|
||||||
|
}
|
74
lib/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php
Normal file
74
lib/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\DBAL\Tools\Console\Helper;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Helper\Helper,
|
||||||
|
Doctrine\DBAL\Connection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Doctrine CLI Connection Helper.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class ConnectionHelper extends Helper
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Doctrine Database Connection
|
||||||
|
* @var Connection
|
||||||
|
*/
|
||||||
|
protected $_connection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* @param Connection $connection Doctrine Database Connection
|
||||||
|
*/
|
||||||
|
public function __construct(Connection $connection)
|
||||||
|
{
|
||||||
|
$this->_connection = $connection;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves Doctrine Database Connection
|
||||||
|
*
|
||||||
|
* @return Connection
|
||||||
|
*/
|
||||||
|
public function getConnection()
|
||||||
|
{
|
||||||
|
return $this->_connection;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Helper
|
||||||
|
*/
|
||||||
|
public function getName()
|
||||||
|
{
|
||||||
|
return 'connection';
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,81 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command\ClearCache;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to clear the metadata cache of the various cache drivers.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class MetadataCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:clear-cache:metadata')
|
||||||
|
->setDescription('Clear all metadata cache of the various cache drivers.')
|
||||||
|
->setDefinition(array())
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Clear all metadata cache of the various cache drivers.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
$cacheDriver = $em->getConfiguration()->getMetadataCacheImpl();
|
||||||
|
|
||||||
|
if ( ! $cacheDriver) {
|
||||||
|
throw new \InvalidArgumentException('No Metadata cache driver is configured on given EntityManager.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$output->write('Clearing ALL Metadata cache entries' . PHP_EOL);
|
||||||
|
|
||||||
|
$cacheIds = $cacheDriver->deleteAll();
|
||||||
|
|
||||||
|
if ($cacheIds) {
|
||||||
|
foreach ($cacheIds as $cacheId) {
|
||||||
|
$output->write(' - ' . $cacheId . PHP_EOL);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$output->write('No entries to be deleted.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,81 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command\ClearCache;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to clear the query cache of the various cache drivers.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class QueryCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:clear-cache:query')
|
||||||
|
->setDescription('Clear all query cache of the various cache drivers.')
|
||||||
|
->setDefinition(array())
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Clear all query cache of the various cache drivers.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
$cacheDriver = $em->getConfiguration()->getQueryCacheImpl();
|
||||||
|
|
||||||
|
if ( ! $cacheDriver) {
|
||||||
|
throw new \InvalidArgumentException('No Query cache driver is configured on given EntityManager.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$output->write('Clearing ALL Query cache entries' . PHP_EOL);
|
||||||
|
|
||||||
|
$cacheIds = $cacheDriver->deleteAll();
|
||||||
|
|
||||||
|
if ($cacheIds) {
|
||||||
|
foreach ($cacheIds as $cacheId) {
|
||||||
|
$output->write(' - ' . $cacheId . PHP_EOL);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$output->write('No entries to be deleted.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,164 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command\ClearCache;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to clear the result cache of the various cache drivers.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class ResultCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:clear-cache:result')
|
||||||
|
->setDescription('Clear result cache of the various cache drivers.')
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputOption(
|
||||||
|
'id', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'ID(s) of the cache entry to delete (accepts * wildcards).', array()
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'regex', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Delete cache entries that match the given regular expression(s).', array()
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'prefix', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Delete cache entries that have the given prefix(es).', array()
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'suffix', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Delete cache entries that have the given suffix(es).', array()
|
||||||
|
),
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Clear result cache of the various cache drivers.
|
||||||
|
If none of the options are defined, all cache entries will be removed.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
$cacheDriver = $em->getConfiguration()->getResultCacheImpl();
|
||||||
|
|
||||||
|
if ( ! $cacheDriver) {
|
||||||
|
throw new \InvalidArgumentException('No Result cache driver is configured on given EntityManager.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$outputed = false;
|
||||||
|
|
||||||
|
// Removing based on --id
|
||||||
|
if (($ids = $input->getOption('id')) !== null && $ids) {
|
||||||
|
foreach ($ids as $id) {
|
||||||
|
$output->write($outputed ? PHP_EOL : '');
|
||||||
|
$output->write(sprintf('Clearing Result cache entries that match the id "<info>%s</info>"', $id) . PHP_EOL);
|
||||||
|
|
||||||
|
$deleted = $cacheDriver->delete($id);
|
||||||
|
|
||||||
|
if (is_array($deleted)) {
|
||||||
|
$this->_printDeleted($deleted);
|
||||||
|
} else if (is_bool($deleted) && $deleted) {
|
||||||
|
$this->_printDeleted(array($id));
|
||||||
|
}
|
||||||
|
|
||||||
|
$outputed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Removing based on --regex
|
||||||
|
if (($regex = $input->getOption('regex')) !== null && $regexps) {
|
||||||
|
foreach($regexps as $regex) {
|
||||||
|
$output->write($outputed ? PHP_EOL : '');
|
||||||
|
$output->write(sprintf('Clearing Result cache entries that match the regular expression "<info>%s</info>"', $regex) . PHP_EOL);
|
||||||
|
|
||||||
|
$this->_printDeleted($cacheDriver->deleteByRegex('/' . $regex. '/'));
|
||||||
|
|
||||||
|
$outputed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Removing based on --prefix
|
||||||
|
if (($prefixes = $input->getOption('prefix')) !== null & $prefixes) {
|
||||||
|
foreach ($prefixes as $prefix) {
|
||||||
|
$output->write($outputed ? PHP_EOL : '');
|
||||||
|
$output->write(sprintf('Clearing Result cache entries that have the prefix "<info>%s</info>"', $prefix) . PHP_EOL);
|
||||||
|
|
||||||
|
$this->_printDeleted($cacheDriver->deleteByPrefix($prefix));
|
||||||
|
|
||||||
|
$outputed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Removing based on --suffix
|
||||||
|
if (($suffixes = $input->getOption('suffix')) !== null && $suffixes) {
|
||||||
|
foreach ($suffixes as $suffix) {
|
||||||
|
$output->write($outputed ? PHP_EOL : '');
|
||||||
|
$output->write(sprintf('Clearing Result cache entries that have the suffix "<info>%s</info>"', $suffix) . PHP_EOL);
|
||||||
|
|
||||||
|
$this->_printDeleted($cacheDriver->deleteBySuffix($suffix));
|
||||||
|
|
||||||
|
$outputed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Removing ALL entries
|
||||||
|
if ( ! $ids && ! $regexps && ! $prefixes && ! $suffixes) {
|
||||||
|
$output->write($outputed ? PHP_EOL : '');
|
||||||
|
$output->write('Clearing ALL Result cache entries');
|
||||||
|
|
||||||
|
$this->_printDeleted($cacheDriver->deleteAll());
|
||||||
|
|
||||||
|
$outputed = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private function _printDeleted(Console\Output\OutputInterface $output, array $items)
|
||||||
|
{
|
||||||
|
if ($items) {
|
||||||
|
foreach ($items as $item) {
|
||||||
|
$output->write(' - ' . $item . PHP_EOL);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$output->write('No entries to be deleted.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,154 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to convert a Doctrine 1 schema to a Doctrine 2 mapping file.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class ConvertDoctrine1SchemaCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:convert-d1-schema')
|
||||||
|
->setDescription('Converts Doctrine 1.X schema into a Doctrine 2.X schema.')
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument(
|
||||||
|
'from-path', InputArgument::REQUIRED, 'The path of Doctrine 1.X schema information.'
|
||||||
|
),
|
||||||
|
new InputArgument(
|
||||||
|
'to-type', InputArgument::REQUIRED, 'The destination Doctrine 2.X mapping type.'
|
||||||
|
),
|
||||||
|
new InputArgument(
|
||||||
|
'dest-path', InputArgument::REQUIRED,
|
||||||
|
'The path to generate your Doctrine 2.X mapping information.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'from', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Optional paths of Doctrine 1.X schema information.',
|
||||||
|
array()
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'extend', null, InputOption::PARAMETER_OPTIONAL,
|
||||||
|
'Defines a base class to be extended by generated entity classes.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'num-spaces', null, InputOption::PARAMETER_OPTIONAL,
|
||||||
|
'Defines the number of indentation spaces', 4
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Converts Doctrine 1.X schema into a Doctrine 2.X schema.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
|
||||||
|
// Process source directories
|
||||||
|
$fromPaths = array_merge(array($input->getArgument('from-path')), $input->getOption('from'));
|
||||||
|
|
||||||
|
foreach ($fromPaths as &$dirName) {
|
||||||
|
$dirName = realpath($dirName);
|
||||||
|
|
||||||
|
if ( ! file_exists($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Doctrine 1.X schema directory '<info>%s</info>' does not exist.", $dirName)
|
||||||
|
);
|
||||||
|
} else if ( ! is_readable($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Doctrine 1.X schema directory '<info>%s</info>' does not have read permissions.", $dirName)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process destination directory
|
||||||
|
$destPath = realpath($input->getArgument('dest-path'));
|
||||||
|
|
||||||
|
if ( ! file_exists($destPath)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Doctrine 2.X mapping destination directory '<info>%s</info>' does not exist.", $destPath)
|
||||||
|
);
|
||||||
|
} else if ( ! is_writable($destPath)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Doctrine 2.X mapping destination directory '<info>%s</info>' does not have write permissions.", $destPath)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$toType = $input->getArgument('to-type');
|
||||||
|
|
||||||
|
$cme = new ClassMetadataExporter();
|
||||||
|
$exporter = $cme->getExporter($toType, $destPath);
|
||||||
|
|
||||||
|
if (strtolower($toType) === 'annotation') {
|
||||||
|
$entityGenerator = new EntityGenerator();
|
||||||
|
$exporter->setEntityGenerator($entityGenerator);
|
||||||
|
|
||||||
|
$entityGenerator->setNumSpaces($input->getOption('num-spaces'));
|
||||||
|
|
||||||
|
if (($extend = $input->getOption('extend')) !== null) {
|
||||||
|
$entityGenerator->setClassToExtend($extend);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$converter = new ConvertDoctrine1Schema($fromPaths);
|
||||||
|
$metadatas = $converter->getMetadatas();
|
||||||
|
|
||||||
|
if ($metadatas) {
|
||||||
|
$output->write(PHP_EOL);
|
||||||
|
|
||||||
|
foreach ($metadatas as $metadata) {
|
||||||
|
$output->write(sprintf('Processing entity "<info>%s</info>"', $metadata->name) . PHP_EOL);
|
||||||
|
}
|
||||||
|
|
||||||
|
$exporter->setMetadatas($metadatas);
|
||||||
|
$exporter->export();
|
||||||
|
|
||||||
|
$output->write(PHP_EOL . sprintf(
|
||||||
|
'Converting Doctrine 1.X schema to "<info>%s</info>" mapping type in "<info>%s</info>"', $toType, $destPath
|
||||||
|
));
|
||||||
|
} else {
|
||||||
|
$output->write('No Metadata Classes to process.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
165
lib/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php
Normal file
165
lib/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php
Normal file
|
@ -0,0 +1,165 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to convert your mapping information between the various formats.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class ConvertMappingCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:convert-mapping')
|
||||||
|
->setDescription('Convert mapping information between supported formats.')
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument(
|
||||||
|
'from-path', InputArgument::REQUIRED, 'The path of mapping information.'
|
||||||
|
),
|
||||||
|
new InputArgument(
|
||||||
|
'to-type', InputArgument::REQUIRED, 'The mapping type to be converted.'
|
||||||
|
),
|
||||||
|
new InputArgument(
|
||||||
|
'dest-path', InputArgument::REQUIRED,
|
||||||
|
'The path to generate your entities classes.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'from', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Optional paths of mapping information.',
|
||||||
|
array()
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'extend', null, InputOption::PARAMETER_OPTIONAL,
|
||||||
|
'Defines a base class to be extended by generated entity classes.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'num-spaces', null, InputOption::PARAMETER_OPTIONAL,
|
||||||
|
'Defines the number of indentation spaces', 4
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Convert mapping information between supported formats.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
$cme = new ClassMetadataExporter();
|
||||||
|
|
||||||
|
// Process source directories
|
||||||
|
$fromPath = $input->getArgument('from-path');
|
||||||
|
|
||||||
|
if (strtolower($fromPath) !== 'database') {
|
||||||
|
$fromPaths = array_merge(array($fromPath), $input->getOption('from'));
|
||||||
|
|
||||||
|
foreach ($fromPaths as &$dirName) {
|
||||||
|
$dirName = realpath($dirName);
|
||||||
|
|
||||||
|
if ( ! file_exists($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not exist.", $dirName)
|
||||||
|
);
|
||||||
|
} else if ( ! is_readable($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not have read permissions.", $dirName)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$cme->addMappingSource($dirName);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$em->getConfiguration()->setMetadataDriverImpl(
|
||||||
|
new \Doctrine\ORM\Mapping\Driver\DatabaseDriver(
|
||||||
|
$em->getConnection()->getSchemaManager()
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
$cme->addMappingSource($fromPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process destination directory
|
||||||
|
$destPath = realpath($input->getArgument('dest-path'));
|
||||||
|
|
||||||
|
if ( ! file_exists($destPath)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping destination directory '<info>%s</info>' does not exist.", $destPath)
|
||||||
|
);
|
||||||
|
} else if ( ! is_writable($destPath)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping destination directory '<info>%s</info>' does not have write permissions.", $destPath)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$toType = strtolower($input->getArgument('to-type'));
|
||||||
|
|
||||||
|
$exporter = $cme->getExporter($toType, $destPath);
|
||||||
|
|
||||||
|
if ($toType == 'annotation') {
|
||||||
|
$entityGenerator = new EntityGenerator();
|
||||||
|
$exporter->setEntityGenerator($entityGenerator);
|
||||||
|
|
||||||
|
$entityGenerator->setNumSpaces($input->getOption('num-spaces'));
|
||||||
|
|
||||||
|
if (($extend = $input->getOption('extend')) !== null) {
|
||||||
|
$entityGenerator->setClassToExtend($extend);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$metadatas = $cme->getMetadatas();
|
||||||
|
|
||||||
|
if ($metadatas) {
|
||||||
|
foreach ($metadatas as $metadata) {
|
||||||
|
$output->write(sprintf('Processing entity "<info>%s</info>"', $metadata->name) . PHP_EOL);
|
||||||
|
}
|
||||||
|
|
||||||
|
$exporter->setMetadatas($metadatas);
|
||||||
|
$exporter->export();
|
||||||
|
|
||||||
|
$output->write(PHP_EOL . sprintf(
|
||||||
|
'Exporting "<info>%s</info>" mapping information to "<info>%s</info>"', $toType, $destPath
|
||||||
|
));
|
||||||
|
} else {
|
||||||
|
$output->write('No Metadata Classes to process.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,76 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to ensure that Doctrine is properly configured for a production environment.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class EnsureProductionSettingsCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:ensure-production-settings')
|
||||||
|
->setDescription('Verify that Doctrine is properly configured for a production environment.')
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputOption(
|
||||||
|
'complete', null, InputOption::PARAMETER_NONE,
|
||||||
|
'Flag to also inspect database connection existance.'
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Verify that Doctrine is properly configured for a production environment.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
$em->getConfiguration()->ensureProductionSettings();
|
||||||
|
|
||||||
|
if ($input->getOption('complete') !== null) {
|
||||||
|
$em->getConnection()->connect();
|
||||||
|
}
|
||||||
|
|
||||||
|
$output->write('Environment is correctly configured for production.');
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,167 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to generate entity classes and method stubs from your mapping information.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class GenerateEntitiesCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:generate-entities')
|
||||||
|
->setDescription('Generate entity classes and method stubs from your mapping information.')
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument(
|
||||||
|
'from-path', InputArgument::REQUIRED, 'The path of mapping information.'
|
||||||
|
),
|
||||||
|
new InputArgument(
|
||||||
|
'dest-path', InputArgument::REQUIRED, 'The path to generate your entity classes.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'from', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Optional paths of mapping information.',
|
||||||
|
array()
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'generate-annotations', null, InputOption::PARAMETER_OPTIONAL,
|
||||||
|
'Flag to define if generator should generate annotation metadata on entities.', false
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'generate-methods', null, InputOption::PARAMETER_OPTIONAL,
|
||||||
|
'Flag to define if generator should generate stub methods on entities.', true
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'regenerate-entities', null, InputOption::PARAMETER_OPTIONAL,
|
||||||
|
'Flag to define if generator should regenerate entity if it exists.', false
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'update-entities', null, InputOption::PARAMETER_OPTIONAL,
|
||||||
|
'Flag to define if generator should only update entity if it exists.', true
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'extend', null, InputOption::PARAMETER_OPTIONAL,
|
||||||
|
'Defines a base class to be extended by generated entity classes.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'num-spaces', null, InputOption::PARAMETER_OPTIONAL,
|
||||||
|
'Defines the number of indentation spaces', 4
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Generate entity classes and method stubs from your mapping information.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
|
||||||
|
$reader = new ClassMetadataReader();
|
||||||
|
$reader->setEntityManager($em);
|
||||||
|
|
||||||
|
// Process source directories
|
||||||
|
$fromPaths = array_merge(array($input->getArgument('from-path')), $input->getOption('from'));
|
||||||
|
|
||||||
|
foreach ($fromPaths as $dirName) {
|
||||||
|
$dirName = realpath($dirName);
|
||||||
|
|
||||||
|
if ( ! file_exists($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not exist.", $dirName)
|
||||||
|
);
|
||||||
|
} else if ( ! is_readable($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not have read permissions.", $dirName)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$reader->addMappingSource($dirName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process destination directory
|
||||||
|
$destPath = realpath($input->getArgument('dest-path'));
|
||||||
|
|
||||||
|
if ( ! file_exists($destPath)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Entities destination directory '<info>%s</info>' does not exist.", $destPath)
|
||||||
|
);
|
||||||
|
} else if ( ! is_writable($destPath)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Entities destination directory '<info>%s</info>' does not have write permissions.", $destPath)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create EntityGenerator
|
||||||
|
$entityGenerator = new EntityGenerator();
|
||||||
|
|
||||||
|
$entityGenerator->setGenerateAnnotations($input->getOption('generate-annotations'));
|
||||||
|
$entityGenerator->setGenerateStubMethods($input->getOption('generate-methods'));
|
||||||
|
$entityGenerator->setRegenerateEntityIfExists($input->getOption('regenerate-entities'));
|
||||||
|
$entityGenerator->setUpdateEntityIfExists($input->getOption('update-entities'));
|
||||||
|
$entityGenerator->setNumSpaces($input->getOption('num-spaces'));
|
||||||
|
|
||||||
|
if (($extend = $input->getOption('extend')) !== null) {
|
||||||
|
$entityGenerator->setClassToExtend($extend);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Retrieving ClassMetadatas
|
||||||
|
$metadatas = $reader->getMetadatas();
|
||||||
|
|
||||||
|
if ( ! empty($metadatas)) {
|
||||||
|
foreach ($metadatas as $metadata) {
|
||||||
|
$output->write(
|
||||||
|
sprintf('Processing entity "<info>%s</info>"', $metadata->name) . PHP_EOL
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generating Entities
|
||||||
|
$entityGenerator->generate($metadatas, $destPath);
|
||||||
|
|
||||||
|
// Outputting information message
|
||||||
|
$output->write(PHP_EOL . sprintf('Entity classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
|
||||||
|
} else {
|
||||||
|
$output->write('No Metadata Classes to process.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,136 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to (re)generate the proxy classes used by doctrine.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class GenerateProxiesCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:generate-proxies')
|
||||||
|
->setDescription('Generates proxy classes for entity classes.')
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument(
|
||||||
|
'from-path', InputArgument::REQUIRED, 'The path of mapping information.'
|
||||||
|
),
|
||||||
|
new InputArgument(
|
||||||
|
'dest-path', InputArgument::OPTIONAL,
|
||||||
|
'The path to generate your proxy classes. If none is provided, it will attempt to grab from configuration.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'from', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Optional paths of mapping information.',
|
||||||
|
array()
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Generates proxy classes for entity classes.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
|
||||||
|
$reader = new ClassMetadataReader();
|
||||||
|
$reader->setEntityManager($em);
|
||||||
|
|
||||||
|
// Process source directories
|
||||||
|
$fromPaths = array_merge(array($input->getArgument('from-path')), $input->getOption('from'));
|
||||||
|
|
||||||
|
foreach ($fromPaths as $dirName) {
|
||||||
|
$dirName = realpath($dirName);
|
||||||
|
|
||||||
|
if ( ! file_exists($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not exist.", $dirName)
|
||||||
|
);
|
||||||
|
} else if ( ! is_readable($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not have read permissions.", $dirName)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$reader->addMappingSource($dirName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process destination directory
|
||||||
|
if (($destPath = $input->getArgument('dest-path')) === null) {
|
||||||
|
$destPath = $em->getConfiguration()->getProxyDir();
|
||||||
|
}
|
||||||
|
|
||||||
|
$destPath = realpath($destPath);
|
||||||
|
|
||||||
|
if ( ! file_exists($destPath)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Proxies destination directory '<info>%s</info>' does not exist.", $destPath)
|
||||||
|
);
|
||||||
|
} else if ( ! is_writable($destPath)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Proxies destination directory '<info>%s</info>' does not have write permissions.", $destPath)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Retrieving ClassMetadatas
|
||||||
|
$metadatas = $reader->getMetadatas();
|
||||||
|
|
||||||
|
if ( ! empty($metadatas)) {
|
||||||
|
foreach ($metadatas as $metadata) {
|
||||||
|
$output->write(
|
||||||
|
sprintf('Processing entity "<info>%s</info>"', $metadata->name) . PHP_EOL
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generating Proxies
|
||||||
|
$em->getProxyFactory()->generateProxyClasses($metadatas, $destPath);
|
||||||
|
|
||||||
|
// Outputting information message
|
||||||
|
$output->write(PHP_EOL . sprintf('Proxy classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
|
||||||
|
} else {
|
||||||
|
$output->write('No Metadata Classes to process.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,171 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to generate repository classes for mapping information.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class GenerateRepositoriesCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
private static $_template =
|
||||||
|
'<?php
|
||||||
|
|
||||||
|
namespace <namespace>;
|
||||||
|
|
||||||
|
use \Doctrine\ORM\EntityRepository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <className>
|
||||||
|
*
|
||||||
|
* This class was generated by the Doctrine ORM. Add your own custom
|
||||||
|
* repository methods below.
|
||||||
|
*/
|
||||||
|
class <className> extends EntityRepository
|
||||||
|
{
|
||||||
|
}';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:generate-repositories')
|
||||||
|
->setDescription('Generate repository classes from your mapping information.')
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument(
|
||||||
|
'from-path', InputArgument::REQUIRED, 'The path of mapping information.'
|
||||||
|
),
|
||||||
|
new InputArgument(
|
||||||
|
'dest-path', InputArgument::REQUIRED, 'The path to generate your repository classes.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'from', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Optional paths of mapping information.',
|
||||||
|
array()
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Generate repository classes from your mapping information.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
|
||||||
|
$reader = new ClassMetadataReader();
|
||||||
|
$reader->setEntityManager($em);
|
||||||
|
|
||||||
|
// Process source directories
|
||||||
|
$fromPaths = array_merge(array($input->getArgument('from-path')), $input->getOption('from'));
|
||||||
|
|
||||||
|
foreach ($fromPaths as $dirName) {
|
||||||
|
$dirName = realpath($dirName);
|
||||||
|
|
||||||
|
if ( ! file_exists($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not exist.", $dirName)
|
||||||
|
);
|
||||||
|
} else if ( ! is_readable($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not have read permissions.", $dirName)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$reader->addMappingSource($dirName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Process destination directory
|
||||||
|
$destPath = realpath($input->getArgument('dest-path'));
|
||||||
|
|
||||||
|
if ( ! file_exists($destPath)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Entities destination directory '<info>%s</info>' does not exist.", $destPath)
|
||||||
|
);
|
||||||
|
} else if ( ! is_writable($destPath)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Entities destination directory '<info>%s</info>' does not have write permissions.", $destPath)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Retrieving ClassMetadatas
|
||||||
|
$metadatas = $reader->getMetadatas();
|
||||||
|
|
||||||
|
if ( ! empty($metadatas)) {
|
||||||
|
$numRepositories = 0;
|
||||||
|
|
||||||
|
foreach ($metadatas as $metadata) {
|
||||||
|
if ($metadata->customRepositoryClassName) {
|
||||||
|
$output->write(
|
||||||
|
sprintf('Processing repository "<info>%s</info>"', $metadata->customRepositoryClassName) . PHP_EOL
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->_generateRepositoryClass($metadata, $destPath);
|
||||||
|
|
||||||
|
$numRepositories++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($numRepositories) {
|
||||||
|
// Outputting information message
|
||||||
|
$output->write(PHP_EOL . sprintf('Repository classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
|
||||||
|
} else {
|
||||||
|
$output->write('No Repository classes were found to be processed.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$output->write('No Metadata Classes to process.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private function _generateRepositoryClass($metadata, $destPath)
|
||||||
|
{
|
||||||
|
$code = $this->_generateRepositoryClass($metadata->customRepositoryClassName);
|
||||||
|
|
||||||
|
$path = $destPath . DIRECTORY_SEPARATOR
|
||||||
|
. str_replace('\\', \DIRECTORY_SEPARATOR, $metadata->customRepositoryClassName) . '.php';
|
||||||
|
$dir = dirname($path);
|
||||||
|
|
||||||
|
if ( ! is_dir($dir)) {
|
||||||
|
mkdir($dir, 0777, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
file_put_contents($path, $code);
|
||||||
|
}
|
||||||
|
}
|
124
lib/Doctrine/ORM/Tools/Console/Command/RunDqlCommand.php
Normal file
124
lib/Doctrine/ORM/Tools/Console/Command/RunDqlCommand.php
Normal file
|
@ -0,0 +1,124 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to execute DQL queries in a given EntityManager.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class RunDqlCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:run-dql')
|
||||||
|
->setDescription('Executes arbitrary DQL directly from the command line.')
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument('dql', InputArgument::REQUIRED, 'The DQL to execute.'),
|
||||||
|
new InputOption(
|
||||||
|
'hydrate', null, InputOption::PARAMETER_REQUIRED,
|
||||||
|
'Hydration mode of result set. Should be either: object, array, scalar or single-scalar.',
|
||||||
|
'object'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'first-result', null, InputOption::PARAMETER_REQUIRED,
|
||||||
|
'The first result in the result set.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'max-result', null, InputOption::PARAMETER_REQUIRED,
|
||||||
|
'The maximum number of results in the result set.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'depth', null, InputOption::PARAMETER_REQUIRED,
|
||||||
|
'Dumping depth of Entity graph.', 7
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Executes arbitrary DQL directly from the command line.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
|
||||||
|
if (($dql = $input->getArgument('dql')) === null) {
|
||||||
|
throw new \RuntimeException("Argument 'DQL' is required in order to execute this command correctly.");
|
||||||
|
}
|
||||||
|
|
||||||
|
$depth = $input->getOption('depth');
|
||||||
|
|
||||||
|
if ( ! is_numeric($depth)) {
|
||||||
|
throw new \LogicException("Option 'depth' must contains an integer value");
|
||||||
|
}
|
||||||
|
|
||||||
|
$hydrationModeName = $input->getOption('hydrate');
|
||||||
|
$hydrationMode = 'Doctrine\ORM\Query::HYDRATE_' . strtoupper(str_replace('-', '_', $hydrationModeName));
|
||||||
|
|
||||||
|
if ( ! defined($hydrationMode)) {
|
||||||
|
throw new \RuntimeException(
|
||||||
|
"Hydration mode '$hydrationModeName' does not exist. It should be either: object. array, scalar or single-scalar."
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$query = $em->createQuery($dql);
|
||||||
|
|
||||||
|
if (($firstResult = $input->getOption('first-result')) !== null) {
|
||||||
|
if ( ! is_numeric($firstResult)) {
|
||||||
|
throw new \LogicException("Option 'first-result' must contains an integer value");
|
||||||
|
}
|
||||||
|
|
||||||
|
$query->setFirstResult((int) $firstResult);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (($maxResult = $input->getOption('max-result')) !== null) {
|
||||||
|
if ( ! is_numeric($maxResult)) {
|
||||||
|
throw new \LogicException("Option 'max-result' must contains an integer value");
|
||||||
|
}
|
||||||
|
|
||||||
|
$query->setMaxResult((int) $maxResult);
|
||||||
|
}
|
||||||
|
|
||||||
|
$resultSet = $query->execute(array(), $hydrationMode);
|
||||||
|
|
||||||
|
\Doctrine\Common\Util\Debug::dump($resultSet, $input->getOption('depth'));
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,120 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command\SchemaTool;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to create the database schema for a set of classes based on their mappings.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class CreateCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:schema-tool:create')
|
||||||
|
->setDescription(
|
||||||
|
'Processes the schema and either create it directly on EntityManager Storage Connection or generate the SQL output.'
|
||||||
|
)
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument(
|
||||||
|
'from-path', InputArgument::REQUIRED, 'The path of mapping information.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'from', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Optional paths of mapping information.',
|
||||||
|
array()
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'dump-sql', null, InputOption::PARAMETER_NONE,
|
||||||
|
'Instead of try to apply generated SQLs into EntityManager Storage Connection, output them.'
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Processes the schema and either create it directly on EntityManager Storage Connection or generate the SQL output.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
|
||||||
|
$reader = new ClassMetadataReader();
|
||||||
|
$reader->setEntityManager($em);
|
||||||
|
|
||||||
|
// Process source directories
|
||||||
|
$fromPaths = array_merge(array($input->getArgument('from-path')), $input->getOption('from'));
|
||||||
|
|
||||||
|
foreach ($fromPaths as $dirName) {
|
||||||
|
$dirName = realpath($dirName);
|
||||||
|
|
||||||
|
if ( ! file_exists($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not exist.", $dirName)
|
||||||
|
);
|
||||||
|
} else if ( ! is_readable($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not have read permissions.", $dirName)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$reader->addMappingSource($dirName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Retrieving ClassMetadatas
|
||||||
|
$metadatas = $reader->getMetadatas();
|
||||||
|
|
||||||
|
if ( ! empty($metadatas)) {
|
||||||
|
// Create SchemaTool
|
||||||
|
$tool = new \Doctrine\ORM\Tools\SchemaTool($em);
|
||||||
|
|
||||||
|
if ($input->getOption('dump-sql') === null) {
|
||||||
|
$sqls = $tool->getCreateSchemaSql($metadatas);
|
||||||
|
$output->write(implode(';' . PHP_EOL, $sqls));
|
||||||
|
} else {
|
||||||
|
$output->write('Creating database schema...' . PHP_EOL);
|
||||||
|
$tool->createSchema($metadatas);
|
||||||
|
$output->write('Database schema created successfully!' . PHP_EOL);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$output->write('No Metadata Classes to process.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,121 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command\SchemaTool;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to drop the database schema for a set of classes based on their mappings.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class DropCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:schema-tool:drop')
|
||||||
|
->setDescription(
|
||||||
|
'Processes the schema and either drop the database schema of EntityManager Storage Connection or generate the SQL output.'
|
||||||
|
)
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument(
|
||||||
|
'from-path', InputArgument::REQUIRED, 'The path of mapping information.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'from', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Optional paths of mapping information.',
|
||||||
|
array()
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'dump-sql', null, InputOption::PARAMETER_NONE,
|
||||||
|
'Instead of try to apply generated SQLs into EntityManager Storage Connection, output them.'
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Processes the schema and either drop the database schema of EntityManager Storage Connection or generate the SQL output.
|
||||||
|
Beware that the complete database is dropped by this command, even tables that are not relevant to your metadata model.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
|
||||||
|
$reader = new ClassMetadataReader();
|
||||||
|
$reader->setEntityManager($em);
|
||||||
|
|
||||||
|
// Process source directories
|
||||||
|
$fromPaths = array_merge(array($input->getArgument('from-path')), $input->getOption('from'));
|
||||||
|
|
||||||
|
foreach ($fromPaths as $dirName) {
|
||||||
|
$dirName = realpath($dirName);
|
||||||
|
|
||||||
|
if ( ! file_exists($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not exist.", $dirName)
|
||||||
|
);
|
||||||
|
} else if ( ! is_readable($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not have read permissions.", $dirName)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$reader->addMappingSource($dirName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Retrieving ClassMetadatas
|
||||||
|
$metadatas = $reader->getMetadatas();
|
||||||
|
|
||||||
|
if ( ! empty($metadatas)) {
|
||||||
|
// Create SchemaTool
|
||||||
|
$tool = new \Doctrine\ORM\Tools\SchemaTool($em);
|
||||||
|
|
||||||
|
if ($input->getOption('dump-sql') === null) {
|
||||||
|
$sqls = $tool->getDropSchemaSql($metadatas);
|
||||||
|
$output->write(implode(';' . PHP_EOL, $sqls));
|
||||||
|
} else {
|
||||||
|
$output->write('Dropping database schema...' . PHP_EOL);
|
||||||
|
$tool->dropSchema($metadatas);
|
||||||
|
$output->write('Database schema dropped successfully!' . PHP_EOL);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$output->write('No Metadata Classes to process.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,129 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Command\SchemaTool;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Input\InputArgument,
|
||||||
|
Symfony\Components\Console\Input\InputOption,
|
||||||
|
Symfony\Components\Console;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Command to update the database schema for a set of classes based on their mappings.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class UpdateCommand extends Console\Command\Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function configure()
|
||||||
|
{
|
||||||
|
$this
|
||||||
|
->setName('orm:schema-tool:update')
|
||||||
|
->setDescription(
|
||||||
|
'Processes the schema and either update the database schema of EntityManager Storage Connection or generate the SQL output.'
|
||||||
|
)
|
||||||
|
->setDefinition(array(
|
||||||
|
new InputArgument(
|
||||||
|
'from-path', InputArgument::REQUIRED, 'The path of mapping information.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'from', null, InputOption::PARAMETER_REQUIRED | InputOption::PARAMETER_IS_ARRAY,
|
||||||
|
'Optional paths of mapping information.',
|
||||||
|
array()
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'complete', null, InputOption::PARAMETER_NONE,
|
||||||
|
'If defined, all assets of the database which are not relevant to the current metadata will be dropped.'
|
||||||
|
),
|
||||||
|
new InputOption(
|
||||||
|
'dump-sql', null, InputOption::PARAMETER_NONE,
|
||||||
|
'Instead of try to apply generated SQLs into EntityManager Storage Connection, output them.'
|
||||||
|
)
|
||||||
|
))
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
Processes the schema and either update the database schema of EntityManager Storage Connection or generate the SQL output.
|
||||||
|
Beware that if --complete is not defined, it will do a save update, which does not delete any tables, sequences or affected foreign keys.
|
||||||
|
If defined, all assets of the database which are not relevant to the current metadata are dropped by this command.
|
||||||
|
EOT
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Console\Command\Command
|
||||||
|
*/
|
||||||
|
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
|
||||||
|
{
|
||||||
|
$em = $this->getHelper('em')->getEntityManager();
|
||||||
|
|
||||||
|
$reader = new ClassMetadataReader();
|
||||||
|
$reader->setEntityManager($em);
|
||||||
|
|
||||||
|
// Process source directories
|
||||||
|
$fromPaths = array_merge(array($input->getArgument('from-path')), $input->getOption('from'));
|
||||||
|
|
||||||
|
foreach ($fromPaths as $dirName) {
|
||||||
|
$dirName = realpath($dirName);
|
||||||
|
|
||||||
|
if ( ! file_exists($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not exist.", $dirName)
|
||||||
|
);
|
||||||
|
} else if ( ! is_readable($dirName)) {
|
||||||
|
throw new \InvalidArgumentException(
|
||||||
|
sprintf("Mapping directory '<info>%s</info>' does not have read permissions.", $dirName)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
$reader->addMappingSource($dirName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Defining if update is complete or not (--complete not defined means $saveMode = true)
|
||||||
|
$saveMode = ($input->getOption('complete') === null);
|
||||||
|
|
||||||
|
// Retrieving ClassMetadatas
|
||||||
|
$metadatas = $reader->getMetadatas();
|
||||||
|
|
||||||
|
if ( ! empty($metadatas)) {
|
||||||
|
// Create SchemaTool
|
||||||
|
$tool = new \Doctrine\ORM\Tools\SchemaTool($em);
|
||||||
|
|
||||||
|
if ($input->getOption('dump-sql') === null) {
|
||||||
|
$sqls = $tool->getUpdateSchemaSql($metadatas, $saveMode);
|
||||||
|
$output->write(implode(';' . PHP_EOL, $sqls));
|
||||||
|
} else {
|
||||||
|
$output->write('Updating database schema...' . PHP_EOL);
|
||||||
|
$tool->updateSchema($metadatas, $saveMode);
|
||||||
|
$output->write('Database schema updated successfully!' . PHP_EOL);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$output->write('No Metadata Classes to process.' . PHP_EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,74 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* $Id$
|
||||||
|
*
|
||||||
|
* 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 LGPL. For more information, see
|
||||||
|
* <http://www.doctrine-project.org>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Doctrine\ORM\Tools\Console\Helper;
|
||||||
|
|
||||||
|
use Symfony\Components\Console\Helper\Helper,
|
||||||
|
Doctrine\ORM\EntityManager;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Doctrine CLI Connection Helper.
|
||||||
|
*
|
||||||
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
||||||
|
* @link www.doctrine-project.org
|
||||||
|
* @since 2.0
|
||||||
|
* @version $Revision$
|
||||||
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
||||||
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
||||||
|
* @author Jonathan Wage <jonwage@gmail.com>
|
||||||
|
* @author Roman Borschel <roman@code-factory.org>
|
||||||
|
*/
|
||||||
|
class EntityManagerHelper extends Helper
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Doctrine ORM EntityManager
|
||||||
|
* @var EntityManager
|
||||||
|
*/
|
||||||
|
protected $_em;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* @param Connection $connection Doctrine Database Connection
|
||||||
|
*/
|
||||||
|
public function __construct(EntityManager $em)
|
||||||
|
{
|
||||||
|
$this->_em = $em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves Doctrine ORM EntityManager
|
||||||
|
*
|
||||||
|
* @return EntityManager
|
||||||
|
*/
|
||||||
|
public function getEntityManager()
|
||||||
|
{
|
||||||
|
return $this->_em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see Helper
|
||||||
|
*/
|
||||||
|
public function getName()
|
||||||
|
{
|
||||||
|
return 'entityManager';
|
||||||
|
}
|
||||||
|
}
|
|
@ -48,7 +48,7 @@ class ConvertDoctrine1Schema
|
||||||
* Constructor passes the directory or array of directories
|
* Constructor passes the directory or array of directories
|
||||||
* to convert the Doctrine 1 schema files from
|
* to convert the Doctrine 1 schema files from
|
||||||
*
|
*
|
||||||
* @param string $from
|
* @param array $from
|
||||||
* @author Jonathan Wage
|
* @author Jonathan Wage
|
||||||
*/
|
*/
|
||||||
public function __construct($from)
|
public function __construct($from)
|
||||||
|
|
|
@ -43,15 +43,6 @@ use Doctrine\ORM\ORMException,
|
||||||
*/
|
*/
|
||||||
class SchemaTool
|
class SchemaTool
|
||||||
{
|
{
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
const DROP_METADATA = "metadata";
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
const DROP_DATABASE = "database";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var \Doctrine\ORM\EntityManager
|
* @var \Doctrine\ORM\EntityManager
|
||||||
*/
|
*/
|
||||||
|
@ -473,12 +464,11 @@ class SchemaTool
|
||||||
* issued for all classes of the schema and some probably just don't exist.
|
* issued for all classes of the schema and some probably just don't exist.
|
||||||
*
|
*
|
||||||
* @param array $classes
|
* @param array $classes
|
||||||
* @param string $mode
|
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function dropSchema(array $classes, $mode=self::DROP_METADATA)
|
public function dropSchema(array $classes)
|
||||||
{
|
{
|
||||||
$dropSchemaSql = $this->getDropSchemaSql($classes, $mode);
|
$dropSchemaSql = $this->getDropSchemaSql($classes);
|
||||||
$conn = $this->_em->getConnection();
|
$conn = $this->_em->getConnection();
|
||||||
|
|
||||||
foreach ($dropSchemaSql as $sql) {
|
foreach ($dropSchemaSql as $sql) {
|
||||||
|
@ -490,7 +480,6 @@ class SchemaTool
|
||||||
* Gets the SQL needed to drop the database schema for the given classes.
|
* Gets the SQL needed to drop the database schema for the given classes.
|
||||||
*
|
*
|
||||||
* @param array $classes
|
* @param array $classes
|
||||||
* @param string $mode
|
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function getDropSchemaSql(array $classes)
|
public function getDropSchemaSql(array $classes)
|
||||||
|
|
|
@ -22,9 +22,6 @@ $classLoader->register();
|
||||||
$classLoader = new \Doctrine\Common\ClassLoader('Proxies', __DIR__);
|
$classLoader = new \Doctrine\Common\ClassLoader('Proxies', __DIR__);
|
||||||
$classLoader->register();
|
$classLoader->register();
|
||||||
|
|
||||||
$classLoader = new \Doctrine\Common\ClassLoader('Symfony', __DIR__ . '/../../lib/vendor');
|
|
||||||
$classLoader->register();
|
|
||||||
|
|
||||||
$config = new \Doctrine\ORM\Configuration();
|
$config = new \Doctrine\ORM\Configuration();
|
||||||
$config->setMetadataCacheImpl(new \Doctrine\Common\Cache\ArrayCache);
|
$config->setMetadataCacheImpl(new \Doctrine\Common\Cache\ArrayCache);
|
||||||
$config->setProxyDir(__DIR__ . '/Proxies');
|
$config->setProxyDir(__DIR__ . '/Proxies');
|
||||||
|
@ -37,5 +34,7 @@ $connectionOptions = array(
|
||||||
|
|
||||||
$em = \Doctrine\ORM\EntityManager::create($connectionOptions, $config);
|
$em = \Doctrine\ORM\EntityManager::create($connectionOptions, $config);
|
||||||
|
|
||||||
$configuration = new \Doctrine\Common\CLI\Configuration();
|
$helperSet = new \Symfony\Components\Console\Helper\HelperSet(array(
|
||||||
$configuration->setAttribute('em', $em);
|
'db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($em->getConnection()),
|
||||||
|
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($em)
|
||||||
|
));
|
|
@ -5,8 +5,34 @@ require __DIR__ . '/../../lib/Doctrine/Common/ClassLoader.php';
|
||||||
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine', __DIR__ . '/../../lib');
|
$classLoader = new \Doctrine\Common\ClassLoader('Doctrine', __DIR__ . '/../../lib');
|
||||||
$classLoader->register();
|
$classLoader->register();
|
||||||
|
|
||||||
// Variable $configuration is defined inside cli-config.php
|
$classLoader = new \Doctrine\Common\ClassLoader('Symfony', __DIR__ . '/../../lib/vendor');
|
||||||
|
$classLoader->register();
|
||||||
|
|
||||||
|
// Variable $helperSet is defined inside cli-config.php
|
||||||
require __DIR__ . '/cli-config.php';
|
require __DIR__ . '/cli-config.php';
|
||||||
|
|
||||||
$cli = new \Doctrine\Common\CLI\CLIController($configuration);
|
$cli = new \Symfony\Components\Console\Application('Doctrine Command Line Interface', Doctrine\Common\Version::VERSION);
|
||||||
$cli->run($_SERVER['argv']);
|
$cli->setCatchExceptions(true);
|
||||||
|
$cli->setHelperSet($helperSet);
|
||||||
|
$cli->addCommands(array(
|
||||||
|
// DBAL Commands
|
||||||
|
new \Doctrine\DBAL\Tools\Console\Command\RunSqlCommand(),
|
||||||
|
new \Doctrine\DBAL\Tools\Console\Command\ImportCommand(),
|
||||||
|
|
||||||
|
// ORM Commands
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\ClearCache\MetadataCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\ClearCache\ResultCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\ClearCache\QueryCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\SchemaTool\CreateCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\SchemaTool\UpdateCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\SchemaTool\DropCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\EnsureProductionSettingsCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\ConvertDoctrine1SchemaCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\GenerateRepositoriesCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\GenerateEntitiesCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\ConvertMappingCommand(),
|
||||||
|
new \Doctrine\ORM\Tools\Console\Command\RunDqlCommand(),
|
||||||
|
|
||||||
|
));
|
||||||
|
$cli->run();
|
Loading…
Add table
Reference in a new issue