KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > taglibs > standard > lang > jpath > expression > ParseException


1 /*
2  * Copyright 1999,2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16
17 /* Generated By:JavaCC: Do not edit this line. ParseException.java Version 0.7pre6 */
18 package org.apache.taglibs.standard.lang.jpath.expression;
19
20 /**
21  * This exception is thrown when parse errors are encountered.
22  * You can explicitly create objects of this exception type by
23  * calling the method generateParseException in the generated
24  * parser.
25  *
26  * You can modify this class to customize your error reporting
27  * mechanisms so long as you retain the public fields.
28  */

29 public class ParseException extends Exception JavaDoc {
30
31   /**
32    * This constructor is used by the method "generateParseException"
33    * in the generated parser. Calling this constructor generates
34    * a new object of this type with the fields "currentToken",
35    * "expectedTokenSequences", and "tokenImage" set. The boolean
36    * flag "specialConstructor" is also set to true to indicate that
37    * this constructor was used to create this object.
38    * This constructor calls its super class with the empty string
39    * to force the "toString" method of parent class "Throwable" to
40    * print the error message in the form:
41    * ParseException: <result of getMessage>
42    */

43   public ParseException(Token currentTokenVal,
44                         int[][] expectedTokenSequencesVal,
45                         String JavaDoc[] tokenImageVal
46                        )
47   {
48     super("");
49     specialConstructor = true;
50     currentToken = currentTokenVal;
51     expectedTokenSequences = expectedTokenSequencesVal;
52     tokenImage = tokenImageVal;
53   }
54
55   /**
56    * The following constructors are for use by you for whatever
57    * purpose you can think of. Constructing the exception in this
58    * manner makes the exception behave in the normal way - i.e., as
59    * documented in the class "Throwable". The fields "errorToken",
60    * "expectedTokenSequences", and "tokenImage" do not contain
61    * relevant information. The JavaCC generated code does not use
62    * these constructors.
63    */

64
65   public ParseException() {
66     super();
67     specialConstructor = false;
68   }
69
70   public ParseException(String JavaDoc message) {
71     super(message);
72     specialConstructor = false;
73   }
74
75   /**
76    * This variable determines which constructor was used to create
77    * this object and thereby affects the semantics of the
78    * "getMessage" method (see below).
79    */

80   protected boolean specialConstructor;
81
82   /**
83    * This is the last token that has been consumed successfully. If
84    * this object has been created due to a parse error, the token
85    * followng this token will (therefore) be the first error token.
86    */

87   public Token currentToken;
88
89   /**
90    * Each entry in this array is an array of integers. Each array
91    * of integers represents a sequence of tokens (by their ordinal
92    * values) that is expected at this point of the parse.
93    */

94   public int[][] expectedTokenSequences;
95
96   /**
97    * This is a reference to the "tokenImage" array of the generated
98    * parser within which the parse error occurred. This array is
99    * defined in the generated ...Constants interface.
100    */

101   public String JavaDoc[] tokenImage;
102
103   /**
104    * This method has the standard behavior when this object has been
105    * created using the standard constructors. Otherwise, it uses
106    * "currentToken" and "expectedTokenSequences" to generate a parse
107    * error message and returns it. If this object has been created
108    * due to a parse error, and you do not catch it (it gets thrown
109    * from the parser), then this method is called during the printing
110    * of the final stack trace, and hence the correct error message
111    * gets displayed.
112    */

113   public String JavaDoc getMessage() {
114     if (!specialConstructor) {
115       return super.getMessage();
116     }
117     String JavaDoc expected = "";
118     int maxSize = 0;
119     for (int i = 0; i < expectedTokenSequences.length; i++) {
120       if (maxSize < expectedTokenSequences[i].length) {
121         maxSize = expectedTokenSequences[i].length;
122       }
123       for (int j = 0; j < expectedTokenSequences[i].length; j++) {
124         expected += tokenImage[expectedTokenSequences[i][j]] + " ";
125       }
126       if (expectedTokenSequences[i][expectedTokenSequences[i].length - 1] != 0) {
127         expected += "...";
128       }
129       expected += eol + " ";
130     }
131     String JavaDoc retval = "Encountered \"";
132     Token tok = currentToken.next;
133     for (int i = 0; i < maxSize; i++) {
134       if (i != 0) retval += " ";
135       if (tok.kind == 0) {
136         retval += tokenImage[0];
137         break;
138       }
139       retval += add_escapes(tok.image);
140       tok = tok.next;
141     }
142     retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn + "." + 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 JavaDoc 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 JavaDoc add_escapes(String JavaDoc str) {
163       StringBuffer JavaDoc retval = new StringBuffer JavaDoc();
164       char ch;
165       for (int i = 0; i < str.length(); i++) {
166         switch (str.charAt(i))
167         {
168            case 0 :
169               continue;
170            case '\b':
171               retval.append("\\b");
172               continue;
173            case '\t':
174               retval.append("\\t");
175               continue;
176            case '\n':
177               retval.append("\\n");
178               continue;
179            case '\f':
180               retval.append("\\f");
181               continue;
182            case '\r':
183               retval.append("\\r");
184               continue;
185            case '\"':
186               retval.append("\\\"");
187               continue;
188            case '\'':
189               retval.append("\\\'");
190               continue;
191            case '\\':
192               retval.append("\\\\");
193               continue;
194            default:
195               if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) {
196                  String JavaDoc s = "0000" + Integer.toString(ch, 16);
197                  retval.append("\\u" + 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 }
208
Popular Tags