hxguid.cpp
上传用户: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. #include "hlxclib/string.h"
  36. #include "hxguid.h"
  37. #include "hxstring.h"
  38. #include "hxstrutl.h"
  39. #if defined(HELIX_FEATURE_FULLGUID)
  40. #if defined _MACINTOSH || defined _UNIX || defined _SYMBIAN
  41. const GUID GUID_NULL = {0, 0, 0, { 0, 0, 0, 0, 0, 0, 0, 0}};
  42. #endif
  43. #endif
  44. #define CHARS_FOR_GUID_DATA4 8
  45. CHXGUID::CHXGUID(void)
  46. {
  47.     ::SetGUID(m_guid, GUID_NULL);
  48. }
  49. CHXGUID::~CHXGUID(void)
  50. {
  51. }
  52. CHXGUID::CHXGUID(REFGUID guid)
  53. {
  54.     ::SetGUID(m_guid, guid);
  55. }
  56. CHXGUID::CHXGUID(const char* pString)
  57. {
  58.     ::SetGUID(m_guid, GUID_NULL);
  59.     Set(pString);
  60. }
  61. BOOL CHXGUID::Set(REFGUID guid)
  62. {
  63.     ::SetGUID(m_guid, guid);
  64.     return(TRUE);
  65. }
  66. BOOL CHXGUID::Set(const char* pString)
  67. {
  68. #if defined(HELIX_FEATURE_FULLGUID)
  69.     CHXString t1, t2;
  70.     t1 = pString;
  71.     t2 = t1.NthField('-', 1);
  72.     m_guid.Data1 = ::strtoul(t2, NULL, 16);
  73.     t2 = t1.NthField('-', 2);
  74.     m_guid.Data2 = (UINT16)(::strtoul(t2, NULL, 16));
  75.     t2 = t1.NthField('-', 3);
  76.     m_guid.Data3 = (UINT16)(::strtoul(t2, NULL, 16));
  77.     t2 = t1.NthField('-', 4);
  78.     char d4str[3]; /* Flawfinder: ignore */
  79.     d4str[2] = 0;
  80.     // Loop through the characters in the 4th data field printing them into the buffer
  81.     for (int i=0; i < CHARS_FOR_GUID_DATA4; i++)
  82.     {
  83. d4str[0] = t2[i * 2];
  84. d4str[1] = t2[(i * 2) + 1];
  85. m_guid.Data4[i] = (UCHAR)::strtoul(d4str, NULL, 16);
  86.     }
  87.     return(TRUE);
  88. #else
  89.     // In this case, GUID is an enum
  90.     BOOL bRet = FALSE;
  91.     if (pString && strlen(pString) > 0)
  92.     {
  93.         UINT32 ulVal = ::strtoul(pString, NULL, 16);
  94.         if (ulVal < NUM_GUIDS)
  95.         {
  96.     m_guid = (GUID) ulVal;
  97.         }
  98.     }
  99.     return bRet;
  100. #endif
  101. }
  102. BOOL CHXGUID::Get(CHXString& string)
  103. {
  104.     INT32 length = sizeof(GUID)*2+4;
  105.     // Allocate a buffer big enough to store the string representation of a GUID.  Size of GUID in bytes * 2 hex digits
  106.     // for one byte + 4 Dashes
  107.     char* szGUID = string.GetBuffer(length);  
  108.     CHXGUID::Get(szGUID, length);
  109.     // Null terminate and release buffer
  110.     string.ReleaseBuffer();
  111.     return(TRUE);
  112. }
  113. BOOL CHXGUID::Get(char* pBuffer, INT32 bufLen)
  114. {
  115. #if !defined(HELIX_FEATURE_FULLGUID)
  116.     BOOL bRet = FALSE;
  117.     if (pBuffer && strlen(pBuffer) > 8)
  118.     {
  119.         // GUID is an enum
  120.         SafeSprintf(pBuffer, bufLen,"%.8lX",m_guid);
  121.     }
  122.     return bRet;
  123. #else /* #if defined(_STATICALLY_LINKED) && !defined(HELIX_FEATURE_FULLGUID) */
  124.     if (bufLen < sizeof(GUID) * 2 + 4)
  125. return(FALSE);
  126.     // Write out the first 3 Data fields seperated by dashes and then move to the end of the buffer
  127.     SafeSprintf(pBuffer, bufLen,"%.8lX-%.4hX-%.4hX-",m_guid.Data1,m_guid.Data2,m_guid.Data3);
  128.     bufLen -= strlen(pBuffer); pBuffer += strlen(pBuffer);
  129.     // Loop through the characters in the 4th data field printing them into the buffer
  130.     for (int i=0; i < CHARS_FOR_GUID_DATA4; i++)
  131.     {
  132. SafeSprintf(pBuffer, bufLen,"%.2lX",(UINT32)m_guid.Data4[i]);
  133. pBuffer += 2;
  134.     }
  135.     return(TRUE);
  136. #endif /* #if defined(_STATICALLY_LINKED) && !defined(HELIX_FEATURE_FULLGUID) #else */
  137. }
  138. BOOL CHXGUID::IsNull(void)
  139. {
  140.     return(::IsEqualGUID(m_guid, GUID_NULL));
  141. }