~vil/pydev/upstream

« back to all changes in this revision

Viewing changes to org.python.pydev.parser/src/org/python/pydev/parser/jython/ParseException.java

  • Committer: Vladimír Lapáček
  • Date: 2006-08-30 18:38:44 UTC
  • Revision ID: vladimir.lapacek@gmail.com-20060830183844-f4d82c1239a7770a
Initial import of upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Generated By:JavaCC: Do not edit this line. ParseException.java Version 0.7pre6 */
 
2
package org.python.pydev.parser.jython;
 
3
 
 
4
/**
 
5
 * This exception is thrown when parse errors are encountered.
 
6
 * You can explicitly create objects of this exception type by
 
7
 * calling the method generateParseException in the generated
 
8
 * parser.
 
9
 *
 
10
 * You can modify this class to customize your error reporting
 
11
 * mechanisms so long as you retain the public fields.
 
12
 */
 
13
public class ParseException extends Exception {
 
14
 
 
15
  /**
 
16
   * This constructor is used by the method "generateParseException"
 
17
   * in the generated parser.  Calling this constructor generates
 
18
   * a new object of this type with the fields "currentToken",
 
19
   * "expectedTokenSequences", and "tokenImage" set.  The boolean
 
20
   * flag "specialConstructor" is also set to true to indicate that
 
21
   * this constructor was used to create this object.
 
22
   * This constructor calls its super class with the empty string
 
23
   * to force the "toString" method of parent class "Throwable" to
 
24
   * print the error message in the form:
 
25
   *     ParseException: <result of getMessage>
 
26
   */
 
27
  public ParseException(Token currentTokenVal,
 
28
                        int[][] expectedTokenSequencesVal,
 
29
                        String[] tokenImageVal
 
30
                       )
 
31
  {
 
32
    super("");
 
33
    specialConstructor = true;
 
34
    currentToken = currentTokenVal;
 
35
    expectedTokenSequences = expectedTokenSequencesVal;
 
36
    tokenImage = tokenImageVal;
 
37
  }
 
38
 
 
39
  /**
 
40
   * The following constructors are for use by you for whatever
 
41
   * purpose you can think of.  Constructing the exception in this
 
42
   * manner makes the exception behave in the normal way - i.e., as
 
43
   * documented in the class "Throwable".  The fields "errorToken",
 
44
   * "expectedTokenSequences", and "tokenImage" do not contain
 
45
   * relevant information.  The JavaCC generated code does not use
 
46
   * these constructors.
 
47
   */
 
48
 
 
49
  public ParseException() {
 
50
    super();
 
51
    specialConstructor = false;
 
52
  }
 
53
 
 
54
  public ParseException(String message) {
 
55
    super(message);
 
56
    specialConstructor = false;
 
57
  }
 
58
 
 
59
  public ParseException(String message, SimpleNode node) {
 
60
      this(message, node.beginLine, node.beginColumn);
 
61
  }
 
62
  
 
63
  public ParseException(String message, Token t) {
 
64
      this(message, t.beginLine, t.beginColumn);
 
65
  }
 
66
  
 
67
  public ParseException(String message, int beginLine, int beginColumn) {
 
68
    super(message);
 
69
    // If a node is passed in, provide just enough info to get current line/column out
 
70
    Token t = new Token();
 
71
    t.beginLine = beginLine;
 
72
    t.beginColumn = beginColumn;
 
73
    
 
74
    currentToken = new Token();
 
75
    currentToken.next = t;
 
76
    t = currentToken;
 
77
    t.beginLine = beginLine;
 
78
    t.beginColumn = beginColumn;
 
79
    
 
80
    specialConstructor = false;
 
81
  }
 
82
 
 
83
  /**
 
84
   * This variable determines which constructor was used to create
 
85
   * this object and thereby affects the semantics of the
 
86
   * "getMessage" method (see below).
 
87
   */
 
88
  protected boolean specialConstructor;
 
89
 
 
90
  /**
 
91
   * This is the last token that has been consumed successfully.  If
 
92
   * this object has been created due to a parse error, the token
 
93
   * followng this token will (therefore) be the first error token.
 
94
   */
 
95
  public Token currentToken;
 
96
 
 
97
  /**
 
98
   * Each entry in this array is an array of integers.  Each array
 
99
   * of integers represents a sequence of tokens (by their ordinal
 
100
   * values) that is expected at this point of the parse.
 
101
   */
 
102
  public int[][] expectedTokenSequences;
 
103
 
 
104
  /**
 
105
   * This is a reference to the "tokenImage" array of the generated
 
106
   * parser within which the parse error occurred.  This array is
 
107
   * defined in the generated ...Constants interface.
 
108
   */
 
109
  public String[] tokenImage;
 
110
 
 
111
  /**
 
112
   * This method has the standard behavior when this object has been
 
113
   * created using the standard constructors.  Otherwise, it uses
 
114
   * "currentToken" and "expectedTokenSequences" to generate a parse
 
115
   * error message and returns it.  If this object has been created
 
116
   * due to a parse error, and you do not catch it (it gets thrown
 
117
   * from the parser), then this method is called during the printing
 
118
   * of the final stack trace, and hence the correct error message
 
119
   * gets displayed.
 
120
   */
 
121
   public static boolean verboseExceptions = false;
 
122
  public String getMessage() {
 
123
    if (!specialConstructor) {
 
124
      return super.getMessage();
 
125
    }
 
126
    if (verboseExceptions) {
 
127
        String expected = "";
 
128
        int maxSize = 0;
 
129
        for (int i = 0; i < expectedTokenSequences.length; i++) {
 
130
          if (maxSize < expectedTokenSequences[i].length) {
 
131
            maxSize = expectedTokenSequences[i].length;
 
132
          }
 
133
          for (int j = 0; j < expectedTokenSequences[i].length; j++) {
 
134
            expected += tokenImage[expectedTokenSequences[i][j]] + " ";
 
135
          }
 
136
          if (expectedTokenSequences[i][expectedTokenSequences[i].length - 1] != 0) {
 
137
            expected += "...";
 
138
          }
 
139
          expected += eol + "    ";
 
140
        }
 
141
        String retval = "Encountered \"";
 
142
        Token tok = currentToken.next;
 
143
        for (int i = 0; i < maxSize; i++) {
 
144
          if (i != 0) retval += " ";
 
145
          if (tok.kind == 0) {
 
146
            retval += tokenImage[0];
 
147
            break;
 
148
          }
 
149
          retval += add_escapes(tok.image);
 
150
          tok = tok.next; 
 
151
        }
 
152
        retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn + "." + eol;
 
153
        if (expectedTokenSequences.length == 1) {
 
154
          retval += "Was expecting:" + eol + "    ";
 
155
        } else {
 
156
          retval += "Was expecting one of:" + eol + "    ";
 
157
        }
 
158
        retval += expected;
 
159
        return retval;
 
160
    } else {
 
161
        return "invalid syntax";
 
162
    }
 
163
  }
 
164
 
 
165
  /**
 
166
   * The end of line string for this machine.
 
167
   */
 
168
  protected String eol = System.getProperty("line.separator", "\n");
 
169
 
 
170
  /**
 
171
   * Used to convert raw characters to their escaped version
 
172
   * when these raw version cannot be used as part of an ASCII
 
173
   * string literal.
 
174
   */
 
175
  protected String add_escapes(String str) {
 
176
      StringBuffer retval = new StringBuffer();
 
177
      char ch;
 
178
      for (int i = 0; i < str.length(); i++) {
 
179
        switch (str.charAt(i))
 
180
        {
 
181
           case 0 :
 
182
              continue;
 
183
           case '\b':
 
184
              retval.append("\\b");
 
185
              continue;
 
186
           case '\t':
 
187
              retval.append("\\t");
 
188
              continue;
 
189
           case '\n':
 
190
              retval.append("\\n");
 
191
              continue;
 
192
           case '\f':
 
193
              retval.append("\\f");
 
194
              continue;
 
195
           case '\r':
 
196
              retval.append("\\r");
 
197
              continue;
 
198
           case '\"':
 
199
              retval.append("\\\"");
 
200
              continue;
 
201
           case '\'':
 
202
              retval.append("\\\'");
 
203
              continue;
 
204
           case '\\':
 
205
              retval.append("\\\\");
 
206
              continue;
 
207
           default:
 
208
              if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) {
 
209
                 String s = "0000" + Integer.toString(ch, 16);
 
210
                 retval.append("\\u" + s.substring(s.length() - 4, s.length()));
 
211
              } else {
 
212
                 retval.append(ch);
 
213
              }
 
214
              continue;
 
215
        }
 
216
      }
 
217
      return retval.toString();
 
218
   }
 
219
 
 
220
}