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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: aparser.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:33:40  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef ABSTRACT_PARSER_HPP
  10. #define ABSTRACT_PARSER_HPP
  11. /*  $Id: aparser.hpp,v 1000.0 2003/10/29 17:33:40 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. *   Abstract parser
  40. *
  41. * ---------------------------------------------------------------------------
  42. * $Log: aparser.hpp,v $
  43. * Revision 1000.0  2003/10/29 17:33:40  gouriano
  44. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.8
  45. *
  46. * Revision 1.8  2002/10/18 14:32:17  gouriano
  47. * added possibility to replace lexer "on the fly"
  48. *
  49. * Revision 1.7  2001/05/17 15:00:42  lavr
  50. * Typos corrected
  51. *
  52. * Revision 1.6  2000/11/29 17:42:29  vasilche
  53. * Added CComment class for storing/printing ASN.1/XML module comments.
  54. * Added srcutil.hpp file to reduce file dependency.
  55. *
  56. * Revision 1.5  2000/11/15 20:34:40  vasilche
  57. * Added user comments to ENUMERATED types.
  58. * Added storing of user comments to ASN.1 module definition.
  59. *
  60. * Revision 1.4  2000/11/14 21:41:12  vasilche
  61. * Added preserving of ASN.1 definition comments.
  62. *
  63. * Revision 1.3  2000/08/25 15:58:45  vasilche
  64. * Renamed directory tool -> datatool.
  65. *
  66. * Revision 1.2  2000/04/07 19:26:06  vasilche
  67. * Added namespace support to datatool.
  68. * By default with argument -oR datatool will generate objects in namespace
  69. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  70. * Datatool's classes also moved to NCBI namespace.
  71. *
  72. * Revision 1.1  2000/02/01 21:46:13  vasilche
  73. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  74. * Removed CMemberInfo subclasses.
  75. * Added support for DEFAULT/OPTIONAL members.
  76. * Changed class generation.
  77. * Moved datatool headers to include/internal/serial/tool.
  78. *
  79. * Revision 1.4  1999/11/15 19:36:12  vasilche
  80. * Fixed warnings on GCC
  81. *
  82. * ===========================================================================
  83. */
  84. #include <corelib/ncbistd.hpp>
  85. #include <serial/datatool/alexer.hpp>
  86. #include <serial/datatool/atoken.hpp>
  87. #include <list>
  88. BEGIN_NCBI_SCOPE
  89. class CComments;
  90. class AbstractParser {
  91. public:
  92.     AbstractParser(AbstractLexer& lexer);
  93.     virtual ~AbstractParser(void);
  94.     virtual void ParseError(const char* error, const char* expected,
  95.                             const AbstractToken& token);
  96.     void ParseError(const char* error, const char* expected)
  97.         {
  98.             ParseError(error, expected, NextToken());
  99.         }
  100.     void ParseError(const char* expected)
  101.         {
  102.             ParseError("", expected);
  103.         }
  104.     string Location(void) const;
  105.     AbstractLexer& Lexer(void)
  106.         {
  107.             return *m_Lexer;
  108.         }
  109.     const AbstractLexer& Lexer(void) const
  110.         {
  111.             return *m_Lexer;
  112.         }
  113.     const AbstractToken& NextToken(void) const
  114.         {
  115.             return m_Lexer->NextToken();
  116.         }
  117.     TToken Next(void) const
  118.         {
  119.             return NextToken().GetToken();
  120.         }
  121.     int NextTokenLine(void) const
  122.         {
  123.             return NextToken().GetLine();
  124.         }
  125.     int LastTokenLine(void) const
  126.         {
  127.             return Lexer().LastTokenLine();
  128.         }
  129.     void Consume(void)
  130.         {
  131.             Lexer().Consume();
  132.         }
  133.     const string& ConsumeAndValue(void)
  134.         {
  135.             return Lexer().ConsumeAndValue();
  136.         }
  137.     bool Check(TToken token)
  138.         {
  139.             return Next() == token;
  140.         }
  141.     void Expect(TToken token, const char* expected)
  142.         {
  143.             if ( !Check(token) )
  144.                 ParseError(expected);
  145.         }
  146.     bool ConsumeIf(TToken token)
  147.         {
  148.             if ( !Check(token) )
  149.                 return false;
  150.             Consume();
  151.             return true;
  152.         }
  153.     void Consume(TToken token, const char* expected)
  154.         {
  155.             Expect(token, expected);
  156.             Consume();
  157.         }
  158.     const string& ValueOf(TToken token, const char* expected)
  159.         {
  160.             Expect(token, expected);
  161.             return ConsumeAndValue();
  162.         }
  163.     bool CheckSymbol(char symbol)
  164.         {
  165.             return Lexer().CheckSymbol(symbol);
  166.         }
  167.     void ExpectSymbol(char symbol)
  168.         {
  169.             if ( !CheckSymbol(symbol) ) {
  170.                 char expected[2] = { symbol, '' };
  171.                 ParseError(expected);
  172.             }
  173.         }
  174.     bool ConsumeIfSymbol(char symbol)
  175.         {
  176.             if ( !CheckSymbol(symbol) )
  177.                 return false;
  178.             Consume();
  179.             return true;
  180.         }
  181.     void ConsumeSymbol(char symbol)
  182.         {
  183.             ExpectSymbol(symbol);
  184.             Consume();
  185.         }
  186.     char CheckSymbols(char symbol1, char symbol2)
  187.         {
  188.             if ( Next() == T_SYMBOL ) {
  189.                 char symbol = NextToken().GetSymbol();
  190.                 if ( symbol == symbol1 || symbol == symbol2 )
  191.                     return symbol;
  192.             }
  193.             return '';
  194.         }
  195.     
  196.     void CopyComments(CComments& comments)
  197.         {
  198.             Lexer().FlushCommentsTo(comments);
  199.         }
  200.     enum {
  201.         eNoFetchNext = 1,
  202.         eCombineNext = 2
  203.     };
  204.     void CopyLineComment(int line, CComments& comments, int flags = 0);
  205. protected:
  206.     void SetLexer(AbstractLexer* lexer)
  207.     {
  208.         m_Lexer = lexer;
  209.     }
  210. private:
  211.     AbstractLexer* m_Lexer;
  212. };
  213. END_NCBI_SCOPE
  214. #endif