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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: classinfob.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:39:59  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.20
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: classinfob.cpp,v 1000.1 2004/06/01 19:39:59 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: classinfob.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:39:59  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.20
  43. *
  44. * Revision 1.20  2004/05/17 21:03:02  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.19  2003/03/11 20:08:07  kuznets
  48. * iterate -> ITERATE
  49. *
  50. * Revision 1.18  2003/03/10 18:54:24  gouriano
  51. * use new structured exceptions (based on CException)
  52. *
  53. * Revision 1.17  2002/11/14 20:56:46  gouriano
  54. * added AddMember method
  55. *
  56. * Revision 1.16  2002/09/19 20:05:44  vasilche
  57. * Safe initialization of static mutexes
  58. *
  59. * Revision 1.15  2002/09/13 15:38:42  dicuccio
  60. * Fixed memory leak (need to clear a static prior to termination)
  61. *
  62. * Revision 1.14  2002/08/30 16:21:32  vasilche
  63. * Added MT lock for cache maps
  64. *
  65. * Revision 1.13  2001/10/22 15:16:22  grichenk
  66. * Optimized CTypeInfo::IsCObject()
  67. *
  68. * Revision 1.12  2001/05/17 15:07:05  lavr
  69. * Typos corrected
  70. *
  71. * Revision 1.11  2000/11/01 20:38:37  vasilche
  72. * Removed ECanDelete enum and related constructors.
  73. *
  74. * Revision 1.10  2000/10/20 15:51:38  vasilche
  75. * Fixed data error processing.
  76. * Added interface for constructing container objects directly into output stream.
  77. * object.hpp, object.inl and object.cpp were split to
  78. * objectinfo.*, objecttype.*, objectiter.* and objectio.*.
  79. *
  80. * Revision 1.9  2000/10/13 20:22:54  vasilche
  81. * Fixed warnings on 64 bit compilers.
  82. * Fixed missing typename in templates.
  83. *
  84. * Revision 1.8  2000/10/13 16:28:38  vasilche
  85. * Reduced header dependency.
  86. * Avoid use of templates with virtual methods.
  87. * Reduced amount of different maps used.
  88. * All this lead to smaller compiled code size (libraries and programs).
  89. *
  90. * Revision 1.7  2000/10/03 17:22:42  vasilche
  91. * Reduced header dependency.
  92. * Reduced size of debug libraries on WorkShop by 3 times.
  93. * Fixed tag allocation for parent classes.
  94. * Fixed CObject allocation/deallocation in streams.
  95. * Moved instantiation of several templates in separate source file.
  96. *
  97. * Revision 1.6  2000/09/29 16:18:22  vasilche
  98. * Fixed binary format encoding/decoding on 64 bit compulers.
  99. * Implemented CWeakMap<> for automatic cleaning map entries.
  100. * Added cleaning local hooks via CWeakMap<>.
  101. * Renamed ReadTypeName -> ReadFileHeader, ENoTypeName -> ENoFileHeader.
  102. * Added some user interface methods to CObjectIStream, CObjectOStream and
  103. * CObjectStreamCopier.
  104. *
  105. * Revision 1.5  2000/09/26 17:38:21  vasilche
  106. * Fixed incomplete choiceptr implementation.
  107. * Removed temporary comments.
  108. *
  109. * Revision 1.4  2000/09/18 20:00:21  vasilche
  110. * Separated CVariantInfo and CMemberInfo.
  111. * Implemented copy hooks.
  112. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  113. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  114. *
  115. * Revision 1.3  2000/08/15 19:44:47  vasilche
  116. * Added Read/Write hooks:
  117. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  118. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  119. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  120. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  121. *
  122. * Revision 1.2  2000/07/03 18:42:43  vasilche
  123. * Added interface to typeinfo via CObjectInfo and CConstObjectInfo.
  124. * Reduced header dependency.
  125. *
  126. * Revision 1.1  2000/06/16 16:31:18  vasilche
  127. * Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.
  128. *
  129. * ===========================================================================
  130. */
  131. #include <ncbi_pch.hpp>
  132. #include <corelib/ncbistd.hpp>
  133. #include <corelib/ncbithr.hpp>
  134. #include <serial/classinfob.hpp>
  135. #include <serial/objectinfo.hpp>
  136. #include <serial/objhook.hpp>
  137. BEGIN_NCBI_SCOPE
  138. DEFINE_STATIC_MUTEX(s_ClassInfoMutex);
  139. CClassTypeInfoBase::CClassTypeInfoBase(ETypeFamily typeFamily,
  140.                                        size_t size, const char* name,
  141.                                        const void* /*nonCObject*/,
  142.                                        TTypeCreate createFunc,
  143.                                        const type_info& ti)
  144.     : CParent(typeFamily, size, name)
  145. {
  146.     InitClassTypeInfoBase(ti);
  147.     SetCreateFunction(createFunc);
  148. }
  149. CClassTypeInfoBase::CClassTypeInfoBase(ETypeFamily typeFamily,
  150.                                        size_t size, const char* name,
  151.                                        const CObject* /*cObject*/,
  152.                                        TTypeCreate createFunc,
  153.                                        const type_info& ti)
  154.     : CParent(typeFamily, size, name)
  155. {
  156.     m_IsCObject = true;
  157.     InitClassTypeInfoBase(ti);
  158.     SetCreateFunction(createFunc);
  159. }
  160. CClassTypeInfoBase::CClassTypeInfoBase(ETypeFamily typeFamily,
  161.                                        size_t size, const string& name,
  162.                                        const void* /*nonCObject*/,
  163.                                        TTypeCreate createFunc,
  164.                                        const type_info& ti)
  165.     : CParent(typeFamily, size, name)
  166. {
  167.     InitClassTypeInfoBase(ti);
  168.     SetCreateFunction(createFunc);
  169. }
  170. CClassTypeInfoBase::CClassTypeInfoBase(ETypeFamily typeFamily,
  171.                                        size_t size, const string& name,
  172.                                        const CObject* /*cObject*/,
  173.                                        TTypeCreate createFunc,
  174.                                        const type_info& ti)
  175.     : CParent(typeFamily, size, name)
  176. {
  177.     m_IsCObject = true;
  178.     InitClassTypeInfoBase(ti);
  179.     SetCreateFunction(createFunc);
  180. }
  181. CClassTypeInfoBase::~CClassTypeInfoBase(void)
  182. {
  183.     Deregister();
  184. }
  185. CMemberInfo* CClassTypeInfoBase::AddMember(const char* memberId,
  186.                                            const void* memberPtr,
  187.                                            const CTypeRef& memberType)
  188. {
  189.     CMemberInfo* memberInfo = new CMemberInfo(this, memberId,
  190.                                               TPointerOffsetType(memberPtr),
  191.                                               memberType);
  192.     GetItems().AddItem(memberInfo);
  193.     return memberInfo;
  194. }
  195. CMemberInfo* CClassTypeInfoBase::AddMember(const CMemberId& memberId,
  196.                                            const void* memberPtr,
  197.                                            const CTypeRef& memberType)
  198. {
  199.     CMemberInfo* memberInfo = new CMemberInfo(this, memberId,
  200.                                               TPointerOffsetType(memberPtr),
  201.                                               memberType);
  202.     GetItems().AddItem(memberInfo);
  203.     return memberInfo;
  204. }
  205. void CClassTypeInfoBase::InitClassTypeInfoBase(const type_info& id)
  206. {
  207.     m_Id = &id;
  208.     Register();
  209. }
  210. CClassTypeInfoBase::TClasses* CClassTypeInfoBase::sm_Classes = 0;
  211. CClassTypeInfoBase::TClassesById* CClassTypeInfoBase::sm_ClassesById = 0;
  212. CClassTypeInfoBase::TClassesByName* CClassTypeInfoBase::sm_ClassesByName = 0;
  213. inline
  214. CClassTypeInfoBase::TClasses& CClassTypeInfoBase::Classes(void)
  215. {
  216.     TClasses* classes = sm_Classes;
  217.     if ( !classes ) {
  218.         CMutexGuard GUARD(s_ClassInfoMutex);
  219.         classes = sm_Classes;
  220.         if ( !classes ) {
  221.             classes = sm_Classes = new TClasses;
  222.         }
  223.     }
  224.     return *classes;
  225. }
  226. inline
  227. CClassTypeInfoBase::TClassesById& CClassTypeInfoBase::ClassesById(void)
  228. {
  229.     TClassesById* classes = sm_ClassesById;
  230.     if ( !classes ) {
  231.         CMutexGuard GUARD(s_ClassInfoMutex);
  232.         classes = sm_ClassesById;
  233.         if ( !classes ) {
  234.             const TClasses& cc = Classes();
  235.             auto_ptr<TClassesById> keep(classes = new TClassesById);
  236.             ITERATE ( TClasses, i , cc ) {
  237.                 const CClassTypeInfoBase* info = *i;
  238.                 if ( info->GetId() != typeid(void) ) {
  239.                     if ( !classes->insert(
  240.                         TClassesById::value_type(&info->GetId(),
  241.                                                  info)).second ) {
  242.                         NCBI_THROW(CSerialException,eInvalidData,
  243.                                    string("duplicate class id: ")+
  244.                                    info->GetId().name());
  245.                     }
  246.                 }
  247.             }
  248.             sm_ClassesById = keep.release();
  249.         }
  250.     }
  251.     return *classes;
  252. }
  253. inline
  254. CClassTypeInfoBase::TClassesByName& CClassTypeInfoBase::ClassesByName(void)
  255. {
  256.     TClassesByName* classes = sm_ClassesByName;
  257.     if ( !classes ) {
  258.         CMutexGuard GUARD(s_ClassInfoMutex);
  259.         classes = sm_ClassesByName;
  260.         if ( !classes ) {
  261.             auto_ptr<TClassesByName> keep(classes = new TClassesByName);
  262.             const TClasses& cc = Classes();
  263.             ITERATE ( TClasses, i, cc ) {
  264.                 const CClassTypeInfoBase* info = *i;
  265.                 if ( !info->GetName().empty() ) {
  266.                     if ( !classes->insert(
  267.                         TClassesByName::value_type(info->GetName(),
  268.                                                    info)).second ) {
  269.                         NCBI_THROW(CSerialException,eInvalidData,
  270.                             string("duplicate class name: ")+info->GetName());
  271.                     }
  272.                 }
  273.             }
  274.             sm_ClassesByName = keep.release();
  275.         }
  276.     }
  277.     return *classes;
  278. }
  279. void CClassTypeInfoBase::Register(void)
  280. {
  281.     CMutexGuard GUARD(s_ClassInfoMutex);
  282.     delete sm_ClassesById;
  283.     sm_ClassesById = 0;
  284.     delete sm_ClassesByName;
  285.     sm_ClassesByName = 0;
  286.     Classes().insert(this);
  287. }
  288. void CClassTypeInfoBase::Deregister(void)
  289. {
  290.     CMutexGuard GUARD(s_ClassInfoMutex);
  291.     delete sm_ClassesById;
  292.     sm_ClassesById = 0;
  293.     delete sm_ClassesByName;
  294.     sm_ClassesByName = 0;
  295.     Classes().erase(this);
  296.     if (Classes().size() == 0) {
  297.         delete sm_Classes;
  298.         sm_Classes = 0;
  299.     }
  300. }
  301. TTypeInfo CClassTypeInfoBase::GetClassInfoById(const type_info& id)
  302. {
  303.     TClassesById& types = ClassesById();
  304.     TClassesById::iterator i = types.find(&id);
  305.     if ( i == types.end() ) {
  306.         string msg("class not found: ");
  307.         msg += id.name();
  308.         NCBI_THROW(CSerialException,eInvalidData, msg);
  309.     }
  310.     return i->second;
  311. }
  312. TTypeInfo CClassTypeInfoBase::GetClassInfoByName(const string& name)
  313. {
  314.     TClassesByName& classes = ClassesByName();
  315.     TClassesByName::iterator i = classes.find(name);
  316.     if ( i == classes.end() ) {
  317.         string msg("class not found: ");
  318.         msg += name;
  319.         NCBI_THROW(CSerialException,eInvalidData, msg);
  320.     }
  321.     return i->second;
  322. }
  323. const CObject* CClassTypeInfoBase::GetCObjectPtr(TConstObjectPtr objectPtr) const
  324. {
  325.     if ( IsCObject() ) {
  326.         return static_cast<const CObject*>(objectPtr);
  327.     }
  328.     return 0;
  329. }
  330. bool CClassTypeInfoBase::MayContainType(TTypeInfo typeInfo) const
  331. {
  332.     TContainedTypes* cache = m_ContainedTypes.get();
  333.     if ( cache ) {
  334.         TContainedTypes::const_iterator found = cache->find(typeInfo);
  335.         if ( found != cache->end() )
  336.             return found->second;
  337.     }
  338.     else {
  339.         m_ContainedTypes.reset(cache = new TContainedTypes);
  340.     }
  341.     bool& contains = (*cache)[typeInfo];
  342.     // initialize by false to avoid recursion
  343.     contains = false;
  344.     // check parent
  345.     return contains = CalcMayContainType(typeInfo);
  346. }
  347. bool CClassTypeInfoBase::CalcMayContainType(TTypeInfo typeInfo) const
  348. {
  349.     // check members
  350.     for ( TMemberIndex i = GetItems().FirstIndex(),
  351.               last = GetItems().LastIndex(); i <= last; ++i ) {
  352.         if ( GetItems().GetItemInfo(i)->GetTypeInfo()->IsOrMayContainType(typeInfo) ) {
  353.             return true;
  354.         }
  355.     }
  356.     return false;
  357. }
  358. class CPostReadHook : public CReadObjectHook
  359. {
  360.     typedef CReadObjectHook CParent;
  361. public:
  362.     typedef CClassTypeInfoBase::TPostReadFunction TPostReadFunction;
  363.     CPostReadHook(TPostReadFunction func);
  364.     void ReadObject(CObjectIStream& in, const CObjectInfo& object);
  365. private:
  366.     TPostReadFunction m_PostRead;
  367. };
  368. CPostReadHook::CPostReadHook(TPostReadFunction func)
  369.     : m_PostRead(func)
  370. {
  371. }
  372. void CPostReadHook::ReadObject(CObjectIStream& in,
  373.                                const CObjectInfo& object)
  374. {
  375.     object.GetTypeInfo()->DefaultReadData(in, object.GetObjectPtr());
  376.     m_PostRead(object.GetTypeInfo(), object.GetObjectPtr());
  377. }
  378. class CPreWriteHook : public CWriteObjectHook
  379. {
  380.     typedef CWriteObjectHook CParent;
  381. public:
  382.     typedef CClassTypeInfoBase::TPreWriteFunction TPreWriteFunction;
  383.     CPreWriteHook(TPreWriteFunction func);
  384.     void WriteObject(CObjectOStream& out, const CConstObjectInfo& object);
  385. private:
  386.     TPreWriteFunction m_PreWrite;
  387. };
  388. CPreWriteHook::CPreWriteHook(TPreWriteFunction func)
  389.     : m_PreWrite(func)
  390. {
  391. }
  392. void CPreWriteHook::WriteObject(CObjectOStream& out,
  393.                                 const CConstObjectInfo& object)
  394. {
  395.     m_PreWrite(object.GetTypeInfo(), object.GetObjectPtr());
  396.     object.GetTypeInfo()->DefaultWriteData(out, object.GetObjectPtr());
  397. }
  398. void CClassTypeInfoBase::SetPostReadFunction(TPostReadFunction func)
  399. {
  400.     SetGlobalReadHook(new CPostReadHook(func));
  401. }
  402. void CClassTypeInfoBase::SetPreWriteFunction(TPreWriteFunction func)
  403. {
  404.     SetGlobalWriteHook(new CPreWriteHook(func));
  405. }
  406. END_NCBI_SCOPE