From d05522258a6ac48c2d98c0b7b6d69b7001e3aaf2 Mon Sep 17 00:00:00 2001 From: romanb Date: Fri, 12 Sep 2008 10:02:06 +0000 Subject: [PATCH] moved id generators --- lib/Doctrine/ClassMetadata.php | 8 ++++---- lib/Doctrine/Connection/UnitOfWork.php | 2 +- lib/Doctrine/{ => ORM}/Id/AbstractIdGenerator.php | 2 +- lib/Doctrine/{ => ORM}/Id/Assigned.php | 2 +- lib/Doctrine/{ => ORM}/Id/IdentityGenerator.php | 2 +- lib/Doctrine/{ => ORM}/Id/SequenceGenerator.php | 2 +- lib/Doctrine/{ => ORM}/Id/SequenceIdentityGenerator.php | 2 +- lib/Doctrine/{ => ORM}/Id/TableGenerator.php | 2 +- tests/lib/mocks/Doctrine_ClassMetadataMock.php | 2 +- tests/lib/mocks/Doctrine_SequenceMock.php | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) rename lib/Doctrine/{ => ORM}/Id/AbstractIdGenerator.php (88%) rename lib/Doctrine/{ => ORM}/Id/Assigned.php (85%) rename lib/Doctrine/{ => ORM}/Id/IdentityGenerator.php (81%) rename lib/Doctrine/{ => ORM}/Id/SequenceGenerator.php (85%) rename lib/Doctrine/{ => ORM}/Id/SequenceIdentityGenerator.php (81%) rename lib/Doctrine/{ => ORM}/Id/TableGenerator.php (74%) diff --git a/lib/Doctrine/ClassMetadata.php b/lib/Doctrine/ClassMetadata.php index 6e5eb1581..a8dfe200f 100644 --- a/lib/Doctrine/ClassMetadata.php +++ b/lib/Doctrine/ClassMetadata.php @@ -792,13 +792,13 @@ class Doctrine_ClassMetadata implements Doctrine_Configurable, Serializable protected function _createIdGenerator() { if ($this->_generatorType == self::GENERATOR_TYPE_IDENTITY) { - $this->_idGenerator = new Doctrine_Id_IdentityGenerator($this->_em); + $this->_idGenerator = new Doctrine_ORM_Id_IdentityGenerator($this->_em); } else if ($this->_generatorType == self::GENERATOR_TYPE_SEQUENCE) { - $this->_idGenerator = new Doctrine_Id_SequenceGenerator($this->_em); + $this->_idGenerator = new Doctrine_ORM_Id_SequenceGenerator($this->_em); } else if ($this->_generatorType == self::GENERATOR_TYPE_TABLE) { - $this->_idGenerator = new Doctrine_Id_TableGenerator($this->_em); + $this->_idGenerator = new Doctrine_ORM_Id_TableGenerator($this->_em); } else { - $this->_idGenerator = new Doctrine_Id_Assigned($this->_em); + $this->_idGenerator = new Doctrine_ORM_Id_Assigned($this->_em); } } diff --git a/lib/Doctrine/Connection/UnitOfWork.php b/lib/Doctrine/Connection/UnitOfWork.php index 0b8c0e640..094fc444c 100644 --- a/lib/Doctrine/Connection/UnitOfWork.php +++ b/lib/Doctrine/Connection/UnitOfWork.php @@ -638,7 +638,7 @@ class Doctrine_Connection_UnitOfWork break; case Doctrine_Entity::STATE_NEW: $result = $class->getIdGenerator()->generate($entity); - if ($result == Doctrine_Id_AbstractIdGenerator::POST_INSERT_INDICATOR) { + if ($result == Doctrine_ORM_Id_AbstractIdGenerator::POST_INSERT_INDICATOR) { $insertNow[$entity->getOid()] = $entity; } else { $entity->_assignIdentifier($result); diff --git a/lib/Doctrine/Id/AbstractIdGenerator.php b/lib/Doctrine/ORM/Id/AbstractIdGenerator.php similarity index 88% rename from lib/Doctrine/Id/AbstractIdGenerator.php rename to lib/Doctrine/ORM/Id/AbstractIdGenerator.php index 3e12147c6..6fea0e962 100644 --- a/lib/Doctrine/Id/AbstractIdGenerator.php +++ b/lib/Doctrine/ORM/Id/AbstractIdGenerator.php @@ -7,7 +7,7 @@ * * @todo Rename to AbstractIdGenerator */ -abstract class Doctrine_Id_AbstractIdGenerator +abstract class Doctrine_ORM_Id_AbstractIdGenerator { const POST_INSERT_INDICATOR = 'POST_INSERT_INDICATOR'; diff --git a/lib/Doctrine/Id/Assigned.php b/lib/Doctrine/ORM/Id/Assigned.php similarity index 85% rename from lib/Doctrine/Id/Assigned.php rename to lib/Doctrine/ORM/Id/Assigned.php index 62c5a07d9..013e85e42 100644 --- a/lib/Doctrine/Id/Assigned.php +++ b/lib/Doctrine/ORM/Id/Assigned.php @@ -5,7 +5,7 @@ * * @since 2.0 */ -class Doctrine_Id_Assigned extends Doctrine_Id_AbstractIdGenerator +class Doctrine_ORM_Id_Assigned extends Doctrine_ORM_Id_AbstractIdGenerator { /** * Enter description here... diff --git a/lib/Doctrine/Id/IdentityGenerator.php b/lib/Doctrine/ORM/Id/IdentityGenerator.php similarity index 81% rename from lib/Doctrine/Id/IdentityGenerator.php rename to lib/Doctrine/ORM/Id/IdentityGenerator.php index 93dc6c413..3b2e62583 100644 --- a/lib/Doctrine/Id/IdentityGenerator.php +++ b/lib/Doctrine/ORM/Id/IdentityGenerator.php @@ -1,6 +1,6 @@ _idGenerator = $g; } diff --git a/tests/lib/mocks/Doctrine_SequenceMock.php b/tests/lib/mocks/Doctrine_SequenceMock.php index 019459861..28da384c5 100644 --- a/tests/lib/mocks/Doctrine_SequenceMock.php +++ b/tests/lib/mocks/Doctrine_SequenceMock.php @@ -1,6 +1,6 @@