2010-04-08 07:47:42 +04:00
|
|
|
<?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;
|
|
|
|
|
2010-08-23 10:21:41 +04:00
|
|
|
use Symfony\Component\Console\Input\InputArgument,
|
|
|
|
Symfony\Component\Console\Input\InputOption,
|
|
|
|
Symfony\Component\Console,
|
2010-04-14 23:19:48 +04:00
|
|
|
Doctrine\ORM\Tools\Console\MetadataFilter,
|
|
|
|
Doctrine\ORM\Tools\EntityRepositoryGenerator;
|
2010-04-08 07:47:42 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @see Console\Command\Command
|
|
|
|
*/
|
|
|
|
protected function configure()
|
|
|
|
{
|
|
|
|
$this
|
|
|
|
->setName('orm:generate-repositories')
|
|
|
|
->setDescription('Generate repository classes from your mapping information.')
|
|
|
|
->setDefinition(array(
|
2010-04-11 11:30:01 +04:00
|
|
|
new InputOption(
|
2010-11-28 11:59:23 +03:00
|
|
|
'filter', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
|
2010-04-11 11:30:01 +04:00
|
|
|
'A string pattern used to match entities that should be processed.'
|
2010-04-08 07:47:42 +04:00
|
|
|
),
|
|
|
|
new InputArgument(
|
|
|
|
'dest-path', InputArgument::REQUIRED, 'The path to generate your repository classes.'
|
|
|
|
)
|
|
|
|
))
|
|
|
|
->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();
|
2010-04-11 11:30:01 +04:00
|
|
|
|
|
|
|
$metadatas = $em->getMetadataFactory()->getAllMetadata();
|
|
|
|
$metadatas = MetadataFilter::filter($metadatas, $input->getOption('filter'));
|
2010-04-08 07:47:42 +04:00
|
|
|
|
|
|
|
// Process destination directory
|
|
|
|
$destPath = realpath($input->getArgument('dest-path'));
|
|
|
|
|
|
|
|
if ( ! file_exists($destPath)) {
|
|
|
|
throw new \InvalidArgumentException(
|
2011-08-27 15:36:18 +04:00
|
|
|
sprintf("Entities destination directory '<info>%s</info>' does not exist.", $input->getArgument('dest-path'))
|
2010-04-08 07:47:42 +04:00
|
|
|
);
|
|
|
|
} else if ( ! is_writable($destPath)) {
|
|
|
|
throw new \InvalidArgumentException(
|
|
|
|
sprintf("Entities destination directory '<info>%s</info>' does not have write permissions.", $destPath)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-04-14 22:32:47 +04:00
|
|
|
if (count($metadatas)) {
|
2010-04-08 07:47:42 +04:00
|
|
|
$numRepositories = 0;
|
2010-04-14 23:19:48 +04:00
|
|
|
$generator = new EntityRepositoryGenerator();
|
2010-04-08 07:47:42 +04:00
|
|
|
|
|
|
|
foreach ($metadatas as $metadata) {
|
|
|
|
if ($metadata->customRepositoryClassName) {
|
|
|
|
$output->write(
|
|
|
|
sprintf('Processing repository "<info>%s</info>"', $metadata->customRepositoryClassName) . PHP_EOL
|
|
|
|
);
|
|
|
|
|
2010-04-14 23:19:48 +04:00
|
|
|
$generator->writeEntityRepositoryClass($metadata->customRepositoryClassName, $destPath);
|
2010-04-08 07:47:42 +04:00
|
|
|
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
}
|
2010-08-23 10:21:41 +04:00
|
|
|
}
|