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

xml/soap/webservice

开发平台:

Visual C++

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