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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: lexer.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 17:16:14  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef ASNLEXER_HPP
  10. #define ASNLEXER_HPP
  11. /*  $Id: lexer.hpp,v 1000.1 2004/04/12 17:16:14 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 lexer
  40. *
  41. * ---------------------------------------------------------------------------
  42. * $Log: lexer.hpp,v $
  43. * Revision 1000.1  2004/04/12 17:16:14  gouriano
  44. * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.8
  45. *
  46. * Revision 1.8  2004/02/25 19:45:47  gouriano
  47. * Made it possible to define DEFAULT for data members of type REAL
  48. *
  49. * Revision 1.7  2002/09/26 16:57:31  vasilche
  50. * Added flag for compatibility with asntool
  51. *
  52. * Revision 1.6  2001/06/11 14:34:58  grichenk
  53. * Added support for numeric tags in ASN.1 specifications and data streams.
  54. *
  55. * Revision 1.5  2000/11/15 20:34:43  vasilche
  56. * Added user comments to ENUMERATED types.
  57. * Added storing of user comments to ASN.1 module definition.
  58. *
  59. * Revision 1.4  2000/11/14 21:41:13  vasilche
  60. * Added preserving of ASN.1 definition comments.
  61. *
  62. * Revision 1.3  2000/08/25 15:58:46  vasilche
  63. * Renamed directory tool -> datatool.
  64. *
  65. * Revision 1.2  2000/04/07 19:26:09  vasilche
  66. * Added namespace support to datatool.
  67. * By default with argument -oR datatool will generate objects in namespace
  68. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  69. * Datatool's classes also moved to NCBI namespace.
  70. *
  71. * Revision 1.1  2000/02/01 21:46:19  vasilche
  72. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  73. * Removed CMemberInfo subclasses.
  74. * Added support for DEFAULT/OPTIONAL members.
  75. * Changed class generation.
  76. * Moved datatool headers to include/internal/serial/tool.
  77. *
  78. * Revision 1.3  1999/11/15 19:36:16  vasilche
  79. * Fixed warnings on GCC
  80. *
  81. * ===========================================================================
  82. */
  83. #include <serial/datatool/alexer.hpp>
  84. #include <list>
  85. BEGIN_NCBI_SCOPE
  86. class ASNLexer : public AbstractLexer
  87. {
  88.     typedef AbstractLexer CParent;
  89. public:
  90.     ASNLexer(CNcbiIstream& in);
  91.     virtual ~ASNLexer();
  92.     const string& StringValue(void) const
  93.         {
  94.             return m_StringValue;
  95.         }
  96.     bool AllowIDsEndingWithMinus(void) const
  97.         {
  98.             return m_AllowIDsEndingWithMinus;
  99.         }
  100.     void AllowIDsEndingWithMinus(bool allow)
  101.         {
  102.             m_AllowIDsEndingWithMinus = allow;
  103.         }
  104. protected:
  105.     TToken LookupToken(void);
  106.     void LookupComments(void);
  107.     void StartString(void);
  108.     void AddStringChar(char c);
  109.     void SkipComment(void);
  110.     TToken LookupNumber(void);
  111.     void LookupIdentifier(void);
  112.     void LookupString(void);
  113.     void LookupTag(void);
  114.     TToken LookupBinHexString(void);
  115.     TToken LookupKeyword(void);
  116.     string m_StringValue;
  117.     bool m_AllowIDsEndingWithMinus;
  118. };
  119. END_NCBI_SCOPE
  120. #endif