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 #if !defined(MEMBUFINPUTSOURCE_HPP)
00075 #define MEMBUFINPUTSOURCE_HPP
00076
00077 #include <xercesc/sax/InputSource.hpp>
00078
00079 XERCES_CPP_NAMESPACE_BEGIN
00080
00081 class BinInputStream;
00082
00083
00112 class MemBufInputSource : public InputSource
00113 {
00114 public :
00115
00116
00117
00118
00121
00143 MemBufInputSource
00144 (
00145 const XMLByte* const srcDocBytes
00146 , const unsigned int byteCount
00147 , const XMLCh* const bufId
00148 , const bool adoptBuffer = false
00149 , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
00150 );
00151
00156 MemBufInputSource
00157 (
00158 const XMLByte* const srcDocBytes
00159 , const unsigned int byteCount
00160 , const char* const bufId
00161 , const bool adoptBuffer = false
00162 , MemoryManager* const manager = XMLPlatformUtils::fgMemoryManager
00163 );
00165
00172 ~MemBufInputSource();
00174
00175
00176
00177
00178
00179
00182
00193 BinInputStream* makeStream() const;
00194
00196
00197
00198
00199
00200
00201
00205
00221 void setCopyBufToStream(const bool newState);
00222
00232 void resetMemBufInputSource(const XMLByte* const srcDocBytes
00233 , const unsigned int byteCount);
00235
00236
00237 private :
00238
00239
00240
00241 MemBufInputSource(const MemBufInputSource&);
00242 MemBufInputSource& operator=(const MemBufInputSource&);
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266 bool fAdopted;
00267 unsigned int fByteCount;
00268 bool fCopyBufToStream;
00269 const XMLByte* fSrcBytes;
00270 };
00271
00272
00273 inline void MemBufInputSource::setCopyBufToStream(const bool newState)
00274 {
00275 fCopyBufToStream = newState;
00276 }
00277
00278 XERCES_CPP_NAMESPACE_END
00279
00280 #endif