Internalize some classes and fix a pile of warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / project / handlers / DeleteTraceHandler.java
CommitLineData
12c155f5
FC
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
d34665f9 13package org.eclipse.linuxtools.internal.tmf.ui.project.handlers;
12c155f5
FC
14
15import java.io.IOException;
16import java.util.Iterator;
17import java.util.LinkedList;
18import java.util.List;
19
20import org.eclipse.core.commands.AbstractHandler;
21import org.eclipse.core.commands.ExecutionEvent;
22import org.eclipse.core.commands.ExecutionException;
23import org.eclipse.core.resources.IResource;
24import org.eclipse.core.runtime.CoreException;
25import org.eclipse.core.runtime.IPath;
26import org.eclipse.core.runtime.NullProgressMonitor;
27import org.eclipse.jface.viewers.ISelection;
1595249b 28import org.eclipse.jface.viewers.ISelectionProvider;
12c155f5 29import org.eclipse.jface.viewers.TreeSelection;
8fd82db5 30import org.eclipse.linuxtools.internal.tmf.ui.Activator;
12c155f5
FC
31import org.eclipse.linuxtools.tmf.ui.project.model.ITmfProjectModelElement;
32import org.eclipse.linuxtools.tmf.ui.project.model.TmfExperimentFolder;
33import org.eclipse.linuxtools.tmf.ui.project.model.TmfTraceElement;
34import org.eclipse.linuxtools.tmf.ui.project.model.TmfTraceFolder;
35import org.eclipse.swt.SWT;
36import org.eclipse.swt.widgets.MessageBox;
37import org.eclipse.swt.widgets.Shell;
38import org.eclipse.ui.IWorkbenchPage;
39import org.eclipse.ui.IWorkbenchPart;
40import org.eclipse.ui.IWorkbenchWindow;
41import org.eclipse.ui.PlatformUI;
42
43/**
44 * <b><u>DeleteTraceHandler</u></b>
45 * <p>
46 */
47public class DeleteTraceHandler extends AbstractHandler {
48
49 private TreeSelection fSelection = null;
50
51 // ------------------------------------------------------------------------
52 // Validation
53 // ------------------------------------------------------------------------
54
55 @Override
56 public boolean isEnabled() {
57
58 // Check if we are closing down
59 IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
60 if (window == null)
61 return false;
62
63 // Get the selection
64 IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
65 IWorkbenchPart part = page.getActivePart();
1595249b
FC
66 ISelectionProvider selectionProvider = part.getSite().getSelectionProvider();
67 if (selectionProvider == null)
68 return false;
69 ISelection selection = selectionProvider.getSelection();
12c155f5
FC
70
71 // Make sure selection contains only traces
72 fSelection = null;
73 if (selection instanceof TreeSelection) {
74 fSelection = (TreeSelection) selection;
75 @SuppressWarnings("unchecked")
76 Iterator<Object> iterator = fSelection.iterator();
77 while (iterator.hasNext()) {
78 Object element = iterator.next();
79 if (!(element instanceof TmfTraceElement)) {
80 return false;
81 }
82 }
83 }
84
85 // If we get here, either nothing is selected or everything is a trace
86 return !selection.isEmpty();
87 }
88
89 // ------------------------------------------------------------------------
90 // Execution
91 // ------------------------------------------------------------------------
92
93 @Override
94 public Object execute(ExecutionEvent event) throws ExecutionException {
95
96 // Check if we are closing down
97 IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
98 if (window == null)
99 return null;
100
101 // Confirm the operation
102 Shell shell = window.getShell();
103 MessageBox confirmOperation = new MessageBox(shell, SWT.ICON_QUESTION | SWT.CANCEL | SWT.OK);
104 confirmOperation.setText(Messages.DeleteDialog_Title);
105 confirmOperation.setMessage(Messages.DeleteTraceHandler_Message);
106 if (confirmOperation.open() != SWT.OK)
107 return null;
108
109 @SuppressWarnings("unchecked")
110 Iterator<Object> iterator = fSelection.iterator();
111 while (iterator.hasNext()) {
112 Object element = iterator.next();
113 if (element instanceof TmfTraceElement) {
114 TmfTraceElement trace = (TmfTraceElement) element;
115 IResource resource = trace.getResource();
116 try {
117 IPath path = resource.getLocation();
118 if (path != null && (trace.getParent() instanceof TmfTraceFolder)) {
119 String location = path.toFile().getCanonicalPath();
120 TmfExperimentFolder experimentFolder = trace.getProject().getExperimentsFolder();
121
122 // Propagate the removal to traces
123 for (ITmfProjectModelElement experiment : experimentFolder.getChildren()) {
124 List<ITmfProjectModelElement> toRemove = new LinkedList<ITmfProjectModelElement>();
125 for (ITmfProjectModelElement child : experiment.getChildren()) {
126 if (child.getResource().getLocation().toString().equals(location)) {
127 toRemove.add(child);
128 }
129 }
130 for (ITmfProjectModelElement child : toRemove) {
131 experiment.removeChild(child);
132 child.getResource().delete(true, null);
133 }
134 }
135 }
136
137 // Finally, delete the trace
138 resource.delete(true, new NullProgressMonitor());
5e4bf87d
BH
139
140 // Delete supplementary files
e12ecd30 141 trace.deleteSupplementaryFolder();
5e4bf87d
BH
142
143 // Refresh the project
12c155f5
FC
144 trace.getProject().refresh();
145
9fa32496 146 } catch (IOException e) {
8fd82db5 147 Activator.getDefault().logError("Error deleting trace: " + trace.getName(), e); //$NON-NLS-1$
12c155f5 148 } catch (CoreException e) {
8fd82db5 149 Activator.getDefault().logError("Error deleting trace: " + trace.getName(), e); //$NON-NLS-1$
12c155f5
FC
150 }
151 }
152 }
153
154 return null;
155 }
156}
This page took 0.035693 seconds and 5 git commands to generate.