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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: objlist.inl,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:27:18  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #if defined(OBJLIST__HPP)  &&  !defined(OBJLIST__INL)
  10. #define OBJLIST__INL
  11. /*  $Id: objlist.inl,v 1000.0 2003/10/29 17:27:18 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. CReadObjectInfo::CReadObjectInfo(void)
  43.     : m_TypeInfo(0), m_ObjectPtr(0)
  44. {
  45. }
  46. inline
  47. CReadObjectInfo::CReadObjectInfo(TTypeInfo typeInfo)
  48.     : m_TypeInfo(typeInfo), m_ObjectPtr(0)
  49. {
  50. }
  51. inline
  52. CReadObjectInfo::CReadObjectInfo(TObjectPtr objectPtr, TTypeInfo typeInfo)
  53.     : m_TypeInfo(typeInfo),
  54.       m_ObjectPtr(objectPtr), m_ObjectRef(typeInfo->GetCObjectPtr(objectPtr))
  55. {
  56. }
  57. inline
  58. TTypeInfo CReadObjectInfo::GetTypeInfo(void) const
  59. {
  60.     return m_TypeInfo;
  61. }
  62. inline
  63. TObjectPtr CReadObjectInfo::GetObjectPtr(void) const
  64. {
  65.     return m_ObjectPtr;
  66. }
  67. inline
  68. void CReadObjectInfo::ResetObjectPtr(void)
  69. {
  70.     m_ObjectPtr = 0;
  71.     m_ObjectRef.Reset();
  72. }
  73. inline
  74. void CReadObjectInfo::Assign(TObjectPtr objectPtr, TTypeInfo typeInfo)
  75. {
  76.     m_TypeInfo = typeInfo;
  77.     m_ObjectPtr = objectPtr;
  78.     m_ObjectRef.Reset(typeInfo->GetCObjectPtr(objectPtr));
  79. }
  80. inline
  81. CReadObjectList::TObjectIndex CReadObjectList::GetObjectCount(void) const
  82. {
  83.     return m_Objects.size();
  84. }
  85. inline
  86. CWriteObjectInfo::CWriteObjectInfo(void)
  87.     : m_TypeInfo(0), m_ObjectPtr(0), m_Index(TObjectIndex(-1))
  88. {
  89. }
  90. inline
  91. CWriteObjectInfo::CWriteObjectInfo(TTypeInfo typeInfo, TObjectIndex index)
  92.     : m_TypeInfo(typeInfo), m_ObjectPtr(0),
  93.       m_Index(index)
  94. {
  95. }
  96. inline
  97. CWriteObjectInfo::CWriteObjectInfo(TConstObjectPtr objectPtr,
  98.                                    TTypeInfo typeInfo, TObjectIndex index)
  99.     : m_TypeInfo(typeInfo), m_ObjectPtr(objectPtr),
  100.       m_ObjectRef(typeInfo->GetCObjectPtr(objectPtr)),
  101.       m_Index(index)
  102. {
  103. }
  104. inline
  105. CWriteObjectInfo::TObjectIndex CWriteObjectInfo::GetIndex(void) const
  106. {
  107.     _ASSERT(m_Index != TObjectIndex(-1));
  108.     return m_Index;
  109. }
  110. inline
  111. TTypeInfo CWriteObjectInfo::GetTypeInfo(void) const
  112. {
  113.     return m_TypeInfo;
  114. }
  115. inline
  116. TConstObjectPtr CWriteObjectInfo::GetObjectPtr(void) const
  117. {
  118.     return m_ObjectPtr;
  119. }
  120. inline
  121. const CConstRef<CObject>& CWriteObjectInfo::GetObjectRef(void) const
  122. {
  123.     return m_ObjectRef;
  124. }
  125. inline
  126. void CWriteObjectInfo::ResetObjectPtr(void)
  127. {
  128.     m_ObjectPtr = 0;
  129.     m_ObjectRef.Reset();
  130. }
  131. inline
  132. CWriteObjectList::TObjectIndex CWriteObjectList::GetObjectCount(void) const
  133. {
  134.     return m_Objects.size();
  135. }
  136. inline
  137. CWriteObjectList::TObjectIndex CWriteObjectList::NextObjectIndex(void) const
  138. {
  139.     return GetObjectCount();
  140. }
  141. #endif /* def OBJLIST__HPP  &&  ndef OBJLIST__INL */
  142. /* ---------------------------------------------------------------------------
  143. * $Log: objlist.inl,v $
  144. * Revision 1000.0  2003/10/29 17:27:18  gouriano
  145. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  146. *
  147. * Revision 1.6  2002/12/23 18:38:51  dicuccio
  148. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  149. * Moved all CVS logs to the end.
  150. *
  151. * Revision 1.5  2000/10/17 18:45:25  vasilche
  152. * Added possibility to turn off object cross reference detection in
  153. * CObjectIStream and CObjectOStream.
  154. *
  155. * Revision 1.4  2000/08/15 19:44:41  vasilche
  156. * Added Read/Write hooks:
  157. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  158. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  159. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  160. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  161. *
  162. * Revision 1.3  2000/04/06 16:10:51  vasilche
  163. * Fixed bug with iterators in choices.
  164. * Removed unneeded calls to ReadExternalObject/WriteExternalObject.
  165. * Added output buffering to text ASN.1 data.
  166. *
  167. * Revision 1.2  1999/06/07 20:42:58  vasilche
  168. * Fixed compilation under MS VS
  169. *
  170. * Revision 1.1  1999/06/04 20:51:33  vasilche
  171. * First compilable version of serialization.
  172. *
  173. * ===========================================================================
  174. */