Fixing some GCC warnings
[qt-netbsd.git] / src / xmlpatterns / data / qinteger.cpp
blob25e5ac8ccc2c0b948529b2884f0c35639cb03d06
1 /****************************************************************************
2 **
3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtXmlPatterns module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
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.
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.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
38 ** $QT_END_LICENSE$
40 ****************************************************************************/
42 #include "qbuiltintypes_p.h"
43 #include "qitem_p.h"
44 #include "qvalidationerror_p.h"
46 #include "qinteger_p.h"
48 QT_BEGIN_NAMESPACE
50 using namespace QPatternist;
52 Item Integer::fromValue(const xsInteger num)
54 return toItem(Integer::Ptr(new Integer(num)));
57 AtomicValue::Ptr Integer::fromLexical(const QString &strNumeric)
59 bool conversionOk = false;
60 const xsInteger num = strNumeric.toLongLong(&conversionOk);
62 if(conversionOk)
63 return AtomicValue::Ptr(new Integer(num));
64 else
65 return ValidationError::createError();
68 Integer::Integer(const xsInteger num) : m_value(num)
72 bool Integer::evaluateEBV(const QExplicitlySharedDataPointer<DynamicContext> &) const
74 return m_value != 0;
77 QString Integer::stringValue() const
79 return QString::number(m_value);
82 ItemType::Ptr Integer::type() const
84 return BuiltinTypes::xsInteger;
87 xsDouble Integer::toDouble() const
89 return static_cast<xsDouble>(m_value);
92 xsInteger Integer::toInteger() const
94 return m_value;
97 xsFloat Integer::toFloat() const
99 return static_cast<xsFloat>(m_value);
102 xsDecimal Integer::toDecimal() const
104 return static_cast<xsDecimal>(m_value);
107 Numeric::Ptr Integer::round() const
109 /* xs:integerS never has a mantissa. */
110 return Numeric::Ptr(const_cast<Integer *>(this));
113 Numeric::Ptr Integer::roundHalfToEven(const xsInteger /*scale*/) const
115 return Numeric::Ptr(const_cast<Integer *>(this));
118 Numeric::Ptr Integer::floor() const
120 return Numeric::Ptr(const_cast<Integer *>(this));
123 Numeric::Ptr Integer::ceiling() const
125 return Numeric::Ptr(const_cast<Integer *>(this));
128 Numeric::Ptr Integer::abs() const
130 /* No reason to allocate an Integer if we're already absolute. */
131 if(m_value < 0)
132 return Numeric::Ptr(new Integer(qAbs(m_value)));
133 else
134 return Numeric::Ptr(const_cast<Integer *>(this));
137 bool Integer::isNaN() const
139 return false;
142 bool Integer::isInf() const
144 return false;
147 Item Integer::toNegated() const
149 return fromValue(-m_value);
152 bool Integer::isSigned() const
154 return true;
157 qulonglong Integer::toUnsignedInteger() const
159 Q_ASSERT_X(false, Q_FUNC_INFO,
160 "It makes no sense to call this function, see Numeric::toUnsignedInteger().");
161 return 0;
164 QT_END_NAMESPACE