Source for file Having.php

Documentation is available at Having.php

  1. <?php
  2. /*
  3.  *  $Id: Having.php 1881 2007-06-27 18:42:47Z 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_Query_Condition');
  22. /**
  23.  * Doctrine_Query_Having
  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: 1881 $
  31.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  32.  */
  33. {
  34.     /**
  35.      * DQL Aggregate Function parser
  36.      *
  37.      * @param string $func 
  38.      * @return mixed 
  39.      */
  40.     private function parseAggregateFunction($func)
  41.     {
  42.         $pos strpos($func'(');
  43.  
  44.         if ($pos !== false{
  45.             $funcs  array();
  46.  
  47.             $name   substr($func0$pos);
  48.             $func   substr($func($pos 1)-1);
  49.             $params Doctrine_Tokenizer::bracketExplode($func',''('')');
  50.  
  51.             foreach ($params as $k => $param{
  52.                 $params[$k$this->parseAggregateFunction($param);
  53.             }
  54.  
  55.             $funcs $name '(' implode(', '$params')';
  56.  
  57.             return $funcs;
  58.  
  59.         else {
  60.             if is_numeric($func)) {
  61.                 $a explode('.'$func);
  62.  
  63.                 if (count($a1{
  64.                     $field     array_pop($a);
  65.                     $reference implode('.'$a);
  66.                     $map       $this->query->load($referencefalse);
  67.                     $field     $map['table']->getColumnName($field);
  68.                     $func      $this->query->getTableAlias($reference'.' $field;
  69.                 else {
  70.                     $field end($a);
  71.                     $func  $this->query->getAggregateAlias($field);
  72.                 }
  73.                 return $func;
  74.             else {
  75.                 return $func;
  76.             }
  77.         }
  78.     }
  79.     /**
  80.      * load
  81.      * returns the parsed query part
  82.      *
  83.      * @param string $having 
  84.      * @return string 
  85.      */
  86.     final public function load($having)
  87.     {
  88.         $e Doctrine_Tokenizer::bracketExplode($having' ''('')');
  89.  
  90.         $r array_shift($e);
  91.         $t explode('('$r);
  92.  
  93.         $count count($t);
  94.         $r $this->parseAggregateFunction($r);
  95.         $operator  array_shift($e);
  96.         $value     implode(' '$e);
  97.         $r .= ' ' $operator ' ' $value;
  98.  
  99.         return $r;
  100.     }
  101. }