Completed
Push — 1.1 ( def185...342408 )
by David
04:34
created

Reserved::getBaseExpression()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
/**
4
 * expression-types.php.
5
 *
6
 *
7
 * Copyright (c) 2010-2013, Justin Swanhart
8
 * with contributions by André Rothe <[email protected], [email protected]>
9
 * and David Négrier <[email protected]>
10
 *
11
 * All rights reserved.
12
 *
13
 * Redistribution and use in source and binary forms, with or without modification,
14
 * are permitted provided that the following conditions are met:
15
 *
16
 *   * Redistributions of source code must retain the above copyright notice,
17
 *     this list of conditions and the following disclaimer.
18
 *   * Redistributions in binary form must reproduce the above copyright notice,
19
 *     this list of conditions and the following disclaimer in the documentation
20
 *     and/or other materials provided with the distribution.
21
 *
22
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
23
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
25
 * SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
27
 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28
 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
31
 * DAMAGE.
32
 */
33
34
namespace SQLParser\Node;
35
36
use Doctrine\DBAL\Connection;
37
use Mouf\MoufInstanceDescriptor;
38
use Mouf\MoufManager;
39
use SQLParser\Node\Traverser\NodeTraverser;
40
use SQLParser\Node\Traverser\VisitorInterface;
41
42
/**
43
 * This class represents a node that is an SQL expression.
44
 *
45
 * @author David Négrier <[email protected]>
46
 */
47
class Reserved implements NodeInterface
48
{
49
    private $baseExpression;
50
51
    /**
52
     * Returns the base expression (the string that generated this expression).
53
     *
54
     * @return string
55
     */
56
    public function getBaseExpression()
57
    {
58
        return $this->baseExpression;
59
    }
60
61
    /**
62
     * Sets the base expression (the string that generated this expression).
63
     *
64
     * @param string $baseExpression
65
     */
66
    public function setBaseExpression($baseExpression)
67
    {
68
        $this->baseExpression = $baseExpression;
69
    }
70
71
    private $brackets = false;
72
73
    /**
74
     * Returns true if the expression is between brackets.
75
     *
76
     * @return bool
77
     */
78
    public function hasBrackets()
79
    {
80
        return $this->brackets;
81
    }
82
83
    /**
84
     * Sets to true if the expression is between brackets.
85
     *
86
     * @Important
87
     *
88
     * @param bool $brackets
89
     */
90
    public function setBrackets($brackets)
91
    {
92
        $this->brackets = $brackets;
93
    }
94
95
    /**
96
     * Returns a Mouf instance descriptor describing this object.
97
     *
98
     * @param MoufManager $moufManager
99
     *
100
     * @return MoufInstanceDescriptor
101
     */
102
    public function toInstanceDescriptor(MoufManager $moufManager)
103
    {
104
        $instanceDescriptor = $moufManager->createInstance(get_called_class());
105
        $instanceDescriptor->getProperty('baseExpression')->setValue(NodeFactory::nodeToInstanceDescriptor($this->baseExpression, $moufManager));
106
        $instanceDescriptor->getProperty('brackets')->setValue(NodeFactory::nodeToInstanceDescriptor($this->brackets, $moufManager));
107
108
        return $instanceDescriptor;
109
    }
110
111
    /**
112
     * Renders the object as a SQL string.
113
     *
114
     * @param array $parameters
115
     * @param Connection $dbConnection
116
     * @param int|number $indent
117
     * @param int $conditionsMode
118
     * @return string
119
     */
120
    public function toSql(array $parameters = array(), Connection $dbConnection = null, $indent = 0, $conditionsMode = self::CONDITION_APPLY)
121
    {
122
        $sql = '';
123
124
        if($this->baseExpression) {
125
            $sql .= ' '.$this->baseExpression.' ';
126
        }
127
128
        if ($this->brackets) {
129
            $sql = '('.$sql.')';
130
        }
131
132
        return $sql;
133
    }
134
135
    /**
136
     * Walks the tree of nodes, calling the visitor passed in parameter.
137
     *
138
     * @param VisitorInterface $visitor
139
     */
140 View Code Duplication
    public function walk(VisitorInterface $visitor) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
141
        $node = $this;
142
        $result = $visitor->enterNode($node);
143
        if ($result instanceof NodeInterface) {
144
            $node = $result;
145
        }
146
        return $visitor->leaveNode($node);
147
    }
148
}
149