source: trunk/src/xmlpatterns/expr/qvaluecomparison.cpp

Last change on this file was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 5.1 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the QtXmlPatterns module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
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
51QT_BEGIN_NAMESPACE
52
53using namespace QPatternist;
54
55ValueComparison::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
62Item 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
75Expression::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
97Expression::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
110bool 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
131OptimizationPass::List ValueComparison::optimizationPasses() const
132{
133 return OptimizationPasses::comparisonPasses;
134}
135
136SequenceType::List ValueComparison::expectedOperandTypes() const
137{
138 SequenceType::List result;
139 result.append(CommonSequenceTypes::ZeroOrOneAtomicType);
140 result.append(CommonSequenceTypes::ZeroOrOneAtomicType);
141 return result;
142}
143
144SequenceType::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
153ExpressionVisitorResult::Ptr ValueComparison::accept(const ExpressionVisitor::Ptr &visitor) const
154{
155 return visitor->visit(this);
156}
157
158Expression::ID ValueComparison::id() const
159{
160 return IDValueComparison;
161}
162
163QT_END_NAMESPACE
Note: See TracBrowser for help on using the repository browser.