tmf: Simple warning fixes in tmf.core and tests
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / project / handlers / OpenTraceHandler.java
CommitLineData
12c155f5
FC
1/*******************************************************************************
2 * Copyright (c) 2009, 2010, 2011 Ericsson
ce2388e0 3 *
12c155f5
FC
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
ce2388e0 8 *
12c155f5
FC
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
d34665f9 13package org.eclipse.linuxtools.internal.tmf.ui.project.handlers;
12c155f5 14
828e5592 15import java.io.ByteArrayInputStream;
828e5592 16import java.io.InputStream;
12c155f5
FC
17
18import org.eclipse.core.commands.AbstractHandler;
19import org.eclipse.core.commands.ExecutionEvent;
20import org.eclipse.core.commands.ExecutionException;
4ba871ae 21import org.eclipse.core.resources.IFile;
828e5592 22import org.eclipse.core.resources.IFolder;
12c155f5 23import org.eclipse.core.resources.IResource;
828e5592 24import org.eclipse.core.runtime.CoreException;
12c155f5 25import org.eclipse.jface.viewers.ISelection;
1595249b 26import org.eclipse.jface.viewers.ISelectionProvider;
12c155f5 27import org.eclipse.jface.viewers.TreeSelection;
8fd82db5 28import org.eclipse.linuxtools.internal.tmf.ui.Activator;
e12ecd30 29import org.eclipse.linuxtools.tmf.core.TmfCommonConstants;
ce2388e0 30import org.eclipse.linuxtools.tmf.core.event.ITmfEvent;
b4f71e4a 31import org.eclipse.linuxtools.tmf.core.exceptions.TmfTraceException;
09d11238
PT
32import org.eclipse.linuxtools.tmf.core.signal.TmfExperimentSelectedSignal;
33import org.eclipse.linuxtools.tmf.core.signal.TmfSignalManager;
6c13869b 34import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
9e0640dc 35import org.eclipse.linuxtools.tmf.core.trace.TmfExperiment;
828e5592 36import org.eclipse.linuxtools.tmf.core.trace.TmfTrace;
09d11238 37import org.eclipse.linuxtools.tmf.ui.editors.EventsViewEditor;
12c155f5
FC
38import org.eclipse.linuxtools.tmf.ui.editors.TmfEditorInput;
39import org.eclipse.linuxtools.tmf.ui.project.model.TmfTraceElement;
40import org.eclipse.swt.widgets.MessageBox;
41import org.eclipse.ui.IEditorInput;
42import org.eclipse.ui.IEditorPart;
43import org.eclipse.ui.IReusableEditor;
44import org.eclipse.ui.IWorkbench;
45import org.eclipse.ui.IWorkbenchPage;
46import org.eclipse.ui.IWorkbenchPart;
47import org.eclipse.ui.IWorkbenchWindow;
48import org.eclipse.ui.PartInitException;
49import org.eclipse.ui.PlatformUI;
4ba871ae 50import org.eclipse.ui.ide.IDE;
a1091415 51import org.eclipse.ui.part.FileEditorInput;
12c155f5
FC
52
53/**
54 * <b><u>OpenTraceHandler</u></b>
55 * <p>
56 * TODO: Add support for multiple trace selection
57 */
58public class OpenTraceHandler extends AbstractHandler {
59
828e5592
PT
60 private static final String BOOKMARKS_HIDDEN_FILE = ".bookmarks"; //$NON-NLS-1$
61
12c155f5
FC
62 // ------------------------------------------------------------------------
63 // Attributes
64 // ------------------------------------------------------------------------
65
66 private TmfTraceElement fTrace = null;
67
68 // ------------------------------------------------------------------------
69 // Validation
70 // ------------------------------------------------------------------------
71
72 @Override
73 public boolean isEnabled() {
74
75 // Check if we are closing down
25e48683
FC
76 final IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
77 if (window == null)
12c155f5
FC
78 return false;
79
80 // Get the selection
25e48683
FC
81 final IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
82 final IWorkbenchPart part = page.getActivePart();
83 final ISelectionProvider selectionProvider = part.getSite().getSelectionProvider();
84 if (selectionProvider == null)
1595249b 85 return false;
25e48683 86 final ISelection selection = selectionProvider.getSelection();
12c155f5
FC
87
88 // Make sure there is only one selection and that it is a trace
89 fTrace = null;
90 if (selection instanceof TreeSelection) {
25e48683 91 final TreeSelection sel = (TreeSelection) selection;
12c155f5 92 // There should be only one item selected as per the plugin.xml
25e48683
FC
93 final Object element = sel.getFirstElement();
94 if (element instanceof TmfTraceElement)
12c155f5 95 fTrace = (TmfTraceElement) element;
12c155f5
FC
96 }
97
98 // We only enable opening from the Traces folder for now
99 return (fTrace != null);
100 }
101
102 // ------------------------------------------------------------------------
103 // Execution
104 // ------------------------------------------------------------------------
105
106 @Override
107 @SuppressWarnings({ "rawtypes", "unchecked" })
25e48683 108 public Object execute(final ExecutionEvent event) throws ExecutionException {
12c155f5
FC
109
110 // Check if we are closing down
25e48683
FC
111 final IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
112 if (window == null)
12c155f5
FC
113 return null;
114
115 // Check that the trace is valid
25e48683 116 if (fTrace == null)
12c155f5 117 return null;
12c155f5 118
828e5592 119 // If trace is under an experiment, use the original trace from the traces folder
e12ecd30 120 fTrace = fTrace.getElementUnderTraceFolder();
828e5592 121
25e48683
FC
122 final ITmfTrace trace = fTrace.instantiateTrace();
123 final ITmfEvent traceEvent = fTrace.instantiateEvent();
ce2388e0 124 if ((trace == null) || (traceEvent == null)) {
12c155f5
FC
125 displayErrorMsg(Messages.OpenTraceHandler_NoTraceType);
126 return null;
127 }
128
129 // Get the editor_id from the extension point
25e48683
FC
130 final String editorId = fTrace.getEditorId();
131 final boolean usesEditor = (editorId != null) && (editorId.length() > 0);
12c155f5
FC
132
133 try {
25e48683 134 trace.initTrace(fTrace.getResource(), fTrace.getLocation().getPath(), traceEvent.getClass());
b4f71e4a 135 } catch (final TmfTraceException e) {
e12ecd30 136 displayErrorMsg(Messages.OpenTraceHandler_NoTrace + "\n\n" + e); //$NON-NLS-1$
12c155f5
FC
137 return null;
138 }
139
25e48683 140 final IResource resource = fTrace.getResource();
09d11238 141 IFile file = null;
25e48683 142 if (resource instanceof IFile)
09d11238 143 file = (IFile) resource;
25e48683 144 else if (resource instanceof IFolder)
09d11238 145 try {
25e48683 146 final IFile bookmarksFile = fTrace.getProject().getTracesFolder().getResource().getFile(BOOKMARKS_HIDDEN_FILE);
09d11238 147 if (!bookmarksFile.exists()) {
25e48683 148 final InputStream source = new ByteArrayInputStream(new byte[0]);
09d11238
PT
149 bookmarksFile.create(source, true, null);
150 }
151 bookmarksFile.setHidden(true);
152
25e48683 153 final IFolder folder = (IFolder) resource;
09d11238 154 file = folder.getFile(fTrace.getName() + '_');
25e48683 155 if (!file.exists())
09d11238 156 file.createLink(bookmarksFile.getLocation(), IResource.REPLACE, null);
09d11238 157 file.setHidden(true);
25e48683 158 if (usesEditor)
e12ecd30 159 file.setPersistentProperty(TmfCommonConstants.TRACETYPE, fTrace.getTraceType());
25e48683 160 else
e12ecd30 161 file.setPersistentProperty(TmfCommonConstants.TRACETYPE, TmfTrace.class.getCanonicalName());
25e48683 162 } catch (final CoreException e) {
8fd82db5 163 Activator.getDefault().logError("Error opening trace " + fTrace.getName(), e); //$NON-NLS-1$
09d11238 164 }
09d11238 165
25e48683 166 if (usesEditor)
12c155f5 167 try {
25e48683
FC
168 final IEditorInput editorInput = new TmfEditorInput(file, trace);
169 final IWorkbench wb = PlatformUI.getWorkbench();
170 final IWorkbenchPage activePage = wb.getActiveWorkbenchWindow().getActivePage();
12c155f5 171
25e48683 172 final IEditorPart editor = activePage.findEditor(new FileEditorInput(file));
ce2388e0 173 if ((editor != null) && (editor instanceof IReusableEditor)) {
12c155f5
FC
174 activePage.reuseEditor((IReusableEditor) editor, editorInput);
175 activePage.activate(editor);
176 } else {
5a5c2fc7 177 activePage.openEditor(editorInput, editorId);
25e48683 178 if (resource instanceof IFile)
4ba871ae 179 IDE.setDefaultEditor((IFile) resource, editorId);
12c155f5 180 }
25e48683 181 } catch (final PartInitException e) {
8fd82db5 182 Activator.getDefault().logError("Error opening trace " + fTrace.getName(), e); //$NON-NLS-1$
12c155f5 183 }
25e48683 184 else {
09d11238 185 // Create the experiment
25e48683 186 final ITmfTrace[] traces = new ITmfTrace[] { trace };
20658947 187 final TmfExperiment experiment = new TmfExperiment(traceEvent.getClass(), fTrace.getName(), traces, trace.getCacheSize());
a1091415 188 experiment.setBookmarksFile(file);
ce2388e0 189
09d11238
PT
190 TmfExperiment.setCurrentExperiment(experiment);
191 TmfSignalManager.dispatchSignal(new TmfExperimentSelectedSignal(this, experiment));
192 IDE.setDefaultEditor(file, EventsViewEditor.ID);
12c155f5
FC
193 }
194 return null;
195 }
196
25e48683
FC
197 private void displayErrorMsg(final String errorMsg) {
198 final MessageBox mb = new MessageBox(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell());
12c155f5
FC
199 mb.setText(Messages.OpenTraceHandler_Title);
200 mb.setMessage(errorMsg);
201 mb.open();
202 }
203
204}
This page took 0.04851 seconds and 5 git commands to generate.