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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: aparser.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:42:17  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: aparser.cpp,v 1000.1 2004/06/01 19:42:17 gouriano Exp $
  10. * ===========================================================================
  11. *
  12. *                            PUBLIC DOMAIN NOTICE
  13. *               National Center for Biotechnology Information
  14. *
  15. *  This software/database is a "United States Government Work" under the
  16. *  terms of the United States Copyright Act.  It was written as part of
  17. *  the author's official duties as a United States Government employee and
  18. *  thus cannot be copyrighted.  This software/database is freely available
  19. *  to the public for use. The National Library of Medicine and the U.S.
  20. *  Government have not placed any restriction on its use or reproduction.
  21. *
  22. *  Although all reasonable efforts have been taken to ensure the accuracy
  23. *  and reliability of the software and data, the NLM and the U.S.
  24. *  Government do not and cannot warrant the performance or results that
  25. *  may be obtained by using this software or data. The NLM and the U.S.
  26. *  Government disclaim all warranties, express or implied, including
  27. *  warranties of performance, merchantability or fitness for any particular
  28. *  purpose.
  29. *
  30. *  Please cite the author in any work or product based on this material.
  31. *
  32. * ===========================================================================
  33. *
  34. * Author: Eugene Vasilchenko
  35. *
  36. * File Description:
  37. *   Abstract parser class
  38. *
  39. * ---------------------------------------------------------------------------
  40. * $Log: aparser.cpp,v $
  41. * Revision 1000.1  2004/06/01 19:42:17  gouriano
  42. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.18
  43. *
  44. * Revision 1.18  2004/05/17 21:03:13  gorelenk
  45. * Added include of PCH ncbi_pch.hpp
  46. *
  47. * Revision 1.17  2003/05/14 14:41:36  gouriano
  48. * corrected writing comments
  49. *
  50. * Revision 1.16  2003/03/10 18:55:18  gouriano
  51. * use new structured exceptions (based on CException)
  52. *
  53. * Revision 1.15  2002/12/17 16:24:43  gouriano
  54. * replaced _ASSERTs by throwing an exception
  55. *
  56. * Revision 1.14  2002/10/18 14:33:14  gouriano
  57. * added possibility to replace lexer "on the fly"
  58. *
  59. * Revision 1.13  2001/06/11 14:35:02  grichenk
  60. * Added support for numeric tags in ASN.1 specifications and data streams.
  61. *
  62. * Revision 1.12  2001/05/17 15:07:11  lavr
  63. * Typos corrected
  64. *
  65. * Revision 1.11  2000/11/29 17:42:42  vasilche
  66. * Added CComment class for storing/printing ASN.1/XML module comments.
  67. * Added srcutil.hpp file to reduce file dependency.
  68. *
  69. * Revision 1.10  2000/11/15 20:34:53  vasilche
  70. * Added user comments to ENUMERATED types.
  71. * Added storing of user comments to ASN.1 module definition.
  72. *
  73. * Revision 1.9  2000/11/14 21:41:23  vasilche
  74. * Added preserving of ASN.1 definition comments.
  75. *
  76. * Revision 1.8  2000/09/26 17:38:25  vasilche
  77. * Fixed incomplete choiceptr implementation.
  78. * Removed temporary comments.
  79. *
  80. * Revision 1.7  2000/08/25 15:59:19  vasilche
  81. * Renamed directory tool -> datatool.
  82. *
  83. * Revision 1.6  2000/04/07 19:26:23  vasilche
  84. * Added namespace support to datatool.
  85. * By default with argument -oR datatool will generate objects in namespace
  86. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  87. * Datatool's classes also moved to NCBI namespace.
  88. *
  89. * Revision 1.5  2000/02/01 21:47:52  vasilche
  90. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  91. * Removed CMemberInfo subclasses.
  92. * Added support for DEFAULT/OPTIONAL members.
  93. * Changed class generation.
  94. * Moved datatool headers to include/internal/serial/tool.
  95. *
  96. * Revision 1.4  1999/11/15 19:36:12  vasilche
  97. * Fixed warnings on GCC
  98. *
  99. * ===========================================================================
  100. */
  101. #include <ncbi_pch.hpp>
  102. #include <serial/datatool/exceptions.hpp>
  103. #include <serial/datatool/aparser.hpp>
  104. #include <serial/datatool/comments.hpp>
  105. BEGIN_NCBI_SCOPE
  106. AbstractParser::AbstractParser(AbstractLexer& lexer)
  107.     : m_Lexer(&lexer)
  108. {
  109. }
  110. AbstractParser::~AbstractParser(void)
  111. {
  112. }
  113. void AbstractParser::ParseError(const char* error, const char* expected,
  114.                                 const AbstractToken& token)
  115. {
  116.     NCBI_THROW(CDatatoolException,eWrongInput,
  117.                  "LINE " + NStr::IntToString(token.GetLine())+
  118.                  ", TOKEN " + token.GetText() +
  119.                  " -- parse error: " + error +
  120.                  (error != "" ? ": " : "") + expected + " expected");
  121. }
  122. string AbstractParser::Location(void) const
  123. {
  124.     return NStr::IntToString(LastTokenLine()) + ':';
  125. }
  126. void AbstractParser::CopyLineComment(int line, CComments& comments,
  127.                                      int flags)
  128. {
  129.     if ( !(flags & eNoFetchNext) )
  130.         Lexer().FillComments();
  131.     _TRACE("CopyLineComment("<<line<<") current: "<<Lexer().CurrentLine());
  132.     _TRACE("  "<<(Lexer().HaveComments()?Lexer().NextComment().GetLine():-1));
  133.     while ( Lexer().HaveComments() ) {
  134.         const AbstractLexer::CComment& c = Lexer().NextComment();
  135.         if ( c.GetLine() > line ) {
  136.             // next comment is below limit line
  137.             Lexer().FlushComments();
  138.             return;
  139.         }
  140.         if ( c.GetLine() == line && (flags & eCombineNext) ) {
  141.             // current comment is on limit line -> allow next line comment
  142.             ++line;
  143.         }
  144.         comments.Add(c.GetValue());
  145.         Lexer().SkipNextComment();
  146.     }
  147. }
  148. END_NCBI_SCOPE