2010-03-19 00:38:42 +03:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping\ClassMetadataInfo,
|
2010-03-20 01:38:45 +03:00
|
|
|
Doctrine\ORM\Mapping\AssociationMapping,
|
|
|
|
Doctrine\Common\Util\Inflector;
|
2010-03-19 00:38:42 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generic class used to generate PHP5 entity classes from ClassMetadataInfo instances
|
|
|
|
*
|
|
|
|
* [php]
|
|
|
|
* $classes = $em->getClassMetadataFactory()->getAllMetadata();
|
|
|
|
*
|
|
|
|
* $generator = new \Doctrine\ORM\Tools\EntityGenerator();
|
|
|
|
* $generator->setGenerateAnnotations(true);
|
|
|
|
* $generator->setGenerateStubMethods(true);
|
|
|
|
* $generator->setRegenerateEntityIfExists(false);
|
|
|
|
* $generator->setUpdateEntityIfExists(true);
|
|
|
|
* $generator->generate($classes, '/path/to/generate/entities');
|
|
|
|
*
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @link www.doctrine-project.org
|
|
|
|
* @since 2.0
|
|
|
|
* @version $Revision$
|
|
|
|
* @author Benjamin Eberlei <kontakt@beberlei.de>
|
|
|
|
* @author Guilherme Blanco <guilhermeblanco@hotmail.com>
|
|
|
|
* @author Jonathan Wage <jonwage@gmail.com>
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
|
|
*/
|
|
|
|
class EntityGenerator
|
|
|
|
{
|
|
|
|
/** The extension to use for written php files */
|
|
|
|
private $_extension = '.php';
|
|
|
|
|
|
|
|
/** Whether or not the current ClassMetadataInfo instance is new or old */
|
2010-03-19 07:19:15 +03:00
|
|
|
private $_isNew = true;
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-19 01:35:16 +03:00
|
|
|
/** If isNew is false then this variable contains instance of ReflectionClass for current entity */
|
|
|
|
private $_reflection;
|
2010-03-19 00:38:42 +03:00
|
|
|
|
|
|
|
/** Number of spaces to use for indention in generated code */
|
|
|
|
private $_numSpaces = 4;
|
|
|
|
|
|
|
|
/** The actual spaces to use for indention */
|
|
|
|
private $_spaces = ' ';
|
|
|
|
|
|
|
|
/** The class all generated entities should extend */
|
|
|
|
private $_classToExtend;
|
|
|
|
|
|
|
|
/** Whether or not to generation annotations */
|
|
|
|
private $_generateAnnotations = false;
|
|
|
|
|
|
|
|
/** Whether or not to generated sub methods */
|
2010-03-19 07:19:15 +03:00
|
|
|
private $_generateEntityStubMethods = false;
|
2010-03-19 00:38:42 +03:00
|
|
|
|
|
|
|
/** Whether or not to update the entity class if it exists already */
|
|
|
|
private $_updateEntityIfExists = false;
|
|
|
|
|
|
|
|
/** Whether or not to re-generate entity class if it exists already */
|
|
|
|
private $_regenerateEntityIfExists = false;
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private static $_classTemplate =
|
2010-03-19 00:38:42 +03:00
|
|
|
'<?php
|
|
|
|
|
2010-08-28 18:29:08 +04:00
|
|
|
<namespace>
|
2010-03-20 01:47:34 +03:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
<entityAnnotation>
|
|
|
|
<entityClassName>
|
|
|
|
{
|
|
|
|
<entityBody>
|
|
|
|
}';
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private static $_getMethodTemplate =
|
|
|
|
'/**
|
2010-03-20 01:47:34 +03:00
|
|
|
* <description>
|
|
|
|
*
|
|
|
|
* @return <variableType>$<variableName>
|
|
|
|
*/
|
2010-03-20 01:38:45 +03:00
|
|
|
public function <methodName>()
|
|
|
|
{
|
2010-04-14 19:21:39 +04:00
|
|
|
<spaces>return $this-><fieldName>;
|
2010-03-20 01:38:45 +03:00
|
|
|
}';
|
|
|
|
|
|
|
|
private static $_setMethodTemplate =
|
|
|
|
'/**
|
2010-03-20 01:47:34 +03:00
|
|
|
* <description>
|
|
|
|
*
|
|
|
|
* @param <variableType>$<variableName>
|
|
|
|
*/
|
2010-03-20 01:38:45 +03:00
|
|
|
public function <methodName>(<methodTypeHint>$<variableName>)
|
|
|
|
{
|
2010-04-14 19:21:39 +04:00
|
|
|
<spaces>$this-><fieldName> = $<variableName>;
|
2010-03-20 01:38:45 +03:00
|
|
|
}';
|
|
|
|
|
|
|
|
private static $_addMethodTemplate =
|
|
|
|
'/**
|
2010-03-20 01:47:34 +03:00
|
|
|
* <description>
|
|
|
|
*
|
|
|
|
* @param <variableType>$<variableName>
|
|
|
|
*/
|
2010-03-20 01:38:45 +03:00
|
|
|
public function <methodName>(<methodTypeHint>$<variableName>)
|
|
|
|
{
|
2010-04-14 19:21:39 +04:00
|
|
|
<spaces>$this-><fieldName>[] = $<variableName>;
|
2010-03-20 01:38:45 +03:00
|
|
|
}';
|
|
|
|
|
|
|
|
private static $_lifecycleCallbackMethodTemplate =
|
|
|
|
'/**
|
2010-03-20 01:47:34 +03:00
|
|
|
* @<name>
|
|
|
|
*/
|
2010-03-20 01:38:45 +03:00
|
|
|
public function <methodName>()
|
|
|
|
{
|
2010-04-14 19:21:39 +04:00
|
|
|
<spaces>// Add your code here
|
2010-03-20 01:38:45 +03:00
|
|
|
}';
|
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
/**
|
|
|
|
* Generate and write entity classes for the given array of ClassMetadataInfo instances
|
|
|
|
*
|
|
|
|
* @param array $metadatas
|
2010-03-29 02:56:59 +04:00
|
|
|
* @param string $outputDirectory
|
2010-03-19 00:38:42 +03:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function generate(array $metadatas, $outputDirectory)
|
|
|
|
{
|
|
|
|
foreach ($metadatas as $metadata) {
|
|
|
|
$this->writeEntityClass($metadata, $outputDirectory);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generated and write entity class to disk for the given ClassMetadataInfo instance
|
|
|
|
*
|
|
|
|
* @param ClassMetadataInfo $metadata
|
2010-03-29 02:56:59 +04:00
|
|
|
* @param string $outputDirectory
|
2010-03-19 00:38:42 +03:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function writeEntityClass(ClassMetadataInfo $metadata, $outputDirectory)
|
|
|
|
{
|
|
|
|
$path = $outputDirectory . '/' . str_replace('\\', DIRECTORY_SEPARATOR, $metadata->name) . $this->_extension;
|
|
|
|
$dir = dirname($path);
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if ( ! is_dir($dir)) {
|
|
|
|
mkdir($dir, 0777, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->_isNew = ! file_exists($path);
|
|
|
|
|
2010-03-19 01:35:16 +03:00
|
|
|
if ( ! $this->_isNew) {
|
|
|
|
require_once $path;
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 01:35:16 +03:00
|
|
|
$this->_reflection = new \ReflectionClass($metadata->name);
|
|
|
|
}
|
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
// If entity doesn't exist or we're re-generating the entities entirely
|
|
|
|
if ($this->_isNew || ( ! $this->_isNew && $this->_regenerateEntityIfExists)) {
|
|
|
|
file_put_contents($path, $this->generateEntityClass($metadata));
|
|
|
|
// If entity exists and we're allowed to update the entity class
|
|
|
|
} else if ( ! $this->_isNew && $this->_updateEntityIfExists) {
|
|
|
|
file_put_contents($path, $this->generateUpdatedEntityClass($metadata, $path));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a PHP5 Doctrine 2 entity class from the given ClassMetadataInfo instance
|
|
|
|
*
|
2010-03-29 02:56:59 +04:00
|
|
|
* @param ClassMetadataInfo $metadata
|
2010-03-19 00:38:42 +03:00
|
|
|
* @return string $code
|
|
|
|
*/
|
|
|
|
public function generateEntityClass(ClassMetadataInfo $metadata)
|
|
|
|
{
|
|
|
|
$placeHolders = array(
|
|
|
|
'<namespace>',
|
|
|
|
'<entityAnnotation>',
|
|
|
|
'<entityClassName>',
|
2010-04-14 22:17:55 +04:00
|
|
|
'<entityBody>'
|
2010-03-19 00:38:42 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
$replacements = array(
|
|
|
|
$this->_generateEntityNamespace($metadata),
|
2010-03-20 01:38:45 +03:00
|
|
|
$this->_generateEntityDocBlock($metadata),
|
2010-03-19 00:38:42 +03:00
|
|
|
$this->_generateEntityClassName($metadata),
|
2010-04-14 22:17:55 +04:00
|
|
|
$this->_generateEntityBody($metadata)
|
2010-03-19 00:38:42 +03:00
|
|
|
);
|
|
|
|
|
2010-04-14 22:17:55 +04:00
|
|
|
$code = str_replace($placeHolders, $replacements, self::$_classTemplate);
|
|
|
|
return str_replace('<spaces>', $this->_spaces, $code);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the updated code for the given ClassMetadataInfo and entity at path
|
|
|
|
*
|
2010-03-29 02:56:59 +04:00
|
|
|
* @param ClassMetadataInfo $metadata
|
|
|
|
* @param string $path
|
2010-03-19 00:38:42 +03:00
|
|
|
* @return string $code;
|
|
|
|
*/
|
|
|
|
public function generateUpdatedEntityClass(ClassMetadataInfo $metadata, $path)
|
|
|
|
{
|
2010-03-19 01:35:16 +03:00
|
|
|
$currentCode = file_get_contents($path);
|
2010-03-19 00:38:42 +03:00
|
|
|
|
|
|
|
$body = $this->_generateEntityBody($metadata);
|
2010-04-14 22:17:55 +04:00
|
|
|
$body = str_replace('<spaces>', $this->_spaces, $body);
|
2010-03-19 01:35:16 +03:00
|
|
|
$last = strrpos($currentCode, '}');
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-04-14 22:17:55 +04:00
|
|
|
return substr($currentCode, 0, $last) . $body . "\n}";
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the number of spaces the exported class should have
|
|
|
|
*
|
2010-03-29 02:56:59 +04:00
|
|
|
* @param integer $numSpaces
|
2010-03-19 00:38:42 +03:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setNumSpaces($numSpaces)
|
|
|
|
{
|
|
|
|
$this->_spaces = str_repeat(' ', $numSpaces);
|
|
|
|
$this->_numSpaces = $numSpaces;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the extension to use when writing php files to disk
|
|
|
|
*
|
2010-03-29 02:56:59 +04:00
|
|
|
* @param string $extension
|
2010-03-19 00:38:42 +03:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setExtension($extension)
|
|
|
|
{
|
|
|
|
$this->_extension = $extension;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the name of the class the generated classes should extend from
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setClassToExtend($classToExtend)
|
|
|
|
{
|
|
|
|
$this->_classToExtend = $classToExtend;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether or not to generate annotations for the entity
|
|
|
|
*
|
2010-03-29 02:56:59 +04:00
|
|
|
* @param bool $bool
|
2010-03-19 00:38:42 +03:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setGenerateAnnotations($bool)
|
|
|
|
{
|
|
|
|
$this->_generateAnnotations = $bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether or not to try and update the entity if it already exists
|
|
|
|
*
|
2010-03-29 02:56:59 +04:00
|
|
|
* @param bool $bool
|
2010-03-19 00:38:42 +03:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setUpdateEntityIfExists($bool)
|
|
|
|
{
|
|
|
|
$this->_updateEntityIfExists = $bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether or not to regenerate the entity if it exists
|
|
|
|
*
|
|
|
|
* @param bool $bool
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setRegenerateEntityIfExists($bool)
|
|
|
|
{
|
|
|
|
$this->_regenerateEntityIfExists = $bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether or not to generate stub methods for the entity
|
|
|
|
*
|
|
|
|
* @param bool $bool
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setGenerateStubMethods($bool)
|
|
|
|
{
|
2010-03-19 07:19:15 +03:00
|
|
|
$this->_generateEntityStubMethods = $bool;
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateEntityNamespace(ClassMetadataInfo $metadata)
|
|
|
|
{
|
|
|
|
if ($this->_hasNamespace($metadata)) {
|
|
|
|
return 'namespace ' . $this->_getNamespace($metadata) .';';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateEntityClassName(ClassMetadataInfo $metadata)
|
|
|
|
{
|
|
|
|
return 'class ' . $this->_getClassName($metadata) .
|
2010-03-28 21:46:23 +04:00
|
|
|
($this->_extendsClass() ? ' extends ' . $this->_getClassToExtendName() : null);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateEntityBody(ClassMetadataInfo $metadata)
|
|
|
|
{
|
|
|
|
$fieldMappingProperties = $this->_generateEntityFieldMappingProperties($metadata);
|
|
|
|
$associationMappingProperties = $this->_generateEntityAssociationMappingProperties($metadata);
|
2010-03-19 07:19:15 +03:00
|
|
|
$stubMethods = $this->_generateEntityStubMethods ? $this->_generateEntityStubMethods($metadata) : null;
|
2010-03-19 00:38:42 +03:00
|
|
|
$lifecycleCallbackMethods = $this->_generateEntityLifecycleCallbackMethods($metadata);
|
|
|
|
|
2010-03-29 02:56:59 +04:00
|
|
|
$code = array();
|
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if ($fieldMappingProperties) {
|
2010-03-29 02:56:59 +04:00
|
|
|
$code[] = $fieldMappingProperties;
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if ($associationMappingProperties) {
|
2010-03-29 02:56:59 +04:00
|
|
|
$code[] = $associationMappingProperties;
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if ($stubMethods) {
|
2010-03-29 02:56:59 +04:00
|
|
|
$code[] = $stubMethods;
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if ($lifecycleCallbackMethods) {
|
2010-03-29 02:56:59 +04:00
|
|
|
$code[] = $lifecycleCallbackMethods;
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
|
|
|
return implode("\n", $code);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private function _hasProperty($property, ClassMetadataInfo $metadata)
|
2010-03-19 00:38:42 +03:00
|
|
|
{
|
2010-03-29 02:56:59 +04:00
|
|
|
return ($this->_isNew) ? false : $this->_reflection->hasProperty($property);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private function _hasMethod($method, ClassMetadataInfo $metadata)
|
2010-03-19 00:38:42 +03:00
|
|
|
{
|
2010-03-29 02:56:59 +04:00
|
|
|
return ($this->_isNew) ? false : $this->_reflection->hasMethod($method);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private function _hasNamespace(ClassMetadataInfo $metadata)
|
2010-03-19 00:38:42 +03:00
|
|
|
{
|
|
|
|
return strpos($metadata->name, '\\') ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _extendsClass()
|
|
|
|
{
|
|
|
|
return $this->_classToExtend ? true : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _getClassToExtend()
|
|
|
|
{
|
|
|
|
return $this->_classToExtend;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _getClassToExtendName()
|
|
|
|
{
|
|
|
|
$refl = new \ReflectionClass($this->_getClassToExtend());
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-10-30 11:16:55 +04:00
|
|
|
return '\\' . $refl->getName();
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private function _getClassName(ClassMetadataInfo $metadata)
|
2010-03-19 00:38:42 +03:00
|
|
|
{
|
2010-03-29 02:56:59 +04:00
|
|
|
return ($pos = strrpos($metadata->name, '\\'))
|
|
|
|
? substr($metadata->name, $pos + 1, strlen($metadata->name)) : $metadata->name;
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private function _getNamespace(ClassMetadataInfo $metadata)
|
2010-03-19 00:38:42 +03:00
|
|
|
{
|
|
|
|
return substr($metadata->name, 0, strrpos($metadata->name, '\\'));
|
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private function _generateEntityDocBlock(ClassMetadataInfo $metadata)
|
2010-03-19 00:38:42 +03:00
|
|
|
{
|
|
|
|
$lines = array();
|
|
|
|
$lines[] = '/**';
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = ' * '.$metadata->name;
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($this->_generateAnnotations) {
|
|
|
|
$lines[] = ' *';
|
|
|
|
|
|
|
|
$methods = array(
|
|
|
|
'_generateTableAnnotation',
|
|
|
|
'_generateInheritanceAnnotation',
|
|
|
|
'_generateDiscriminatorColumnAnnotation',
|
|
|
|
'_generateDiscriminatorMapAnnotation'
|
|
|
|
);
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
foreach ($methods as $method) {
|
|
|
|
if ($code = $this->$method($metadata)) {
|
|
|
|
$lines[] = ' * ' . $code;
|
|
|
|
}
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($metadata->isMappedSuperclass) {
|
|
|
|
$lines[] = ' * @MappedSupperClass';
|
|
|
|
} else {
|
|
|
|
$lines[] = ' * @Entity';
|
|
|
|
}
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($metadata->customRepositoryClassName) {
|
|
|
|
$lines[count($lines) - 1] .= '(repositoryClass="' . $metadata->customRepositoryClassName . '")';
|
|
|
|
}
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($metadata->lifecycleCallbacks) && $metadata->lifecycleCallbacks) {
|
|
|
|
$lines[] = ' * @HasLifecycleCallbacks';
|
|
|
|
}
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$lines[] = ' */';
|
|
|
|
|
|
|
|
return implode("\n", $lines);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateTableAnnotation($metadata)
|
|
|
|
{
|
|
|
|
$table = array();
|
2010-03-29 17:20:41 +04:00
|
|
|
if ($metadata->table['name']) {
|
|
|
|
$table[] = 'name="' . $metadata->table['name'] . '"';
|
2010-03-19 01:35:16 +03:00
|
|
|
}
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-29 17:20:41 +04:00
|
|
|
if (isset($metadata->table['schema'])) {
|
|
|
|
$table[] = 'schema="' . $metadata->table['schema'] . '"';
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return '@Table(' . implode(', ', $table) . ')';
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateInheritanceAnnotation($metadata)
|
|
|
|
{
|
|
|
|
if ($metadata->inheritanceType != ClassMetadataInfo::INHERITANCE_TYPE_NONE) {
|
|
|
|
return '@InheritanceType("'.$this->_getInheritanceTypeString($metadata->inheritanceType).'")';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateDiscriminatorColumnAnnotation($metadata)
|
|
|
|
{
|
|
|
|
if ($metadata->inheritanceType != ClassMetadataInfo::INHERITANCE_TYPE_NONE) {
|
|
|
|
$discrColumn = $metadata->discriminatorValue;
|
|
|
|
$columnDefinition = 'name="' . $discrColumn['name']
|
|
|
|
. '", type="' . $discrColumn['type']
|
|
|
|
. '", length=' . $discrColumn['length'];
|
|
|
|
|
|
|
|
return '@DiscriminatorColumn(' . $columnDefinition . ')';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateDiscriminatorMapAnnotation($metadata)
|
|
|
|
{
|
|
|
|
if ($metadata->inheritanceType != ClassMetadataInfo::INHERITANCE_TYPE_NONE) {
|
|
|
|
$inheritanceClassMap = array();
|
|
|
|
|
|
|
|
foreach ($metadata->discriminatorMap as $type => $class) {
|
|
|
|
$inheritanceClassMap[] .= '"' . $type . '" = "' . $class . '"';
|
|
|
|
}
|
|
|
|
|
|
|
|
return '@DiscriminatorMap({' . implode(', ', $inheritanceClassMap) . '})';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateEntityStubMethods(ClassMetadataInfo $metadata)
|
|
|
|
{
|
|
|
|
$methods = array();
|
|
|
|
|
|
|
|
foreach ($metadata->fieldMappings as $fieldMapping) {
|
|
|
|
if ( ! isset($fieldMapping['id']) || ! $fieldMapping['id']) {
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($code = $this->_generateEntityStubMethod($metadata, 'set', $fieldMapping['fieldName'], $fieldMapping['type'])) {
|
2010-03-19 00:38:42 +03:00
|
|
|
$methods[] = $code;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($code = $this->_generateEntityStubMethod($metadata, 'get', $fieldMapping['fieldName'], $fieldMapping['type'])) {
|
2010-03-19 00:38:42 +03:00
|
|
|
$methods[] = $code;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($metadata->associationMappings as $associationMapping) {
|
2010-08-09 15:13:21 +04:00
|
|
|
if ($associationMapping['type'] & ClassMetadataInfo::TO_ONE) {
|
|
|
|
if ($code = $this->_generateEntityStubMethod($metadata, 'set', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
2010-03-19 00:38:42 +03:00
|
|
|
$methods[] = $code;
|
|
|
|
}
|
2010-08-09 15:13:21 +04:00
|
|
|
if ($code = $this->_generateEntityStubMethod($metadata, 'get', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
2010-03-19 00:38:42 +03:00
|
|
|
$methods[] = $code;
|
|
|
|
}
|
2010-08-09 15:13:21 +04:00
|
|
|
} else if ($associationMapping['type'] == ClassMetadataInfo::ONE_TO_MANY) {
|
2010-08-14 21:10:13 +04:00
|
|
|
if ($associationMapping['isOwningSide']) {
|
2010-08-09 15:13:21 +04:00
|
|
|
if ($code = $this->_generateEntityStubMethod($metadata, 'set', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
2010-03-19 00:38:42 +03:00
|
|
|
$methods[] = $code;
|
|
|
|
}
|
2010-08-09 15:13:21 +04:00
|
|
|
if ($code = $this->_generateEntityStubMethod($metadata, 'get', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
2010-03-19 00:38:42 +03:00
|
|
|
$methods[] = $code;
|
|
|
|
}
|
|
|
|
} else {
|
2010-08-09 15:13:21 +04:00
|
|
|
if ($code = $this->_generateEntityStubMethod($metadata, 'add', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
2010-03-19 00:38:42 +03:00
|
|
|
$methods[] = $code;
|
|
|
|
}
|
2010-08-09 15:13:21 +04:00
|
|
|
if ($code = $this->_generateEntityStubMethod($metadata, 'get', $associationMapping['fieldName'], 'Doctrine\Common\Collections\Collection')) {
|
2010-03-29 02:29:29 +04:00
|
|
|
$methods[] = $code;
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
}
|
2010-08-09 15:13:21 +04:00
|
|
|
} else if ($associationMapping['type'] == ClassMetadataInfo::MANY_TO_MANY) {
|
|
|
|
if ($code = $this->_generateEntityStubMethod($metadata, 'add', $associationMapping['fieldName'], $associationMapping['targetEntity'])) {
|
2010-03-19 00:38:42 +03:00
|
|
|
$methods[] = $code;
|
|
|
|
}
|
2010-08-09 15:13:21 +04:00
|
|
|
if ($code = $this->_generateEntityStubMethod($metadata, 'get', $associationMapping['fieldName'], 'Doctrine\Common\Collections\Collection')) {
|
2010-03-19 00:38:42 +03:00
|
|
|
$methods[] = $code;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
return implode("\n\n", $methods);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateEntityLifecycleCallbackMethods(ClassMetadataInfo $metadata)
|
|
|
|
{
|
|
|
|
if (isset($metadata->lifecycleCallbacks) && $metadata->lifecycleCallbacks) {
|
|
|
|
$methods = array();
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
foreach ($metadata->lifecycleCallbacks as $name => $callbacks) {
|
|
|
|
foreach ($callbacks as $callback) {
|
|
|
|
if ($code = $this->_generateLifecycleCallbackMethod($name, $callback, $metadata)) {
|
|
|
|
$methods[] = $code;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
return implode('', $methods);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateEntityAssociationMappingProperties(ClassMetadataInfo $metadata)
|
|
|
|
{
|
|
|
|
$lines = array();
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
foreach ($metadata->associationMappings as $associationMapping) {
|
2010-08-09 15:13:21 +04:00
|
|
|
if ($this->_hasProperty($associationMapping['fieldName'], $metadata)) {
|
2010-03-19 00:38:42 +03:00
|
|
|
continue;
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_generateAssociationMappingPropertyDocBlock($associationMapping, $metadata);
|
2010-08-09 15:13:21 +04:00
|
|
|
$lines[] = $this->_spaces . 'private $' . $associationMapping['fieldName']
|
|
|
|
. ($associationMapping['type'] == 'manyToMany' ? ' = array()' : null) . ";\n";
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-29 17:20:41 +04:00
|
|
|
return implode("\n", $lines);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateEntityFieldMappingProperties(ClassMetadataInfo $metadata)
|
|
|
|
{
|
|
|
|
$lines = array();
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
foreach ($metadata->fieldMappings as $fieldMapping) {
|
|
|
|
if ($this->_hasProperty($fieldMapping['fieldName'], $metadata)) {
|
|
|
|
continue;
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_generateFieldMappingPropertyDocBlock($fieldMapping, $metadata);
|
2010-03-29 02:56:59 +04:00
|
|
|
$lines[] = $this->_spaces . 'private $' . $fieldMapping['fieldName']
|
|
|
|
. (isset($fieldMapping['default']) ? ' = ' . var_export($fieldMapping['default'], true) : null) . ";\n";
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
|
|
|
return implode("\n", $lines);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private function _generateEntityStubMethod(ClassMetadataInfo $metadata, $type, $fieldName, $typeHint = null)
|
2010-03-19 00:38:42 +03:00
|
|
|
{
|
2010-03-20 01:38:45 +03:00
|
|
|
$methodName = $type . Inflector::classify($fieldName);
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if ($this->_hasMethod($methodName, $metadata)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$var = sprintf('_%sMethodTemplate', $type);
|
|
|
|
$template = self::$$var;
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$variableType = $typeHint ? $typeHint . ' ' : null;
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$types = \Doctrine\DBAL\Types\Type::getTypesMap();
|
2010-03-29 02:29:29 +04:00
|
|
|
$methodTypeHint = $typeHint && ! isset($types[$typeHint]) ? '\\' . $typeHint . ' ' : null;
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$replacements = array(
|
|
|
|
'<description>' => ucfirst($type) . ' ' . $fieldName,
|
|
|
|
'<methodTypeHint>' => $methodTypeHint,
|
|
|
|
'<variableType>' => $variableType,
|
|
|
|
'<variableName>' => Inflector::camelize($fieldName),
|
|
|
|
'<methodName>' => $methodName,
|
|
|
|
'<fieldName>' => $fieldName
|
|
|
|
);
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$method = str_replace(
|
|
|
|
array_keys($replacements),
|
|
|
|
array_values($replacements),
|
|
|
|
$template
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->_prefixCodeWithSpaces($method);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateLifecycleCallbackMethod($name, $methodName, $metadata)
|
|
|
|
{
|
|
|
|
if ($this->_hasMethod($methodName, $metadata)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$replacements = array(
|
|
|
|
'<name>' => $name,
|
|
|
|
'<methodName>' => $methodName,
|
|
|
|
);
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$method = str_replace(
|
|
|
|
array_keys($replacements),
|
|
|
|
array_values($replacements),
|
|
|
|
self::$_lifecycleCallbackMethodTemplate
|
|
|
|
);
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
return $this->_prefixCodeWithSpaces($method);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private function _generateJoinColumnAnnotation(array $joinColumn)
|
|
|
|
{
|
|
|
|
$joinColumnAnnot = array();
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if (isset($joinColumn['name'])) {
|
|
|
|
$joinColumnAnnot[] = 'name="' . $joinColumn['name'] . '"';
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if (isset($joinColumn['referencedColumnName'])) {
|
|
|
|
$joinColumnAnnot[] = 'referencedColumnName="' . $joinColumn['referencedColumnName'] . '"';
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if (isset($joinColumn['unique']) && $joinColumn['unique']) {
|
|
|
|
$joinColumnAnnot[] = 'unique=' . ($joinColumn['unique'] ? 'true' : 'false');
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if (isset($joinColumn['nullable'])) {
|
|
|
|
$joinColumnAnnot[] = 'nullable=' . ($joinColumn['nullable'] ? 'true' : 'false');
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if (isset($joinColumn['onDelete'])) {
|
|
|
|
$joinColumnAnnot[] = 'onDelete=' . ($joinColumn['onDelete'] ? 'true' : 'false');
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if (isset($joinColumn['onUpdate'])) {
|
|
|
|
$joinColumnAnnot[] = 'onUpdate=' . ($joinColumn['onUpdate'] ? 'true' : 'false');
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
if (isset($joinColumn['columnDefinition'])) {
|
|
|
|
$joinColumnAnnot[] = 'columnDefinition="' . $joinColumn['columnDefinition'] . '"';
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
return '@JoinColumn(' . implode(', ', $joinColumnAnnot) . ')';
|
|
|
|
}
|
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
private function _generateAssociationMappingPropertyDocBlock(array $associationMapping, ClassMetadataInfo $metadata)
|
2010-03-19 00:38:42 +03:00
|
|
|
{
|
|
|
|
$lines = array();
|
|
|
|
$lines[] = $this->_spaces . '/**';
|
2010-08-09 15:13:21 +04:00
|
|
|
$lines[] = $this->_spaces . ' * @var ' . $associationMapping['targetEntity'];
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($this->_generateAnnotations) {
|
|
|
|
$lines[] = $this->_spaces . ' *';
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
$type = null;
|
|
|
|
switch ($associationMapping['type']) {
|
|
|
|
case ClassMetadataInfo::ONE_TO_ONE:
|
|
|
|
$type = 'OneToOne';
|
|
|
|
break;
|
|
|
|
case ClassMetadataInfo::MANY_TO_ONE:
|
|
|
|
$type = 'ManyToOne';
|
|
|
|
break;
|
|
|
|
case ClassMetadataInfo::ONE_TO_MANY:
|
|
|
|
$type = 'OneToMany';
|
|
|
|
break;
|
|
|
|
case ClassMetadataInfo::MANY_TO_MANY:
|
|
|
|
$type = 'ManyToMany';
|
|
|
|
break;
|
|
|
|
}
|
2010-03-20 01:38:45 +03:00
|
|
|
$typeOptions = array();
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
if (isset($associationMapping['targetEntity'])) {
|
|
|
|
$typeOptions[] = 'targetEntity="' . $associationMapping['targetEntity'] . '"';
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
if (isset($associationMapping['inversedBy'])) {
|
|
|
|
$typeOptions[] = 'inversedBy="' . $associationMapping['inversedBy'] . '"';
|
2010-06-16 19:47:22 +04:00
|
|
|
}
|
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
if (isset($associationMapping['mappedBy'])) {
|
|
|
|
$typeOptions[] = 'mappedBy="' . $associationMapping['mappedBy'] . '"';
|
2010-03-20 01:38:45 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
if ($associationMapping['cascade']) {
|
2010-03-20 01:38:45 +03:00
|
|
|
$cascades = array();
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
if ($associationMapping['isCascadePersist']) $cascades[] = '"persist"';
|
|
|
|
if ($associationMapping['isCascadeRemove']) $cascades[] = '"remove"';
|
|
|
|
if ($associationMapping['isCascadeDetach']) $cascades[] = '"detach"';
|
|
|
|
if ($associationMapping['isCascadeMerge']) $cascades[] = '"merge"';
|
|
|
|
if ($associationMapping['isCascadeRefresh']) $cascades[] = '"refresh"';
|
2010-03-29 02:56:59 +04:00
|
|
|
|
|
|
|
$typeOptions[] = 'cascade={' . implode(',', $cascades) . '}';
|
2010-03-20 01:38:45 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
if (isset($associationMapping['orphanRemoval']) && $associationMapping['orphanRemoval']) {
|
|
|
|
$typeOptions[] = 'orphanRemoval=' . ($associationMapping['orphanRemoval'] ? 'true' : 'false');
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_spaces . ' * @' . $type . '(' . implode(', ', $typeOptions) . ')';
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
if (isset($associationMapping['joinColumns']) && $associationMapping['joinColumns']) {
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_spaces . ' * @JoinColumns({';
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$joinColumnsLines = array();
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
foreach ($associationMapping['joinColumns'] as $joinColumn) {
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($joinColumnAnnot = $this->_generateJoinColumnAnnotation($joinColumn)) {
|
|
|
|
$joinColumnsLines[] = $this->_spaces . ' * ' . $joinColumnAnnot;
|
|
|
|
}
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = implode(",\n", $joinColumnsLines);
|
|
|
|
$lines[] = $this->_spaces . ' * })';
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
if (isset($associationMapping['joinTable']) && $associationMapping['joinTable']) {
|
2010-03-20 01:38:45 +03:00
|
|
|
$joinTable = array();
|
2010-08-09 15:13:21 +04:00
|
|
|
$joinTable[] = 'name="' . $associationMapping['joinTable']['name'] . '"';
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
if (isset($associationMapping['joinTable']['schema'])) {
|
|
|
|
$joinTable[] = 'schema="' . $associationMapping['joinTable']['schema'] . '"';
|
2010-03-20 01:38:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$lines[] = $this->_spaces . ' * @JoinTable(' . implode(', ', $joinTable) . ',';
|
|
|
|
$lines[] = $this->_spaces . ' * joinColumns={';
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
foreach ($associationMapping['joinTable']['joinColumns'] as $joinColumn) {
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_spaces . ' * ' . $this->_generateJoinColumnAnnotation($joinColumn);
|
|
|
|
}
|
|
|
|
|
2010-03-29 02:56:59 +04:00
|
|
|
$lines[] = $this->_spaces . ' * },';
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_spaces . ' * inverseJoinColumns={';
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
foreach ($associationMapping['joinTable']['inverseJoinColumns'] as $joinColumn) {
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_spaces . ' * ' . $this->_generateJoinColumnAnnotation($joinColumn);
|
|
|
|
}
|
|
|
|
|
2010-03-29 02:56:59 +04:00
|
|
|
$lines[] = $this->_spaces . ' * }';
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_spaces . ' * )';
|
|
|
|
}
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
if (isset($associationMapping['orderBy'])) {
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_spaces . ' * @OrderBy({';
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
foreach ($associationMapping['orderBy'] as $name => $direction) {
|
2010-03-29 02:56:59 +04:00
|
|
|
$lines[] = $this->_spaces . ' * "' . $name . '"="' . $direction . '",';
|
2010-03-20 01:38:45 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[count($lines) - 1] = substr($lines[count($lines) - 1], 0, strlen($lines[count($lines) - 1]) - 1);
|
|
|
|
$lines[] = $this->_spaces . ' * })';
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$lines[] = $this->_spaces . ' */';
|
|
|
|
|
|
|
|
return implode("\n", $lines);
|
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private function _generateFieldMappingPropertyDocBlock(array $fieldMapping, ClassMetadataInfo $metadata)
|
2010-03-19 00:38:42 +03:00
|
|
|
{
|
|
|
|
$lines = array();
|
|
|
|
$lines[] = $this->_spaces . '/**';
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_spaces . ' * @var ' . $fieldMapping['type'] . ' $' . $fieldMapping['fieldName'];
|
2010-03-19 00:38:42 +03:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($this->_generateAnnotations) {
|
|
|
|
$lines[] = $this->_spaces . ' *';
|
|
|
|
|
|
|
|
$column = array();
|
|
|
|
if (isset($fieldMapping['columnName'])) {
|
|
|
|
$column[] = 'name="' . $fieldMapping['columnName'] . '"';
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($fieldMapping['type'])) {
|
|
|
|
$column[] = 'type="' . $fieldMapping['type'] . '"';
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($fieldMapping['length'])) {
|
|
|
|
$column[] = 'length=' . $fieldMapping['length'];
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($fieldMapping['precision'])) {
|
|
|
|
$column[] = 'precision=' . $fieldMapping['precision'];
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($fieldMapping['scale'])) {
|
|
|
|
$column[] = 'scale=' . $fieldMapping['scale'];
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($fieldMapping['nullable'])) {
|
|
|
|
$column[] = 'nullable=' . var_export($fieldMapping['nullable'], true);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($fieldMapping['columnDefinition'])) {
|
|
|
|
$column[] = 'columnDefinition="' . $fieldMapping['columnDefinition'] . '"';
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($fieldMapping['options'])) {
|
|
|
|
$options = array();
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
foreach ($fieldMapping['options'] as $key => $value) {
|
|
|
|
$value = var_export($value, true);
|
|
|
|
$value = str_replace("'", '"', $value);
|
|
|
|
$options[] = ! is_numeric($key) ? $key . '=' . $value:$value;
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($options) {
|
|
|
|
$column[] = 'options={' . implode(', ', $options) . '}';
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-20 01:38:45 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($fieldMapping['unique'])) {
|
|
|
|
$column[] = 'unique=' . var_export($fieldMapping['unique'], true);
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_spaces . ' * @Column(' . implode(', ', $column) . ')';
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($fieldMapping['id']) && $fieldMapping['id']) {
|
|
|
|
$lines[] = $this->_spaces . ' * @Id';
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($generatorType = $this->_getIdGeneratorTypeString($metadata->generatorType)) {
|
|
|
|
$lines[] = $this->_spaces.' * @GeneratedValue(strategy="' . $generatorType . '")';
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if ($metadata->sequenceGeneratorDefinition) {
|
|
|
|
$sequenceGenerator = array();
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($metadata->sequenceGeneratorDefinition['sequenceName'])) {
|
|
|
|
$sequenceGenerator[] = 'sequenceName="' . $metadata->sequenceGeneratorDefinition['sequenceName'] . '"';
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($metadata->sequenceGeneratorDefinition['allocationSize'])) {
|
|
|
|
$sequenceGenerator[] = 'allocationSize="' . $metadata->sequenceGeneratorDefinition['allocationSize'] . '"';
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($metadata->sequenceGeneratorDefinition['initialValue'])) {
|
|
|
|
$sequenceGenerator[] = 'initialValue="' . $metadata->sequenceGeneratorDefinition['initialValue'] . '"';
|
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
$lines[] = $this->_spaces . ' * @SequenceGenerator(' . implode(', ', $sequenceGenerator) . ')';
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
2010-03-20 01:38:45 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
if (isset($fieldMapping['version']) && $fieldMapping['version']) {
|
|
|
|
$lines[] = $this->_spaces . ' * @Version';
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
}
|
2010-03-20 01:38:45 +03:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
$lines[] = $this->_spaces . ' */';
|
|
|
|
|
|
|
|
return implode("\n", $lines);
|
|
|
|
}
|
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
private function _prefixCodeWithSpaces($code, $num = 1)
|
|
|
|
{
|
|
|
|
$lines = explode("\n", $code);
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
foreach ($lines as $key => $value) {
|
2010-03-29 02:56:59 +04:00
|
|
|
$lines[$key] = str_repeat($this->_spaces, $num) . $lines[$key];
|
2010-03-20 01:38:45 +03:00
|
|
|
}
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-03-20 01:38:45 +03:00
|
|
|
return implode("\n", $lines);
|
|
|
|
}
|
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
private function _getInheritanceTypeString($type)
|
|
|
|
{
|
2010-03-29 02:56:59 +04:00
|
|
|
switch ($type) {
|
2010-03-19 00:38:42 +03:00
|
|
|
case ClassMetadataInfo::INHERITANCE_TYPE_NONE:
|
|
|
|
return 'NONE';
|
|
|
|
|
|
|
|
case ClassMetadataInfo::INHERITANCE_TYPE_JOINED:
|
|
|
|
return 'JOINED';
|
2010-03-29 02:29:29 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
case ClassMetadataInfo::INHERITANCE_TYPE_SINGLE_TABLE:
|
|
|
|
return 'SINGLE_TABLE';
|
2010-03-29 02:29:29 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
case ClassMetadataInfo::INHERITANCE_TYPE_TABLE_PER_CLASS:
|
|
|
|
return 'PER_CLASS';
|
2010-03-29 02:56:59 +04:00
|
|
|
|
|
|
|
default:
|
|
|
|
throw new \InvalidArgumentException('Invalid provided InheritanceType: ' . $type);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _getChangeTrackingPolicyString($policy)
|
|
|
|
{
|
2010-03-29 02:56:59 +04:00
|
|
|
switch ($policy) {
|
2010-03-19 00:38:42 +03:00
|
|
|
case ClassMetadataInfo::CHANGETRACKING_DEFERRED_IMPLICIT:
|
|
|
|
return 'DEFERRED_IMPLICIT';
|
2010-03-29 02:29:29 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
case ClassMetadataInfo::CHANGETRACKING_DEFERRED_EXPLICIT:
|
|
|
|
return 'DEFERRED_EXPLICIT';
|
2010-03-29 02:29:29 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
case ClassMetadataInfo::CHANGETRACKING_NOTIFY:
|
|
|
|
return 'NOTIFY';
|
2010-03-29 02:56:59 +04:00
|
|
|
|
|
|
|
default:
|
|
|
|
throw new \InvalidArgumentException('Invalid provided ChangeTrackingPolicy: ' . $policy);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function _getIdGeneratorTypeString($type)
|
|
|
|
{
|
2010-03-29 02:56:59 +04:00
|
|
|
switch ($type) {
|
2010-03-19 00:38:42 +03:00
|
|
|
case ClassMetadataInfo::GENERATOR_TYPE_AUTO:
|
|
|
|
return 'AUTO';
|
2010-03-29 02:29:29 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
case ClassMetadataInfo::GENERATOR_TYPE_SEQUENCE:
|
|
|
|
return 'SEQUENCE';
|
2010-03-29 02:29:29 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
case ClassMetadataInfo::GENERATOR_TYPE_TABLE:
|
|
|
|
return 'TABLE';
|
2010-03-29 02:29:29 +04:00
|
|
|
|
2010-03-19 00:38:42 +03:00
|
|
|
case ClassMetadataInfo::GENERATOR_TYPE_IDENTITY:
|
|
|
|
return 'IDENTITY';
|
2010-03-29 02:56:59 +04:00
|
|
|
|
2010-04-13 04:54:43 +04:00
|
|
|
case ClassMetadataInfo::GENERATOR_TYPE_NONE:
|
|
|
|
return 'NONE';
|
|
|
|
|
2010-03-29 02:56:59 +04:00
|
|
|
default:
|
|
|
|
throw new \InvalidArgumentException('Invalid provided IdGeneratorType: ' . $type);
|
2010-03-19 00:38:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|