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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: object.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:40:39  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: object.cpp,v 1000.1 2004/06/01 19:40:39 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: object.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:40:39  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  43. *
  44. * Revision 1.16  2004/05/17 21:03:02  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.15  2001/05/17 15:07:07  lavr
  48. * Typos corrected
  49. *
  50. * Revision 1.14  2000/10/20 15:51:39  vasilche
  51. * Fixed data error processing.
  52. * Added interface for constructing container objects directly into output stream.
  53. * object.hpp, object.inl and object.cpp were split to
  54. * objectinfo.*, objecttype.*, objectiter.* and objectio.*.
  55. *
  56. * Revision 1.13  2000/10/17 18:45:34  vasilche
  57. * Added possibility to turn off object cross reference detection in
  58. * CObjectIStream and CObjectOStream.
  59. *
  60. * Revision 1.12  2000/10/13 16:28:39  vasilche
  61. * Reduced header dependency.
  62. * Avoid use of templates with virtual methods.
  63. * Reduced amount of different maps used.
  64. * All this lead to smaller compiled code size (libraries and programs).
  65. *
  66. * Revision 1.11  2000/10/03 17:22:43  vasilche
  67. * Reduced header dependency.
  68. * Reduced size of debug libraries on WorkShop by 3 times.
  69. * Fixed tag allocation for parent classes.
  70. * Fixed CObject allocation/deallocation in streams.
  71. * Moved instantiation of several templates in separate source file.
  72. *
  73. * Revision 1.10  2000/09/26 19:24:57  vasilche
  74. * Added user interface for setting read/write/copy hooks.
  75. *
  76. * Revision 1.9  2000/09/26 17:38:21  vasilche
  77. * Fixed incomplete choiceptr implementation.
  78. * Removed temporary comments.
  79. *
  80. * Revision 1.8  2000/09/18 20:00:23  vasilche
  81. * Separated CVariantInfo and CMemberInfo.
  82. * Implemented copy hooks.
  83. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  84. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  85. *
  86. * Revision 1.7  2000/09/01 13:16:17  vasilche
  87. * Implemented class/container/choice iterators.
  88. * Implemented CObjectStreamCopier for copying data without loading into memory.
  89. *
  90. * Revision 1.6  2000/08/15 19:44:47  vasilche
  91. * Added Read/Write hooks:
  92. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  93. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  94. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  95. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  96. *
  97. * Revision 1.5  2000/07/27 14:59:29  thiessen
  98. * minor fix to avoid Mac compiler error
  99. *
  100. * Revision 1.4  2000/07/06 16:21:19  vasilche
  101. * Added interface to primitive types in CObjectInfo & CConstObjectInfo.
  102. *
  103. * Revision 1.3  2000/07/03 18:42:44  vasilche
  104. * Added interface to typeinfo via CObjectInfo and CConstObjectInfo.
  105. * Reduced header dependency.
  106. *
  107. * Revision 1.2  2000/06/16 16:31:19  vasilche
  108. * Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.
  109. *
  110. * Revision 1.1  2000/03/29 15:55:27  vasilche
  111. * Added two versions of object info - CObjectInfo and CConstObjectInfo.
  112. * Added generic iterators by class -
  113. *  CTypeIterator<class>, CTypeConstIterator<class>,
  114. *  CStdTypeIterator<type>, CStdTypeConstIterator<type>,
  115. *  CObjectsIterator and CObjectsConstIterator.
  116. *
  117. * ===========================================================================
  118. */
  119. #include <ncbi_pch.hpp>
  120. #include <corelib/ncbistd.hpp>
  121. #include <serial/object.hpp>
  122. #include <serial/typeinfo.hpp>
  123. #include <serial/continfo.hpp>
  124. #include <serial/classinfob.hpp>
  125. #include <serial/classinfo.hpp>
  126. #include <serial/choice.hpp>
  127. #include <serial/ptrinfo.hpp>
  128. #include <serial/stdtypes.hpp>
  129. #include <serial/memberid.hpp>
  130. #include <serial/delaybuf.hpp>
  131. BEGIN_NCBI_SCOPE
  132. END_NCBI_SCOPE