Source for file DataDict.php

Documentation is available at DataDict.php

  1. <?php
  2. /*
  3.  *  $Id: DataDict.php 1098 2007-02-15 11:36:43Z zYne $
  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.  * Doctrine_DataDict
  23.  *
  24.  * @package     Doctrine
  25.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  26.  * @category    Object Relational Mapping
  27.  * @link        www.phpdoctrine.com
  28.  * @since       1.0
  29.  * @version     $Revision: 1098 $
  30.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  31.  * @author      Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
  32.  */
  33. {
  34.     /**
  35.      * Obtain an array of changes that may need to applied
  36.      *
  37.      * @param array $current new definition
  38.      * @param array  $previous old definition
  39.      * @return array  containing all changes that will need to be applied
  40.      */
  41.     public function compareDefinition($current$previous)
  42.     {
  43.         $type !empty($current['type']$current['type'null;
  44.  
  45.         if (!method_exists($this"_compare{$type}Definition")) {
  46.             throw new Doctrine_DataDict_Exception('type "'.$current['type'].'" is not yet supported');
  47.         }
  48.  
  49.         if (empty($previous['type']|| $previous['type'!= $type{
  50.             return $current;
  51.         }
  52.  
  53.         $change $this->{"_compare{$type}Definition"}($current$previous);
  54.  
  55.         if ($previous['type'!= $type{
  56.             $change['type'true;
  57.         }
  58.  
  59.         $previous_notnull !empty($previous['notnull']$previous['notnull'false;
  60.         $notnull !empty($current['notnull']$current['notnull'false;
  61.         if ($previous_notnull != $notnull{
  62.             $change['notnull'true;
  63.         }
  64.  
  65.         $previous_default array_key_exists('default'$previous$previous['default':
  66.             ($previous_notnull '' null);
  67.         $default array_key_exists('default'$current$current['default':
  68.             ($notnull '' null);
  69.         if ($previous_default !== $default{
  70.             $change['default'true;
  71.         }
  72.  
  73.         return $change;
  74.     }
  75.     /**
  76.      * parseBoolean
  77.      * parses a literal boolean value and returns
  78.      * proper sql equivalent
  79.      *
  80.      * @param string $value     boolean value to be parsed
  81.      * @return string           parsed boolean value
  82.      */
  83.     public function parseBoolean($value)
  84.     {
  85.         // parse booleans
  86.         if ($value == 'true'{
  87.             $value 1;
  88.         elseif ($value == 'false'{
  89.             $value 0;
  90.         }
  91.         return $value;
  92.     }
  93. }