SBinetStream.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. #if _MSC_VER >= 1100    // Visual C++ 5.x
  23. #pragma warning( disable : 4786 4503 )
  24. #endif
  25. #include "SBinetStream.hpp"
  26. #include "SBinetUtils.hpp"
  27. #include "SBinetValidator.h"
  28. #include "SBinetLog.h"
  29. SBinetStream::SBinetStream(SBinetURL *url, SBinetStreamType type, VXIlogInterface *log, VXIunsigned diagLogBase):
  30.   SWIutilLogger(MODULE_SBINET, log, diagLogBase),
  31.   _url(url), _type(type)
  32. {}
  33. SBinetStream::~SBinetStream()
  34. {
  35.   delete _url;
  36. }
  37. void SBinetStream::getCacheInfo(const VXIMap* properties, VXIint32& maxAge, VXIint32& maxStale)
  38. {
  39.   // Determine whether safe caching was requested (for proxy use)
  40.   const VXIchar* cMode = SBinetUtils::getString(properties, INET_CACHING);
  41.   if (cMode != NULL && ::wcscmp(cMode, INET_CACHING_SAFE) == 0)
  42.   {
  43.     maxStale = maxAge = 0;
  44.   }
  45.   else
  46.   {
  47.     maxStale = maxAge = -1;
  48.     SBinetUtils::getInteger(properties,
  49.                             INET_CACHE_CONTROL_MAX_AGE,
  50.                             maxAge);
  51.     SBinetUtils::getInteger(properties,
  52.                             INET_CACHE_CONTROL_MAX_STALE,
  53.                             maxStale);
  54.   }
  55. }
  56. void SBinetStream::getModInfo(const VXIMap *properties,
  57.                               time_t& lastModified, SBinetNString &etag)
  58. {
  59.   lastModified = (time_t) -1;
  60.   etag.clear();
  61.   // Determine attributes for conditional fetching.
  62.   const VXIValue *val = VXIMapGetProperty(properties, INET_OPEN_IF_MODIFIED);
  63.   if (val != NULL)
  64.   {
  65.     SBinetValidator validator(GetLog(), GetDiagBase());
  66.     if (validator.Create(val) == VXIinet_RESULT_SUCCESS)
  67.     {
  68.       // Only keep the Etag if it is not a weak one.
  69.       if (validator.isStrong())
  70.         etag = validator.getETAG();
  71.       lastModified = validator.getLastModified();
  72.     }
  73.   }
  74. }