source: trunk/src/xmlpatterns/expr/qnodecomparison.cpp@ 117

Last change on this file since 117 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 6.0 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information ([email protected])
5**
6** This file is part of the QtXmlPatterns module of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
23** In addition, as a special exception, Nokia gives you certain
24** additional rights. These rights are described in the Nokia Qt LGPL
25** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26** 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 are unsure which license is appropriate for your use, please
37** contact the sales department at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "qcommonsequencetypes_p.h"
43#include "qcommonvalues_p.h"
44#include "qemptysequence_p.h"
45#include "qinteger_p.h"
46#include "qschemanumeric_p.h"
47#include "qrangeiterator_p.h"
48
49#include "qnodecomparison_p.h"
50
51QT_BEGIN_NAMESPACE
52
53using namespace QPatternist;
54
55NodeComparison::NodeComparison(const Expression::Ptr &operand1,
56 const QXmlNodeModelIndex::DocumentOrder op,
57 const Expression::Ptr &operand2)
58 : PairContainer(operand1, operand2)
59 , m_op(op)
60{
61 Q_ASSERT(op == QXmlNodeModelIndex::Precedes ||
62 op == QXmlNodeModelIndex::Follows ||
63 op == QXmlNodeModelIndex::Is);
64}
65
66Item NodeComparison::evaluateSingleton(const DynamicContext::Ptr &context) const
67{
68 switch(evaluate(context))
69 {
70 case True:
71 return CommonValues::BooleanTrue;
72 case False:
73 return CommonValues::BooleanFalse;
74 default:
75 return Item();
76 }
77}
78
79bool NodeComparison::evaluateEBV(const DynamicContext::Ptr &context) const
80{
81 switch(evaluate(context))
82 {
83 case True:
84 return true;
85 default:
86 /* We include the empty sequence here. */
87 return false;
88 }
89}
90
91NodeComparison::Result NodeComparison::evaluate(const DynamicContext::Ptr &context) const
92{
93 const Item op1(m_operand1->evaluateSingleton(context));
94 if(!op1)
95 return Empty;
96
97 const Item op2(m_operand2->evaluateSingleton(context));
98 if(!op2)
99 return Empty;
100
101 /* We just returns an arbitrary value, since there's no order defined for nodes from different
102 * models, except for that the return value must be stable. */
103 if(op1.asNode().model() != op2.asNode().model())
104 return False;
105
106 switch(m_op)
107 {
108 case QXmlNodeModelIndex::Is:
109 return op1.asNode().is(op2.asNode()) ? True : False;
110 case QXmlNodeModelIndex::Precedes:
111 return op1.asNode().compareOrder(op2.asNode()) == QXmlNodeModelIndex::Precedes ? True : False;
112 default:
113 {
114 Q_ASSERT(m_op == QXmlNodeModelIndex::Follows);
115 return op1.asNode().compareOrder(op2.asNode()) == QXmlNodeModelIndex::Follows ? True : False;
116 }
117 }
118}
119
120
121SequenceType::List NodeComparison::expectedOperandTypes() const
122{
123 SequenceType::List result;
124 result.append(CommonSequenceTypes::ZeroOrOneNode);
125 result.append(CommonSequenceTypes::ZeroOrOneNode);
126 return result;
127}
128
129Expression::Ptr NodeComparison::compress(const StaticContext::Ptr &context)
130{
131 const Expression::Ptr me(PairContainer::compress(context));
132
133 if(me != this)
134 /* We're already rewritten. */
135 return me;
136
137 if(m_operand1->staticType()->cardinality().isEmpty() ||
138 m_operand2->staticType()->cardinality().isEmpty())
139 {
140 // TODO issue a warning in the @p context saying that one of the operands
141 // were empty, and that the expression always result in the empty sequence
142 // (which never is the intent, right?).
143 return EmptySequence::create(this, context);
144 }
145
146 return Expression::Ptr(this);
147}
148
149QString NodeComparison::displayName(const QXmlNodeModelIndex::DocumentOrder op)
150{
151 switch(op)
152 {
153 case QXmlNodeModelIndex::Is:
154 return QLatin1String("is");
155 case QXmlNodeModelIndex::Precedes:
156 return QLatin1String("<<");
157 default:
158 {
159 Q_ASSERT(op == QXmlNodeModelIndex::Follows);
160 return QLatin1String(">>");
161 }
162 }
163}
164
165SequenceType::Ptr NodeComparison::staticType() const
166{
167 if(m_operand1->staticType()->cardinality().allowsEmpty() ||
168 m_operand2->staticType()->cardinality().allowsEmpty())
169 return CommonSequenceTypes::ZeroOrOneBoolean;
170 else
171 return CommonSequenceTypes::ExactlyOneBoolean;
172}
173
174QXmlNodeModelIndex::DocumentOrder NodeComparison::operatorID() const
175{
176 return m_op;
177}
178
179ExpressionVisitorResult::Ptr NodeComparison::accept(const ExpressionVisitor::Ptr &visitor) const
180{
181 return visitor->visit(this);
182}
183
184QT_END_NAMESPACE
Note: See TracBrowser for help on using the repository browser.