Source for file Complex.php

Documentation is available at Complex.php

  1. <?php
  2. /*
  3.  *  $Id: Complex.php 1482 2007-05-26 16:49:58Z 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. Doctrine::autoload('Doctrine_Hook_Parser');
  22. /**
  23.  * Doctrine_Hook_Parser_Complex
  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: 1482 $
  31.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  32.  */
  33. {
  34.     /**
  35.      * parse
  36.      * Parses given field and field value to DQL condition
  37.      * and parameters. This method should always return
  38.      * prepared statement conditions (conditions that use
  39.      * placeholders instead of literal values).
  40.      *
  41.      * @param string $alias     component alias
  42.      * @param string $field     the field name
  43.      * @param mixed $value      the value of the field
  44.      * @return void 
  45.      */
  46.     public function parse($alias$field$value)
  47.     {
  48.         $this->condition = $this->parseClause($alias$field$value);
  49.     }
  50.     /**
  51.      * parseClause
  52.      *
  53.      * @param string $alias     component alias
  54.      * @param string $field     the field name
  55.      * @param mixed $value      the value of the field
  56.      * @return void 
  57.      */
  58.     public function parseClause($alias$field$value)
  59.     {
  60.         $parts Doctrine_Tokenizer::quoteExplode($value' AND ');
  61.  
  62.         if (count($parts1{
  63.             $ret array();
  64.             foreach ($parts as $part{
  65.                 $ret[$this->parseSingle($alias$field$part);
  66.             }
  67.  
  68.             $r implode(' AND '$ret);
  69.         else {
  70.             $parts Doctrine_Tokenizer::quoteExplode($value' OR ');
  71.             if (count($parts1{
  72.                 $ret array();
  73.                 foreach ($parts as $part{
  74.                     $ret[$this->parseClause($alias$field$part);
  75.                 }
  76.  
  77.                 $r implode(' OR '$ret);
  78.             else {
  79.                 $ret $this->parseSingle($alias$field$parts[0]);
  80.                 return $ret;
  81.             }
  82.         }
  83.         return '(' $r ')';
  84.     }
  85.     /**
  86.      * parseSingle
  87.      *
  88.      * @param string $alias     component alias
  89.      * @param string $field     the field name
  90.      * @param mixed $value      the value of the field
  91.      * @return void 
  92.      */
  93.     abstract public function parseSingle($alias$field$value);
  94. }