* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Sonata\EasyExtendsBundle\Generator; use Sonata\EasyExtendsBundle\Bundle\BundleMetadata; use Symfony\Component\Console\Output\OutputInterface; class OrmGenerator implements GeneratorInterface { /** * @var string */ protected $entityTemplate; /** * @var string */ protected $entityRepositoryTemplate; public function __construct() { $this->entityTemplate = file_get_contents(__DIR__.'/../Resources/skeleton/orm/entity.mustache'); $this->entityRepositoryTemplate = file_get_contents(__DIR__.'/../Resources/skeleton/orm/repository.mustache'); } /** * {@inheritdoc} */ public function generate(OutputInterface $output, BundleMetadata $bundleMetadata) { $this->generateMappingEntityFiles($output, $bundleMetadata); $this->generateEntityFiles($output, $bundleMetadata); $this->generateEntityRepositoryFiles($output, $bundleMetadata); } /** * @param OutputInterface $output * @param BundleMetadata $bundleMetadata */ public function generateMappingEntityFiles(OutputInterface $output, BundleMetadata $bundleMetadata) { $output->writeln(' - Copy entity files'); $files = $bundleMetadata->getOrmMetadata()->getEntityMappingFiles(); foreach ($files as $file) { // copy mapping definition $fileName = substr($file->getFileName(), 0, strrpos($file->getFileName(), '.')); $dest_file = sprintf('%s/%s', $bundleMetadata->getOrmMetadata()->getExtendedMappingEntityDirectory(), $fileName); $src_file = sprintf('%s/%s', $bundleMetadata->getOrmMetadata()->getMappingEntityDirectory(), $file->getFileName()); if (is_file($dest_file)) { $output->writeln(sprintf(' ~ %s', $fileName)); } else { $output->writeln(sprintf(' + %s', $fileName)); $mappingEntityTemplate = file_get_contents($src_file); $string = Mustache::replace($mappingEntityTemplate, array( 'namespace' => $bundleMetadata->getExtendedNamespace(), )); file_put_contents($dest_file, $string); } } } /** * @param OutputInterface $output * @param BundleMetadata $bundleMetadata */ public function generateEntityFiles(OutputInterface $output, BundleMetadata $bundleMetadata) { $output->writeln(' - Generating entity files'); $names = $bundleMetadata->getOrmMetadata()->getEntityNames(); foreach ($names as $name) { $extendedName = $name; $dest_file = sprintf('%s/%s.php', $bundleMetadata->getOrmMetadata()->getExtendedEntityDirectory(), $name); $src_file = sprintf('%s/%s.php', $bundleMetadata->getOrmMetadata()->getEntityDirectory(), $extendedName); if (!is_file($src_file)) { $extendedName = 'Base'.$name; $src_file = sprintf('%s/%s.php', $bundleMetadata->getOrmMetadata()->getEntityDirectory(), $extendedName); if (!is_file($src_file)) { $output->writeln(sprintf(' ! %s', $extendedName)); continue; } } if (is_file($dest_file)) { $output->writeln(sprintf(' ~ %s', $name)); } else { $output->writeln(sprintf(' + %s', $name)); $string = Mustache::replace($this->getEntityTemplate(), array( 'extended_namespace' => $bundleMetadata->getExtendedNamespace(), 'name' => $name != $extendedName ? $extendedName : $name, 'class' => $name, 'extended_name' => $name == $extendedName ? 'Base'.$name : $extendedName, 'namespace' => $bundleMetadata->getNamespace(), )); file_put_contents($dest_file, $string); } } } /** * @param OutputInterface $output * @param BundleMetadata $bundleMetadata */ public function generateEntityRepositoryFiles(OutputInterface $output, BundleMetadata $bundleMetadata) { $output->writeln(' - Generating entity repository files'); $names = $bundleMetadata->getOrmMetadata()->getEntityNames(); foreach ($names as $name) { $dest_file = sprintf('%s/%sRepository.php', $bundleMetadata->getOrmMetadata()->getExtendedEntityDirectory(), $name); $src_file = sprintf('%s/Base%sRepository.php', $bundleMetadata->getOrmMetadata()->getEntityDirectory(), $name); if (!is_file($src_file)) { $output->writeln(sprintf(' ! %sRepository', $name)); continue; } if (is_file($dest_file)) { $output->writeln(sprintf(' ~ %sRepository', $name)); } else { $output->writeln(sprintf(' + %sRepository', $name)); $string = Mustache::replace($this->getEntityRepositoryTemplate(), array( 'extended_namespace' => $bundleMetadata->getExtendedNamespace(), 'name' => $name, 'namespace' => $bundleMetadata->getNamespace(), )); file_put_contents($dest_file, $string); } } } /** * @return string */ public function getEntityTemplate() { return $this->entityTemplate; } /** * @return string */ public function getEntityRepositoryTemplate() { return $this->entityRepositoryTemplate; } }