SBinetStream.hpp
上传用户: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. #ifndef SBINETSTREAM_H
  23. #define SBINETSTREAM_H
  24. #include "VXIinetStream.hpp"
  25. #include "SWIutilLogger.hpp"
  26. #include "SBinetURL.h"
  27. typedef enum SBinetStreamType
  28. {
  29.   SBinetStream_FILE   = 0,
  30.   SBinetStream_HTTP   = 1,
  31.   SBinetStream_CACHE  = 2
  32. } SBinetStreamType;
  33. class SBinetStream: public VXIinetStream, public SWIutilLogger
  34. {
  35.  public:
  36.   SBinetStream(SBinetURL *url, SBinetStreamType type, VXIlogInterface *log, VXIunsigned diagLogBase);
  37.  public:
  38.   virtual ~SBinetStream();
  39.  public:
  40.   const SBinetURL *getURL() const
  41.   {
  42.     return _url;
  43.   }
  44.   
  45.   const SBinetStreamType getType() const
  46.   {
  47.     return _type;
  48.   }
  49.  public:
  50.   virtual VXIinetResult Open(VXIint flags,
  51.                              const VXIMap* properties,
  52.                              VXIMap* streamInfo) = 0;
  53.   virtual VXIinetResult Read(/* [OUT] */ VXIbyte*         pBuffer,
  54.                              /* [IN]  */ VXIulong         nBuflen,
  55.                              /* [OUT] */ VXIulong*        pnRead ) = 0;
  56.   virtual VXIinetResult Write(/* [IN] */ const VXIbyte*   pBuffer,
  57.                               /* [IN]  */ VXIulong         nBuflen,
  58.                               /* [OUT] */ VXIulong*        pnWritten) = 0;
  59.   virtual VXIinetResult Close() = 0;
  60.  protected:
  61.   void getCacheInfo(const VXIMap* properties, VXIint32& maxAge, VXIint32& maxStale);
  62.   void getModInfo(const VXIMap *properties, time_t& lastModified, SBinetNString &etag);
  63.   SBinetURL *_url;
  64.   SBinetStreamType _type;
  65. };
  66. #endif