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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: classinfob.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:38:25  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CLASSINFOB__HPP
  10. #define CLASSINFOB__HPP
  11. /*  $Id: classinfob.hpp,v 1000.1 2004/06/01 19:38:25 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. #include <corelib/ncbistd.hpp>
  42. #include <corelib/ncbiobj.hpp>
  43. #include <serial/stdtypeinfo.hpp>
  44. #include <serial/typeref.hpp>
  45. #include <serial/typeinfo.hpp>
  46. #include <serial/memberlist.hpp>
  47. #include <serial/memberid.hpp>
  48. #include <map>
  49. #include <set>
  50. #include <memory>
  51. /** @addtogroup TypeInfoCPP
  52.  *
  53.  * @{
  54.  */
  55. BEGIN_NCBI_SCOPE
  56. class NCBI_XSERIAL_EXPORT CClassTypeInfoBase : public CTypeInfo {
  57.     typedef CTypeInfo CParent;
  58. public:
  59.     typedef map<TTypeInfo, bool> TContainedTypes;
  60. protected:
  61.     CClassTypeInfoBase(ETypeFamily typeFamily, size_t size, const char* name,
  62.                        const void* nonCObject, TTypeCreate createFunc,
  63.                        const type_info& ti);
  64.     CClassTypeInfoBase(ETypeFamily typeFamily, size_t size, const char* name,
  65.                        const CObject* cObject, TTypeCreate createFunc,
  66.                        const type_info& ti);
  67.     CClassTypeInfoBase(ETypeFamily typeFamily, size_t size, const string& name,
  68.                        const void* nonCObject, TTypeCreate createFunc,
  69.                        const type_info& ti);
  70.     CClassTypeInfoBase(ETypeFamily typeFamily, size_t size, const string& name,
  71.                        const CObject* cObject, TTypeCreate createFunc,
  72.                        const type_info& ti);
  73.     
  74. public:
  75.     virtual ~CClassTypeInfoBase(void);
  76.     CMemberInfo* AddMember(const char* memberId,
  77.                            const void* memberPtr, const CTypeRef& memberType);
  78.     CMemberInfo* AddMember(const CMemberId& memberId,
  79.                            const void* memberPtr, const CTypeRef& memberType);
  80.     const CItemsInfo& GetItems(void) const;
  81.     const CItemInfo* GetItemInfo(const string& name) const;
  82.     const type_info& GetId(void) const;
  83.     // PostRead/PreWrite
  84.     typedef void (*TPostReadFunction)(TTypeInfo info, TObjectPtr object);
  85.     typedef void (*TPreWriteFunction)(TTypeInfo info, TConstObjectPtr object);
  86.     void SetPostReadFunction(TPostReadFunction func);
  87.     void SetPreWriteFunction(TPreWriteFunction func);
  88. public:
  89.     // finds type info (throws runtime_error if absent)
  90.     static TTypeInfo GetClassInfoByName(const string& name);
  91.     static TTypeInfo GetClassInfoById(const type_info& id);
  92.     const CObject* GetCObjectPtr(TConstObjectPtr objectPtr) const;
  93.     // iterators interface
  94.     virtual bool MayContainType(TTypeInfo type) const;
  95.     // helping member iterator class (internal use)
  96.     class CIterator : public CItemsInfo::CIterator
  97.     {
  98.         typedef CItemsInfo::CIterator CParent;
  99.     public:
  100.         CIterator(const CClassTypeInfoBase* type);
  101.         CIterator(const CClassTypeInfoBase* type, TMemberIndex index);
  102.     };
  103. protected:
  104.     friend class CIterator;
  105.     CItemsInfo& GetItems(void);
  106.     virtual bool CalcMayContainType(TTypeInfo typeInfo) const;
  107. private:
  108.     const type_info* m_Id;
  109.     CItemsInfo m_Items;
  110.     mutable auto_ptr<TContainedTypes> m_ContainedTypes;
  111.     // class mapping
  112.     typedef set<CClassTypeInfoBase*> TClasses;
  113.     typedef map<const type_info*, const CClassTypeInfoBase*,
  114.         CLessTypeInfo> TClassesById;
  115.     typedef map<string, const CClassTypeInfoBase*> TClassesByName;
  116.     static TClasses* sm_Classes;
  117.     static TClassesById* sm_ClassesById;
  118.     static TClassesByName* sm_ClassesByName;
  119.     void InitClassTypeInfoBase(const type_info& id);
  120.     void Register(void);
  121.     void Deregister(void);
  122.     static TClasses& Classes(void);
  123.     static TClassesById& ClassesById(void);
  124.     static TClassesByName& ClassesByName(void);
  125. };
  126. /* @} */
  127. #include <serial/classinfob.inl>
  128. END_NCBI_SCOPE
  129. /*
  130. * ===========================================================================
  131. *
  132. * $Log: classinfob.hpp,v $
  133. * Revision 1000.1  2004/06/01 19:38:25  gouriano
  134. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15
  135. *
  136. * Revision 1.15  2004/04/30 13:28:39  gouriano
  137. * Remove obsolete function declarations
  138. *
  139. * Revision 1.14  2003/04/15 14:14:58  siyan
  140. * Added doxygen support
  141. *
  142. * Revision 1.13  2002/12/26 21:36:27  gouriano
  143. * corrected handling choice's XML attributes
  144. *
  145. * Revision 1.12  2002/12/23 18:38:50  dicuccio
  146. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  147. * Moved all CVS logs to the end.
  148. *
  149. * Revision 1.11  2002/12/12 17:58:16  ucko
  150. * Stop shadowing CTypeInfo::m_IsCObject, which had made IsCObject always
  151. * return false.
  152. * Move CVS log to end.
  153. *
  154. * Revision 1.10  2002/11/14 20:44:48  gouriano
  155. * added AddMember method
  156. *
  157. * Revision 1.9  2001/10/22 15:16:19  grichenk
  158. * Optimized CTypeInfo::IsCObject()
  159. *
  160. * Revision 1.8  2000/10/13 16:28:29  vasilche
  161. * Reduced header dependency.
  162. * Avoid use of templates with virtual methods.
  163. * Reduced amount of different maps used.
  164. * All this lead to smaller compiled code size (libraries and programs).
  165. *
  166. * Revision 1.7  2000/10/03 17:22:30  vasilche
  167. * Reduced header dependency.
  168. * Reduced size of debug libraries on WorkShop by 3 times.
  169. * Fixed tag allocation for parent classes.
  170. * Fixed CObject allocation/deallocation in streams.
  171. * Moved instantiation of several templates in separate source file.
  172. *
  173. * Revision 1.6  2000/09/18 20:00:00  vasilche
  174. * Separated CVariantInfo and CMemberInfo.
  175. * Implemented copy hooks.
  176. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  177. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  178. *
  179. * Revision 1.5  2000/09/01 13:15:58  vasilche
  180. * Implemented class/container/choice iterators.
  181. * Implemented CObjectStreamCopier for copying data without loading into memory.
  182. *
  183. * Revision 1.4  2000/08/15 19:44:38  vasilche
  184. * Added Read/Write hooks:
  185. * CReadObjectHook/CWriteObjectHook for objects of specified type.
  186. * CReadClassMemberHook/CWriteClassMemberHook for specified members.
  187. * CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.
  188. * CReadContainerElementHook/CWriteContainerElementsHook for containers.
  189. *
  190. * Revision 1.3  2000/07/11 20:34:51  vasilche
  191. * File included in all generated headers made lighter.
  192. * Nonnecessary code moved to serialimpl.hpp.
  193. *
  194. * Revision 1.2  2000/07/03 18:42:33  vasilche
  195. * Added interface to typeinfo via CObjectInfo and CConstObjectInfo.
  196. * Reduced header dependency.
  197. *
  198. * Revision 1.1  2000/06/16 16:31:04  vasilche
  199. * Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.
  200. *
  201. * ===========================================================================
  202. */
  203. #endif  /* CLASSINFOB__HPP */