001: /* Generated By:JavaCC: Do not edit this line. ParseException.java Version 3.0 */
002: package org.objectweb.jonas_ejb.deployment.ejbql;
003:
004: /**
005: * Initialy generated by JJTree, this class was modified to get specific error reporting
006: * @author Christophe Ney, Consultant cney@batisseurs.com
007: *
008: * This exception is thrown when parse errors are encountered.
009: * You can explicitly create objects of this exception type by
010: * calling the method generateParseException in the generated
011: * parser.
012: *
013: * You can modify this class to customize your error reporting
014: * mechanisms so long as you retain the public fields.
015: */
016: public class ParseException extends Exception {
017:
018: /**
019: * This constructor is used by the method "generateParseException"
020: * in the generated parser. Calling this constructor generates
021: * a new object of this type with the fields "currentToken",
022: * "expectedTokenSequences", and "tokenImage" set. The boolean
023: * flag "specialConstructor" is also set to true to indicate that
024: * this constructor was used to create this object.
025: * This constructor calls its super class with the empty string
026: * to force the "toString" method of parent class "Throwable" to
027: * print the error message in the form:
028: * ParseException: <result of getMessage>
029: */
030: public ParseException(Token currentTokenVal,
031: int[][] expectedTokenSequencesVal, String[] tokenImageVal) {
032: super ("");
033: specialConstructor = true;
034: currentToken = currentTokenVal;
035: expectedTokenSequences = expectedTokenSequencesVal;
036: tokenImage = tokenImageVal;
037: }
038:
039: /**
040: * The following constructors are for use by you for whatever
041: * purpose you can think of. Constructing the exception in this
042: * manner makes the exception behave in the normal way - i.e., as
043: * documented in the class "Throwable". The fields "errorToken",
044: * "expectedTokenSequences", and "tokenImage" do not contain
045: * relevant information. The JavaCC generated code does not use
046: * these constructors.
047: */
048:
049: public ParseException() {
050: super ();
051: specialConstructor = false;
052: }
053:
054: public ParseException(String message) {
055: super (message);
056: specialConstructor = false;
057: }
058:
059: /**
060: * This variable determines which constructor was used to create
061: * this object and thereby affects the semantics of the
062: * "getMessage" method (see below).
063: */
064: protected boolean specialConstructor;
065:
066: /**
067: * This is the last token that has been consumed successfully. If
068: * this object has been created due to a parse error, the token
069: * followng this token will (therefore) be the first error token.
070: */
071: public Token currentToken;
072:
073: /**
074: * Each entry in this array is an array of integers. Each array
075: * of integers represents a sequence of tokens (by their ordinal
076: * values) that is expected at this point of the parse.
077: */
078: public int[][] expectedTokenSequences;
079:
080: /**
081: * This is a reference to the "tokenImage" array of the generated
082: * parser within which the parse error occurred. This array is
083: * defined in the generated ...Constants interface.
084: */
085: public String[] tokenImage;
086:
087: /**
088: * This method has the standard behavior when this object has been
089: * created using the standard constructors. Otherwise, it uses
090: * "currentToken" and "expectedTokenSequences" to generate a parse
091: * error message and returns it. If this object has been created
092: * due to a parse error, and you do not catch it (it gets thrown
093: * from the parser), then this method is called during the printing
094: * of the final stack trace, and hence the correct error message
095: * gets displayed.
096: */
097: public String getMessage(String query) {
098: if (!specialConstructor) {
099: return super .getMessage();
100: }
101: String expected = "";
102: int maxSize = 0;
103: for (int i = 0; i < expectedTokenSequences.length; i++) {
104: if (maxSize < expectedTokenSequences[i].length) {
105: maxSize = expectedTokenSequences[i].length;
106: }
107: for (int j = 0; j < expectedTokenSequences[i].length; j++) {
108: expected += tokenImage[expectedTokenSequences[i][j]]
109: + " ";
110: }
111: if (expectedTokenSequences[i][expectedTokenSequences[i].length - 1] != 0) {
112: expected += "...";
113: }
114: expected += eol + " ";
115: }
116: String retval = "Encountered \"";
117: Token tok = currentToken.next;
118: for (int i = 0; i < maxSize; i++) {
119: if (i != 0)
120: retval += " ";
121: if (tok.kind == 0) {
122: retval += tokenImage[0];
123: break;
124: }
125: retval += add_escapes(tok.image);
126: tok = tok.next;
127: }
128: // begin of ObjectWeb changes
129: // retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
130: if ((query == null) || ("".equals(query))) {
131: retval += "\" at line " + currentToken.next.beginLine
132: + ", column " + currentToken.next.beginColumn;
133: } else {
134: // display the part of the query that was parsed (assuming one line)
135: retval += "\" after \""
136: + query.substring(0,
137: currentToken.next.beginColumn - 1) + "\""
138: + eol;
139: retval += "in \"" + query + "\"";
140: }
141: // end of ObjectWeb changes
142: retval += "." + eol;
143: if (expectedTokenSequences.length == 1) {
144: retval += "Was expecting:" + eol + " ";
145: } else {
146: retval += "Was expecting one of:" + eol + " ";
147: }
148: retval += expected;
149: return retval;
150: }
151:
152: /**
153: * The end of line string for this machine.
154: */
155: protected String eol = System.getProperty("line.separator", "\n");
156:
157: /**
158: * Used to convert raw characters to their escaped version
159: * when these raw version cannot be used as part of an ASCII
160: * string literal.
161: */
162: protected String add_escapes(String str) {
163: StringBuffer retval = new StringBuffer();
164: char ch;
165: for (int i = 0; i < str.length(); i++) {
166: switch (str.charAt(i)) {
167: case 0:
168: continue;
169: case '\b':
170: retval.append("\\b");
171: continue;
172: case '\t':
173: retval.append("\\t");
174: continue;
175: case '\n':
176: retval.append("\\n");
177: continue;
178: case '\f':
179: retval.append("\\f");
180: continue;
181: case '\r':
182: retval.append("\\r");
183: continue;
184: case '\"':
185: retval.append("\\\"");
186: continue;
187: case '\'':
188: retval.append("\\\'");
189: continue;
190: case '\\':
191: retval.append("\\\\");
192: continue;
193: default:
194: if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) {
195: String s = "0000" + Integer.toString(ch, 16);
196: retval.append("\\u"
197: + s.substring(s.length() - 4, s.length()));
198: } else {
199: retval.append(ch);
200: }
201: continue;
202: }
203: }
204: return retval.toString();
205: }
206:
207: }
|