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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: member.inl,v $
  4.  * PRODUCTION Revision 1000.1  2003/12/02 20:32:38  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.23
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #if defined(MEMBER__HPP)  &&  !defined(MEMBER__INL)
  10. #define MEMBER__INL
  11. /*  $Id: member.inl,v 1000.1 2003/12/02 20:32:38 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. const CClassTypeInfoBase* CMemberInfo::GetClassType(void) const
  43. {
  44.     return m_ClassType;
  45. }
  46. inline
  47. bool CMemberInfo::Optional(void) const
  48. {
  49.     return m_Optional;
  50. }
  51. inline
  52. bool CMemberInfo::NonEmpty(void) const
  53. {
  54.     return m_NonEmpty;
  55. }
  56. inline
  57. TConstObjectPtr CMemberInfo::GetDefault(void) const
  58. {
  59.     return m_Default;
  60. }
  61. inline
  62. bool CMemberInfo::HaveSetFlag(void) const
  63. {
  64.     return m_SetFlagOffset != eNoOffset;
  65. }
  66. inline
  67. bool CMemberInfo::CanBeDelayed(void) const
  68. {
  69.     return m_DelayOffset != eNoOffset;
  70. }
  71. inline
  72. CDelayBuffer& CMemberInfo::GetDelayBuffer(TObjectPtr object) const
  73. {
  74.     return CTypeConverter<CDelayBuffer>::Get(CRawPointer::Add(object, m_DelayOffset));
  75. }
  76. inline
  77. const CDelayBuffer& CMemberInfo::GetDelayBuffer(TConstObjectPtr object) const
  78. {
  79.     return CTypeConverter<const CDelayBuffer>::Get(CRawPointer::Add(object, m_DelayOffset));
  80. }
  81. inline
  82. TConstObjectPtr CMemberInfo::GetMemberPtr(TConstObjectPtr classPtr) const
  83. {
  84.     return m_GetConstFunction(this, classPtr);
  85. }
  86. inline
  87. TObjectPtr CMemberInfo::GetMemberPtr(TObjectPtr classPtr) const
  88. {
  89.     return m_GetFunction(this, classPtr);
  90. }
  91. inline
  92. void CMemberInfo::ReadMember(CObjectIStream& stream,
  93.                              TObjectPtr classPtr) const
  94. {
  95.     m_ReadHookData.GetCurrentFunction().m_Main(stream, this, classPtr);
  96. }
  97. inline
  98. void CMemberInfo::ReadMissingMember(CObjectIStream& stream,
  99.                                     TObjectPtr classPtr) const
  100. {
  101.     m_ReadHookData.GetCurrentFunction().m_Missing(stream, this, classPtr);
  102. }
  103. inline
  104. void CMemberInfo::WriteMember(CObjectOStream& stream,
  105.                               TConstObjectPtr classPtr) const
  106. {
  107.     m_WriteHookData.GetCurrentFunction()(stream, this, classPtr);
  108. }
  109. inline
  110. void CMemberInfo::SkipMember(CObjectIStream& stream) const
  111. {
  112.     m_SkipHookData.GetCurrentFunction().m_Main(stream, this);
  113. }
  114. inline
  115. void CMemberInfo::SkipMissingMember(CObjectIStream& stream) const
  116. {
  117.     m_SkipHookData.GetCurrentFunction().m_Missing(stream, this);
  118. }
  119. inline
  120. void CMemberInfo::CopyMember(CObjectStreamCopier& stream) const
  121. {
  122.     m_CopyHookData.GetCurrentFunction().m_Main(stream, this);
  123. }
  124. inline
  125. void CMemberInfo::CopyMissingMember(CObjectStreamCopier& stream) const
  126. {
  127.     m_CopyHookData.GetCurrentFunction().m_Missing(stream, this);
  128. }
  129. inline
  130. void CMemberInfo::DefaultReadMember(CObjectIStream& stream,
  131.                                     TObjectPtr classPtr) const
  132. {
  133.     m_ReadHookData.GetDefaultFunction().m_Main(stream, this, classPtr);
  134. }
  135. inline
  136. void CMemberInfo::DefaultReadMissingMember(CObjectIStream& stream,
  137.                                            TObjectPtr classPtr) const
  138. {
  139.     m_ReadHookData.GetDefaultFunction().m_Missing(stream, this, classPtr);
  140. }
  141. inline
  142. void CMemberInfo::DefaultWriteMember(CObjectOStream& stream,
  143.                                      TConstObjectPtr classPtr) const
  144. {
  145.     m_WriteHookData.GetDefaultFunction()(stream, this, classPtr);
  146. }
  147. inline
  148. void CMemberInfo::DefaultSkipMember(CObjectIStream& stream) const
  149. {
  150.     m_SkipHookData.GetDefaultFunction().m_Main(stream, this);
  151. }
  152. inline
  153. void CMemberInfo::DefaultSkipMissingMember(CObjectIStream& stream) const
  154. {
  155.     m_SkipHookData.GetDefaultFunction().m_Missing(stream, this);
  156. }
  157. inline
  158. void CMemberInfo::DefaultCopyMember(CObjectStreamCopier& stream) const
  159. {
  160.     m_CopyHookData.GetDefaultFunction().m_Main(stream, this);
  161. }
  162. inline
  163. void CMemberInfo::DefaultCopyMissingMember(CObjectStreamCopier& stream) const
  164. {
  165.     m_CopyHookData.GetDefaultFunction().m_Missing(stream, this);
  166. }
  167. inline
  168. CMemberInfo::ESetFlag CMemberInfo::GetSetFlag(TConstObjectPtr object) const
  169. {
  170.     _ASSERT(HaveSetFlag());
  171.     if (m_BitSetFlag) {
  172.         const Uint4* bitsPtr =
  173.             CTypeConverter<Uint4>::SafeCast(CRawPointer::Add(object, m_SetFlagOffset));
  174.         TMemberIndex pos = (GetIndex()-1) << 1;
  175.         size_t index =  pos >> 5;
  176.         size_t offset = pos & 31;
  177.         size_t res = (bitsPtr[index] >> offset) & 0x03;
  178.         return ESetFlag(res);
  179.     } else {
  180.         return CTypeConverter<bool>::Get(CRawPointer::Add(object,
  181.             m_SetFlagOffset)) ? eSetYes : eSetNo;
  182.     }
  183. }
  184. inline
  185. bool CMemberInfo::GetSetFlagNo(TConstObjectPtr object) const
  186. {
  187.     _ASSERT(HaveSetFlag());
  188.     if (m_BitSetFlag) {
  189.         const Uint4* bitsPtr =
  190.             CTypeConverter<Uint4>::SafeCast(CRawPointer::Add(object, m_SetFlagOffset));
  191.         TMemberIndex pos = (GetIndex()-1) << 1;
  192.         size_t index =  pos >> 5;
  193.         size_t offset = pos & 31;
  194.         Uint4 mask = 0x03 << offset;
  195.         return (bitsPtr[index] & mask) == 0;
  196.     } else {
  197.         return !CTypeConverter<bool>::Get(CRawPointer::Add(object, m_SetFlagOffset));
  198.     }
  199. }
  200. inline
  201. bool CMemberInfo::GetSetFlagYes(TConstObjectPtr object) const
  202. {
  203.     _ASSERT(HaveSetFlag());
  204.     if (m_BitSetFlag) {
  205.         const Uint4* bitsPtr =
  206.             CTypeConverter<Uint4>::SafeCast(CRawPointer::Add(object, m_SetFlagOffset));
  207.         TMemberIndex pos = (GetIndex()-1) << 1;
  208.         size_t index =  pos >> 5;
  209.         size_t offset = pos & 31;
  210.         Uint4 mask = 0x03 << offset;
  211.         return (bitsPtr[index] & mask) != 0;
  212.     } else {
  213.         return CTypeConverter<bool>::Get(CRawPointer::Add(object, m_SetFlagOffset));
  214.     }
  215. }
  216. inline
  217. void CMemberInfo::UpdateSetFlag(TObjectPtr object, ESetFlag value) const
  218. {
  219.     TPointerOffsetType setFlagOffset = m_SetFlagOffset;
  220.     if ( setFlagOffset != eNoOffset ) {
  221.         if (m_BitSetFlag) {
  222.             Uint4* bitsPtr =
  223.                 CTypeConverter<Uint4>::SafeCast(CRawPointer::Add(object, m_SetFlagOffset));
  224.             TMemberIndex pos = (GetIndex()-1) << 1;
  225.             size_t index =  pos >> 5;
  226.             size_t offset = pos & 31;
  227.             Uint4 mask = 0x03 << offset;
  228.             Uint4& bits = bitsPtr[index];
  229.             bits = (bits & ~mask) | (value << offset);
  230.         } else {
  231.             CTypeConverter<bool>::Get(CRawPointer::Add(object, setFlagOffset)) = 
  232.                 (value != eSetNo);
  233.         }
  234.     }
  235. }
  236. inline
  237. void CMemberInfo::UpdateSetFlagYes(TObjectPtr object) const
  238. {
  239.     TPointerOffsetType setFlagOffset = m_SetFlagOffset;
  240.     if ( setFlagOffset != eNoOffset ) {
  241.         if (m_BitSetFlag) {
  242.             Uint4* bitsPtr =
  243.                 CTypeConverter<Uint4>::SafeCast(CRawPointer::Add(object, m_SetFlagOffset));
  244.             TMemberIndex pos = (GetIndex()-1) << 1;
  245.             size_t index =  pos >> 5;
  246.             size_t offset = pos & 31;
  247.             Uint4 setBits = eSetYes << offset;
  248.             bitsPtr[index] |= setBits;
  249.         } else {
  250.             CTypeConverter<bool>::Get(CRawPointer::Add(object, setFlagOffset))= true;
  251.         }
  252.     }
  253. }
  254. inline
  255. void CMemberInfo::UpdateSetFlagMaybe(TObjectPtr object) const
  256. {
  257.     TPointerOffsetType setFlagOffset = m_SetFlagOffset;
  258.     if ( setFlagOffset != eNoOffset ) {
  259.         if (m_BitSetFlag) {
  260.             Uint4* bitsPtr =
  261.                 CTypeConverter<Uint4>::SafeCast(CRawPointer::Add(object, m_SetFlagOffset));
  262.             TMemberIndex pos = (GetIndex()-1) << 1;
  263.             size_t index =  pos >> 5;
  264.             size_t offset = pos & 31;
  265.             Uint4 setBits = eSetMaybe << offset;
  266.             bitsPtr[index] |= setBits;
  267.         } else {
  268.             CTypeConverter<bool>::Get(CRawPointer::Add(object, setFlagOffset))= true;
  269.         }
  270.     }
  271. }
  272. inline
  273. bool CMemberInfo::UpdateSetFlagNo(TObjectPtr object) const
  274. {
  275.     TPointerOffsetType setFlagOffset = m_SetFlagOffset;
  276.     if ( setFlagOffset != eNoOffset ) {
  277.         if (m_BitSetFlag) {
  278.             Uint4* bitsPtr =
  279.                 CTypeConverter<Uint4>::SafeCast(CRawPointer::Add(object, m_SetFlagOffset));
  280.             TMemberIndex pos = (GetIndex()-1) << 1;
  281.             size_t index =  pos >> 5;
  282.             size_t offset = pos & 31;
  283.             Uint4 mask = 0x03 << offset;
  284.             Uint4& bits = bitsPtr[index];
  285.             if ( bits & mask ) {
  286.                 bits &= ~mask;
  287.                 return true;
  288.             }
  289.         } else {
  290.             bool& flag = CTypeConverter<bool>::Get(CRawPointer::Add(object, setFlagOffset));
  291.             if ( flag ) {
  292.                 flag = false;
  293.                 return true;
  294.             }
  295.         }
  296.     }
  297.     return false;
  298. }
  299. #endif /* def MEMBER__HPP  &&  ndef MEMBER__INL */
  300. /* ---------------------------------------------------------------------------
  301. * $Log: member.inl,v $
  302. * Revision 1000.1  2003/12/02 20:32:38  gouriano
  303. * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.23
  304. *
  305. * Revision 1.23  2003/12/01 19:04:22  grichenk
  306. * Moved Add and Sub from serialutil to ncbimisc, made them methods
  307. * of CRawPointer class.
  308. *
  309. * Revision 1.22  2003/10/01 14:40:12  vasilche
  310. * Fixed CanGet() for members wihout 'set' flag.
  311. *
  312. * Revision 1.21  2003/09/11 20:47:26  vasilche
  313. * Fixed type %31 -> &31.
  314. *
  315. * Revision 1.20  2003/08/14 20:03:57  vasilche
  316. * Avoid memory reallocation when reading over preallocated object.
  317. * Simplified CContainerTypeInfo iterators interface.
  318. *
  319. * Revision 1.19  2003/07/29 18:47:46  vasilche
  320. * Fixed thread safeness of object stream hooks.
  321. *
  322. * Revision 1.18  2003/06/24 20:54:13  gouriano
  323. * corrected code generation and serialization of non-empty unnamed containers (XML)
  324. *
  325. * Revision 1.17  2003/04/29 18:29:06  gouriano
  326. * object data member initialization verification
  327. *
  328. * Revision 1.16  2003/04/10 20:13:37  vakatov
  329. * Rollback the "uninitialized member" verification -- it still needs to
  330. * be worked upon...
  331. *
  332. * Revision 1.14  2002/12/23 18:38:51  dicuccio
  333. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  334. * Moved all CVS logs to the end.
  335. *
  336. * Revision 1.13  2002/11/14 20:48:17  gouriano
  337. * modified constructor to use CClassTypeInfoBase
  338. *
  339. * Revision 1.12  2002/09/09 18:13:59  grichenk
  340. * Added CObjectHookGuard class.
  341. * Added methods to be used by hooks for data
  342. * reading and skipping.
  343. *
  344. * Revision 1.11  2000/10/13 20:22:46  vasilche
  345. * Fixed warnings on 64 bit compilers.
  346. * Fixed missing typename in templates.
  347. *
  348. * Revision 1.10  2000/09/29 16:18:13  vasilche
  349. * Fixed binary format encoding/decoding on 64 bit compulers.
  350. * Implemented CWeakMap<> for automatic cleaning map entries.
  351. * Added cleaning local hooks via CWeakMap<>.
  352. * Renamed ReadTypeName -> ReadFileHeader, ENoTypeName -> ENoFileHeader.
  353. * Added some user interface methods to CObjectIStream, CObjectOStream and
  354. * CObjectStreamCopier.
  355. *
  356. * Revision 1.9  2000/09/19 14:10:24  vasilche
  357. * Added files to MSVC project
  358. * Updated shell scripts to use new datattool path on MSVC
  359. * Fixed internal compiler error on MSVC
  360. *
  361. * Revision 1.8  2000/09/18 20:00:02  vasilche
  362. * Separated CVariantInfo and CMemberInfo.
  363. * Implemented copy hooks.
  364. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  365. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  366. *
  367. * Revision 1.7  2000/08/15 19:44:39  vasilche
  368. * Added Read/Write hooks:
  369. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  370. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  371. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  372. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  373. *
  374. * Revision 1.6  2000/02/01 21:44:35  vasilche
  375. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  376. * Added buffering to CObjectIStreamAsn.
  377. * Removed CMemberInfo subclasses.
  378. * Added support for DEFAULT/OPTIONAL members.
  379. *
  380. * Revision 1.5  1999/09/01 17:38:01  vasilche
  381. * Fixed vector<char> implementation.
  382. * Added explicit naming of class info.
  383. * Moved IMPLICIT attribute from member info to class info.
  384. *
  385. * Revision 1.4  1999/08/31 17:50:04  vasilche
  386. * Implemented several macros for specific data types.
  387. * Added implicit members.
  388. * Added multimap and set.
  389. *
  390. * Revision 1.3  1999/08/13 15:53:42  vasilche
  391. * C++ analog of asntool: datatool
  392. *
  393. * Revision 1.2  1999/06/30 16:04:22  vasilche
  394. * Added support for old ASN.1 structures.
  395. *
  396. * Revision 1.1  1999/06/24 14:44:39  vasilche
  397. * Added binary ASN.1 output.
  398. *
  399. * ===========================================================================
  400. */