PhpExporter.php 6.55 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?php

/*
 *  $Id$
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
 * <http://www.doctrine-project.org>.
 */

namespace Doctrine\ORM\Tools\Export\Driver;

25
use Doctrine\ORM\Mapping\ClassMetadataInfo;
26 27

/**
28
 * ClassMetadata exporter for PHP code
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
 *
 * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @link    www.doctrine-project.org
 * @since   2.0
 * @version $Revision$
 * @author  Jonathan Wage <jonwage@gmail.com>
 */
class PhpExporter extends AbstractExporter
{
    protected $_extension = '.php';

    /**
     * Converts a single ClassMetadata instance to the exported format
     * and returns it
     *
44
     * @param ClassMetadataInfo $metadata 
45 46
     * @return mixed $exported
     */
47
    public function exportClassMetadata(ClassMetadataInfo $metadata)
48
    {
49 50 51
        $lines = array();
        $lines[] = '<?php';
        $lines[] = null;
52
        $lines[] = 'use Doctrine\ORM\Mapping\ClassMetadataInfo;';
53 54 55 56 57 58 59
        $lines[] = null;

        if ($metadata->isMappedSuperclass) {
            $lines[] = '$metadata->isMappedSuperclass = true;';
        }

        if ($metadata->inheritanceType) {
60
            $lines[] = '$metadata->setInheritanceType(ClassMetadataInfo::INHERITANCE_TYPE_' . $this->_getInheritanceTypeString($metadata->inheritanceType) . ');';
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
        }

        if ($metadata->customRepositoryClassName) {
            $lines[] = "\$metadata->customRepositoryClassName = '" . $metadata->customRepositoryClassName . "';";
        }

        if ($metadata->primaryTable) {
            $lines[] = '$metadata->setPrimaryTable(' . $this->_varExport($metadata->primaryTable) . ');';
        }

        if ($metadata->discriminatorColumn) {
            $lines[] = '$metadata->setDiscriminatorColumn(' . $this->_varExport($metadata->discriminatorColumn) . ');';
        }

        if ($metadata->discriminatorMap) {
            $lines[] = '$metadata->setDiscriminatorMap(' . $this->_varExport($metadata->discriminatorMap) . ');';
        }

        if ($metadata->changeTrackingPolicy) {
80
            $lines[] = '$metadata->setChangeTrackingPolicy(ClassMetadataInfo::CHANGETRACKING_' . $this->_getChangeTrackingPolicyString($metadata->changeTrackingPolicy) . ');';
81 82
        }

83 84 85 86 87 88 89 90
        if ($metadata->lifecycleCallbacks) {
            foreach ($metadata->lifecycleCallbacks as $event => $callbacks) {
                foreach ($callbacks as $callback) {
                    $lines[] = "\$metadata->addLifecycleCallback('$callback', '$event');";
                }
            }
        }

91 92 93 94 95
        foreach ($metadata->fieldMappings as $fieldMapping) {
            $lines[] = '$metadata->mapField(' . $this->_varExport($fieldMapping) . ');';
        }

        if ($generatorType = $this->_getIdGeneratorTypeString($metadata->generatorType)) {
96
            $lines[] = '$metadata->setIdGeneratorType(ClassMetadataInfo::GENERATOR_TYPE_' . $generatorType . ');';
97 98 99
        }

        foreach ($metadata->associationMappings as $associationMapping) {
100 101 102 103 104 105
            $cascade = array('remove', 'persist', 'refresh', 'merge', 'detach');
            foreach ($cascade as $key => $value) {
                if ( ! $associationMapping->{'isCascade'.ucfirst($value)}) {
                    unset($cascade[$key]);
                }
            }
106 107 108
            $associationMappingArray = array(
                'fieldName'    => $associationMapping->sourceFieldName,
                'targetEntity' => $associationMapping->targetEntityName,
109
                'cascade'     => $cascade,
110 111 112 113 114
            );
            
            if ($associationMapping instanceof \Doctrine\ORM\Mapping\OneToOneMapping) {
                $method = 'mapOneToOne';
                $oneToOneMappingArray = array(
115
                    'mappedBy'      => $associationMapping->mappedBy,
116 117 118 119 120 121 122 123
                    'joinColumns'   => $associationMapping->joinColumns,
                    'orphanRemoval' => $associationMapping->orphanRemoval,
                );
                
                $associationMappingArray = array_merge($associationMappingArray, $oneToOneMappingArray);
            } else if ($associationMapping instanceof \Doctrine\ORM\Mapping\OneToManyMapping) {
                $method = 'mapOneToMany';
                $oneToManyMappingArray = array(
124
                    'mappedBy'      => $associationMapping->mappedBy,
125
                    'orphanRemoval' => $associationMapping->orphanRemoval,
126
                    'orderBy' => $associationMapping->orderBy
127 128 129 130 131 132
                );
                
                $associationMappingArray = array_merge($associationMappingArray, $oneToManyMappingArray);
            } else if ($associationMapping instanceof \Doctrine\ORM\Mapping\ManyToManyMapping) {
                $method = 'mapManyToMany';
                $manyToManyMappingArray = array(
133
                    'mappedBy'  => $associationMapping->mappedBy,
134
                    'joinTable' => $associationMapping->joinTable,
135
                    'orderBy' => $associationMapping->orderBy
136 137 138 139
                );
                
                $associationMappingArray = array_merge($associationMappingArray, $manyToManyMappingArray);
            }
140
            
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
            $lines[] = '$metadata->' . $method . '(' . $this->_varExport($associationMappingArray) . ');';
        }

        return implode("\n", $lines);
    }

    protected function _varExport($var)
    {
        $export = var_export($var, true);
        $export = str_replace("\n", PHP_EOL . str_repeat(' ', 8), $export);
        $export = str_replace('  ', ' ', $export);
        $export = str_replace('array (', 'array(', $export);
        $export = str_replace('array( ', 'array(', $export);
        $export = str_replace(',)', ')', $export);
        $export = str_replace(', )', ')', $export);
        $export = str_replace('  ', ' ', $export);

        return $export;
159 160
    }
}