Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / lib / Doctrine / ORM / Query / Expr / Composite.php
1 <?php
2 /*
3  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14  *
15  * This software consists of voluntary contributions made by many individuals
16  * and is licensed under the MIT license. For more information, see
17  * <http://www.doctrine-project.org>.
18  */
19
20 namespace Doctrine\ORM\Query\Expr;
21
22 /**
23  * Expression class for building DQL and parts
24  *
25  * 
26  * @link    www.doctrine-project.org
27  * @since   2.0
28  * @author  Guilherme Blanco <guilhermeblanco@hotmail.com>
29  * @author  Jonathan Wage <jonwage@gmail.com>
30  * @author  Roman Borschel <roman@code-factory.org>
31  */
32 class Composite extends Base
33 {
34     /**
35      * @return string
36      */
37     public function __toString()
38     {
39         if ($this->count() === 1) {
40             return (string) $this->parts[0];
41         }
42
43         $components = array();
44
45         foreach ($this->parts as $part) {
46             $components[] = $this->processQueryPart($part);
47         }
48
49         return implode($this->separator, $components);
50     }
51
52
53     /**
54      * @param   string $part
55      * @return  string
56      */
57     private function processQueryPart($part)
58     {
59         $queryPart = (string) $part;
60
61         if (is_object($part) && $part instanceof self && $part->count() > 1) {
62             return $this->preSeparator . $queryPart . $this->postSeparator;
63         }
64
65         // Fixes DDC-1237: User may have added a where item containing nested expression (with "OR" or "AND")
66         if (stripos($queryPart, ' OR ') !== false || stripos($queryPart, ' AND ') !== false) {
67             return $this->preSeparator . $queryPart . $this->postSeparator;
68         }
69
70         return $queryPart;
71     }
72 }