typeinfo.inl
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: typeinfo.inl,v $
  4.  * PRODUCTION Revision 1000.2  2003/12/02 20:34:04  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.11
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #if defined(TYPEINFO__HPP)  &&  !defined(TYPEINFO__INL)
  10. #define TYPEINFO__INL
  11. /*  $Id: typeinfo.inl,v 1000.2 2003/12/02 20:34:04 gouriano Exp $
  12. * ===========================================================================
  13. *
  14. *                            PUBLIC DOMAIN NOTICE
  15. *               National Center for Biotechnology Information
  16. *
  17. *  This software/database is a "United States Government Work" under the
  18. *  terms of the United States Copyright Act.  It was written as part of
  19. *  the author's official duties as a United States Government employee and
  20. *  thus cannot be copyrighted.  This software/database is freely available
  21. *  to the public for use. The National Library of Medicine and the U.S.
  22. *  Government have not placed any restriction on its use or reproduction.
  23. *
  24. *  Although all reasonable efforts have been taken to ensure the accuracy
  25. *  and reliability of the software and data, the NLM and the U.S.
  26. *  Government do not and cannot warrant the performance or results that
  27. *  may be obtained by using this software or data. The NLM and the U.S.
  28. *  Government disclaim all warranties, express or implied, including
  29. *  warranties of performance, merchantability or fitness for any particular
  30. *  purpose.
  31. *
  32. *  Please cite the author in any work or product based on this material.
  33. *
  34. * ===========================================================================
  35. *
  36. * Author: Eugene Vasilchenko
  37. *
  38. * File Description:
  39. *   !!! PUT YOUR DESCRIPTION HERE !!!
  40. */
  41. inline
  42. ETypeFamily CTypeInfo::GetTypeFamily(void) const
  43. {
  44.     return m_TypeFamily;
  45. }
  46. inline
  47. const string& CTypeInfo::GetName(void) const
  48. {
  49.     return m_Name;
  50. }
  51. inline
  52. size_t CTypeInfo::GetSize(void) const
  53. {
  54.     return m_Size;
  55. }
  56. inline
  57. bool CTypeInfo::IsOrMayContainType(TTypeInfo typeInfo) const
  58. {
  59.     return IsType(typeInfo) || MayContainType(typeInfo);
  60. }
  61. inline
  62. TObjectPtr CTypeInfo::Create(void) const
  63. {
  64.     return m_CreateFunction(this);
  65. }
  66. inline
  67. void CTypeInfo::ReadData(CObjectIStream& in, TObjectPtr object) const
  68. {
  69.     m_ReadHookData.GetCurrentFunction()(in, this, object);
  70. }
  71. inline
  72. void CTypeInfo::WriteData(CObjectOStream& out, TConstObjectPtr object) const
  73. {
  74.     m_WriteHookData.GetCurrentFunction()(out, this, object);
  75. }
  76. inline
  77. void CTypeInfo::CopyData(CObjectStreamCopier& copier) const
  78. {
  79.     m_CopyHookData.GetCurrentFunction()(copier, this);
  80. }
  81. inline
  82. void CTypeInfo::SkipData(CObjectIStream& in) const
  83. {
  84.     m_SkipHookData.GetCurrentFunction()(in, this);
  85. }
  86. inline
  87. void CTypeInfo::DefaultReadData(CObjectIStream& in,
  88.                                 TObjectPtr objectPtr) const
  89. {
  90.     m_ReadHookData.GetDefaultFunction()(in, this, objectPtr);
  91. }
  92. inline
  93. void CTypeInfo::DefaultWriteData(CObjectOStream& out,
  94.                                  TConstObjectPtr objectPtr) const
  95. {
  96.     m_WriteHookData.GetDefaultFunction()(out, this, objectPtr);
  97. }
  98. inline
  99. void CTypeInfo::DefaultCopyData(CObjectStreamCopier& copier) const
  100. {
  101.     m_CopyHookData.GetDefaultFunction()(copier, this);
  102. }
  103. inline
  104. void CTypeInfo::DefaultSkipData(CObjectIStream& in) const
  105. {
  106.     m_SkipHookData.GetDefaultFunction()(in, this);
  107. }
  108. inline
  109. bool CTypeInfo::IsCObject(void) const
  110. {
  111.     return m_IsCObject;
  112. }
  113. #endif /* def TYPEINFO__HPP  &&  ndef TYPEINFO__INL */
  114. /* ---------------------------------------------------------------------------
  115. * $Log: typeinfo.inl,v $
  116. * Revision 1000.2  2003/12/02 20:34:04  gouriano
  117. * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.11
  118. *
  119. * Revision 1.11  2003/12/01 19:04:22  grichenk
  120. * Moved Add and Sub from serialutil to ncbimisc, made them methods
  121. * of CRawPointer class.
  122. *
  123. * Revision 1.10  2003/11/24 14:10:04  grichenk
  124. * Changed base class for CAliasTypeInfo to CPointerTypeInfo
  125. *
  126. * Revision 1.9  2003/11/18 18:11:48  grichenk
  127. * Resolve aliased type info before using it in CObjectTypeInfo
  128. *
  129. * Revision 1.8  2003/07/29 18:47:47  vasilche
  130. * Fixed thread safeness of object stream hooks.
  131. *
  132. * Revision 1.7  2002/12/23 18:38:52  dicuccio
  133. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  134. * Moved all CVS logs to the end.
  135. *
  136. * Revision 1.6  2002/09/09 18:14:00  grichenk
  137. * Added CObjectHookGuard class.
  138. * Added methods to be used by hooks for data
  139. * reading and skipping.
  140. *
  141. * Revision 1.5  2001/10/22 15:16:20  grichenk
  142. * Optimized CTypeInfo::IsCObject()
  143. *
  144. * Revision 1.4  2000/09/29 16:18:15  vasilche
  145. * Fixed binary format encoding/decoding on 64 bit compulers.
  146. * Implemented CWeakMap<> for automatic cleaning map entries.
  147. * Added cleaning local hooks via CWeakMap<>.
  148. * Renamed ReadTypeName -> ReadFileHeader, ENoTypeName -> ENoFileHeader.
  149. * Added some user interface methods to CObjectIStream, CObjectOStream and
  150. * CObjectStreamCopier.
  151. *
  152. * Revision 1.3  2000/09/18 20:00:11  vasilche
  153. * Separated CVariantInfo and CMemberInfo.
  154. * Implemented copy hooks.
  155. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  156. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  157. *
  158. * Revision 1.2  2000/03/29 15:55:22  vasilche
  159. * Added two versions of object info - CObjectInfo and CConstObjectInfo.
  160. * Added generic iterators by class -
  161. *  CTypeIterator<class>, CTypeConstIterator<class>,
  162. *  CStdTypeIterator<type>, CStdTypeConstIterator<type>,
  163. *  CObjectsIterator and CObjectsConstIterator.
  164. *
  165. * Revision 1.1  1999/05/19 19:56:33  vasilche
  166. * Commit just in case.
  167. *
  168. * ===========================================================================
  169. */