GenerateRepositoriesCommand.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php
  2. /*
  3. * $Id$
  4. *
  5. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  7. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  8. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  9. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  10. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  11. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  12. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  13. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  14. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  15. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  16. *
  17. * This software consists of voluntary contributions made by many individuals
  18. * and is licensed under the LGPL. For more information, see
  19. * <http://www.doctrine-project.org>.
  20. */
  21. namespace Doctrine\ORM\Tools\Console\Command;
  22. use Symfony\Component\Console\Input\InputArgument,
  23. Symfony\Component\Console\Input\InputOption,
  24. Symfony\Component\Console,
  25. Doctrine\ORM\Tools\Console\MetadataFilter,
  26. Doctrine\ORM\Tools\EntityRepositoryGenerator;
  27. /**
  28. * Command to generate repository classes for mapping information.
  29. *
  30. * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  31. * @link www.doctrine-project.org
  32. * @since 2.0
  33. * @version $Revision$
  34. * @author Benjamin Eberlei <kontakt@beberlei.de>
  35. * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
  36. * @author Jonathan Wage <jonwage@gmail.com>
  37. * @author Roman Borschel <roman@code-factory.org>
  38. */
  39. class GenerateRepositoriesCommand extends Console\Command\Command
  40. {
  41. /**
  42. * @see Console\Command\Command
  43. */
  44. protected function configure()
  45. {
  46. $this
  47. ->setName('orm:generate-repositories')
  48. ->setDescription('Generate repository classes from your mapping information.')
  49. ->setDefinition(array(
  50. new InputOption(
  51. 'filter', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
  52. 'A string pattern used to match entities that should be processed.'
  53. ),
  54. new InputArgument(
  55. 'dest-path', InputArgument::REQUIRED, 'The path to generate your repository classes.'
  56. )
  57. ))
  58. ->setHelp(<<<EOT
  59. Generate repository classes from your mapping information.
  60. EOT
  61. );
  62. }
  63. /**
  64. * @see Console\Command\Command
  65. */
  66. protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
  67. {
  68. $em = $this->getHelper('em')->getEntityManager();
  69. $metadatas = $em->getMetadataFactory()->getAllMetadata();
  70. $metadatas = MetadataFilter::filter($metadatas, $input->getOption('filter'));
  71. // Process destination directory
  72. $destPath = realpath($input->getArgument('dest-path'));
  73. if ( ! file_exists($destPath)) {
  74. throw new \InvalidArgumentException(
  75. sprintf("Entities destination directory '<info>%s</info>' does not exist.", $input->getArgument('dest-path'))
  76. );
  77. } else if ( ! is_writable($destPath)) {
  78. throw new \InvalidArgumentException(
  79. sprintf("Entities destination directory '<info>%s</info>' does not have write permissions.", $destPath)
  80. );
  81. }
  82. if (count($metadatas)) {
  83. $numRepositories = 0;
  84. $generator = new EntityRepositoryGenerator();
  85. foreach ($metadatas as $metadata) {
  86. if ($metadata->customRepositoryClassName) {
  87. $output->write(
  88. sprintf('Processing repository "<info>%s</info>"', $metadata->customRepositoryClassName) . PHP_EOL
  89. );
  90. $generator->writeEntityRepositoryClass($metadata->customRepositoryClassName, $destPath);
  91. $numRepositories++;
  92. }
  93. }
  94. if ($numRepositories) {
  95. // Outputting information message
  96. $output->write(PHP_EOL . sprintf('Repository classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
  97. } else {
  98. $output->write('No Repository classes were found to be processed.' . PHP_EOL);
  99. }
  100. } else {
  101. $output->write('No Metadata Classes to process.' . PHP_EOL);
  102. }
  103. }
  104. }