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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: stltypesimpl.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:15:57  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef STLTYPESIMPL__HPP
  10. #define STLTYPESIMPL__HPP
  11. /*  $Id: stltypesimpl.hpp,v 1000.1 2004/04/12 17:15:57 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 <serial/serialdef.hpp>
  43. #include <serial/typeref.hpp>
  44. #include <serial/continfo.hpp>
  45. #include <serial/memberid.hpp>
  46. /** @addtogroup TypeInfoCPP
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. class NCBI_XSERIAL_EXPORT CStlClassInfoUtil
  52. {
  53. public:
  54.     static TTypeInfo Get_auto_ptr(TTypeInfo arg, TTypeInfoCreator1 f);
  55.     static TTypeInfo Get_CRef(TTypeInfo arg, TTypeInfoCreator1 f);
  56.     static TTypeInfo Get_CConstRef(TTypeInfo arg, TTypeInfoCreator1 f);
  57.     static TTypeInfo Get_AutoPtr(TTypeInfo arg, TTypeInfoCreator1 f);
  58.     static TTypeInfo Get_list(TTypeInfo arg, TTypeInfoCreator1 f);
  59.     static TTypeInfo GetSet_list(TTypeInfo arg, TTypeInfoCreator1 f);
  60.     static TTypeInfo Get_vector(TTypeInfo arg, TTypeInfoCreator1 f);
  61.     static TTypeInfo GetSet_vector(TTypeInfo arg, TTypeInfoCreator1 f);
  62.     static TTypeInfo Get_set(TTypeInfo arg, TTypeInfoCreator1 f);
  63.     static TTypeInfo Get_multiset(TTypeInfo arg, TTypeInfoCreator1 f);
  64.     static TTypeInfo Get_map(TTypeInfo arg1, TTypeInfo arg2,
  65.                              TTypeInfoCreator2 f);
  66.     static TTypeInfo Get_multimap(TTypeInfo arg1, TTypeInfo arg2,
  67.                                   TTypeInfoCreator2 f);
  68.     // throw exceptions
  69.     static void ThrowDuplicateElementError(void);
  70.     static void CannotGetElementOfSet(void);
  71. };
  72. class NCBI_XSERIAL_EXPORT CStlOneArgTemplate : public CContainerTypeInfo
  73. {
  74.     typedef CContainerTypeInfo CParent;
  75. public:
  76.     CStlOneArgTemplate(size_t size, TTypeInfo dataType,
  77.                        bool randomOrder, const string& name);
  78.     CStlOneArgTemplate(size_t size, TTypeInfo dataType,
  79.                        bool randomOrder);
  80.     CStlOneArgTemplate(size_t size, const CTypeRef& dataType,
  81.                        bool randomOrder);
  82.     const CMemberId& GetDataId(void) const
  83.         {
  84.             return m_DataId;
  85.         }
  86.     void SetDataId(const CMemberId& id);
  87.     bool IsDefault(TConstObjectPtr objectPtr) const;
  88.     void SetDefault(TObjectPtr objectPtr) const;
  89.     // private use
  90.     typedef bool (*TIsDefaultFunction)(TConstObjectPtr objectPtr);
  91.     typedef void (*TSetDefaultFunction)(TObjectPtr objectPtr);
  92.     void SetMemFunctions(TTypeCreate create,
  93.                          TIsDefaultFunction isDefault,
  94.                          TSetDefaultFunction setDefault);
  95. private:
  96.     TIsDefaultFunction m_IsDefault;
  97.     TSetDefaultFunction m_SetDefault;
  98.     CMemberId m_DataId;
  99. };
  100. class NCBI_XSERIAL_EXPORT CStlTwoArgsTemplate : public CStlOneArgTemplate
  101. {
  102.     typedef CStlOneArgTemplate CParent;
  103. public:
  104.     CStlTwoArgsTemplate(size_t size,
  105.                         TTypeInfo keyType, TPointerOffsetType keyOffset,
  106.                         TTypeInfo valueType, TPointerOffsetType valueOffset,
  107.                         bool randomOrder);
  108.     CStlTwoArgsTemplate(size_t size,
  109.                         const CTypeRef& keyType, TPointerOffsetType keyOffset,
  110.                         const CTypeRef& valueType, TPointerOffsetType valueOffset,
  111.                         bool randomOrder);
  112.     const CMemberId& GetKeyId(void) const
  113.         {
  114.             return m_KeyId;
  115.         }
  116.     const CMemberId& GetValueId(void) const
  117.         {
  118.             return m_ValueId;
  119.         }
  120.     void SetKeyId(const CMemberId& id);
  121.     void SetValueId(const CMemberId& id);
  122. private:
  123.     CMemberId m_KeyId;
  124.     CTypeRef m_KeyType;
  125.     TPointerOffsetType m_KeyOffset;
  126.     CMemberId m_ValueId;
  127.     CTypeRef m_ValueType;
  128.     TPointerOffsetType m_ValueOffset;
  129.     static TTypeInfo CreateElementTypeInfo(TTypeInfo info);
  130. };
  131. //#include <serial/stltypesimpl.inl>
  132. END_NCBI_SCOPE
  133. #endif  /* STLTYPESIMPL__HPP */
  134. /* @} */
  135. /* ---------------------------------------------------------------------------
  136. * $Log: stltypesimpl.hpp,v $
  137. * Revision 1000.1  2004/04/12 17:15:57  gouriano
  138. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.8
  139. *
  140. * Revision 1.8  2004/04/02 16:57:35  gouriano
  141. * made it possible to create named CTypeInfo for containers
  142. *
  143. * Revision 1.7  2003/07/22 21:47:04  vasilche
  144. * Added SET OF implemented as vector<>.
  145. *
  146. * Revision 1.6  2003/04/15 16:19:04  siyan
  147. * Added doxygen support
  148. *
  149. * Revision 1.5  2002/12/23 18:38:51  dicuccio
  150. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  151. * Moved all CVS logs to the end.
  152. *
  153. * Revision 1.4  2001/09/04 14:08:27  ucko
  154. * Handle CConstRef analogously to CRef in type macros
  155. *
  156. * Revision 1.3  2000/11/07 17:25:13  vasilche
  157. * Fixed encoding of XML:
  158. *     removed unnecessary apostrophes in OCTET STRING
  159. *     removed unnecessary content in NULL
  160. * Added module names to CTypeInfo and CEnumeratedTypeValues
  161. *
  162. * Revision 1.2  2000/10/13 20:22:47  vasilche
  163. * Fixed warnings on 64 bit compilers.
  164. * Fixed missing typename in templates.
  165. *
  166. * Revision 1.1  2000/10/13 16:28:33  vasilche
  167. * Reduced header dependency.
  168. * Avoid use of templates with virtual methods.
  169. * Reduced amount of different maps used.
  170. * All this lead to smaller compiled code size (libraries and programs).
  171. *
  172. * ===========================================================================
  173. */