Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4159fcea412d4181cb5f3312aa88cfc64e753b29 (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
60
61
62
63
64
65
/*******************************************************************************
 * Copyright (c) 2007 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 com.windriver.debug.tcf.ui.adapters;

import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.debug.core.commands.ITerminateHandler;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IElementContentProvider;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IElementLabelProvider;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IModelProxyFactory;

import com.windriver.debug.tcf.core.model.TCFLaunch;
import com.windriver.debug.tcf.ui.TCFUI;
import com.windriver.debug.tcf.ui.model.TCFModel;
import com.windriver.tcf.api.protocol.Protocol;

public class TCFLaunchAdapterFactory implements IAdapterFactory {

    @SuppressWarnings("unchecked")
    private final Class[] adapter_list = {
        IElementContentProvider.class,
        IElementLabelProvider.class,
        IModelProxyFactory.class,
        ITerminateHandler.class
    };

    @SuppressWarnings("unchecked")
    public Object getAdapter(final Object from, final Class to) {
        if (from instanceof TCFLaunch) {
            final Object[] res = new Object[1];
            Protocol.invokeAndWait(new Runnable() {
                public void run() {
                    TCFLaunch launch = (TCFLaunch)from;
                    TCFModel model = TCFUI.getModelManager().getModel(launch);
                    if (model != null) {
                        if (to.isInstance(model)) {
                            res[0] = model;
                            return;
                        }
                        Object cmd = model.getCommand(to);
                        if (cmd != null) {
                            res[0] = cmd;
                            return;
                        }
                    }
                }
            });
            if (res[0] != null) return res[0];
        }
        System.err.println(from.getClass().getName() + " -> " + to);
        return null;
    }

    @SuppressWarnings("unchecked")
    public Class[] getAdapterList() {
        return adapter_list;
    }
}

Back to the top