Merge branch 'master' into TmfTrace-new
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / project / handlers / DeleteTraceHandler.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 java.io.IOException;
16 import java.util.Iterator;
17 import java.util.LinkedList;
18 import java.util.List;
19
20 import org.eclipse.core.commands.AbstractHandler;
21 import org.eclipse.core.commands.ExecutionEvent;
22 import org.eclipse.core.commands.ExecutionException;
23 import org.eclipse.core.resources.IResource;
24 import org.eclipse.core.runtime.CoreException;
25 import org.eclipse.core.runtime.IPath;
26 import org.eclipse.core.runtime.NullProgressMonitor;
27 import org.eclipse.jface.viewers.ISelection;
28 import org.eclipse.jface.viewers.ISelectionProvider;
29 import org.eclipse.jface.viewers.TreeSelection;
30 import org.eclipse.linuxtools.internal.tmf.ui.TmfUiPlugin;
31 import org.eclipse.linuxtools.tmf.ui.project.model.ITmfProjectModelElement;
32 import org.eclipse.linuxtools.tmf.ui.project.model.TmfExperimentFolder;
33 import org.eclipse.linuxtools.tmf.ui.project.model.TmfTraceElement;
34 import org.eclipse.linuxtools.tmf.ui.project.model.TmfTraceFolder;
35 import org.eclipse.swt.SWT;
36 import org.eclipse.swt.widgets.MessageBox;
37 import org.eclipse.swt.widgets.Shell;
38 import org.eclipse.ui.IWorkbenchPage;
39 import org.eclipse.ui.IWorkbenchPart;
40 import org.eclipse.ui.IWorkbenchWindow;
41 import org.eclipse.ui.PlatformUI;
42
43 /**
44 * <b><u>DeleteTraceHandler</u></b>
45 * <p>
46 */
47 public 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();
66 ISelectionProvider selectionProvider = part.getSite().getSelectionProvider();
67 if (selectionProvider == null)
68 return false;
69 ISelection selection = selectionProvider.getSelection();
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());
139
140 // Delete supplementary files
141 trace.deleteSupplementaryFolder();
142
143 // Refresh the project
144 trace.getProject().refresh();
145
146 } catch (IOException e) {
147 TmfUiPlugin.getDefault().logError("Error deleting trace: " + trace.getName(), e); //$NON-NLS-1$
148 } catch (CoreException e) {
149 TmfUiPlugin.getDefault().logError("Error deleting trace: " + trace.getName(), e); //$NON-NLS-1$
150 }
151 }
152 }
153
154 return null;
155 }
156 }
This page took 0.037332 seconds and 6 git commands to generate.