Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / lib / Doctrine / ORM / Tools / Console / Command / GenerateProxiesCommand.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
27 /**
28  * Command to (re)generate the proxy classes used by doctrine.
29  *
30  * 
31  * @link    www.doctrine-project.org
32  * @since   2.0
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     /**
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         if (($destPath = $input->getArgument('dest-path')) === null) {
76             $destPath = $em->getConfiguration()->getProxyDir();
77         }
78
79         if ( ! is_dir($destPath)) {
80             mkdir($destPath, 0777, true);
81         }
82
83         $destPath = realpath($destPath);
84
85         if ( ! file_exists($destPath)) {
86             throw new \InvalidArgumentException(
87                 sprintf("Proxies destination directory '<info>%s</info>' does not exist.", $em->getConfiguration()->getProxyDir())
88             );
89         } else if ( ! is_writable($destPath)) {
90             throw new \InvalidArgumentException(
91                 sprintf("Proxies destination directory '<info>%s</info>' does not have write permissions.", $destPath)
92             );
93         }
94
95         if ( count($metadatas)) {
96             foreach ($metadatas as $metadata) {
97                 $output->write(
98                     sprintf('Processing entity "<info>%s</info>"', $metadata->name) . PHP_EOL
99                 );
100             }
101
102             // Generating Proxies
103             $em->getProxyFactory()->generateProxyClasses($metadatas, $destPath);
104
105             // Outputting information message
106             $output->write(PHP_EOL . sprintf('Proxy classes generated to "<info>%s</INFO>"', $destPath) . PHP_EOL);
107         } else {
108             $output->write('No Metadata Classes to process.' . PHP_EOL);
109         }
110
111     }
112 }