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