source: trunk/src/xmlpatterns/data/qatomiccomparators_p.h@ 98

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

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

File size: 10.2 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//
43// W A R N I N G
44// -------------
45//
46// This file is not part of the Qt API. It exists purely as an
47// implementation detail. This header file may change from version to
48// version without notice, or even be removed.
49//
50// We mean it.
51
52#ifndef Patternist_AtomicComparators_H
53#define Patternist_AtomicComparators_H
54
55#include "qabstractfloat_p.h"
56#include "qatomiccomparator_p.h"
57#include "qprimitives_p.h"
58
59/**
60 * @file
61 * @short Contains all the classes implementing comparisons between atomic values.
62 */
63
64QT_BEGIN_HEADER
65
66QT_BEGIN_NAMESPACE
67
68namespace QPatternist
69{
70 /**
71 * @short Performs case @em sensitive string comparison
72 * between @c xs:anyUri, @c xs:string, and @c xs:untypedAtomic.
73 *
74 * @ingroup Patternist_xdm
75 * @author Frans Englich <[email protected]>
76 */
77 class StringComparator : public AtomicComparator
78 {
79 public:
80 /**
81 * Compares two strings, and returns the appropriate AtomicComparator::ComparisonResult enum. This
82 * is a bit simplified version of string comparison as defined in the XPath specifications,
83 * since this does not take any string collations into account(which an implementation neither
84 * is required to do).
85 *
86 * @see <a href="http://www.w3.org/TR/xpath-functions/#string-compare">XQuery 1.0 and XPath
87 * 2.0 Functions and Operators, 7.3 ValueComparison::Equality and Comparison of Strings</a>
88 */
89 virtual ComparisonResult compare(const Item &op1,
90 const AtomicComparator::Operator op,
91 const Item &op2) const;
92
93 /**
94 * Compares two strings, and returns @c true if they are considered equal as per
95 * an ordinary string comparison. In other words, this is an implementation with
96 * the Unicode code point collation.
97 *
98 * @see <a href="http://www.w3.org/TR/xpath-functions/#string-compare">XQuery 1.0 and XPath
99 * 2.0 Functions and Operators, 7.3 ValueComparison::Equality and Comparison of Strings</a>
100 */
101 virtual bool equals(const Item &op1,
102 const Item &op2) const;
103 };
104
105 /**
106 * @short Performs case @em insensitive string comparison
107 * between @c xs:anyUri, @c xs:string, and @c xs:untypedAtomic.
108 *
109 * @ingroup Patternist_xdm
110 * @author Frans Englich <[email protected]>
111 */
112 class CaseInsensitiveStringComparator : public AtomicComparator
113 {
114 public:
115 /**
116 * Converts both string values to upper case and afterwards compare them.
117 */
118 virtual ComparisonResult compare(const Item &op1,
119 const AtomicComparator::Operator op,
120 const Item &op2) const;
121
122 /**
123 * Converts both string values case insensitively.
124 */
125 virtual bool equals(const Item &op1,
126 const Item &op2) const;
127 };
128
129 /**
130 * @short Compares @c xs:base64Binary and @c xs:hexBinary values.
131 *
132 * @author Frans Englich <[email protected]>
133 */
134 class BinaryDataComparator : public AtomicComparator
135 {
136 public:
137 virtual bool equals(const Item &op1,
138 const Item &op2) const;
139 };
140
141 /**
142 * @short Compares @c xs:boolean values.
143 *
144 * This is done via the object's Boolean::evaluteEBV() function.
145 *
146 * @author Frans Englich <[email protected]>
147 */
148 class BooleanComparator : public AtomicComparator
149 {
150 public:
151 virtual ComparisonResult compare(const Item &op1,
152 const AtomicComparator::Operator op,
153 const Item &op2) const;
154
155 virtual bool equals(const Item &op1,
156 const Item &op2) const;
157 };
158
159 /**
160 * @short Compares @c xs:double values.
161 *
162 * @todo Add docs about numeric promotion
163 *
164 * @author Frans Englich <[email protected]>
165 */
166 class AbstractFloatComparator : public AtomicComparator
167 {
168 public:
169 virtual ComparisonResult compare(const Item &op1,
170 const AtomicComparator::Operator op,
171 const Item &op2) const;
172
173 virtual bool equals(const Item &op1,
174 const Item &op2) const;
175 };
176
177 /**
178 * @short Compares @c xs:double values for the purpose of sorting.
179 *
180 * @todo Add docs about numeric promotion
181 *
182 * @author Frans Englich <[email protected]>
183 */
184 template<const AtomicComparator::Operator t_op>
185 class AbstractFloatSortComparator : public AbstractFloatComparator
186 {
187 public:
188 virtual ComparisonResult compare(const Item &o1,
189 const AtomicComparator::Operator op,
190 const Item &o2) const
191 {
192 Q_ASSERT_X(t_op == OperatorLessThanNaNLeast || t_op == OperatorLessThanNaNGreatest, Q_FUNC_INFO,
193 "Can only be instantiated with those two.");
194 Q_ASSERT(op == t_op);
195 Q_UNUSED(op); /* Needed when building in release mode. */
196
197 const xsDouble v1 = o1.template as<Numeric>()->toDouble();
198 const xsDouble v2 = o2.template as<Numeric>()->toDouble();
199
200 if(qIsNaN(v1) && !qIsNaN(v2))
201 return t_op == OperatorLessThanNaNLeast ? LessThan : GreaterThan;
202 if(!qIsNaN(v1) && qIsNaN(v2))
203 return t_op == OperatorLessThanNaNLeast ? GreaterThan : LessThan;
204
205 if(Double::isEqual(v1, v2))
206 return Equal;
207 else if(v1 < v2)
208 return LessThan;
209 else
210 return GreaterThan;
211 }
212
213 };
214
215 /**
216 * @short Compares @c xs:decimal values.
217 *
218 * @author Frans Englich <[email protected]>
219 */
220 class DecimalComparator : public AtomicComparator
221 {
222 public:
223 virtual ComparisonResult compare(const Item &op1,
224 const AtomicComparator::Operator op,
225 const Item &op2) const;
226
227 virtual bool equals(const Item &op1,
228 const Item &op2) const;
229 };
230
231 /**
232 * @short Compares @c xs:integer values.
233 *
234 * @author Frans Englich <[email protected]>
235 */
236 class IntegerComparator : public AtomicComparator
237 {
238 public:
239 virtual ComparisonResult compare(const Item &op1,
240 const AtomicComparator::Operator op,
241 const Item &op2) const;
242
243 virtual bool equals(const Item &op1,
244 const Item &op2) const;
245 };
246
247 /**
248 * @short Compares @c xs:QName values.
249 *
250 * @author Frans Englich <[email protected]>
251 */
252 class QNameComparator : public AtomicComparator
253 {
254 public:
255 virtual bool equals(const Item &op1,
256 const Item &op2) const;
257 };
258
259 /**
260 * @short Compares sub-classes of AbstractDateTime.
261 *
262 * @author Frans Englich <[email protected]>
263 */
264 class AbstractDateTimeComparator : public AtomicComparator
265 {
266 public:
267 virtual ComparisonResult compare(const Item &op1,
268 const AtomicComparator::Operator op,
269 const Item &op2) const;
270 virtual bool equals(const Item &op1,
271 const Item &op2) const;
272 };
273
274 /**
275 * @short Compares sub-classes of AbstractDuration.
276 *
277 * @author Frans Englich <[email protected]>
278 */
279 class AbstractDurationComparator : public AtomicComparator
280 {
281 public:
282 virtual ComparisonResult compare(const Item &op1,
283 const AtomicComparator::Operator op,
284 const Item &op2) const;
285 virtual bool equals(const Item &op1,
286 const Item &op2) const;
287
288 private:
289 static inline QDateTime addDurationToDateTime(const QDateTime &dateTime,
290 const AbstractDuration *const duration);
291 };
292}
293
294QT_END_NAMESPACE
295
296QT_END_HEADER
297
298#endif
Note: See TracBrowser for help on using the repository browser.