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 #if !defined(BINMEMINPUTSTREAM_HPP)
00049 #define BINMEMINPUTSTREAM_HPP
00050 
00051 #include <xercesc/util/BinInputStream.hpp>
00052 #include <xercesc/util/PlatformUtils.hpp>
00053 
00054 XERCES_CPP_NAMESPACE_BEGIN
00055 
00056 class  BinMemInputStream : public BinInputStream
00057 {
00058 public :
00059     
00060     
00061     
00062     enum BufOpts
00063     {
00064         BufOpt_Adopt
00065         , BufOpt_Copy
00066         , BufOpt_Reference
00067     };
00068 
00069 
00070     
00071     
00072     
00073     BinMemInputStream
00074     (
00075         const   XMLByte* const  initData
00076         , const unsigned int    capacity
00077         , const BufOpts         bufOpt = BufOpt_Copy
00078         , MemoryManager* const  manager = XMLPlatformUtils::fgMemoryManager
00079     );
00080     virtual ~BinMemInputStream();
00081 
00082 
00083     
00084     
00085     
00086     void reset();
00087 
00088 
00089     
00090     
00091     
00092     virtual unsigned int curPos() const;
00093 
00094     virtual unsigned int readBytes
00095     (
00096                 XMLByte* const  toFill
00097         , const unsigned int    maxToRead
00098     );
00099 
00100     inline unsigned int getSize() const;
00101     
00102 private :
00103     
00104     
00105     
00106     BinMemInputStream(const BinMemInputStream&);
00107     BinMemInputStream& operator=(const BinMemInputStream&); 
00108     
00109     
00110     
00111     
00112     
00113     
00114     
00115     
00116     
00117     
00118     
00119     
00120     
00121     
00122     
00123     
00124     
00125     
00126     const XMLByte*  fBuffer;
00127     BufOpts         fBufOpt;
00128     unsigned int    fCapacity;
00129     unsigned int    fCurIndex;
00130     MemoryManager*  fMemoryManager;
00131 };
00132 
00133 
00134 
00135 
00136 
00137 inline void BinMemInputStream::reset()
00138 {
00139     fCurIndex = 0;
00140 }
00141 
00142 
00143 
00144 
00145 
00146 inline unsigned int BinMemInputStream::curPos() const
00147 {
00148     return fCurIndex;
00149 }
00150 
00151 inline unsigned int BinMemInputStream::getSize() const
00152 {
00153     return fCapacity;
00154 }
00155 
00156 XERCES_CPP_NAMESPACE_END
00157 
00158 #endif