00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087 #ifndef XML_ABSTRACT_DOUBLE_FLOAT_HPP
00088 #define XML_ABSTRACT_DOUBLE_FLOAT_HPP
00089
00090 #include <xercesc/util/XercesDefs.hpp>
00091 #include <xercesc/util/XMLNumber.hpp>
00092 #include <xercesc/util/XMLBigDecimal.hpp>
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124 class XMLAbstractDoubleFloat : public XMLNumber
00125 {
00126 public:
00127
00128 enum LiteralType
00129 {
00130 NegINF,
00131 NegZero,
00132 PosZero,
00133 PosINF,
00134 NaN,
00135 SpecialTypeNum,
00136 Normal
00137 };
00138
00139 virtual ~XMLAbstractDoubleFloat();
00140
00141 virtual XMLCh* toString() const;
00142
00143 virtual int getSign() const;
00144
00145 protected:
00146
00147
00148
00149
00150 XMLAbstractDoubleFloat();
00151
00152 void init(const XMLCh* const strValue);
00153
00165
00166 static int compareValues(const XMLAbstractDoubleFloat* const lValue
00167 , const XMLAbstractDoubleFloat* const rValue);
00168
00169
00170
00171
00172 virtual void checkBoundary(const XMLCh* const strValue) = 0;
00173
00174 private:
00175
00176
00177
00178
00179
00180
00181 XMLAbstractDoubleFloat(const XMLAbstractDoubleFloat& toCopy);
00182 XMLAbstractDoubleFloat& operator=(const XMLAbstractDoubleFloat& toAssign);
00183
00184 void normalizeZero(XMLCh* const);
00185
00186 inline bool isSpecialValue() const;
00187
00188 static int compareSpecial(const XMLAbstractDoubleFloat* const specialValue
00189 , const XMLAbstractDoubleFloat* const normalValue);
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205 XMLBigDecimal* fMantissa;
00206 XMLBigInteger* fExponent;
00207 LiteralType fType;
00208 };
00209
00210 inline bool XMLAbstractDoubleFloat::isSpecialValue() const
00211 {
00212 return (fType < SpecialTypeNum);
00213 }
00214
00215 #endif