~mrooney/etherpad/ubuntu

« back to all changes in this revision

Viewing changes to trunk/trunk/infrastructure/rhino1_7R1/src/org/mozilla/javascript/DefaultErrorReporter.java

  • Committer: Aaron Iba
  • Date: 2009-12-18 07:40:23 UTC
  • Revision ID: hg-v1:a9f8774a2e00cc15b35857471fecea17f649e3c9
initial code push

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 
2
 *
 
3
 * ***** BEGIN LICENSE BLOCK *****
 
4
 * Version: MPL 1.1/GPL 2.0
 
5
 *
 
6
 * The contents of this file are subject to the Mozilla Public License Version
 
7
 * 1.1 (the "License"); you may not use this file except in compliance with
 
8
 * the License. You may obtain a copy of the License at
 
9
 * http://www.mozilla.org/MPL/
 
10
 *
 
11
 * Software distributed under the License is distributed on an "AS IS" basis,
 
12
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
13
 * for the specific language governing rights and limitations under the
 
14
 * License.
 
15
 *
 
16
 * The Original Code is Rhino code, released
 
17
 * May 6, 1999.
 
18
 *
 
19
 * The Initial Developer of the Original Code is
 
20
 * Netscape Communications Corporation.
 
21
 * Portions created by the Initial Developer are Copyright (C) 1997-1999
 
22
 * the Initial Developer. All Rights Reserved.
 
23
 *
 
24
 * Contributor(s):
 
25
 *   Norris Boyd
 
26
 *
 
27
 * Alternatively, the contents of this file may be used under the terms of
 
28
 * the GNU General Public License Version 2 or later (the "GPL"), in which
 
29
 * case the provisions of the GPL are applicable instead of those above. If
 
30
 * you wish to allow use of your version of this file only under the terms of
 
31
 * the GPL and not to allow others to use your version of this file under the
 
32
 * MPL, indicate your decision by deleting the provisions above and replacing
 
33
 * them with the notice and other provisions required by the GPL. If you do
 
34
 * not delete the provisions above, a recipient may use your version of this
 
35
 * file under either the MPL or the GPL.
 
36
 *
 
37
 * ***** END LICENSE BLOCK ***** */
 
38
 
 
39
package org.mozilla.javascript;
 
40
 
 
41
/**
 
42
 * This is the default error reporter for JavaScript.
 
43
 *
 
44
 * @author Norris Boyd
 
45
 */
 
46
class DefaultErrorReporter implements ErrorReporter
 
47
{
 
48
    static final DefaultErrorReporter instance = new DefaultErrorReporter();
 
49
 
 
50
    private boolean forEval;
 
51
    private ErrorReporter chainedReporter;
 
52
 
 
53
    private DefaultErrorReporter() { }
 
54
 
 
55
    static ErrorReporter forEval(ErrorReporter reporter)
 
56
    {
 
57
        DefaultErrorReporter r = new DefaultErrorReporter();
 
58
        r.forEval = true;
 
59
        r.chainedReporter = reporter;
 
60
        return r;
 
61
    }
 
62
 
 
63
    public void warning(String message, String sourceURI, int line,
 
64
                        String lineText, int lineOffset)
 
65
    {
 
66
        if (chainedReporter != null) {
 
67
            chainedReporter.warning(
 
68
                message, sourceURI, line, lineText, lineOffset);
 
69
        } else {
 
70
            // Do nothing
 
71
        }
 
72
    }
 
73
 
 
74
    public void error(String message, String sourceURI, int line,
 
75
                      String lineText, int lineOffset)
 
76
    {
 
77
        if (forEval) {
 
78
            // Assume error message strings that start with "TypeError: "
 
79
            // should become TypeError exceptions. A bit of a hack, but we
 
80
            // don't want to change the ErrorReporter interface.
 
81
            String error = "SyntaxError";
 
82
            final String TYPE_ERROR_NAME = "TypeError";
 
83
            final String DELIMETER = ": ";
 
84
            final String prefix = TYPE_ERROR_NAME + DELIMETER;
 
85
            if (message.startsWith(prefix)) {
 
86
                error = TYPE_ERROR_NAME;
 
87
                message = message.substring(prefix.length());
 
88
            }
 
89
            throw ScriptRuntime.constructError(error, message, sourceURI, 
 
90
                                               line, lineText, lineOffset);
 
91
        }
 
92
        if (chainedReporter != null) {
 
93
            chainedReporter.error(
 
94
                message, sourceURI, line, lineText, lineOffset);
 
95
        } else {
 
96
            throw runtimeError(
 
97
                message, sourceURI, line, lineText, lineOffset);
 
98
        }
 
99
    }
 
100
 
 
101
    public EvaluatorException runtimeError(String message, String sourceURI,
 
102
                                           int line, String lineText,
 
103
                                           int lineOffset)
 
104
    {
 
105
        if (chainedReporter != null) {
 
106
            return chainedReporter.runtimeError(
 
107
                message, sourceURI, line, lineText, lineOffset);
 
108
        } else {
 
109
            return new EvaluatorException(
 
110
                message, sourceURI, line, lineText, lineOffset);
 
111
        }
 
112
    }
 
113
}