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

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 SBINETUTILS_HPP
  23. #define SBINETUTILS_HPP
  24. #include "VXIvalue.h"
  25. class SBinetValidator;
  26. class SBinetMD5 {
  27. public:
  28.   SBinetMD5();
  29.   SBinetMD5(const VXIchar* url);
  30.   SBinetMD5(const SBinetMD5 & x);
  31.   SBinetMD5 & operator=(const SBinetMD5 & x);
  32.   
  33.   void Clear();
  34.   bool IsClear() const;
  35.   bool GenMD5Key(const VXIchar* content);
  36.   unsigned char raw[16];   
  37. };
  38. class SBinetUtils
  39. {
  40.   // Simple helper functions to retrieve information from a VXIMap.
  41.  public:
  42.   static bool getInteger(const VXIMap *theMap, const VXIchar *prop, VXIint32& value);
  43.   static bool getFloat(const VXIMap *theMap, const VXIchar *prop, VXIflt32& value);
  44.   static const VXIchar *getString(const VXIMap *theMap, const VXIchar *prop);
  45.   static bool getContent(const VXIMap *theMap, const VXIchar *prop,
  46.                          const char* &content, VXIulong& contentLength);
  47.   static VXIContent *createContent(const char *str);
  48.   static char *getTimeStampStr(time_t  timestamp,
  49.        char   *timestampStr);
  50.   static char *getTimeStampMsecStr(char  *timestampStr);
  51.   static bool setValidatorInfo(VXIMap *streamInfo, const SBinetValidator *validator);
  52.  private:
  53.   SBinetUtils();
  54. };
  55. #endif