Source for file Check.php

Documentation is available at Check.php

  1. <?php
  2. /*
  3.  *  $Id: From.php 1080 2007-02-10 18:17:08Z romanb $
  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_Query_Check
  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: 1080 $
  31.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  32.  */
  33. {
  34.     /**
  35.      * @var Doctrine_Table $table           Doctrine_Table object
  36.      */
  37.     protected $table;
  38.     /**
  39.      * @var string $sql                     database specific sql CHECK constraint definition
  40.      *                                       parsed from the given dql CHECK definition
  41.      */
  42.     protected $sql;
  43.     /**
  44.      * @param Doctrine_Table|string$table  Doctrine_Table object
  45.      */
  46.     public function __construct($table)
  47.     {
  48.         if ($table instanceof Doctrine_Table)) {
  49.             $table Doctrine_Manager::getInstance()
  50.                         ->getCurrentConnection()
  51.                         ->getTable($table);
  52.         }
  53.         $this->table = $table;
  54.     }
  55.     /**
  56.      * getTable
  57.      * returns the table object associated with this object
  58.      *
  59.      * @return Doctrine_Connection 
  60.      */
  61.     public function getTable()
  62.     {
  63.         return $this->table;
  64.     }
  65.     /**
  66.      * parse
  67.      *
  68.      * @param string $dql       DQL CHECK constraint definition
  69.      * @return string 
  70.      */
  71.     public function parse($dql)
  72.     {
  73.         $this->sql = $this->parseClause($dql);
  74.     }
  75.     /**
  76.      * parseClause
  77.      *
  78.      * @param string $alias     component alias
  79.      * @param string $field     the field name
  80.      * @param mixed $value      the value of the field
  81.      * @return void 
  82.      */
  83.     public function parseClause($dql)
  84.     {
  85.         $parts Doctrine_Tokenizer::sqlExplode($dql' AND ');
  86.  
  87.         if (count($parts1{
  88.             $ret array();
  89.             foreach ($parts as $part{
  90.                 $ret[$this->parseSingle($part);
  91.             }
  92.  
  93.             $r implode(' AND '$ret);
  94.         else {
  95.             $parts Doctrine_Tokenizer::quoteExplode($dql' OR ');
  96.             if (count($parts1{
  97.                 $ret array();
  98.                 foreach ($parts as $part{
  99.                     $ret[$this->parseClause($part);
  100.                 }
  101.  
  102.                 $r implode(' OR '$ret);
  103.             else {
  104.                 $ret $this->parseSingle($dql);
  105.                 return $ret;
  106.             }
  107.         }
  108.         return '(' $r ')';
  109.     }
  110.     public function parseSingle($part)
  111.     {
  112.         $e explode(' '$part);
  113.         
  114.         $e[0$this->parseFunction($e[0]);
  115.  
  116.         switch ($e[1]{
  117.             case '>':
  118.             case '<':
  119.             case '=':
  120.             case '!=':
  121.             case '<>':
  122.  
  123.             break;
  124.             default:
  125.                 throw new Doctrine_Query_Exception('Unknown operator ' $e[1]);
  126.         }
  127.  
  128.         return implode(' '$e);
  129.     }
  130.     public function parseFunction($dql
  131.     {
  132.         if (($pos strpos($dql'(')) !== false{
  133.             $func  substr($dql0$pos);
  134.             $value substr($dql($pos 1)-1);
  135.             
  136.             $expr  $this->table->getConnection()->expression;
  137.  
  138.             if method_exists($expr$func)) {
  139.                 throw new Doctrine_Query_Exception('Unknown function ' $func);
  140.             }
  141.             
  142.             $func  $expr->$func($value);
  143.         }
  144.         return $func;
  145.     }
  146.     /**
  147.      * getSql
  148.      *
  149.      * returns database specific sql CHECK constraint definition
  150.      * parsed from the given dql CHECK definition
  151.      *
  152.      * @return string 
  153.      */
  154.     public function getSql()
  155.     {
  156.         return $this->sql;
  157.     }
  158. }