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

xml/soap/webservice

开发平台:

Visual C++

  1. #ifndef SWIBUFFEREDOUTPUTSTREAM_HPP
  2. #define SWIBUFFEREDOUTPUTSTREAM_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 "SWIfilterOutputStream.hpp"
  25. class SWIUTIL_API_CLASS SWIbufferedOutputStream: public SWIfilterOutputStream
  26. {
  27.   // ................. CONSTRUCTORS, DESTRUCTOR  ............
  28.   //
  29.   // ------------------------------------------------------------
  30.   /**
  31.    * Creates a Writer wrapped around the stream.
  32.    *
  33.    * @param stream The OutputStream to be wrapped by the writer.
  34.    * @param the size of the internal buffer to
  35.    **/
  36.  public:
  37.   SWIbufferedOutputStream(SWIoutputStream *outStream,
  38.                           int bufferSize = 1024,
  39.                           bool ownStream = true);
  40.   /**
  41.    * Destructor.
  42.    **/
  43.  public:
  44.   virtual ~SWIbufferedOutputStream();
  45.  public:
  46.   virtual int writeBytes(const void *data, int dataSize);
  47.  public:
  48.   bool isBuffered() const;
  49.  public:
  50.   virtual SWIstream::Result printString(const char *s);
  51.  public:
  52.   virtual SWIstream::Result printChar(char c);
  53.  public:
  54.   virtual SWIstream::Result flush();
  55.  public:
  56.   virtual SWIstream::Result close();
  57.  private:
  58.   SWIstream::Result flushBuffer();
  59.   /**
  60.    * Disabled copy constructor.
  61.    **/
  62.  private:
  63.   SWIbufferedOutputStream(const SWIbufferedOutputStream&);
  64.   /**
  65.    * Disabled assignment operator.
  66.    **/
  67.  private:
  68.   SWIbufferedOutputStream& operator=(const SWIbufferedOutputStream&);
  69.  private:
  70.   char *_buffer;
  71.   char *_end;
  72.   char *_pos;
  73. };
  74. #endif