File: CheckedExceptionTunnel.java

package info (click to toggle)
libsis-base-java 18.09~pre1%2Bgit20180928.45fbd31%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,292 kB
  • sloc: java: 9,037; ansic: 813; xml: 160; sh: 139; makefile: 37
file content (285 lines) | stat: -rw-r--r-- 8,995 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*
 * Copyright 2007 - 2018 ETH Zuerich, CISD and SIS.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package ch.systemsx.cisd.base.exceptions;

import java.io.IOException;
import java.io.PrintStream;
import java.io.PrintWriter;

/**
 * An exception for tunneling checked exception through code that doesn't expect it.
 * 
 * @author Bernd Rinn
 */
public class CheckedExceptionTunnel extends RuntimeException
{

    private static final long serialVersionUID = 1L;

    /**
     * Returns an unchecked exception from a <var>checkedException</var>.
     * 
     * @param checkedExceptionOrNull The checked exception to tunnel.
     */
    public CheckedExceptionTunnel(final Exception checkedExceptionOrNull)
    {
        super(checkedExceptionOrNull);

        assert (checkedExceptionOrNull instanceof RuntimeException) == false;
    }
    
    protected CheckedExceptionTunnel(final String msg)
    {
        super(msg);
    }

    protected CheckedExceptionTunnel()
    {
    }

    @Override
    public String getMessage()
    {
        if (getCause() != null && getCause().getMessage() != null)
        {
            return getCause().getMessage();
        }
        return super.getMessage();
    }

    @Override
    public String toString()
    {
        if (getCause() != null)
        {
            return getCause().toString();
        }
        return super.toString();
    }

    @Override
    public void printStackTrace(PrintStream s)
    {
        if (getCause() != null)
        {
            getCause().printStackTrace(s);
        } else
        {
            super.printStackTrace(s);
        }
    }

    @Override
    public void printStackTrace(PrintWriter s)
    {
        if (getCause() != null)
        {
            getCause().printStackTrace(s);
        } else
        {
            super.printStackTrace(s);
        }
    }

    /**
     * Like {@link #printStackTrace()}, but includes the tunnel's stacktrace as well.
     */
    public void printFullStackTrace()
    {
        printFullStackTrace(System.err);
    }

    /**
     * Like {@link #printStackTrace(PrintStream)}, but includes the tunnel's stacktrace as well.
     */
    public void printFullStackTrace(PrintStream s)
    {
        synchronized (s) {
            s.println(super.toString());
            StackTraceElement[] trace = getStackTrace();
            for (int i=0; i < trace.length; i++)
                s.println("\tat " + trace[i]);

            Throwable ourCause = getCause();
            if (ourCause != null)
            {
                printStackTraceAsCause(ourCause, s, trace);
            }
        }
    }

    /**
     * Print our stack trace as a cause for the specified stack trace.
     */
    private static void printStackTraceAsCause(Throwable cause, PrintStream s,
                                        StackTraceElement[] causedTrace)
    {
        final StackTraceElement[] trace = cause.getStackTrace();
        int m = trace.length-1, n = causedTrace.length-1;
        while (m >= 0 && n >=0 && trace[m].equals(causedTrace[n])) {
            m--; n--;
        }
        final int framesInCommon = trace.length - 1 - m;

        s.println("Caused by: " + cause);
        for (int i=0; i <= m; i++)
            s.println("\tat " + trace[i]);
        if (framesInCommon != 0)
            s.println("\t... " + framesInCommon + " more");

        final Throwable ourCauseesCause = cause.getCause();
        if (ourCauseesCause != null)
        {
            printStackTraceAsCause(ourCauseesCause, s, trace);
        }
    }

    /**
     * Like {@link #printStackTrace(PrintWriter)}, but includes the tunnel's stacktrace as well.
     */
    public void printFullStackTrace(PrintWriter s)
    {
        synchronized (s) {
            s.println(super.toString());
            StackTraceElement[] trace = getStackTrace();
            for (int i=0; i < trace.length; i++)
                s.println("\tat " + trace[i]);

            Throwable ourCause = getCause();
            if (ourCause != null)
            {
                printStackTraceAsCause(ourCause, s, trace);
            }
        }
    }

    /**
     * Print our stack trace as a cause for the specified stack trace.
     */
    private static void printStackTraceAsCause(Throwable cause, PrintWriter s,
                                        StackTraceElement[] causedTrace)
    {
        final StackTraceElement[] trace = cause.getStackTrace();
        int m = trace.length-1, n = causedTrace.length-1;
        while (m >= 0 && n >=0 && trace[m].equals(causedTrace[n])) {
            m--; n--;
        }
        final int framesInCommon = trace.length - 1 - m;

        s.println("Caused by: " + cause);
        for (int i=0; i <= m; i++)
            s.println("\tat " + trace[i]);
        if (framesInCommon != 0)
            s.println("\t... " + framesInCommon + " more");

        final Throwable ourCauseesCause = cause.getCause();
        if (ourCauseesCause != null)
        {
            printStackTraceAsCause(ourCauseesCause, s, trace);
        }
    }

    /**
     * Convenience wrapper for {@link #wrapIfNecessary(Exception)}. If <var>throwable</var> is an
     * {@link Error}, this method will not return but the error will be thrown.
     * 
     * @param throwable The exception to represent by the return value.
     * @return A {@link RuntimeException} representing the <var>throwable</var>.
     * @throws Error If <var>throwable</var> is an {@link Error} (except when it is a
     *             {@link ThreadDeath}, which returns a {@link InterruptedExceptionUnchecked}).
     */
    public final static RuntimeException wrapIfNecessary(final Throwable throwable) throws Error
    {
        if (throwable instanceof Error)
        {
            if (throwable instanceof ThreadDeath)
            {
                return new InterruptedExceptionUnchecked();
            } else
            {
                throw (Error) throwable;
            }
        }
        return wrapIfNecessary((Exception) throwable);
    }

    /**
     * Returns a {@link RuntimeException} from an <var>exception</var>. If <var>exception</var> is
     * already a {@link RuntimeException}, itself is returned, otherwise an appropriate unchecked
     * equivalent. If no unchecked equivalent exists, a {@link CheckedExceptionTunnel} is returned
     * with <var>exception</var> as checked exception argument.
     * 
     * @param exception The exception to represent by the return value.
     * @return A {@link RuntimeException} representing the <var>exception</var>.
     */
    public final static RuntimeException wrapIfNecessary(final Exception exception)
    {
        if (exception instanceof RuntimeException)
        {
            return (RuntimeException) exception;
        }
        if (exception instanceof IOException)
        {
            return new IOExceptionUnchecked((IOException) exception);
        }
        if (exception instanceof InterruptedException)
        {
            return new InterruptedExceptionUnchecked((InterruptedException) exception);
        }
        if (exception instanceof java.util.concurrent.TimeoutException)
        {
            return new TimeoutExceptionUnchecked((java.util.concurrent.TimeoutException) exception);
        }
        return new CheckedExceptionTunnel(exception);
    }

    /**
     * Returns the original exception before being wrapped, if the exception has been wrapped, or
     * <var>exception</var> otherwise.
     */
    public final static Exception unwrapIfNecessary(final Exception exception)
    {
        assert exception != null : "Exception not specified.";
        if (exception instanceof CheckedExceptionTunnel)
        {
            // We are sure that the wrapped exception is an 'Exception'.
            final Exception causeOrNull = (Exception) exception.getCause();
            if (causeOrNull != null)
            {
                return causeOrNull;
            }
        }
        return exception;
    }

    /**
     * Returns the original throwable before being wrapped, if the throwable has been wrapped, or
     * <var>exception</var> otherwise.
     */
    public final static Throwable unwrapIfNecessary(final Throwable throwable)
    {
        assert throwable != null : "Exception not specified.";
        if (throwable instanceof Error)
        {
            return throwable;
        } else
        {
            return unwrapIfNecessary((Exception) throwable);
        }
    }

}