SWIfilterInputStream.hpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:3k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. #ifndef SWIFILTERINPUTSTREAM_HPP
  2. #define SWIFILTERINPUTSTREAM_HPP
  3. /****************License************************************************
  4.  * Vocalocity OpenVXI
  5.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version 2
  9.  * of the License, or (at your option) any later version.
  10.  *  
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  20.  * registered trademarks of Vocalocity, Inc. 
  21.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  22.  * by Vocalocity.
  23.  ***********************************************************************/
  24. #include "SWIinputStream.hpp"
  25. /**
  26.  * Class used to filter input stream.  The basic idea is that a
  27.  * SWIfilterInputstream is a wrapper around a SWIinputStream.  This allows to
  28.  * add functionality to existing SWInputStream classes.  The default
  29.  * implementation of all methods of the SWIfilterInputStream is to invoke the
  30.  * corresponding method of the wrapped SWIinputStream
  31.  **/
  32. class SWIUTIL_API_CLASS SWIfilterInputStream: public SWIinputStream
  33. {
  34.   // ................. CONSTRUCTORS, DESTRUCTOR  ............
  35.   //
  36.   // ------------------------------------------------------------
  37.   /**
  38.    * Default constructor.
  39.    **/
  40.  public:
  41.   SWIfilterInputStream(SWIinputStream *stream, bool ownStream = true);
  42.   /**
  43.    * Destructor.
  44.    **/
  45.  public:
  46.   virtual ~SWIfilterInputStream();
  47.  public:
  48.   virtual int readBytes(void* data, int dataSize);
  49.  public:
  50.   virtual int read();
  51.  public:
  52.   virtual int skip(int n);
  53.  public:
  54.   virtual int readLine(char *buffer, int bufSize);
  55.  public:
  56.   virtual int readLine(SWIoutputStream& out);
  57.  public:
  58.   virtual int peek(int offset = 0) const;
  59.  public:
  60.   virtual int getLookAhead() const;
  61.  public:
  62.   virtual bool isBuffered() const;
  63.  public:
  64.   virtual Result waitReady(long timeoutMs = -1);
  65.  public:
  66.   virtual Result close();
  67.   /**
  68.    * Disabled copy constructor.
  69.    **/
  70.  private:
  71.   SWIfilterInputStream(const SWIfilterInputStream&);
  72.   /**
  73.    * Disabled assignment operator.
  74.    **/
  75.  private:
  76.   SWIfilterInputStream& operator=(const SWIfilterInputStream&);
  77.  private:
  78.   SWIinputStream *_stream;
  79.   bool _ownStream;
  80. };
  81. #endif