chxuuid.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

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