Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d69a648ad10165af910b7baf22d314474a9cf101 (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
66
67
68
69
70
71
72
73
74
75
76
77
/*******************************************************************************
 * Copyright (c) 2014 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.tcf.internal.cdt.ui.sourcelookup;

import org.eclipse.cdt.debug.internal.core.sourcelookup.CSourceNotFoundElement;
import org.eclipse.cdt.debug.internal.ui.sourcelookup.CSourceNotFoundEditorInput;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.tcf.internal.debug.ui.model.ISourceNotFoundPresentation;
import org.eclipse.tcf.internal.debug.ui.model.TCFModel;
import org.eclipse.ui.IEditorInput;

/**
 * Reuse CDT's source-not-found editor for TCF.
 */
@SuppressWarnings("restriction")
public class TCFSourceNotFoundPresentation implements ISourceNotFoundPresentation {

    final static class TCFCSourceNotFoundElement extends CSourceNotFoundElement {
        private final TCFModel fModel;

        private TCFCSourceNotFoundElement(IAdaptable element, ILaunchConfiguration cfg, String file) {
            super(element, cfg, file);
            fModel = (TCFModel)element.getAdapter(TCFModel.class);
        }

        TCFModel getModel() {
            return fModel;
        }

        @Override
        public String getDescription() {
            return getFile();
        }

        @Override
        public boolean equals(Object other) {
            if (!(other instanceof TCFCSourceNotFoundElement)) return false;
            TCFCSourceNotFoundElement otherElement = (TCFCSourceNotFoundElement) other;
            return getFile().equals(otherElement.getFile()) && getModel() == otherElement.getModel();
        }
    }

    final static class TCFCSourceNotFoundEditorInput extends CSourceNotFoundEditorInput {
        public TCFCSourceNotFoundEditorInput(CSourceNotFoundElement element) {
            super(element);
        }

        @Override
        public boolean equals(Object other) {
            if (!(other instanceof TCFCSourceNotFoundEditorInput)) return false;
            return getArtifact().equals(((TCFCSourceNotFoundEditorInput) other).getArtifact());
        }
    }

    public IEditorInput getEditorInput(Object element, ILaunchConfiguration cfg, String file) {
        if (element instanceof IAdaptable) {
            return new TCFCSourceNotFoundEditorInput(
                    new TCFCSourceNotFoundElement((IAdaptable) element, cfg, file));
        }
        return null;
    }

    public String getEditorId(IEditorInput input, Object element) {
        if (input instanceof CSourceNotFoundEditorInput) {
            return TCFCSourceNotFoundEditor.ID;
        }
        return null;
    }
}

Back to the top