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

xml/soap/webservice

开发平台:

Visual C++

  1. #ifndef SWIFILTEROUTPUTSTREAM_HPP
  2. #define SWIFILTEROUTPUTSTREAM_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. /**
  25.  * Class used to filter output stream.  The basic idea is that a
  26.  * SWIfilterOutputstream is a wrapper around a SWIoutputStream.  This allows to
  27.  * add functionality to existing SWInputStream classes.  The default
  28.  * implementation of all methods of the SWIfilterOutputStream is to invoke the
  29.  * corresponding method of the wrapped SWIoutputStream
  30.  *
  31.  *
  32.  **/
  33. #include "SWIoutputStream.hpp"
  34. class SWIUTIL_API_CLASS SWIfilterOutputStream: public SWIoutputStream
  35. {
  36.   // ................. CONSTRUCTORS, DESTRUCTOR  ............
  37.   //
  38.   // ------------------------------------------------------------
  39.   /**
  40.    * Default constructor.
  41.    **/
  42.  public:
  43.   SWIfilterOutputStream(SWIoutputStream *outStream,
  44.                         bool ownStream = true);
  45.   /**
  46.    * Destructor.
  47.    **/
  48.  public:
  49.   virtual ~SWIfilterOutputStream();
  50.  public:
  51.   virtual int writeBytes(const void *data, int dataSize);
  52.  public:
  53.   bool isBuffered() const;
  54.  public:
  55.   virtual SWIstream::Result printString(const char *s);
  56.  public:
  57.   virtual SWIstream::Result printChar(char c);
  58.  public:
  59.   virtual SWIstream::Result flush();
  60.  public:
  61.   virtual SWIstream::Result close();
  62.  public:
  63.   virtual SWIstream::Result waitReady(long timeoutMs = -1);
  64.  protected:
  65.   bool isOwner() const
  66.   {
  67.     return _ownStream;
  68.   }
  69.   /**
  70.    * Disabled copy constructor.
  71.    **/
  72.  private:
  73.   SWIfilterOutputStream(const SWIfilterOutputStream&);
  74.   /**
  75.    * Disabled assignment operator.
  76.    **/
  77.  private:
  78.   SWIfilterOutputStream& operator=(const SWIfilterOutputStream&);
  79.  private:
  80.   const bool _ownStream;
  81.   SWIoutputStream *_stream;
  82. };
  83. #endif