VXICacheStream.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. /***********************************************************************
  23.  *
  24.  * Routines to handle caching of documents and resources.
  25.  *
  26.  ***********************************************************************/
  27. #include "VXICacheStream.hpp"
  28. VXICacheStream::VXICacheStream(VXIcacheInterface * cache,
  29.                                const VXIbyte * buffer,
  30.                                VXIulong bufferSize)
  31.   : writable(false), bad(false), stream(NULL), cache(NULL)
  32. {
  33.   if (cache == NULL || buffer == NULL || bufferSize == 0) {
  34.     bad = true;
  35.     return;
  36.   }
  37.   VXIcacheStream * stream = NULL;
  38.   VXIcacheResult rc = cache->OpenEx(cache, L"VXI", buffer, bufferSize,
  39.                                     CACHE_MODE_READ_CREATE, CACHE_FLAG_NULL,
  40.                                     NULL, NULL, &stream);
  41.   switch (rc) {
  42.   case VXIcache_RESULT_ENTRY_CREATED: // We have write permission.
  43.     writable = true;
  44.     break;
  45.   case VXIcache_RESULT_SUCCESS: // Already in cache, just read it in.
  46.     writable = false;
  47.     break;
  48.   default:
  49.     bad = true;
  50.     return;
  51.   }
  52.   this->cache = cache;
  53.   this->stream = stream;
  54.   return;
  55. }
  56. void VXICacheStream::CommitEntry()
  57. {
  58.   if (cache != NULL && stream != NULL && writable) {
  59.     cache->CloseEx(cache, true, &stream);
  60.     stream = NULL; // just in case
  61.   }
  62. }
  63. void VXICacheStream::DiscardEntry()
  64. {
  65.   if (cache != NULL && stream != NULL && writable) {
  66.     cache->CloseEx(cache, false, &stream);
  67.     stream = NULL; // just in case
  68.   }
  69. }
  70. VXICacheStream::~VXICacheStream()
  71. {
  72.   if (cache == NULL || stream == NULL) return;
  73.   cache->CloseEx(cache, !writable, &stream);
  74. }