Source for file IntegrityMapper.php

Documentation is available at IntegrityMapper.php

  1. <?php
  2. /*
  3.  *  $Id$
  4.  *
  5.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  7.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  8.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  9.  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  10.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  11.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  12.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  13.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  14.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  15.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  16.  *
  17.  * This software consists of voluntary contributions made by many individuals
  18.  * and is licensed under the LGPL. For more information, see
  19.  * <http://www.phpdoctrine.com>.
  20.  */
  21.  
  22. /**
  23.  * Doctrine_IntegrityMapper
  24.  *
  25.  * @package     Doctrine
  26.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  27.  * @category    Object Relational Mapping
  28.  * @link        www.phpdoctrine.com
  29.  * @since       1.0
  30.  * @version     $Revision$
  31.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  32.  */
  33. {
  34.     public function processDeleteIntegrity(Doctrine_Record $record)
  35.     {
  36.         $coll $this->buildIntegrityRelationQuery($record);
  37.         
  38.         $this->invokeIntegrityActions($record);
  39.     }
  40.     public function invokeIntegrityActions(Doctrine_Record $record)
  41.     {
  42.         $deleteActions Doctrine_Manager::getInstance()
  43.                          ->getDeleteActions($record->getTable()->getComponentName());
  44.                          
  45.         foreach ($record->getTable()->getRelations(as $relation{
  46.             $componentName $relation->getTable()->getComponentName();
  47.             
  48.             foreach($record->get($relation->getAlias()) as $coll{
  49.                 if ($coll instanceof Doctrine_Collection)) {
  50.                     $coll array($coll);
  51.                 }
  52.                 foreach ($coll as $record{
  53.                     $this->invokeIntegrityActions($record);
  54.  
  55.                     if (isset($deleteActions[$componentName])) {
  56.                         if ($deleteActions[$componentName=== 'SET NULL'{
  57.                             $record->set($relation->getForeign()null);
  58.                         elseif ($deleteActions[$componentName=== 'CASCADE'{
  59.                             $this->conn->transaction->addDelete($record);
  60.                         }
  61.                     }
  62.  
  63.                 }
  64.             }
  65.         }
  66.     }
  67.     public function buildIntegrityRelationQuery(Doctrine_Record $record)
  68.     {
  69.         $q new Doctrine_Query();
  70.         
  71.         $aliases array();
  72.         $indexes array();
  73.  
  74.         $root $record->getTable()->getComponentName();
  75.         $rootAlias strtolower(substr($root01));
  76.         $aliases[$rootAlias$root;
  77.  
  78.         foreach ((array) $record->getTable()->getIdentifier(as $id{
  79.             $field $rootAlias '.' $id;
  80.             $cond[]   $field ' = ?';
  81.             $fields[$field;
  82.             $params   $record->get($id);
  83.         }
  84.         $fields implode(', '$fields);
  85.         $components[$root;
  86.         $this->buildIntegrityRelations($record->getTable()$aliases$fields$indexes$components);
  87.  
  88.         $q->select($fields)->from($root' ' $rootAlias);
  89.  
  90.         foreach ($aliases as $alias => $name{
  91.             $q->leftJoin($rootAlias '.' $name ' ' $alias);
  92.         }
  93.         $q->where(implode(' AND '$cond));
  94.  
  95.         return $q->execute(array($params));
  96.     }
  97.     public function buildIntegrityRelations(Doctrine_Table $table&$aliases&$fields&$indexes&$components)
  98.     {
  99.         $deleteActions Doctrine_Manager::getInstance()
  100.                          ->getDeleteActions($table->getComponentName());
  101.  
  102.         foreach ($table->getRelations(as $relation{
  103.             $componentName $relation->getTable()->getComponentName();
  104.             if (in_array($componentName$components)) {
  105.                 continue;
  106.             }
  107.             $components[$componentName;
  108.  
  109.             $alias strtolower(substr($relation->getAlias()01));
  110.  
  111.             if isset($indexes[$alias])) {
  112.                 $indexes[$alias1;
  113.             }
  114.  
  115.             if (isset($deleteActions[$componentName])) {
  116.                 if (isset($aliases[$alias])) {
  117.                     $alias $alias . ++$indexes[$alias];
  118.                 }
  119.                 $aliases[$alias$relation->getAlias();
  120.  
  121.                 if ($deleteActions[$componentName=== 'SET NULL'{
  122.                     if ($relation instanceof Doctrine_Relation_ForeignKey{
  123.                         foreach ((array) $relation->getForeign(as $foreign{
  124.                             $fields .= ', ' $alias '.' $foreign;
  125.                         }
  126.                     elseif ($relation instanceof Doctrine_Relation_LocalKey{
  127.                         foreach ((array) $relation->getLocal(as $foreign{
  128.                             $fields .= ', ' $alias '.' $foreign;
  129.                         }
  130.                     }
  131.                 }
  132.                 foreach ((array) $relation->getTable()->getIdentifier(as $id{
  133.                     $fields .= ', ' $alias '.' $id;
  134.                 }
  135.                 if ($deleteActions[$componentName=== 'CASCADE'{
  136.                     $this->buildIntegrityRelations($relation->getTable()$aliases$fields$indexes$components);
  137.                 }
  138.             }
  139.         }
  140.     }
  141. }