MismatchedTokenException.hpp
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:4k
源码类别:

编译器/解释器

开发平台:

Others

  1. #ifndef INC_MismatchedTokenException_hpp__
  2. #define INC_MismatchedTokenException_hpp__
  3. /**
  4.  * <b>SOFTWARE RIGHTS</b>
  5.  * <p>
  6.  * ANTLR 2.6.0 MageLang Insitute, 1999
  7.  * <p>
  8.  * We reserve no legal rights to the ANTLR--it is fully in the
  9.  * public domain. An individual or company may do whatever
  10.  * they wish with source code distributed with ANTLR or the
  11.  * code generated by ANTLR, including the incorporation of
  12.  * ANTLR, or its output, into commerical software.
  13.  * <p>
  14.  * We encourage users to develop software with ANTLR. However,
  15.  * we do ask that credit is given to us for developing
  16.  * ANTLR. By "credit", we mean that if you use ANTLR or
  17.  * incorporate any source code into one of your programs
  18.  * (commercial product, research project, or otherwise) that
  19.  * you acknowledge this fact somewhere in the documentation,
  20.  * research report, etc... If you like ANTLR and have
  21.  * developed a nice tool with the output, please mention that
  22.  * you developed it using ANTLR. In addition, we ask that the
  23.  * headers remain intact in our source code. As long as these
  24.  * guidelines are kept, we expect to continue enhancing this
  25.  * system and expect to make other tools available as they are
  26.  * completed.
  27.  * <p>
  28.  * The ANTLR gang:
  29.  * @version ANTLR 2.6.0 MageLang Insitute, 1999
  30.  * @author Terence Parr, <a href=http://www.MageLang.com>MageLang Institute</a>
  31.  * @author <br>John Lilley, <a href=http://www.Empathy.com>Empathy Software</a>
  32.  * @author <br><a href="mailto:pete@yamuna.demon.co.uk">Pete Wells</a>
  33.  */
  34. #include "antlr/config.hpp"
  35. #include "antlr/RecognitionException.hpp"
  36. #include "antlr/BitSet.hpp"
  37. #include "antlr/Token.hpp"
  38. #include "antlr/AST.hpp"
  39. #include <vector>
  40. ANTLR_BEGIN_NAMESPACE(antlr)
  41. class MismatchedTokenException : public RecognitionException {
  42. private:
  43. // Token names array for formatting
  44. ANTLR_USE_NAMESPACE(std)vector<ANTLR_USE_NAMESPACE(std)string> tokenNames;
  45. public:
  46. // The token that was encountered
  47. const RefToken token;
  48. // The offending AST node if tree walking
  49. const RefAST node;
  50. ANTLR_USE_NAMESPACE(std)string tokenText; // taken from node or token object
  51. // Types of tokens
  52. #ifndef NO_STATIC_CONSTS
  53. static const int TOKEN = 1;
  54. static const int NOT_TOKEN = 2;
  55. static const int RANGE = 3;
  56. static const int NOT_RANGE = 4;
  57. static const int SET = 5;
  58. static const int NOT_SET = 6;
  59. #else
  60. enum {
  61. TOKEN = 1,
  62. NOT_TOKEN = 2,
  63. RANGE = 3,
  64. NOT_RANGE = 4,
  65. SET = 5,
  66. NOT_SET = 6
  67. };
  68. #endif
  69. public:
  70. // One of the above
  71. int mismatchType;
  72. // For TOKEN/NOT_TOKEN and RANGE/NOT_RANGE
  73. int expecting;
  74. // For RANGE/NOT_RANGE (expecting is lower bound of range)
  75. int upper;
  76. // For SET/NOT_SET
  77. BitSet set;
  78. MismatchedTokenException();
  79. // Expected range / not range
  80. MismatchedTokenException(
  81. const ANTLR_USE_NAMESPACE(std)vector<ANTLR_USE_NAMESPACE(std)string>& tokenNames_,
  82. RefAST node_,
  83. int lower,
  84. int upper_,
  85. bool matchNot
  86. );
  87. // Expected token / not token
  88. MismatchedTokenException(
  89. const ANTLR_USE_NAMESPACE(std)vector<ANTLR_USE_NAMESPACE(std)string>& tokenNames_,
  90. RefAST node_,
  91. int expecting_,
  92. bool matchNot
  93. );
  94. // Expected BitSet / not BitSet
  95. MismatchedTokenException(
  96. const ANTLR_USE_NAMESPACE(std)vector<ANTLR_USE_NAMESPACE(std)string>& tokenNames_,
  97. RefAST node_,
  98. BitSet set_,
  99. bool matchNot
  100. );
  101. // Expected range / not range
  102. MismatchedTokenException(
  103. const ANTLR_USE_NAMESPACE(std)vector<ANTLR_USE_NAMESPACE(std)string>& tokenNames_,
  104. RefToken token_,
  105. int lower,
  106. int upper_,
  107. bool matchNot,
  108. const ANTLR_USE_NAMESPACE(std)string& fileName_
  109. );
  110. // Expected token / not token
  111. MismatchedTokenException(
  112. const ANTLR_USE_NAMESPACE(std)vector<ANTLR_USE_NAMESPACE(std)string>& tokenNames_,
  113. RefToken token_,
  114. int expecting_,
  115. bool matchNot,
  116. const ANTLR_USE_NAMESPACE(std)string& fileName_
  117. );
  118. // Expected BitSet / not BitSet
  119. MismatchedTokenException(
  120. const ANTLR_USE_NAMESPACE(std)vector<ANTLR_USE_NAMESPACE(std)string>& tokenNames_,
  121. RefToken token_,
  122. BitSet set_,
  123. bool matchNot,
  124. const ANTLR_USE_NAMESPACE(std)string& fileName_
  125. );
  126. /**
  127.  * @deprecated As of ANTLR 2.7.0
  128.  */
  129. ANTLR_USE_NAMESPACE(std)string getErrorMessage() const;
  130. /**
  131.  * Returns the error message that happened on the line/col given.
  132.  * Copied from toString().
  133.  */
  134. ANTLR_USE_NAMESPACE(std)string getMessage() const;
  135. private:
  136. ANTLR_USE_NAMESPACE(std)string tokenName(int tokenType) const;
  137. public:
  138. ANTLR_USE_NAMESPACE(std)string toString() const;
  139. };
  140. ANTLR_END_NAMESPACE
  141. #endif //INC_MismatchedTokenException_hpp__