. */ namespace Doctrine\ORM\Tools\Cli\Tasks; use Doctrine\Common\Cli\Tasks\AbstractTask, Doctrine\ORM\Tools\Export\ClassMetadataExporter, Doctrine\Common\Cli\CliException, Doctrine\Common\Cli\Option, Doctrine\Common\Cli\OptionGroup, Doctrine\ORM\Tools\ConvertDoctrine1Schema; /** * CLI Task to convert a Doctrine 1 schema to a Doctrine 2 mapping file * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @since 2.0 * @version $Revision$ * @author Benjamin Eberlei * @author Guilherme Blanco * @author Jonathan Wage * @author Roman Borschel */ class ConvertDoctrine1SchemaTask extends AbstractTask { /** * @inheritdoc */ public function buildDocumentation() { $options = new OptionGroup(OptionGroup::CARDINALITY_N_N, array( new Option('from', '', 'The path to the Doctrine 1 schema.'), new Option('to', '', 'The Doctrine 2 mapping format to convert to.'), new Option('dest', '', 'The path to export the converted schema.') )); $doc = $this->getDocumentation(); $doc->setName('convert-10-schema') ->setDescription('Displays the current installed Doctrine version.') ->getOptionGroup() ->addOption($options); } /** * @inheritdoc */ public function validate() { $arguments = $this->getArguments(); $em = $this->getConfiguration()->getAttribute('em'); if ( ! isset($arguments['from']) || ! isset($arguments['to']) || ! isset($arguments['dest'])) { throw new CliException('You must specify a value for --from, --to and --dest'); } return true; } public function run() { $arguments = $this->getArguments(); $printer = $this->getPrinter(); $printer->writeln(sprintf( 'Converting Doctrine 1 schema at "%s" to the "%s" format', $printer->format($arguments['from'], 'KEYWORD'), $printer->format($arguments['to'], 'KEYWORD') ) ); $cme = new ClassMetadataExporter(); $exporter = $cme->getExporter($arguments['to'], $arguments['dest']); $converter = new ConvertDoctrine1Schema($arguments['from']); $metadatas = $converter->getMetadatasFromSchema(); foreach ($metadatas as $metadata) { $printer->writeln( sprintf('Processing entity "%s"', $printer->format($metadata->name, 'KEYWORD')) ); } $exporter->setMetadatas($metadatas); $exporter->export(); $printer->writeln(sprintf( 'Writing Doctrine 2 mapping files to "%s"', $printer->format($arguments['dest'], 'KEYWORD') ) ); } }