Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4a4bf37e64f71e71ed056e3b052f3cc350f78938 (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tm.internal.tcf.debug.ui.model;

import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.debug.core.DebugException;
import org.eclipse.tm.internal.tcf.debug.ui.Activator;
import org.eclipse.tm.tcf.protocol.IChannel;
import org.eclipse.tm.tcf.protocol.Protocol;
import org.eclipse.tm.tcf.util.TCFTask;

/**
 * An extension of TCFTask class that adds support for throwing DebugException.
 */
public abstract class TCFDebugTask<V> extends TCFTask<V> {

    public TCFDebugTask() {
    }

    public TCFDebugTask(IChannel channel) {
        super(channel);
    }

    public synchronized V getD() throws DebugException {
        assert !Protocol.isDispatchThread();
        while (!isDone()) {
            try {
                wait();
            }
            catch (InterruptedException x) {
                throw new DebugException(new Status(
                        IStatus.ERROR, Activator.PLUGIN_ID, DebugException.REQUEST_FAILED,
                        "Debugger requiest interrupted", x));
            }
        }
        assert isDone();
        Throwable x = getError();
        if (x instanceof DebugException) throw (DebugException)x;
        if (x != null) throw new DebugException(new Status(
                IStatus.ERROR, Activator.PLUGIN_ID, DebugException.REQUEST_FAILED,
                "Debugger requiest failed", x));
        return getResult();
    }

    public void error(String msg) {
        error(new DebugException(new Status(
                IStatus.ERROR, Activator.PLUGIN_ID, DebugException.REQUEST_FAILED,
                msg, null)));
    }
}

Back to the top