Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / lib / Doctrine / ORM / Tools / Console / Command / GenerateRepositoriesCommand.php
1 <?php
2 /*
3  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14  *
15  * This software consists of voluntary contributions made by many individuals
16  * and is licensed under the MIT license. For more information, see
17  * <http://www.doctrine-project.org>.
18  */
19
20 namespace Doctrine\ORM\Tools\Console\Command;
21
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 /**
29  * Command to generate repository classes for mapping information.
30  *
31  * 
32  * @link    www.doctrine-project.org
33  * @since   2.0
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     /**
65      * @see Console\Command\Command
66      */
67     protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
68     {
69         $em = $this->getHelper('em')->getEntityManager();
70
71         $metadatas = $em->getMetadataFactory()->getAllMetadata();
72         $metadatas = MetadataFilter::filter($metadatas, $input->getOption('filter'));
73
74         // Process destination directory
75         $destPath = realpath($input->getArgument('dest-path'));
76
77         if ( ! file_exists($destPath)) {
78             throw new \InvalidArgumentException(
79                 sprintf("Entities destination directory '<info>%s</info>' does not exist.", $input->getArgument('dest-path'))
80             );
81         } else if ( ! is_writable($destPath)) {
82             throw new \InvalidArgumentException(
83                 sprintf("Entities destination directory '<info>%s</info>' does not have write permissions.", $destPath)
84             );
85         }
86
87         if (count($metadatas)) {
88             $numRepositories = 0;
89             $generator = new EntityRepositoryGenerator();
90
91             foreach ($metadatas as $metadata) {
92                 if ($metadata->customRepositoryClassName) {
93                     $output->write(
94                         sprintf('Processing repository "<info>%s</info>"', $metadata->customRepositoryClassName) . PHP_EOL
95                     );
96
97                     $generator->writeEntityRepositoryClass($metadata->customRepositoryClassName, $destPath);
98
99                     $numRepositories++;
100                 }
101             }
102
103             if ($numRepositories) {
104                 // Outputting information message
105                 $output->write(PHP_EOL . sprintf('Repository classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
106             } else {
107                 $output->write('No Repository classes were found to be processed.' . PHP_EOL);
108             }
109         } else {
110             $output->write('No Metadata Classes to process.' . PHP_EOL);
111         }
112     }
113 }