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

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 "VXMLDocument.hpp"          // for VXMLDocument and document model
  23. #include "VXItrd.h"                  // for ThreadMutex
  24. #include <map>
  25. class DocumentStorageKey {
  26. public:
  27.   DocumentStorageKey()
  28.   { memset(raw, 0, 32 * sizeof(unsigned char)); }
  29.   DocumentStorageKey(const DocumentStorageKey & x)
  30.   { memcpy(raw, x.raw, 32 * sizeof(unsigned char)); }
  31.   DocumentStorageKey & operator=(const DocumentStorageKey & x)
  32.   { if (this != &x) { memcpy(raw, x.raw, 32 * sizeof(unsigned char)); }
  33.     return *this; }
  34.   unsigned char raw[32];
  35. };
  36. inline bool operator< (const DocumentStorageKey & x,
  37.                        const DocumentStorageKey & y)
  38. { return memcmp(x.raw, y.raw, 32 * sizeof(unsigned char)) < 0; }
  39. inline bool operator==(const DocumentStorageKey & x,
  40.                        const DocumentStorageKey & y)
  41. { return memcmp(x.raw, y.raw, 32 * sizeof(unsigned char)) == 0; }
  42. // ------*---------*---------*---------*---------*---------*---------*---------
  43. class DocumentStorageRecord {
  44. private:
  45.   VXMLDocument  doc;   // compiled form of VXML document
  46.   unsigned int  size;  // size of the cache
  47.   unsigned long score; // cache score to keep track of the priority
  48. public:
  49.   VXMLDocument & GetDoc(unsigned long L)    { score = L + size; return doc; }
  50.   unsigned long GetScore() const            { return score; }
  51.   unsigned int  GetSize()  const            { return size; }
  52.   DocumentStorageRecord(VXMLDocument & d, unsigned int s, unsigned long L)
  53.     : doc(d), size(s), score(L + s) { }
  54.   DocumentStorageRecord() : doc(0), size(0), score(0) { }
  55.   DocumentStorageRecord(const DocumentStorageRecord & x)
  56.   { doc = x.doc; size = x.size; score = x.score; }
  57.   DocumentStorageRecord & operator=(const DocumentStorageRecord & x)
  58.   { if (this != &x) { doc = x.doc; size = x.size; score = x.score; }
  59.     return *this; }
  60. };
  61. // ------*---------*---------*---------*---------*---------*---------*---------
  62. class DocumentStorageSingleton {
  63. public:
  64.   static void Initialize(unsigned int cacheSize);
  65.   static void Deinitialize();
  66.   static DocumentStorageSingleton * Instance()
  67.   { return DocumentStorageSingleton::ds; }
  68.   // when storing and retrieving the cache, we must take the abs. url into 
  69.   // consideration because documents that has same content residing on different
  70.   // ports should have their own cache.
  71.   // i.e: http://abc/test.vxml and http://abc:8080/test.vxml
  72.   // The issue is the base url is entirely different between 
  73.   // "http://abc/" and "http://abc:8080/" 
  74.   bool Retrieve(VXMLDocument & doc, const VXIbyte * buffer, VXIulong bufSize, const VXIchar * url);
  75.   void Store(VXMLDocument & doc, const VXIbyte * buffer, VXIulong bufSize, const VXIchar * url);
  76. private:
  77.   DocumentStorageKey GenerateKey(const VXIbyte * buffer, VXIulong bufSize, const VXIchar * url);
  78. private:
  79.   typedef std::map<DocumentStorageKey, DocumentStorageRecord> DOC_STORAGE;
  80.   DOC_STORAGE storage;
  81.   unsigned long GreedyDualL;
  82.   DocumentStorageSingleton()   { VXItrdMutexCreate(&mutex);  totalBytes = 0; 
  83.                                  GreedyDualL = 0; }
  84.   ~DocumentStorageSingleton()  { VXItrdMutexDestroy(&mutex); }
  85.   VXItrdMutex * mutex;
  86.   unsigned int totalBytes; // total size of all entries, must be less than maxBytes
  87.   static unsigned long maxBytes; // max limit of memory cache, cannot exceed this limit
  88.   static DocumentStorageSingleton * ds;
  89. };