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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: autoptrinfo.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:39:47  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.19
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: autoptrinfo.cpp,v 1000.1 2004/06/01 19:39:47 gouriano Exp $
  10. * ===========================================================================
  11. *
  12. *                            PUBLIC DOMAIN NOTICE
  13. *               National Center for Biotechnology Information
  14. *
  15. *  This software/database is a "United States Government Work" under the
  16. *  terms of the United States Copyright Act.  It was written as part of
  17. *  the author's official duties as a United States Government employee and
  18. *  thus cannot be copyrighted.  This software/database is freely available
  19. *  to the public for use. The National Library of Medicine and the U.S.
  20. *  Government have not placed any restriction on its use or reproduction.
  21. *
  22. *  Although all reasonable efforts have been taken to ensure the accuracy
  23. *  and reliability of the software and data, the NLM and the U.S.
  24. *  Government do not and cannot warrant the performance or results that
  25. *  may be obtained by using this software or data. The NLM and the U.S.
  26. *  Government disclaim all warranties, express or implied, including
  27. *  warranties of performance, merchantability or fitness for any particular
  28. *  purpose.
  29. *
  30. *  Please cite the author in any work or product based on this material.
  31. *
  32. * ===========================================================================
  33. *
  34. * Author: Eugene Vasilchenko
  35. *
  36. * File Description:
  37. *   !!! PUT YOUR DESCRIPTION HERE !!!
  38. *
  39. * ---------------------------------------------------------------------------
  40. * $Log: autoptrinfo.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:39:47  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.19
  43. *
  44. * Revision 1.19  2004/05/17 21:03:02  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.18  2003/05/16 18:02:18  gouriano
  48. * revised exception error messages
  49. *
  50. * Revision 1.17  2002/10/25 14:49:27  vasilche
  51. * NCBI C Toolkit compatibility code extracted to libxcser library.
  52. * Serial streams flags names were renamed to fXxx.
  53. *
  54. * Names of flags
  55. *
  56. * Revision 1.16  2001/05/17 15:07:04  lavr
  57. * Typos corrected
  58. *
  59. * Revision 1.15  2000/11/07 17:25:40  vasilche
  60. * Fixed encoding of XML:
  61. *     removed unnecessary apostrophes in OCTET STRING
  62. *     removed unnecessary content in NULL
  63. * Added module names to CTypeInfo and CEnumeratedTypeValues
  64. *
  65. * Revision 1.14  2000/10/20 15:51:36  vasilche
  66. * Fixed data error processing.
  67. * Added interface for constructing container objects directly into output stream.
  68. * object.hpp, object.inl and object.cpp were split to
  69. * objectinfo.*, objecttype.*, objectiter.* and objectio.*.
  70. *
  71. * Revision 1.13  2000/10/17 18:45:32  vasilche
  72. * Added possibility to turn off object cross reference detection in
  73. * CObjectIStream and CObjectOStream.
  74. *
  75. * Revision 1.12  2000/10/13 16:28:38  vasilche
  76. * Reduced header dependency.
  77. * Avoid use of templates with virtual methods.
  78. * Reduced amount of different maps used.
  79. * All this lead to smaller compiled code size (libraries and programs).
  80. *
  81. * Revision 1.11  2000/09/18 20:00:20  vasilche
  82. * Separated CVariantInfo and CMemberInfo.
  83. * Implemented copy hooks.
  84. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  85. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  86. *
  87. * Revision 1.10  2000/09/01 13:16:13  vasilche
  88. * Implemented class/container/choice iterators.
  89. * Implemented CObjectStreamCopier for copying data without loading into memory.
  90. *
  91. * Revision 1.9  2000/08/15 19:44:46  vasilche
  92. * Added Read/Write hooks:
  93. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  94. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  95. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  96. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  97. *
  98. * Revision 1.8  2000/05/24 20:08:46  vasilche
  99. * Implemented XML dump.
  100. *
  101. * Revision 1.7  2000/03/29 15:55:26  vasilche
  102. * Added two versions of object info - CObjectInfo and CConstObjectInfo.
  103. * Added generic iterators by class -
  104. *  CTypeIterator<class>, CTypeConstIterator<class>,
  105. *  CStdTypeIterator<type>, CStdTypeConstIterator<type>,
  106. *  CObjectsIterator and CObjectsConstIterator.
  107. *
  108. * Revision 1.6  2000/03/10 21:47:50  vasilche
  109. * AutoPointer should write/read data inline.
  110. *
  111. * Revision 1.5  2000/03/07 14:06:21  vasilche
  112. * Added stream buffering to ASN.1 binary input.
  113. * Optimized class loading/storing.
  114. * Fixed bugs in processing OPTIONAL fields.
  115. * Added generation of reference counted objects.
  116. *
  117. * Revision 1.4  1999/12/28 18:55:49  vasilche
  118. * Reduced size of compiled object files:
  119. * 1. avoid inline or implicit virtual methods (especially destructors).
  120. * 2. avoid std::string's methods usage in inline methods.
  121. * 3. avoid string literals ("xxx") in inline methods.
  122. *
  123. * Revision 1.3  1999/12/17 19:05:01  vasilche
  124. * Simplified generation of GetTypeInfo methods.
  125. *
  126. * Revision 1.2  1999/09/14 18:54:15  vasilche
  127. * Fixed bugs detected by gcc & egcs.
  128. * Removed unneeded includes.
  129. *
  130. * Revision 1.1  1999/09/07 20:57:57  vasilche
  131. * Forgot to add some files.
  132. *
  133. * ===========================================================================
  134. */
  135. #include <ncbi_pch.hpp>
  136. #include <serial/autoptrinfo.hpp>
  137. #include <serial/typemap.hpp>
  138. #include <serial/objistr.hpp>
  139. #include <serial/objostr.hpp>
  140. #include <serial/objcopy.hpp>
  141. #include <serial/serialutil.hpp>
  142. BEGIN_NCBI_SCOPE
  143. static CTypeInfoMap s_AutoPointerTypeInfo_map;
  144. CAutoPointerTypeInfo::CAutoPointerTypeInfo(TTypeInfo type)
  145.     : CParent(type->GetName(), type)
  146. {
  147.     SetReadFunction(&ReadAutoPtr);
  148.     SetWriteFunction(&WriteAutoPtr);
  149.     SetCopyFunction(&CopyAutoPtr);
  150.     SetSkipFunction(&SkipAutoPtr);
  151. }
  152. const string& CAutoPointerTypeInfo::GetModuleName(void) const
  153. {
  154.     return GetPointedType()->GetModuleName();
  155. }
  156. TTypeInfo CAutoPointerTypeInfo::GetTypeInfo(TTypeInfo base)
  157. {
  158.     return s_AutoPointerTypeInfo_map.GetTypeInfo(base, &CreateTypeInfo);
  159. }
  160. CTypeInfo* CAutoPointerTypeInfo::CreateTypeInfo(TTypeInfo base)
  161. {
  162.     return new CAutoPointerTypeInfo(base);
  163. }
  164. void CAutoPointerTypeInfo::WriteAutoPtr(CObjectOStream& out,
  165.                                         TTypeInfo objectType,
  166.                                         TConstObjectPtr objectPtr)
  167. {
  168.     const CAutoPointerTypeInfo* autoPtrType =
  169.         CTypeConverter<CAutoPointerTypeInfo>::SafeCast(objectType);
  170.     TConstObjectPtr dataPtr = autoPtrType->GetObjectPointer(objectPtr);
  171.     if ( dataPtr == 0 )
  172.         out.ThrowError(out.fIllegalCall, "null auto pointer");
  173.     TTypeInfo dataType = autoPtrType->GetPointedType();
  174.     if ( dataType->GetRealTypeInfo(dataPtr) != dataType )
  175.         out.ThrowError(out.fIllegalCall,"auto pointer have different type");
  176.     out.WriteObject(dataPtr, dataType);
  177. }
  178. void CAutoPointerTypeInfo::ReadAutoPtr(CObjectIStream& in,
  179.                                        TTypeInfo objectType,
  180.                                        TObjectPtr objectPtr)
  181. {
  182.     const CAutoPointerTypeInfo* autoPtrType =
  183.         CTypeConverter<CAutoPointerTypeInfo>::SafeCast(objectType);
  184.     TObjectPtr dataPtr = autoPtrType->GetObjectPointer(objectPtr);
  185.     TTypeInfo dataType = autoPtrType->GetPointedType();
  186.     if ( dataPtr == 0 ) {
  187.         autoPtrType->SetObjectPointer(objectPtr, dataPtr = dataType->Create());
  188.     }
  189.     else if ( dataType->GetRealTypeInfo(dataPtr) != dataType ) {
  190.         in.ThrowError(in.fIllegalCall,"auto pointer have different type");
  191.     }
  192.     in.ReadObject(dataPtr, dataType);
  193. }
  194. void CAutoPointerTypeInfo::CopyAutoPtr(CObjectStreamCopier& copier,
  195.                                        TTypeInfo objectType)
  196. {
  197.     const CAutoPointerTypeInfo* autoPtrType =
  198.         CTypeConverter<CAutoPointerTypeInfo>::SafeCast(objectType);
  199.     autoPtrType->GetPointedType()->CopyData(copier);
  200. }
  201. void CAutoPointerTypeInfo::SkipAutoPtr(CObjectIStream& in,
  202.                                        TTypeInfo objectType)
  203. {
  204.     const CAutoPointerTypeInfo* autoPtrType =
  205.         CTypeConverter<CAutoPointerTypeInfo>::SafeCast(objectType);
  206.     autoPtrType->GetPointedType()->SkipData(in);
  207. }
  208. END_NCBI_SCOPE