1 /* Generated By:JavaCC: Do not edit this line. ParseException.java Version 5.0 */
2 /* JavaCCOptions:KEEP_LINE_COL=null */
3 package org.simantics.spreadsheet.graph.parser;
6 * This exception is thrown when parse errors are encountered.
7 * You can explicitly create objects of this exception type by
8 * calling the method generateParseException in the generated
11 * You can modify this class to customize your error reporting
12 * mechanisms so long as you retain the public fields.
14 public class ParseException extends Exception {
17 * The version identifier for this Serializable class.
18 * Increment only if the <i>serialized</i> form of the
21 private static final long serialVersionUID = 1L;
24 * This constructor is used by the method "generateParseException"
25 * in the generated parser. Calling this constructor generates
26 * a new object of this type with the fields "currentToken",
27 * "expectedTokenSequences", and "tokenImage" set.
29 public ParseException(Token currentTokenVal,
30 int[][] expectedTokenSequencesVal,
31 String[] tokenImageVal
34 super(initialise(currentTokenVal, expectedTokenSequencesVal, tokenImageVal));
35 currentToken = currentTokenVal;
36 expectedTokenSequences = expectedTokenSequencesVal;
37 tokenImage = tokenImageVal;
41 * The following constructors are for use by you for whatever
42 * purpose you can think of. Constructing the exception in this
43 * manner makes the exception behave in the normal way - i.e., as
44 * documented in the class "Throwable". The fields "errorToken",
45 * "expectedTokenSequences", and "tokenImage" do not contain
46 * relevant information. The JavaCC generated code does not use
50 public ParseException() {
54 /** Constructor with message. */
55 public ParseException(String message) {
61 * This is the last token that has been consumed successfully. If
62 * this object has been created due to a parse error, the token
63 * followng this token will (therefore) be the first error token.
65 public Token currentToken;
68 * Each entry in this array is an array of integers. Each array
69 * of integers represents a sequence of tokens (by their ordinal
70 * values) that is expected at this point of the parse.
72 public int[][] expectedTokenSequences;
75 * This is a reference to the "tokenImage" array of the generated
76 * parser within which the parse error occurred. This array is
77 * defined in the generated ...Constants interface.
79 public String[] tokenImage;
82 * It uses "currentToken" and "expectedTokenSequences" to generate a parse
83 * error message and returns it. If this object has been created
84 * due to a parse error, and you do not catch it (it gets thrown
85 * from the parser) the correct error message
88 private static String initialise(Token currentToken,
89 int[][] expectedTokenSequences,
90 String[] tokenImage) {
91 String eol = System.getProperty("line.separator", "\n");
92 StringBuffer expected = new StringBuffer();
94 for (int i = 0; i < expectedTokenSequences.length; i++) {
95 if (maxSize < expectedTokenSequences[i].length) {
96 maxSize = expectedTokenSequences[i].length;
98 for (int j = 0; j < expectedTokenSequences[i].length; j++) {
99 expected.append(tokenImage[expectedTokenSequences[i][j]]).append(' ');
101 if (expectedTokenSequences[i][expectedTokenSequences[i].length - 1] != 0) {
102 expected.append("...");
104 expected.append(eol).append(" ");
106 String retval = "Encountered \"";
107 Token tok = currentToken.next;
108 for (int i = 0; i < maxSize; i++) {
109 if (i != 0) retval += " ";
111 retval += tokenImage[0];
114 retval += " " + tokenImage[tok.kind];
116 retval += add_escapes(tok.image);
120 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
122 if (expectedTokenSequences.length == 1) {
123 retval += "Was expecting:" + eol + " ";
125 retval += "Was expecting one of:" + eol + " ";
127 retval += expected.toString();
132 * The end of line string for this machine.
134 protected String eol = System.getProperty("line.separator", "\n");
137 * Used to convert raw characters to their escaped version
138 * when these raw version cannot be used as part of an ASCII
141 static String add_escapes(String str) {
142 StringBuffer retval = new StringBuffer();
144 for (int i = 0; i < str.length(); i++) {
145 switch (str.charAt(i))
150 retval.append("\\b");
153 retval.append("\\t");
156 retval.append("\\n");
159 retval.append("\\f");
162 retval.append("\\r");
165 retval.append("\\\"");
168 retval.append("\\\'");
171 retval.append("\\\\");
174 if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) {
175 String s = "0000" + Integer.toString(ch, 16);
176 retval.append("\\u" + s.substring(s.length() - 4, s.length()));
183 return retval.toString();
187 /* JavaCC - OriginalChecksum=d1e175fa277ba5bb32b478700f6e7698 (do not edit this line) */