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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: module.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:36:38  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef MODULE_HPP
  10. #define MODULE_HPP
  11. /*  $Id: module.hpp,v 1000.0 2003/10/29 17:36: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 definitions module: equivalent of ASN.1 module
  40. *
  41. * ---------------------------------------------------------------------------
  42. * $Log: module.hpp,v $
  43. * Revision 1000.0  2003/10/29 17:36:38  gouriano
  44. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.10
  45. *
  46. * Revision 1.10  2003/05/14 14:42:55  gouriano
  47. * added generation of XML schema
  48. *
  49. * Revision 1.9  2003/04/29 18:29:34  gouriano
  50. * object data member initialization verification
  51. *
  52. * Revision 1.8  2001/05/17 15:00:42  lavr
  53. * Typos corrected
  54. *
  55. * Revision 1.7  2000/11/29 17:42:30  vasilche
  56. * Added CComment class for storing/printing ASN.1/XML module comments.
  57. * Added srcutil.hpp file to reduce file dependency.
  58. *
  59. * Revision 1.6  2000/11/14 21:41:13  vasilche
  60. * Added preserving of ASN.1 definition comments.
  61. *
  62. * Revision 1.5  2000/11/08 17:02:39  vasilche
  63. * Added generation of modular DTD files.
  64. *
  65. * Revision 1.4  2000/08/25 15:58:46  vasilche
  66. * Renamed directory tool -> datatool.
  67. *
  68. * Revision 1.3  2000/05/24 20:08:31  vasilche
  69. * Implemented DTD generation.
  70. *
  71. * Revision 1.2  2000/04/07 19:26:10  vasilche
  72. * Added namespace support to datatool.
  73. * By default with argument -oR datatool will generate objects in namespace
  74. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  75. * Datatool's classes also moved to NCBI namespace.
  76. *
  77. * Revision 1.1  2000/02/01 21:46:20  vasilche
  78. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  79. * Removed CMemberInfo subclasses.
  80. * Added support for DEFAULT/OPTIONAL members.
  81. * Changed class generation.
  82. * Moved datatool headers to include/internal/serial/tool.
  83. *
  84. * Revision 1.15  1999/12/29 16:01:51  vasilche
  85. * Added explicit virtual destructors.
  86. * Resolved overloading of InternalResolve.
  87. *
  88. * Revision 1.14  1999/12/28 18:55:59  vasilche
  89. * Reduced size of compiled object files:
  90. * 1. avoid inline or implicit virtual methods (especially destructors).
  91. * 2. avoid std::string's methods usage in inline methods.
  92. * 3. avoid string literals ("xxx") in inline methods.
  93. *
  94. * Revision 1.13  1999/12/21 17:18:36  vasilche
  95. * Added CDelayedFostream class which rewrites file only if contents is changed.
  96. *
  97. * Revision 1.12  1999/12/20 21:00:19  vasilche
  98. * Added generation of sources in different directories.
  99. *
  100. * Revision 1.11  1999/11/19 15:48:10  vasilche
  101. * Modified AutoPtr template to allow its use in STL containers (map, vector etc.)
  102. *
  103. * Revision 1.10  1999/11/15 19:36:17  vasilche
  104. * Fixed warnings on GCC
  105. *
  106. * ===========================================================================
  107. */
  108. #include <corelib/ncbistd.hpp>
  109. #include <corelib/ncbistre.hpp>
  110. #include <corelib/ncbiutil.hpp>
  111. #include <list>
  112. #include <map>
  113. #include <serial/datatool/mcontainer.hpp>
  114. #include <serial/datatool/comments.hpp>
  115. BEGIN_NCBI_SCOPE
  116. class CDataType;
  117. class CDataTypeModule : public CModuleContainer {
  118. public:
  119.     CDataTypeModule(const string& name);
  120.     virtual ~CDataTypeModule();
  121.     class Import {
  122.     public:
  123.         string moduleName;
  124.         list<string> types;
  125.     };
  126.     typedef list< AutoPtr<Import> > TImports;
  127.     typedef list< string > TExports;
  128.     typedef list< pair< string, AutoPtr<CDataType> > > TDefinitions;
  129.     bool Errors(void) const
  130.         {
  131.             return m_Errors;
  132.         }
  133.     const string GetVar(const string& section, const string& value) const;
  134.     string GetFileNamePrefix(void) const;
  135.     
  136.     void AddDefinition(const string& name, const AutoPtr<CDataType>& type);
  137.     void AddExports(const TExports& exports);
  138.     void AddImports(const TImports& imports);
  139.     void AddImports(const string& module, const list<string>& types);
  140.     virtual void PrintASN(CNcbiOstream& out) const;
  141.     virtual void PrintDTD(CNcbiOstream& out) const;
  142.     virtual void PrintXMLSchema(CNcbiOstream& out) const;
  143.     void PrintDTDModular(CNcbiOstream& out) const;
  144.     string GetDTDPublicName(void) const;
  145.     string GetDTDFileNameBase(void) const;
  146.     bool Check();
  147.     bool CheckNames();
  148.     const string& GetName(void) const
  149.         {
  150.             return m_Name;
  151.         }
  152.     const TDefinitions& GetDefinitions(void) const
  153.         {
  154.             return m_Definitions;
  155.         }
  156.     // return type visible from inside, or throw CTypeNotFound if none
  157.     CDataType* Resolve(const string& name) const;
  158.     // return type visible from outside, or throw CTypeNotFound if none
  159.     CDataType* ExternalResolve(const string& name,
  160.                                bool allowInternal = false) const;
  161.     CComments& Comments(void)
  162.         {
  163.             return m_Comments;
  164.         }
  165.     CComments& LastComments(void)
  166.         {
  167.             return m_LastComments;
  168.         }
  169. private:
  170.     bool m_Errors;
  171.     string m_Name;
  172.     CComments m_Comments;
  173.     CComments m_LastComments;
  174.     mutable string m_PrefixFromName;
  175.     TExports m_Exports;
  176.     TImports m_Imports;
  177.     TDefinitions m_Definitions;
  178.     typedef map<string, CDataType*> TTypesByName;
  179.     typedef map<string, string> TImportsByName;
  180.     TTypesByName m_LocalTypes;
  181.     TTypesByName m_ExportedTypes;
  182.     TImportsByName m_ImportedTypes;
  183. };
  184. END_NCBI_SCOPE
  185. #endif