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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: memberid.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:40:29  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: memberid.cpp,v 1000.1 2004/06/01 19:40:29 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: memberid.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:40:29  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  43. *
  44. * Revision 1.18  2004/05/17 21:03:02  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.17  2003/09/16 14:48:36  gouriano
  48. * Enhanced AnyContent objects to support XML namespaces and attribute info items.
  49. *
  50. * Revision 1.16  2003/06/24 20:57:36  gouriano
  51. * corrected code generation and serialization of non-empty unnamed containers (XML)
  52. *
  53. * Revision 1.15  2002/11/14 20:57:50  gouriano
  54. * added Attlist and Notag flags
  55. *
  56. * Revision 1.14  2002/09/25 19:37:36  gouriano
  57. * added the possibility of having no tag prefix in XML I/O streams
  58. *
  59. * Revision 1.13  2000/10/03 17:22:42  vasilche
  60. * Reduced header dependency.
  61. * Reduced size of debug libraries on WorkShop by 3 times.
  62. * Fixed tag allocation for parent classes.
  63. * Fixed CObject allocation/deallocation in streams.
  64. * Moved instantiation of several templates in separate source file.
  65. *
  66. * Revision 1.12  2000/09/18 20:00:22  vasilche
  67. * Separated CVariantInfo and CMemberInfo.
  68. * Implemented copy hooks.
  69. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  70. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  71. *
  72. * Revision 1.11  2000/09/01 13:16:15  vasilche
  73. * Implemented class/container/choice iterators.
  74. * Implemented CObjectStreamCopier for copying data without loading into memory.
  75. *
  76. * Revision 1.10  2000/08/15 19:44:47  vasilche
  77. * Added Read/Write hooks:
  78. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  79. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  80. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  81. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  82. *
  83. * Revision 1.9  2000/07/03 18:42:44  vasilche
  84. * Added interface to typeinfo via CObjectInfo and CConstObjectInfo.
  85. * Reduced header dependency.
  86. *
  87. * Revision 1.8  2000/06/16 16:31:19  vasilche
  88. * Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.
  89. *
  90. * Revision 1.7  2000/05/24 20:08:46  vasilche
  91. * Implemented XML dump.
  92. *
  93. * Revision 1.6  2000/05/09 16:38:38  vasilche
  94. * CObject::GetTypeInfo now moved to CObjectGetTypeInfo::GetTypeInfo to reduce possible errors.
  95. * Added write context to CObjectOStream.
  96. * Inlined most of methods of helping class Member, Block, ByteBlock etc.
  97. *
  98. * Revision 1.5  2000/01/05 19:43:53  vasilche
  99. * Fixed error messages when reading from ASN.1 binary file.
  100. * Fixed storing of integers with enumerated values in ASN.1 binary file.
  101. * Added TAG support to key/value of map.
  102. * Added support of NULL variant in CHOICE.
  103. *
  104. * Revision 1.4  1999/12/17 19:05:02  vasilche
  105. * Simplified generation of GetTypeInfo methods.
  106. *
  107. * Revision 1.3  1999/07/22 19:40:54  vasilche
  108. * Fixed bug with complex object graphs (pointers to members of other objects).
  109. *
  110. * Revision 1.2  1999/07/02 21:31:54  vasilche
  111. * Implemented reading from ASN.1 binary format.
  112. *
  113. * Revision 1.1  1999/06/30 16:04:51  vasilche
  114. * Added support for old ASN.1 structures.
  115. *
  116. * ===========================================================================
  117. */
  118. #include <ncbi_pch.hpp>
  119. #include <corelib/ncbistd.hpp>
  120. #include <serial/memberid.hpp>
  121. #include <serial/memberlist.hpp>
  122. BEGIN_NCBI_SCOPE
  123. CMemberId::CMemberId(void)
  124.     : m_Tag(eNoExplicitTag), m_ExplicitTag(false),
  125.     m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false)
  126. {
  127. }
  128. CMemberId::CMemberId(TTag tag, bool explicitTag)
  129.     : m_Tag(tag), m_ExplicitTag(explicitTag),
  130.     m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false)
  131. {
  132. }
  133. CMemberId::CMemberId(const string& name)
  134.     : m_Name(name), m_Tag(eNoExplicitTag), m_ExplicitTag(false),
  135.     m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false)
  136. {
  137. }
  138. CMemberId::CMemberId(const string& name, TTag tag, bool explicitTag)
  139.     : m_Name(name), m_Tag(tag), m_ExplicitTag(explicitTag),
  140.     m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false)
  141. {
  142. }
  143. CMemberId::CMemberId(const char* name)
  144.     : m_Name(name), m_Tag(eNoExplicitTag), m_ExplicitTag(false),
  145.     m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false)
  146. {
  147.     _ASSERT(name);
  148. }
  149. CMemberId::CMemberId(const char* name, TTag tag, bool explicitTag)
  150.     : m_Name(name), m_Tag(tag), m_ExplicitTag(explicitTag),
  151.     m_NoPrefix(false), m_Attlist(false), m_Notag(false), m_AnyContent(false)
  152. {
  153.     _ASSERT(name);
  154. }
  155. CMemberId::~CMemberId(void)
  156. {
  157. }
  158. bool CMemberId::HaveParentTag(void) const
  159. {
  160.     return GetTag() == eParentTag && !HaveExplicitTag();
  161. }
  162. void CMemberId::SetParentTag(void)
  163. {
  164.     SetTag(eParentTag, false);
  165. }
  166. string CMemberId::ToString(void) const
  167. {
  168.     if ( !m_Name.empty() )
  169.         return m_Name;
  170.     else
  171.         return '[' + NStr::IntToString(GetTag()) + ']';
  172. }
  173. void CMemberId::SetNoPrefix(void)
  174. {
  175.     m_NoPrefix = true;
  176. }
  177. bool CMemberId::HaveNoPrefix(void) const
  178. {
  179.     return m_NoPrefix;
  180. }
  181. void CMemberId::SetAttlist(void)
  182. {
  183.     m_Attlist = true;
  184. }
  185. bool CMemberId::IsAttlist(void) const
  186. {
  187.     return m_Attlist;
  188. }
  189. void CMemberId::SetNotag(void)
  190. {
  191.     m_Notag = true;
  192. }
  193. bool CMemberId::HasNotag(void) const
  194. {
  195.     return m_Notag;
  196. }
  197. void CMemberId::SetAnyContent(void)
  198. {
  199.     m_AnyContent = true;
  200. }
  201. bool CMemberId::HasAnyContent(void) const
  202. {
  203.     return m_AnyContent;
  204. }
  205. END_NCBI_SCOPE