chxuuid.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef __CHXUUID_
  36. #define __CHXUUID_
  37. //#include "hxtypes.h"
  38. //#include "hxrand.h"
  39. class CMultiplePrimeRandom;
  40. #define MACHINEID_SIZE 6
  41. typedef struct tag_uuid_tt
  42. {
  43.     ULONG32      time_low;
  44.     UINT16      time_mid;
  45.     UINT16      time_hi_and_version;
  46.     UCHAR       clock_seq_hi_and_reserved;
  47.     UCHAR       clock_seq_low;
  48.     UCHAR       node[MACHINEID_SIZE];
  49. } uuid_tt, *uuid_p_t;
  50. typedef struct tag_uuid_ttime_t
  51. {
  52.     ULONG32  lo;
  53.     ULONG32  hi;
  54. } uuid_ttime_t, *uuid_ttime_p_t;
  55. typedef struct tag_unsigned64_t
  56. {
  57.     ULONG32  lo;
  58.     ULONG32  hi;
  59. } unsigned64_t, *unsigned64_p_t;
  60. /*
  61.  * the number of elements returned by sscanf() when converting
  62.  * string formatted uuid's to binary
  63.  */
  64. #define UUID_ELEMENTS_NUM       11
  65. /*
  66.  * local defines used in uuid bit-diddling
  67.  */
  68. #define HI_WORD(w)                  ((w) >> 16)
  69. #define RAND_MASK                   0x3fff      /* same as CLOCK_SEQ_LAST */
  70. #define TIME_MID_MASK               0x0000ffff
  71. #define TIME_HIGH_MASK              0x0fff0000
  72. #define TIME_HIGH_SHIFT_COUNT       16
  73. #define MAX_TIME_ADJUST             0x7fff
  74. #define CLOCK_SEQ_LOW_MASK          0xff
  75. #define CLOCK_SEQ_HIGH_MASK         0x3f00
  76. #define CLOCK_SEQ_HIGH_SHIFT_COUNT  8
  77. #define CLOCK_SEQ_FIRST             1
  78. #define CLOCK_SEQ_LAST              0x3fff      /* same as RAND_MASK */
  79. #define CLOCK_SEQ_BUMP(seq)         ((*seq) = ((*seq) + 1) & CLOCK_SEQ_LAST)
  80. #define UUID_VERSION_BITS           (1 << 12)
  81. #define UUID_RESERVED_BITS          0xE0
  82. #define IS_OLD_UUID(uuid) (((uuid)->clock_seq_hi_and_reserved & 0xc0) != 0x80)
  83. /*
  84.  * Max size of a uuid string: tttttttt-tttt-cccc-cccc-nnnnnnnnnnnn
  85.  * Note: this includes the implied ''
  86.  */
  87. #define UUID_C_UUID_STRING_MAX          37
  88. class CHXString;
  89. enum uuid_compval_t
  90. {
  91.     uuid_e_less_than, uuid_e_equal_to, uuid_e_greater_than
  92. };
  93. #ifdef _WIN16
  94. /************************************************************************
  95.  *  int FAR _cdecl wsscanf( LPSTR lpBuffer, LPSTR lpFormat,
  96.  *                          LPSTR lpParms, ... )
  97.  *
  98.  *  Description:
  99.  *     Replacement function for sscanf().   Useable in DLLs (all
  100.  *     parameters are passed as FAR pointers.
  101.  *
  102.  ************************************************************************/
  103. int STDMETHODCALLTYPE wsscanf( char* lpBuffer, char* lpFormat, ... );
  104. #endif /* _WIN16 */
  105. class CHXuuid
  106. {
  107. protected:
  108. /*
  109.  * declarations used in UTC time calculations
  110.  */
  111.     uuid_ttime_t     m_time_now;     /* utc time as of last query        */
  112.     uuid_ttime_t     m_time_last;    /* 'saved' value of time_now        */
  113.     UINT16     m_time_adjust;  /* 'adjustment' to ensure uniqness  */
  114.     UINT16     m_clock_seq;    /* 'adjustment' for backwards clocks*/
  115.     UCHAR     m_machineID[MACHINEID_SIZE];
  116.     CMultiplePrimeRandom* m_pRand;
  117.     void NewClockSeq(UINT16& clock_seq);
  118.     void GetOSTime(uuid_ttime_t * uuid_ttime);
  119.     void GenerateMachineID();
  120.     uuid_compval_t TimeCmp(uuid_ttime_p_t time1, uuid_ttime_p_t time2);
  121.     void UnsignedExtendedMultiply(ULONG32 u,ULONG32 v, unsigned64_t* prodPtr);
  122.     UINT16 TrueRandom();
  123. public:
  124.     CHXuuid();
  125.     CHXuuid(UCHAR theMachineID[MACHINEID_SIZE]);
  126.     virtual ~CHXuuid();
  127.     UCHAR* GetMachineID() {return m_machineID;}
  128.     HX_RESULT GetUuid(uuid_tt* uuid);
  129.     HX_RESULT GetUuid(uuid_tt* uuid, const UCHAR* pBuffer, UINT32 ulBufferSize);
  130.     static HX_RESULT HXUuidToString(const uuid_tt* uuid, CHXString* uuid_string);
  131.     static HX_RESULT HXUuidFromString(const char* uuid_string, uuid_tt* uuid);
  132.     static BOOL HXIsEqual(uuid_p_t uuid1, uuid_p_t uuid2);
  133.     static HX_RESULT HXPack(UINT8* pBuffer, uuid_p_t uuid);
  134.     static HX_RESULT HXUnpack(uuid_p_t uuid, UINT8* pBuffer);
  135. };
  136. #endif /*__CHXUUID_*/