122 lines
4.4 KiB
PHP
122 lines
4.4 KiB
PHP
<?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.phpdoctrine.org>.
|
|
*/
|
|
|
|
/**
|
|
* The default mapping strategy maps a single entity instance to a single database table,
|
|
* as is the case in Single Table Inheritance & Concrete Table Inheritance.
|
|
*
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
* @package Doctrine
|
|
* @subpackage DefaultStrategy
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
* @version $Revision$
|
|
* @link www.phpdoctrine.org
|
|
* @since 1.0
|
|
*/
|
|
class Doctrine_Mapper_DefaultStrategy extends Doctrine_Mapper_Strategy
|
|
{
|
|
/**
|
|
* Deletes an entity.
|
|
*/
|
|
public function doDelete(Doctrine_Record $record)
|
|
{
|
|
$conn = $this->_mapper->getConnection();
|
|
$metadata = $this->_mapper->getClassMetadata();
|
|
try {
|
|
$conn->beginInternalTransaction();
|
|
$this->_deleteComposites($record);
|
|
|
|
$record->state(Doctrine_Record::STATE_TDIRTY);
|
|
|
|
$identifier = $this->_convertFieldToColumnNames($record->identifier(), $metadata);
|
|
$this->_deleteRow($metadata->getTableName(), $identifier);
|
|
$record->state(Doctrine_Record::STATE_TCLEAN);
|
|
|
|
$this->_mapper->removeRecord($record);
|
|
$conn->commit();
|
|
} catch (Exception $e) {
|
|
$conn->rollback();
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Inserts a single entity into the database, without any related entities.
|
|
*
|
|
* @param Doctrine_Record $record The entity to insert.
|
|
*/
|
|
public function doInsert(Doctrine_Record $record)
|
|
{
|
|
$conn = $this->_mapper->getConnection();
|
|
|
|
$fields = $record->getPrepared();
|
|
if (empty($fields)) {
|
|
return false;
|
|
}
|
|
|
|
//$class = $record->getClassMetadata();
|
|
$class = $this->_mapper->getClassMetadata();
|
|
$identifier = (array) $class->getIdentifier();
|
|
$fields = $this->_convertFieldToColumnNames($fields, $class);
|
|
|
|
$seq = $class->getTableOption('sequenceName');
|
|
if ( ! empty($seq)) {
|
|
$id = $conn->sequence->nextId($seq);
|
|
$seqName = $identifier[0];
|
|
$fields[$seqName] = $id;
|
|
$record->assignIdentifier($id);
|
|
}
|
|
|
|
|
|
//echo $class->getTableName() . "--" . $class->getClassName() . '---' . get_class($record) . "<br/>";
|
|
$this->_insertRow($class->getTableName(), $fields);
|
|
|
|
if (empty($seq) && count($identifier) == 1 &&
|
|
$class->getIdentifierType() != Doctrine::IDENTIFIER_NATURAL) {
|
|
if (strtolower($conn->getName()) == 'pgsql') {
|
|
$seq = $class->getTableName() . '_' . $identifier[0];
|
|
}
|
|
|
|
$id = $conn->sequence->lastInsertId($seq);
|
|
|
|
if ( ! $id) {
|
|
throw new Doctrine_Mapper_Exception("Couldn't get last insert identifier.");
|
|
}
|
|
|
|
$record->assignIdentifier($id);
|
|
} else {
|
|
$record->assignIdentifier(true);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Updates an entity.
|
|
*/
|
|
public function doUpdate(Doctrine_Record $record)
|
|
{
|
|
$conn = $this->_mapper->getConnection();
|
|
$classMetadata = $this->_mapper->getClassMetadata();
|
|
$identifier = $this->_convertFieldToColumnNames($record->identifier(), $classMetadata);
|
|
$data = $this->_convertFieldToColumnNames($record->getPrepared(), $classMetadata);
|
|
$this->_updateRow($classMetadata->getTableName(), $data, $identifier);
|
|
$record->assignIdentifier(true);
|
|
}
|
|
} |