Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

unzipstreamer.hpp

Go to the documentation of this file.
00001 #if !defined(_UnzipStreamer_HPP)
00002 #define _UnzipStreamer_HPP
00003 //============================================================================= 
00004 //
00005 // XDFLengine library
00006 //
00007 //----------------------------------------------------------------------------- 
00008 //  UnzipStreamer.HPP
00009 //----------------------------------------------------------------------------- 
00015 //_____________________________________________________________________________
00016 //
00017 //  Copyright (C) 2003 Guillaume Baurand. All Rights Reserved.
00018 //
00019 //  This file is part of the XDFLengine project.
00020 //
00021 //  The XDFLengine is free software; you can redistribute it and/or modify
00022 //  it under the terms of the GNU General Public License as published by
00023 //  the Free Software Foundation; either version 2 of the License, or
00024 //  (at your option) any later version.
00025 //
00026 //  This program is distributed in the hope that it will be useful,
00027 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
00028 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00029 //  GNU General Public License for more details.
00030 //
00031 //  You should have received a copy of the GNU General Public License
00032 //  along with this program; if not, write to the Free Software
00033 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
00034 //  USA.
00035 //
00036 //  For more information, 
00037 //      contact  : guillaume@baurand.net 
00038 //      or visit : http://xdflengine.sourceforge.net
00039 //
00040 //============================================================================= 
00041 
00042 #   include "config/commonincs.hpp"
00043 #   include "processor/xmlstreamerfactory.hpp"
00044 
00045 BEGIN_XDFLENGINE_NS
00046 
00047 class XMLProcessor;
00048 
00049 //============================================================================= 
00050 //  CLASS UnzipStreamer
00051 //----------------------------------------------------------------------------- 
00053 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00054 class XDFLENGINE_EXPORT UnzipStreamer:public XMLStreamer
00055 {
00056 
00057     private: //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00058 
00059         XMLStreamBuffer*    m_pNamedBuffer;
00060 
00061     public: //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00062 
00063     // CONSTRUCTOR & DESTRUCTOR
00064 
00065         //_____________________________________________________________________
00066         //  UnzipStreamer
00067         //---------------------------------------------------------------------
00068         UnzipStreamer( const XMLStreamerFactory* p_pParent, StreamerParams* p_pParameters, XMLFlowContext* p_pContext, XMLStreamConsumer* p_pOutput);
00069         
00070         //_____________________________________________________________________
00071         //  ~UnzipStreamer
00072         //---------------------------------------------------------------------     
00073         ~UnzipStreamer();
00074 
00075     // STREAM
00076 
00077         //_____________________________________________________________________
00078         //  INITSTREAM
00079         //---------------------------------------------------------------------
00080         bool initStream();
00081 
00082         //_____________________________________________________________________
00083         //  WRITEDATA
00084         //---------------------------------------------------------------------
00085         void writeData( const char* p_pszData, unsigned int p_uiDataLen);
00086 
00087         //_____________________________________________________________________
00088         //  COMMITSTREAM
00089         //---------------------------------------------------------------------
00090         bool commitStream(bool p_fFinal=false);
00091 
00092 
00093 };
00094 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00095 //=============================================================================
00096 
00097 //============================================================================= 
00098 //  CLASS UnzipStreamerFACTORY
00099 //----------------------------------------------------------------------------- 
00101 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00102 class XDFLENGINE_EXPORT UnzipStreamerFactory:public XMLStreamerFactory
00103 {
00104 
00105     public: //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00106         UnzipStreamerFactory();
00107 
00108         //_____________________________________________________________________
00109         //  GETSTREAMER
00110         //---------------------------------------------------------------------
00111         XMLStreamer* getStreamer(StreamerParams* p_pParameters, XMLFlowContext* p_pStreamContext, XMLStreamConsumer* p_pStreamConsumer) const;
00112 };
00113 
00114 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
00115 //=============================================================================
00116 
00117 END_XDFLENGINE_NS
00118 
00119 #endif
00120 

Generated on Sat Oct 4 13:20:02 2003 for XDFLengine by doxygen1.3-rc2