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
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114 #ifndef XML_ABSTRACT_DOUBLE_FLOAT_HPP
00115 #define XML_ABSTRACT_DOUBLE_FLOAT_HPP
00116
00117 #include <xercesc/util/XMLNumber.hpp>
00118 #include <xercesc/util/PlatformUtils.hpp>
00119
00120 XERCES_CPP_NAMESPACE_BEGIN
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152 class XMLAbstractDoubleFloat : public XMLNumber
00153 {
00154 public:
00155
00156 enum LiteralType
00157 {
00158 NegINF,
00159 PosINF,
00160 NaN,
00161 SpecialTypeNum,
00162 Normal
00163 };
00164
00165 virtual ~XMLAbstractDoubleFloat();
00166
00172 virtual XMLCh* toString() const;
00173
00174 virtual XMLCh* getRawData() const;
00175
00176 virtual const XMLCh* getFormattedString() const;
00177
00178 virtual int getSign() const;
00179
00180 MemoryManager* getMemoryManager() const;
00181
00182 protected:
00183
00184
00185
00186
00187 XMLAbstractDoubleFloat(MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager);
00188
00189 void init(const XMLCh* const strValue);
00190
00203 static int compareValues(const XMLAbstractDoubleFloat* const lValue
00204 , const XMLAbstractDoubleFloat* const rValue);
00205
00206
00207
00208
00209 virtual void checkBoundary(const XMLCh* const strValue) = 0;
00210
00211 private:
00212
00213
00214
00215
00216
00217
00218 XMLAbstractDoubleFloat(const XMLAbstractDoubleFloat& toCopy);
00219 XMLAbstractDoubleFloat& operator=(const XMLAbstractDoubleFloat& toAssign);
00220
00221 void normalizeZero(XMLCh* const);
00222
00223 inline bool isSpecialValue() const;
00224
00225 static int compareSpecial(const XMLAbstractDoubleFloat* const specialValue
00226 , const XMLAbstractDoubleFloat* const normalValue);
00227
00228 void formatString();
00229
00230 protected:
00231 double fValue;
00232 LiteralType fType;
00233 bool fDataConverted;
00234
00235 private:
00236 int fSign;
00237 XMLCh* fRawData;
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247 XMLCh* fFormattedString;
00248 MemoryManager* fMemoryManager;
00249 };
00250
00251 inline bool XMLAbstractDoubleFloat::isSpecialValue() const
00252 {
00253 return (fType < SpecialTypeNum);
00254 }
00255
00256 inline MemoryManager* XMLAbstractDoubleFloat::getMemoryManager() const
00257 {
00258 return fMemoryManager;
00259 }
00260
00261 XERCES_CPP_NAMESPACE_END
00262
00263 #endif