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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: unitype.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:39:38  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef UNITYPE_HPP
  10. #define UNITYPE_HPP
  11. /*  $Id: unitype.hpp,v 1000.1 2004/06/01 19:39: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. *   TYpe definition of 'SET OF' and 'SEQUENCE OF'
  40. *
  41. * ---------------------------------------------------------------------------
  42. * $Log: unitype.hpp,v $
  43. * Revision 1000.1  2004/06/01 19:39:38  gouriano
  44. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  45. *
  46. * Revision 1.9  2004/05/19 17:23:25  gouriano
  47. * Corrected generation of C++ code by DTD for containers
  48. *
  49. * Revision 1.8  2003/06/24 20:53:39  gouriano
  50. * corrected code generation and serialization of non-empty unnamed containers (XML)
  51. *
  52. * Revision 1.7  2003/06/16 14:40:15  gouriano
  53. * added possibility to convert DTD to XML schema
  54. *
  55. * Revision 1.6  2003/05/14 14:42:55  gouriano
  56. * added generation of XML schema
  57. *
  58. * Revision 1.5  2000/11/14 21:41:15  vasilche
  59. * Added preserving of ASN.1 definition comments.
  60. *
  61. * Revision 1.4  2000/08/25 15:58:48  vasilche
  62. * Renamed directory tool -> datatool.
  63. *
  64. * Revision 1.3  2000/05/24 20:08:32  vasilche
  65. * Implemented DTD generation.
  66. *
  67. * Revision 1.2  2000/04/07 19:26:15  vasilche
  68. * Added namespace support to datatool.
  69. * By default with argument -oR datatool will generate objects in namespace
  70. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  71. * Datatool's classes also moved to NCBI namespace.
  72. *
  73. * Revision 1.1  2000/02/01 21:46:25  vasilche
  74. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  75. * Removed CMemberInfo subclasses.
  76. * Added support for DEFAULT/OPTIONAL members.
  77. * Changed class generation.
  78. * Moved datatool headers to include/internal/serial/tool.
  79. *
  80. * Revision 1.3  1999/12/03 21:42:14  vasilche
  81. * Fixed conflict of enums in choices.
  82. *
  83. * Revision 1.2  1999/11/15 19:36:21  vasilche
  84. * Fixed warnings on GCC
  85. *
  86. * ===========================================================================
  87. */
  88. #include <serial/datatool/type.hpp>
  89. BEGIN_NCBI_SCOPE
  90. class CUniSequenceDataType : public CDataType {
  91.     typedef CDataType CParent;
  92. public:
  93.     CUniSequenceDataType(const AutoPtr<CDataType>& elementType);
  94.     void PrintASN(CNcbiOstream& out, int indent) const;
  95.     void PrintDTDElement(CNcbiOstream& out) const;
  96.     void PrintDTDExtra(CNcbiOstream& out) const;
  97.     void PrintXMLSchemaElement(CNcbiOstream& out) const;
  98.     void PrintXMLSchemaExtra(CNcbiOstream& out) const;
  99.     void FixTypeTree(void) const;
  100.     bool CheckType(void) const;
  101.     bool CheckValue(const CDataValue& value) const;
  102.     TObjectPtr CreateDefault(const CDataValue& value) const;
  103.     CDataType* GetElementType(void)
  104.         {
  105.             return m_ElementType.get();
  106.         }
  107.     const CDataType* GetElementType(void) const
  108.         {
  109.             return m_ElementType.get();
  110.         }
  111.     void SetElementType(const AutoPtr<CDataType>& type);
  112.     CTypeInfo* CreateTypeInfo(void);
  113.     bool NeedAutoPointer(const CTypeInfo* typeInfo) const;
  114.     
  115.     AutoPtr<CTypeStrings> GetFullCType(void) const;
  116.     const char* GetASNKeyword(void) const;
  117.     bool IsNonEmpty(void) const
  118.         {
  119.             return m_NonEmpty;
  120.         }
  121.     void SetNonEmpty(bool nonEmpty)
  122.         {
  123.             m_NonEmpty = nonEmpty;
  124.         }
  125.     bool IsNoPrefix(void) const
  126.         {
  127.             return m_NoPrefix;
  128.         }
  129.     void SetNoPrefix(bool noprefix)
  130.         {
  131.             m_NoPrefix = noprefix;
  132.         }
  133. private:
  134.     AutoPtr<CDataType> m_ElementType;
  135.     bool m_NonEmpty;
  136.     bool m_NoPrefix;
  137. };
  138. class CUniSetDataType : public CUniSequenceDataType {
  139.     typedef CUniSequenceDataType CParent;
  140. public:
  141.     CUniSetDataType(const AutoPtr<CDataType>& elementType);
  142.     CTypeInfo* CreateTypeInfo(void);
  143.     
  144.     AutoPtr<CTypeStrings> GetFullCType(void) const;
  145.     const char* GetASNKeyword(void) const;
  146. };
  147. END_NCBI_SCOPE
  148. #endif