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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: class_ops.cpp,v 1.2.42.3 2004/07/09 01:45:54 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. #include <stdio.h>
  50. #include <stdlib.h>
  51. #include "./class_ops.h"
  52. #include "hxtypes.h"
  53. #include "hxcom.h"
  54. #include "hxstring.h"
  55. static const int StringSize = 10;
  56. template<> 
  57. class ClassOps<void*> 
  58. {
  59. public:
  60.     void* Create() const;
  61.     void* Null() const;
  62.     void Destroy(void*& obj) const;
  63.     char* Print(void* const & obj) const;
  64.     void* Copy(void* const & obj) const;
  65. };
  66. void* ClassOps<void*>::Create() const
  67. {    
  68.     int* pRet = new int(rand() & 0x7fffffff);
  69.     return pRet;
  70. }
  71. void* ClassOps<void*>::Null() const
  72. {
  73.     return 0;
  74. }
  75. void ClassOps<void*>::Destroy(void*& obj) const
  76. {
  77.     int* pTmp = (int*)obj;
  78.     delete pTmp;
  79. }
  80. char* ClassOps<void*>::Print(void* const & obj) const
  81. {
  82.     char* pRet = new char[20];
  83.     if (obj)
  84. sprintf(pRet, "%d", *((int*)obj)); /* Flawfinder: ignore */
  85.     else
  86. sprintf(pRet, "(null)"); /* Flawfinder: ignore */
  87.     return pRet;
  88. }
  89. void* ClassOps<void*>::Copy(void* const & obj) const
  90. {
  91.     int* pTmp = (int*)obj;
  92.     int* pNew = 0;
  93.     if (pTmp)
  94. pNew = new int(*pTmp);
  95.     return pNew;
  96. }
  97. template<> 
  98. class ClassOps<LONG32> 
  99. {
  100. public:
  101.     LONG32 Create() const;
  102.     LONG32 Null() const;
  103.     void Destroy(LONG32& obj) const;
  104.     char* Print(const LONG32& obj) const;
  105.     LONG32 Copy(const LONG32& obj) const;
  106. };
  107. LONG32 ClassOps<LONG32>::Create() const
  108. {    
  109.     return (LONG32)(rand() & 0x7fffffff);
  110. }
  111. LONG32 ClassOps<LONG32>::Null() const
  112. {
  113.     return 0;
  114. }
  115. void ClassOps<LONG32>::Destroy(LONG32& /*obj*/) const
  116. {
  117. }
  118. char* ClassOps<LONG32>::Print(const LONG32& obj) const
  119. {
  120.     char* pRet = new char[21];
  121.     sprintf(pRet, "%ldL", obj); /* Flawfinder: ignore */
  122.     return pRet;
  123. }
  124. LONG32 ClassOps<LONG32>::Copy(const LONG32& obj) const
  125. {
  126.     return obj;
  127. }
  128. template<> 
  129. class ClassOps<GUID> 
  130. {
  131. public:
  132.     GUID Create() const;
  133.     GUID Null() const;
  134.     void Destroy(GUID& obj) const;
  135.     char* Print(const GUID& obj) const;
  136.     GUID Copy(const GUID& obj) const;
  137. };
  138. GUID ClassOps<GUID>::Create() const
  139. {    
  140.     GUID ret;
  141.     
  142.     ret.Data1 = rand();
  143.     ret.Data2 = rand() & 0xffff;
  144.     ret.Data3 = rand() & 0xffff;
  145.     for (int i = 0; i < 8; i++)
  146. ret.Data4[i] = rand() & 0xff;
  147.     return ret;
  148. }
  149. GUID ClassOps<GUID>::Null() const
  150. {    
  151.     GUID ret;
  152.     
  153.     memset(&ret, 0, sizeof(GUID));
  154.     return ret;
  155. }
  156. void ClassOps<GUID>::Destroy(GUID& /*obj*/) const
  157. {
  158. }
  159. char* ClassOps<GUID>::Print(const GUID& obj) const
  160. {
  161.     char* pRet = new char[40];
  162.     sprintf(pRet, "%08lx-%04x-%04x-%02x%02x%02x%02x%02x%02x%02x%02x", /* Flawfinder: ignore */
  163.     obj.Data1,
  164.     obj.Data2,
  165.     obj.Data3,
  166.     obj.Data4[0],
  167.     obj.Data4[1],
  168.     obj.Data4[2],
  169.     obj.Data4[3],
  170.     obj.Data4[4],
  171.     obj.Data4[5],
  172.     obj.Data4[6],
  173.     obj.Data4[7]);
  174.     return pRet;
  175. }
  176. GUID ClassOps<GUID>::Copy(const GUID& obj) const
  177. {
  178.     return obj;
  179. }
  180. template<> 
  181. class ClassOps<CHXString> 
  182. {
  183. public:
  184.     CHXString Create() const;
  185.     CHXString Null() const;
  186.     void Destroy(CHXString& obj) const;
  187.     char* Print(const CHXString& obj) const;
  188.     CHXString Copy(const CHXString& obj) const;
  189. };
  190. CHXString ClassOps<CHXString>::Create() const
  191. {
  192.     CHXString ret;
  193.     for (int i = 0; i < StringSize; i++)
  194.     {
  195. int num = (rand() & 0x1f);
  196. if (num <= 0xf)
  197.     ret += 'a' + num;
  198. else
  199.     ret += 'A' + (num - 0x10);
  200.     }
  201.     return ret;
  202. }
  203. CHXString ClassOps<CHXString>::Null() const
  204. {
  205.     return CHXString();
  206. }
  207. void ClassOps<CHXString>::Destroy(CHXString& /*obj*/) const
  208. {
  209.     // We don't need to to anything here
  210. }
  211. char* ClassOps<CHXString>::Print(const CHXString& obj) const
  212. {
  213.     char* pRet = new char[obj.GetLength() + 1];
  214.     strcpy(pRet, obj); /* Flawfinder: ignore */
  215.     return pRet;
  216. }
  217. CHXString ClassOps<CHXString>::Copy(const CHXString& obj) const
  218. {
  219.     return obj;
  220. }