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 / DeleteTraceSupplementaryFilesHandler.java
1 /*******************************************************************************
2 * Copyright (c) 2009, 2010, 2011 Ericsson
3 *
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
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.internal.tmf.ui.project.handlers;
14
15 import org.eclipse.core.commands.AbstractHandler;
16 import org.eclipse.core.commands.ExecutionEvent;
17 import org.eclipse.core.commands.ExecutionException;
18 import org.eclipse.core.resources.IResource;
19 import org.eclipse.core.runtime.CoreException;
20 import org.eclipse.jface.viewers.ISelection;
21 import org.eclipse.jface.viewers.ISelectionProvider;
22 import org.eclipse.jface.viewers.TreeSelection;
23 import org.eclipse.jface.window.Window;
24 import org.eclipse.linuxtools.internal.tmf.ui.Activator;
25 import org.eclipse.linuxtools.internal.tmf.ui.project.dialogs.SelectSupplementaryResourcesDialog;
26 import org.eclipse.linuxtools.tmf.ui.project.model.TmfTraceElement;
27 import org.eclipse.ui.IWorkbenchPage;
28 import org.eclipse.ui.IWorkbenchPart;
29 import org.eclipse.ui.IWorkbenchWindow;
30 import org.eclipse.ui.PlatformUI;
31
32 /**
33 * <b><u>DeleteTraceSupplementaryFilesHandler</u></b>
34 * <p>
35 * TODO: Implement me. Please.
36 */
37 public class DeleteTraceSupplementaryFilesHandler extends AbstractHandler {
38
39 // ------------------------------------------------------------------------
40 // Execution
41 // ------------------------------------------------------------------------
42
43 @Override
44 public Object execute(ExecutionEvent event) throws ExecutionException {
45
46 // Check if we are closing down
47 IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
48 if (window == null)
49 return null;
50
51 // Get the selection
52 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
53 IWorkbenchPart part = page.getActivePart();
54 ISelectionProvider selectionProvider = part.getSite().getSelectionProvider();
55 if (selectionProvider == null) {
56 return false;
57 }
58
59 ISelection selection = selectionProvider.getSelection();
60
61 // Make sure there is only selection and that it is an experiment
62 if (selection instanceof TreeSelection) {
63 TreeSelection sel = (TreeSelection) selection;
64 // There should be only one item selected as per the plugin.xml
65 Object element = sel.getFirstElement();
66 if (element instanceof TmfTraceElement) {
67 TmfTraceElement trace = (TmfTraceElement) element;
68 // If trace is under an experiment, use the original trace from the traces folder
69 trace = trace.getElementUnderTraceFolder();
70
71 // Delete the selected resources
72 IResource[] resources = trace.getSupplementaryResources();
73
74 SelectSupplementaryResourcesDialog dialog = new SelectSupplementaryResourcesDialog(window.getShell(), resources);
75 if (dialog.open() != Window.OK) {
76 return null;
77 }
78
79 trace.deleteSupplementaryResources(dialog.getResources());
80
81 // Refresh project
82 IResource resource = trace.getProject().getResource();
83
84 if (resource != null) {
85 try {
86 if (resource != null) {
87 resource.refreshLocal(IResource.DEPTH_INFINITE, null);
88 }
89 } catch (CoreException e) {
90 Activator.getDefault().logError("Error refreshing resource " + resource, e); //$NON-NLS-1$
91 }
92 }
93 }
94 }
95
96 return null;
97 }
98
99 }
This page took 0.033316 seconds and 5 git commands to generate.