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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: parser.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:16:16  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef ASNPARSER_HPP
  10. #define ASNPARSER_HPP
  11. /*  $Id: parser.hpp,v 1000.1 2004/04/12 17:16:16 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. *   ASN.1 parser
  40. *
  41. * ---------------------------------------------------------------------------
  42. * $Log: parser.hpp,v $
  43. * Revision 1000.1  2004/04/12 17:16:16  gouriano
  44. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.10
  45. *
  46. * Revision 1.10  2004/02/26 16:23:48  gouriano
  47. * Skip datatype constraints when parsing ASN.1 spec
  48. *
  49. * Revision 1.9  2004/02/25 19:45:48  gouriano
  50. * Made it possible to define DEFAULT for data members of type REAL
  51. *
  52. * Revision 1.8  2000/12/15 15:38:35  vasilche
  53. * Added support of Int8 and long double.
  54. * Added support of BigInt ASN.1 extension - mapped to Int8.
  55. * Enum values now have type Int4 instead of long.
  56. *
  57. * Revision 1.7  2000/11/15 20:34:43  vasilche
  58. * Added user comments to ENUMERATED types.
  59. * Added storing of user comments to ASN.1 module definition.
  60. *
  61. * Revision 1.6  2000/11/14 21:41:14  vasilche
  62. * Added preserving of ASN.1 definition comments.
  63. *
  64. * Revision 1.5  2000/11/01 20:36:11  vasilche
  65. * OPTIONAL and DEFAULT are not permitted in CHOICE.
  66. * Fixed code generation for DEFAULT.
  67. *
  68. * Revision 1.4  2000/09/26 17:38:17  vasilche
  69. * Fixed incomplete choiceptr implementation.
  70. * Removed temporary comments.
  71. *
  72. * Revision 1.3  2000/08/25 15:58:47  vasilche
  73. * Renamed directory tool -> datatool.
  74. *
  75. * Revision 1.2  2000/04/07 19:26:11  vasilche
  76. * Added namespace support to datatool.
  77. * By default with argument -oR datatool will generate objects in namespace
  78. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  79. * Datatool's classes also moved to NCBI namespace.
  80. *
  81. * Revision 1.1  2000/02/01 21:46:21  vasilche
  82. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  83. * Removed CMemberInfo subclasses.
  84. * Added support for DEFAULT/OPTIONAL members.
  85. * Changed class generation.
  86. * Moved datatool headers to include/internal/serial/tool.
  87. *
  88. * Revision 1.11  1999/12/28 18:56:00  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.10  1999/11/19 15:48:11  vasilche
  95. * Modified AutoPtr template to allow its use in STL containers (map, vector etc.)
  96. *
  97. * Revision 1.9  1999/11/15 19:36:18  vasilche
  98. * Fixed warnings on GCC
  99. *
  100. * ===========================================================================
  101. */
  102. #include <corelib/ncbiutil.hpp>
  103. #include <serial/datatool/aparser.hpp>
  104. #include <serial/datatool/lexer.hpp>
  105. #include <serial/datatool/moduleset.hpp>
  106. #include <list>
  107. BEGIN_NCBI_SCOPE
  108. class CFileModules;
  109. class CDataModule;
  110. class CDataType;
  111. class CDataMemberContainerType;
  112. class CDataValue;
  113. class CDataMember;
  114. class CEnumDataType;
  115. class CEnumDataTypeValue;
  116. class ASNParser : public AbstractParser
  117. {
  118. public:
  119.     ASNParser(ASNLexer& lexer)
  120.         : AbstractParser(lexer)
  121.         {
  122.         }
  123.     const ASNLexer& L(void) const
  124.         {
  125.             return static_cast<const ASNLexer&>(Lexer());
  126.         }
  127.     ASNLexer& L(void)
  128.         {
  129.             return static_cast<ASNLexer&>(Lexer());
  130.         }
  131.     AutoPtr<CFileModules> Modules(const string& fileName);
  132.     AutoPtr<CDataTypeModule> Module(void);
  133.     void Imports(CDataTypeModule& module);
  134.     void Exports(CDataTypeModule& module);
  135.     void ModuleBody(CDataTypeModule& module);
  136.     void ModuleType(CDataTypeModule& module, const string& name);
  137.     AutoPtr<CDataType> Type(void);
  138.     CDataType* x_Type(void);
  139.     CDataType* TypesBlock(CDataMemberContainerType* containerType,
  140.                           bool allowDefaults);
  141.     AutoPtr<CDataMember> NamedDataType(bool allowDefaults);
  142.     CEnumDataType* EnumeratedBlock(CEnumDataType* enumType);
  143.     CEnumDataTypeValue& EnumeratedValue(CEnumDataType& enumType);
  144.     void TypeList(list<string>& ids);
  145.     AutoPtr<CDataValue> Value(void);
  146.     AutoPtr<CDataValue> x_Value(void);
  147.     Int4 Number(void);
  148.     double Double(void);
  149.     const string& String(void);
  150.     const string& Identifier(void);
  151.     const string& TypeReference(void);
  152.     const string& ModuleReference(void);
  153.     bool HaveMoreElements(void);
  154.     void SkipTo(char ch);
  155. };
  156. END_NCBI_SCOPE
  157. #endif