📄 classinfob.hpp
字号:
/* * =========================================================================== * PRODUCTION $Log: classinfob.hpp,v $ * PRODUCTION Revision 1000.1 2004/06/01 19:38:25 gouriano * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15 * PRODUCTION * =========================================================================== */#ifndef CLASSINFOB__HPP#define CLASSINFOB__HPP/* $Id: classinfob.hpp,v 1000.1 2004/06/01 19:38:25 gouriano Exp $* ===========================================================================** PUBLIC DOMAIN NOTICE* National Center for Biotechnology Information** This software/database is a "United States Government Work" under the* terms of the United States Copyright Act. It was written as part of* the author's official duties as a United States Government employee and* thus cannot be copyrighted. This software/database is freely available* to the public for use. The National Library of Medicine and the U.S.* Government have not placed any restriction on its use or reproduction.** Although all reasonable efforts have been taken to ensure the accuracy* and reliability of the software and data, the NLM and the U.S.* Government do not and cannot warrant the performance or results that* may be obtained by using this software or data. The NLM and the U.S.* Government disclaim all warranties, express or implied, including* warranties of performance, merchantability or fitness for any particular* purpose.** Please cite the author in any work or product based on this material.** ===========================================================================** Author: Eugene Vasilchenko** File Description:* !!! PUT YOUR DESCRIPTION HERE !!!*/#include <corelib/ncbistd.hpp>#include <corelib/ncbiobj.hpp>#include <serial/stdtypeinfo.hpp>#include <serial/typeref.hpp>#include <serial/typeinfo.hpp>#include <serial/memberlist.hpp>#include <serial/memberid.hpp>#include <map>#include <set>#include <memory>/** @addtogroup TypeInfoCPP * * @{ */BEGIN_NCBI_SCOPEclass NCBI_XSERIAL_EXPORT CClassTypeInfoBase : public CTypeInfo { typedef CTypeInfo CParent;public: typedef map<TTypeInfo, bool> TContainedTypes;protected: CClassTypeInfoBase(ETypeFamily typeFamily, size_t size, const char* name, const void* nonCObject, TTypeCreate createFunc, const type_info& ti); CClassTypeInfoBase(ETypeFamily typeFamily, size_t size, const char* name, const CObject* cObject, TTypeCreate createFunc, const type_info& ti); CClassTypeInfoBase(ETypeFamily typeFamily, size_t size, const string& name, const void* nonCObject, TTypeCreate createFunc, const type_info& ti); CClassTypeInfoBase(ETypeFamily typeFamily, size_t size, const string& name, const CObject* cObject, TTypeCreate createFunc, const type_info& ti); public: virtual ~CClassTypeInfoBase(void); CMemberInfo* AddMember(const char* memberId, const void* memberPtr, const CTypeRef& memberType); CMemberInfo* AddMember(const CMemberId& memberId, const void* memberPtr, const CTypeRef& memberType); const CItemsInfo& GetItems(void) const; const CItemInfo* GetItemInfo(const string& name) const; const type_info& GetId(void) const; // PostRead/PreWrite typedef void (*TPostReadFunction)(TTypeInfo info, TObjectPtr object); typedef void (*TPreWriteFunction)(TTypeInfo info, TConstObjectPtr object); void SetPostReadFunction(TPostReadFunction func); void SetPreWriteFunction(TPreWriteFunction func);public: // finds type info (throws runtime_error if absent) static TTypeInfo GetClassInfoByName(const string& name); static TTypeInfo GetClassInfoById(const type_info& id); const CObject* GetCObjectPtr(TConstObjectPtr objectPtr) const; // iterators interface virtual bool MayContainType(TTypeInfo type) const; // helping member iterator class (internal use) class CIterator : public CItemsInfo::CIterator { typedef CItemsInfo::CIterator CParent; public: CIterator(const CClassTypeInfoBase* type); CIterator(const CClassTypeInfoBase* type, TMemberIndex index); };protected: friend class CIterator; CItemsInfo& GetItems(void); virtual bool CalcMayContainType(TTypeInfo typeInfo) const;private: const type_info* m_Id; CItemsInfo m_Items; mutable auto_ptr<TContainedTypes> m_ContainedTypes; // class mapping typedef set<CClassTypeInfoBase*> TClasses; typedef map<const type_info*, const CClassTypeInfoBase*, CLessTypeInfo> TClassesById; typedef map<string, const CClassTypeInfoBase*> TClassesByName; static TClasses* sm_Classes; static TClassesById* sm_ClassesById; static TClassesByName* sm_ClassesByName; void InitClassTypeInfoBase(const type_info& id); void Register(void); void Deregister(void); static TClasses& Classes(void); static TClassesById& ClassesById(void); static TClassesByName& ClassesByName(void);};/* @} */#include <serial/classinfob.inl>END_NCBI_SCOPE/** ===========================================================================** $Log: classinfob.hpp,v $* Revision 1000.1 2004/06/01 19:38:25 gouriano* PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15** Revision 1.15 2004/04/30 13:28:39 gouriano* Remove obsolete function declarations** Revision 1.14 2003/04/15 14:14:58 siyan* Added doxygen support** Revision 1.13 2002/12/26 21:36:27 gouriano* corrected handling choice's XML attributes** Revision 1.12 2002/12/23 18:38:50 dicuccio* Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.* Moved all CVS logs to the end.** Revision 1.11 2002/12/12 17:58:16 ucko* Stop shadowing CTypeInfo::m_IsCObject, which had made IsCObject always* return false.* Move CVS log to end.** Revision 1.10 2002/11/14 20:44:48 gouriano* added AddMember method** Revision 1.9 2001/10/22 15:16:19 grichenk* Optimized CTypeInfo::IsCObject()** Revision 1.8 2000/10/13 16:28:29 vasilche* Reduced header dependency.* Avoid use of templates with virtual methods.* Reduced amount of different maps used.* All this lead to smaller compiled code size (libraries and programs).** Revision 1.7 2000/10/03 17:22:30 vasilche* Reduced header dependency.* Reduced size of debug libraries on WorkShop by 3 times.* Fixed tag allocation for parent classes.* Fixed CObject allocation/deallocation in streams.* Moved instantiation of several templates in separate source file.** Revision 1.6 2000/09/18 20:00:00 vasilche* Separated CVariantInfo and CMemberInfo.* Implemented copy hooks.* All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.* Most type specific functions now are implemented via function pointers instead of virtual functions.** Revision 1.5 2000/09/01 13:15:58 vasilche* Implemented class/container/choice iterators.* Implemented CObjectStreamCopier for copying data without loading into memory.** Revision 1.4 2000/08/15 19:44:38 vasilche* Added Read/Write hooks:* CReadObjectHook/CWriteObjectHook for objects of specified type.* CReadClassMemberHook/CWriteClassMemberHook for specified members.* CReadChoiceVariantHook/CWriteChoiceVariant for specified choice variants.* CReadContainerElementHook/CWriteContainerElementsHook for containers.** Revision 1.3 2000/07/11 20:34:51 vasilche* File included in all generated headers made lighter.* Nonnecessary code moved to serialimpl.hpp.** Revision 1.2 2000/07/03 18:42:33 vasilche* Added interface to typeinfo via CObjectInfo and CConstObjectInfo.* Reduced header dependency.** Revision 1.1 2000/06/16 16:31:04 vasilche* Changed implementation of choices and classes info to allow use of the same classes in generated and user written classes.** ===========================================================================*/#endif /* CLASSINFOB__HPP */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -