Change copyrights from Nokia to Digia
[profile/ivi/qtxmlpatterns.git] / src / xmlpatterns / expr / qvaluecomparison.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtXmlPatterns module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qitem_p.h"
43 #include "qboolean_p.h"
44 #include "qbuiltintypes_p.h"
45 #include "qcommonsequencetypes_p.h"
46 #include "qemptysequence_p.h"
47 #include "qoptimizationpasses_p.h"
48
49 #include "qvaluecomparison_p.h"
50
51 QT_BEGIN_NAMESPACE
52
53 using namespace QPatternist;
54
55 ValueComparison::ValueComparison(const Expression::Ptr &op1,
56                                  const AtomicComparator::Operator op,
57                                  const Expression::Ptr &op2) : PairContainer(op1, op2),
58                                                                m_operator(op)
59 {
60 }
61
62 Item ValueComparison::evaluateSingleton(const DynamicContext::Ptr &context) const
63 {
64     const Item it1(m_operand1->evaluateSingleton(context));
65     if(!it1)
66         return Item();
67
68     const Item it2(m_operand2->evaluateSingleton(context));
69     if(!it2)
70         return Item();
71
72     return Boolean::fromValue(flexibleCompare(it1, it2, context));
73 }
74
75 Expression::Ptr ValueComparison::typeCheck(const StaticContext::Ptr &context,
76                                            const SequenceType::Ptr &reqType)
77 {
78     const Expression::Ptr me(PairContainer::typeCheck(context, reqType));
79     const ItemType::Ptr t1(m_operand1->staticType()->itemType());
80     const ItemType::Ptr t2(m_operand2->staticType()->itemType());
81     Q_ASSERT(t1);
82     Q_ASSERT(t2);
83
84     if(*CommonSequenceTypes::Empty == *t1 ||
85        *CommonSequenceTypes::Empty == *t2)
86     {
87         return EmptySequence::create(this, context);
88     }
89     else
90     {
91         prepareComparison(fetchComparator(t1, t2, context));
92
93         return me;
94     }
95 }
96
97 Expression::Ptr ValueComparison::compress(const StaticContext::Ptr &context)
98 {
99     const Expression::Ptr me(PairContainer::compress(context));
100
101     if(me != this)
102         return me;
103
104     if(isCaseInsensitiveCompare(m_operand1, m_operand2))
105         useCaseInsensitiveComparator();
106
107     return me;
108 }
109
110 bool ValueComparison::isCaseInsensitiveCompare(Expression::Ptr &op1, Expression::Ptr &op2)
111 {
112     Q_ASSERT(op1);
113     Q_ASSERT(op2);
114
115     const ID iD = op1->id();
116
117     if((iD == IDLowerCaseFN || iD == IDUpperCaseFN) && iD == op2->id())
118     {
119         /* Both are either fn:lower-case() or fn:upper-case(). */
120
121         /* Replace the calls to the functions with its operands. */
122         op1 = op1->operands().first();
123         op2 = op2->operands().first();
124
125         return true;
126     }
127     else
128         return false;
129 }
130
131 OptimizationPass::List ValueComparison::optimizationPasses() const
132 {
133     return OptimizationPasses::comparisonPasses;
134 }
135
136 SequenceType::List ValueComparison::expectedOperandTypes() const
137 {
138     SequenceType::List result;
139     result.append(CommonSequenceTypes::ZeroOrOneAtomicType);
140     result.append(CommonSequenceTypes::ZeroOrOneAtomicType);
141     return result;
142 }
143
144 SequenceType::Ptr ValueComparison::staticType() const
145 {
146     if(m_operand1->staticType()->cardinality().allowsEmpty() ||
147        m_operand2->staticType()->cardinality().allowsEmpty())
148         return CommonSequenceTypes::ZeroOrOneBoolean;
149     else
150         return CommonSequenceTypes::ExactlyOneBoolean;
151 }
152
153 ExpressionVisitorResult::Ptr ValueComparison::accept(const ExpressionVisitor::Ptr &visitor) const
154 {
155     return visitor->visit(this);
156 }
157
158 Expression::ID ValueComparison::id() const
159 {
160     return IDValueComparison;
161 }
162
163 QT_END_NAMESPACE