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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: stltypes.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:41:56  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.41
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: stltypes.cpp,v 1000.2 2004/06/01 19:41:56 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: stltypes.cpp,v $
  41. * Revision 1000.2  2004/06/01 19:41:56  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.41
  43. *
  44. * Revision 1.41  2004/05/17 21:03:03  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.40  2004/04/02 16:57:09  gouriano
  48. * made it possible to create named CTypeInfo for containers
  49. *
  50. * Revision 1.39  2003/07/22 21:46:42  vasilche
  51. * Added SET OF implemented as vector<>.
  52. *
  53. * Revision 1.38  2003/05/08 15:57:28  grichenk
  54. * Declared static maps as CSafeStaticPtr<>-s
  55. *
  56. * Revision 1.37  2003/03/10 18:54:26  gouriano
  57. * use new structured exceptions (based on CException)
  58. *
  59. * Revision 1.36  2001/09/04 14:08:28  ucko
  60. * Handle CConstRef analogously to CRef in type macros
  61. *
  62. * Revision 1.35  2001/05/17 15:07:09  lavr
  63. * Typos corrected
  64. *
  65. * Revision 1.34  2000/11/07 17:25:42  vasilche
  66. * Fixed encoding of XML:
  67. *     removed unnecessary apostrophes in OCTET STRING
  68. *     removed unnecessary content in NULL
  69. * Added module names to CTypeInfo and CEnumeratedTypeValues
  70. *
  71. * Revision 1.33  2000/10/13 20:22:56  vasilche
  72. * Fixed warnings on 64 bit compilers.
  73. * Fixed missing typename in templates.
  74. *
  75. * Revision 1.32  2000/10/13 16:28:41  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.31  2000/10/03 17:22:45  vasilche
  82. * Reduced header dependency.
  83. * Reduced size of debug libraries on WorkShop by 3 times.
  84. * Fixed tag allocation for parent classes.
  85. * Fixed CObject allocation/deallocation in streams.
  86. * Moved instantiation of several templates in separate source file.
  87. *
  88. * Revision 1.30  2000/09/18 20:00:26  vasilche
  89. * Separated CVariantInfo and CMemberInfo.
  90. * Implemented copy hooks.
  91. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  92. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  93. *
  94. * Revision 1.29  2000/09/01 13:16:21  vasilche
  95. * Implemented class/container/choice iterators.
  96. * Implemented CObjectStreamCopier for copying data without loading into memory.
  97. *
  98. * Revision 1.28  2000/08/15 19:44:51  vasilche
  99. * Added Read/Write hooks:
  100. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  101. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  102. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  103. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  104. *
  105. * Revision 1.27  2000/07/11 20:36:19  vasilche
  106. * File included in all generated headers made lighter.
  107. * Nonnecessary code moved to serialimpl.hpp.
  108. *
  109. * Revision 1.26  2000/07/03 18:42:47  vasilche
  110. * Added interface to typeinfo via CObjectInfo and CConstObjectInfo.
  111. * Reduced header dependency.
  112. *
  113. * Revision 1.25  2000/06/16 16:31:22  vasilche
  114. * Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.
  115. *
  116. * Revision 1.24  2000/06/01 19:07:05  vasilche
  117. * Added parsing of XML data.
  118. *
  119. * Revision 1.23  2000/05/24 20:08:50  vasilche
  120. * Implemented XML dump.
  121. *
  122. * Revision 1.22  2000/05/09 16:38:40  vasilche
  123. * CObject::GetTypeInfo now moved to CObjectGetTypeInfo::GetTypeInfo to reduce possible errors.
  124. * Added write context to CObjectOStream.
  125. * Inlined most of methods of helping class Member, Block, ByteBlock etc.
  126. *
  127. * Revision 1.21  2000/05/04 16:22:20  vasilche
  128. * Cleaned and optimized blocks and members.
  129. *
  130. * Revision 1.20  2000/03/29 15:55:29  vasilche
  131. * Added two versions of object info - CObjectInfo and CConstObjectInfo.
  132. * Added generic iterators by class -
  133. *  CTypeIterator<class>, CTypeConstIterator<class>,
  134. *  CStdTypeIterator<type>, CStdTypeConstIterator<type>,
  135. *  CObjectsIterator and CObjectsConstIterator.
  136. *
  137. * Revision 1.19  2000/03/14 14:42:32  vasilche
  138. * Fixed error reporting.
  139. *
  140. * Revision 1.18  2000/03/07 14:06:24  vasilche
  141. * Added stream buffering to ASN.1 binary input.
  142. * Optimized class loading/storing.
  143. * Fixed bugs in processing OPTIONAL fields.
  144. * Added generation of reference counted objects.
  145. *
  146. * Revision 1.17  2000/02/17 20:02:45  vasilche
  147. * Added some standard serialization exceptions.
  148. * Optimized text/binary ASN.1 reading.
  149. * Fixed wrong encoding of StringStore in ASN.1 binary format.
  150. * Optimized logic of object collection.
  151. *
  152. * Revision 1.16  2000/01/10 19:46:42  vasilche
  153. * Fixed encoding/decoding of REAL type.
  154. * Fixed encoding/decoding of StringStore.
  155. * Fixed encoding/decoding of NULL type.
  156. * Fixed error reporting.
  157. * Reduced object map (only classes).
  158. *
  159. * Revision 1.15  2000/01/05 19:43:57  vasilche
  160. * Fixed error messages when reading from ASN.1 binary file.
  161. * Fixed storing of integers with enumerated values in ASN.1 binary file.
  162. * Added TAG support to key/value of map.
  163. * Added support of NULL variant in CHOICE.
  164. *
  165. * Revision 1.14  1999/12/28 21:04:27  vasilche
  166. * Removed three more implicit virtual destructors.
  167. *
  168. * Revision 1.13  1999/12/17 19:05:05  vasilche
  169. * Simplified generation of GetTypeInfo methods.
  170. *
  171. * Revision 1.12  1999/09/27 14:18:03  vasilche
  172. * Fixed bug with overloaded constructors of Block.
  173. *
  174. * Revision 1.11  1999/09/23 20:38:01  vasilche
  175. * Fixed ambiguity.
  176. *
  177. * Revision 1.10  1999/09/14 18:54:21  vasilche
  178. * Fixed bugs detected by gcc & egcs.
  179. * Removed unneeded includes.
  180. *
  181. * Revision 1.9  1999/09/01 17:38:13  vasilche
  182. * Fixed vector<char> implementation.
  183. * Added explicit naming of class info.
  184. * Moved IMPLICIT attribute from member info to class info.
  185. *
  186. * Revision 1.8  1999/07/20 18:23:14  vasilche
  187. * Added interface to old ASN.1 routines.
  188. * Added fixed choice of subclasses to use for pointers.
  189. *
  190. * Revision 1.7  1999/07/19 15:50:39  vasilche
  191. * Added interface to old ASN.1 routines.
  192. * Added naming of key/value in STL map.
  193. *
  194. * Revision 1.6  1999/07/15 19:35:31  vasilche
  195. * Implemented map<K, V>.
  196. * Changed ASN.1 text formatting.
  197. *
  198. * Revision 1.5  1999/07/15 16:54:50  vasilche
  199. * Implemented vector<X> & vector<char> as special case.
  200. *
  201. * Revision 1.4  1999/07/13 20:54:05  vasilche
  202. * Fixed minor bugs.
  203. *
  204. * Revision 1.3  1999/07/13 20:18:22  vasilche
  205. * Changed types naming.
  206. *
  207. * Revision 1.2  1999/06/04 20:51:50  vasilche
  208. * First compilable version of serialization.
  209. *
  210. * Revision 1.1  1999/05/19 19:56:58  vasilche
  211. * Commit just in case.
  212. *
  213. * ===========================================================================
  214. */
  215. #include <ncbi_pch.hpp>
  216. #include <serial/stltypesimpl.hpp>
  217. #include <serial/exception.hpp>
  218. #include <serial/classinfo.hpp>
  219. #include <serial/classinfohelper.hpp>
  220. #include <serial/typemap.hpp>
  221. #include <corelib/ncbi_safe_static.hpp>
  222. BEGIN_NCBI_SCOPE
  223. static CSafeStaticPtr<CTypeInfoMap> s_TypeMap_auto_ptr;
  224. static CSafeStaticPtr<CTypeInfoMap> s_TypeMap_CRef;
  225. static CSafeStaticPtr<CTypeInfoMap> s_TypeMap_CConstRef;
  226. static CSafeStaticPtr<CTypeInfoMap> s_TypeMap_AutoPtr;
  227. static CSafeStaticPtr<CTypeInfoMap> s_TypeMap_list;
  228. static CSafeStaticPtr<CTypeInfoMap> s_TypeMapSet_list;
  229. static CSafeStaticPtr<CTypeInfoMap> s_TypeMap_vector;
  230. static CSafeStaticPtr<CTypeInfoMap> s_TypeMapSet_vector;
  231. static CSafeStaticPtr<CTypeInfoMap> s_TypeMap_set;
  232. static CSafeStaticPtr<CTypeInfoMap> s_TypeMap_multiset;
  233. TTypeInfo CStlClassInfoUtil::Get_auto_ptr(TTypeInfo arg, TTypeInfoCreator1 f)
  234. {
  235.     return s_TypeMap_auto_ptr->GetTypeInfo(arg, f);
  236. }
  237. TTypeInfo CStlClassInfoUtil::Get_CRef(TTypeInfo arg, TTypeInfoCreator1 f)
  238. {
  239.     return s_TypeMap_CRef->GetTypeInfo(arg, f);
  240. }
  241. TTypeInfo CStlClassInfoUtil::Get_CConstRef(TTypeInfo arg, TTypeInfoCreator1 f)
  242. {
  243.     return s_TypeMap_CConstRef->GetTypeInfo(arg, f);
  244. }
  245. TTypeInfo CStlClassInfoUtil::Get_AutoPtr(TTypeInfo arg, TTypeInfoCreator1 f)
  246. {
  247.     return s_TypeMap_AutoPtr->GetTypeInfo(arg, f);
  248. }
  249. TTypeInfo CStlClassInfoUtil::Get_list(TTypeInfo arg, TTypeInfoCreator1 f)
  250. {
  251.     return s_TypeMap_list->GetTypeInfo(arg, f);
  252. }
  253. TTypeInfo CStlClassInfoUtil::GetSet_list(TTypeInfo arg, TTypeInfoCreator1 f)
  254. {
  255.     return s_TypeMapSet_list->GetTypeInfo(arg, f);
  256. }
  257. TTypeInfo CStlClassInfoUtil::Get_vector(TTypeInfo arg, TTypeInfoCreator1 f)
  258. {
  259.     return s_TypeMap_vector->GetTypeInfo(arg, f);
  260. }
  261. TTypeInfo CStlClassInfoUtil::GetSet_vector(TTypeInfo arg, TTypeInfoCreator1 f)
  262. {
  263.     return s_TypeMapSet_vector->GetTypeInfo(arg, f);
  264. }
  265. TTypeInfo CStlClassInfoUtil::Get_set(TTypeInfo arg, TTypeInfoCreator1 f)
  266. {
  267.     return s_TypeMap_set->GetTypeInfo(arg, f);
  268. }
  269. TTypeInfo CStlClassInfoUtil::Get_multiset(TTypeInfo arg, TTypeInfoCreator1 f)
  270. {
  271.     return s_TypeMap_multiset->GetTypeInfo(arg, f);
  272. }
  273. TTypeInfo CStlClassInfoUtil::Get_map(TTypeInfo arg1, TTypeInfo arg2,
  274.                                      TTypeInfoCreator2 f)
  275. {
  276.     return f(arg1, arg2);
  277. }
  278. TTypeInfo CStlClassInfoUtil::Get_multimap(TTypeInfo arg1, TTypeInfo arg2,
  279.                                           TTypeInfoCreator2 f)
  280. {
  281.     return f(arg1, arg2);
  282. }
  283. void CStlClassInfoUtil::CannotGetElementOfSet(void)
  284. {
  285.     NCBI_THROW(CSerialException,eFail, "cannot get pointer to element of set");
  286. }
  287. void CStlClassInfoUtil::ThrowDuplicateElementError(void)
  288. {
  289.     NCBI_THROW(CSerialException,eFail, "duplicate element of unique container");
  290. }
  291. CStlOneArgTemplate::CStlOneArgTemplate(size_t size,
  292.                                        TTypeInfo type, bool randomOrder,
  293.                                        const string& name)
  294.     : CParent(size, name, type, randomOrder)
  295. {
  296. }
  297. CStlOneArgTemplate::CStlOneArgTemplate(size_t size,
  298.                                        TTypeInfo type, bool randomOrder)
  299.     : CParent(size, type, randomOrder)
  300. {
  301. }
  302. CStlOneArgTemplate::CStlOneArgTemplate(size_t size,
  303.                                        const CTypeRef& type, bool randomOrder)
  304.     : CParent(size, type, randomOrder)
  305. {
  306. }
  307. void CStlOneArgTemplate::SetDataId(const CMemberId& id)
  308. {
  309.     m_DataId = id;
  310. }
  311. bool CStlOneArgTemplate::IsDefault(TConstObjectPtr objectPtr) const
  312. {
  313.     return m_IsDefault(objectPtr);
  314. }
  315. void CStlOneArgTemplate::SetDefault(TObjectPtr objectPtr) const
  316. {
  317.     m_SetDefault(objectPtr);
  318. }
  319. void CStlOneArgTemplate::SetMemFunctions(TTypeCreate create,
  320.                                          TIsDefaultFunction isDefault,
  321.                                          TSetDefaultFunction setDefault)
  322. {
  323.     SetCreateFunction(create);
  324.     m_IsDefault = isDefault;
  325.     m_SetDefault = setDefault;
  326. }
  327. CStlTwoArgsTemplate::CStlTwoArgsTemplate(size_t size,
  328.                                          TTypeInfo keyType,
  329.                                          TPointerOffsetType keyOffset,
  330.                                          TTypeInfo valueType,
  331.                                          TPointerOffsetType valueOffset,
  332.                                          bool randomOrder)
  333.     : CParent(size, CTypeRef(&CreateElementTypeInfo, this), randomOrder),
  334.       m_KeyType(keyType), m_KeyOffset(keyOffset),
  335.       m_ValueType(valueType), m_ValueOffset(valueOffset)
  336. {
  337. }
  338. CStlTwoArgsTemplate::CStlTwoArgsTemplate(size_t size,
  339.                                          const CTypeRef& keyType,
  340.                                          TPointerOffsetType keyOffset,
  341.                                          const CTypeRef& valueType,
  342.                                          TPointerOffsetType valueOffset,
  343.                                          bool randomOrder)
  344.     : CParent(size, CTypeRef(&CreateElementTypeInfo, this), randomOrder),
  345.       m_KeyType(keyType), m_KeyOffset(keyOffset),
  346.       m_ValueType(valueType), m_ValueOffset(valueOffset)
  347. {
  348. }
  349. void CStlTwoArgsTemplate::SetKeyId(const CMemberId& id)
  350. {
  351.     m_KeyId = id;
  352. }
  353. void CStlTwoArgsTemplate::SetValueId(const CMemberId& id)
  354. {
  355.     m_ValueId = id;
  356. }
  357. TTypeInfo CStlTwoArgsTemplate::CreateElementTypeInfo(TTypeInfo argType)
  358. {
  359.     const CStlTwoArgsTemplate* mapType = 
  360.         CTypeConverter<CStlTwoArgsTemplate>::SafeCast(argType);
  361.     CClassTypeInfo* classInfo =
  362.         CClassInfoHelper<bool>::CreateAbstractClassInfo("");
  363.     classInfo->SetRandomOrder(false);
  364.     classInfo->AddMember(mapType->GetKeyId(),
  365.                          TConstObjectPtr(mapType->m_KeyOffset),
  366.                          mapType->m_KeyType.Get());
  367.     classInfo->AddMember(mapType->GetValueId(),
  368.                          TConstObjectPtr(mapType->m_ValueOffset),
  369.                          mapType->m_ValueType.Get());
  370.     return classInfo;
  371. }
  372. END_NCBI_SCOPE