PageRenderTime 41ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 1ms

/library/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php

http://github.com/michael-romer/zf-boilerplate
PHP | 115 lines | 62 code | 13 blank | 40 comment | 8 complexity | 3841aaf1b0e360858c748e922a044922 MD5 | raw file
Possible License(s): Unlicense, Apache-2.0
  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. /**
  27. * Command to (re)generate the proxy classes used by doctrine.
  28. *
  29. * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  30. * @link www.doctrine-project.org
  31. * @since 2.0
  32. * @version $Revision$
  33. * @author Benjamin Eberlei <kontakt@beberlei.de>
  34. * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
  35. * @author Jonathan Wage <jonwage@gmail.com>
  36. * @author Roman Borschel <roman@code-factory.org>
  37. */
  38. class GenerateProxiesCommand extends Console\Command\Command
  39. {
  40. /**
  41. * @see Console\Command\Command
  42. */
  43. protected function configure()
  44. {
  45. $this
  46. ->setName('orm:generate-proxies')
  47. ->setDescription('Generates proxy classes for entity classes.')
  48. ->setDefinition(array(
  49. new InputOption(
  50. 'filter', null, InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY,
  51. 'A string pattern used to match entities that should be processed.'
  52. ),
  53. new InputArgument(
  54. 'dest-path', InputArgument::OPTIONAL,
  55. 'The path to generate your proxy classes. If none is provided, it will attempt to grab from configuration.'
  56. ),
  57. ))
  58. ->setHelp(<<<EOT
  59. Generates proxy classes for entity classes.
  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. if (($destPath = $input->getArgument('dest-path')) === null) {
  73. $destPath = $em->getConfiguration()->getProxyDir();
  74. }
  75. if ( ! is_dir($destPath)) {
  76. mkdir($destPath, 0777, true);
  77. }
  78. $destPath = realpath($destPath);
  79. if ( ! file_exists($destPath)) {
  80. throw new \InvalidArgumentException(
  81. sprintf("Proxies destination directory '<info>%s</info>' does not exist.", $destPath)
  82. );
  83. } else if ( ! is_writable($destPath)) {
  84. throw new \InvalidArgumentException(
  85. sprintf("Proxies destination directory '<info>%s</info>' does not have write permissions.", $destPath)
  86. );
  87. }
  88. if ( count($metadatas)) {
  89. foreach ($metadatas as $metadata) {
  90. $output->write(
  91. sprintf('Processing entity "<info>%s</info>"', $metadata->name) . PHP_EOL
  92. );
  93. }
  94. // Generating Proxies
  95. $em->getProxyFactory()->generateProxyClasses($metadatas, $destPath);
  96. // Outputting information message
  97. $output->write(PHP_EOL . sprintf('Proxy classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
  98. } else {
  99. $output->write('No Metadata Classes to process.' . PHP_EOL);
  100. }
  101. }
  102. }