Java tutorial
/********************************************************************** * Copyright (c) 2012, 2014 Ericsson * * 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: * Bernd Hufmann - Initial API and implementation **********************************************************************/ package org.eclipse.linuxtools.internal.lttng2.control.ui.views.handlers; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.commands.ExecutionException; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.core.runtime.jobs.Job; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.StructuredSelection; import org.eclipse.linuxtools.internal.lttng2.control.core.model.TraceSessionState; import org.eclipse.linuxtools.internal.lttng2.control.ui.Activator; import org.eclipse.linuxtools.internal.lttng2.control.ui.views.ControlView; import org.eclipse.linuxtools.internal.lttng2.control.ui.views.dialogs.IConfirmDialog; import org.eclipse.linuxtools.internal.lttng2.control.ui.views.dialogs.TraceControlDialogFactory; import org.eclipse.linuxtools.internal.lttng2.control.ui.views.messages.Messages; import org.eclipse.linuxtools.internal.lttng2.control.ui.views.model.impl.TraceSessionComponent; import org.eclipse.linuxtools.internal.lttng2.control.ui.views.model.impl.TraceSessionGroup; import org.eclipse.ui.IWorkbenchPage; import org.eclipse.ui.IWorkbenchWindow; import org.eclipse.ui.PlatformUI; /** * <p> * Command handler implementation to destroy one or more trace sessions. * </p> * * @author Bernd Hufmann */ public class DestroySessionHandler extends BaseControlViewHandler { // ------------------------------------------------------------------------ // Attributes // ------------------------------------------------------------------------ /** * The list of session components the command is to be executed on. */ private final List<TraceSessionComponent> fSessions = new ArrayList<>(); // ------------------------------------------------------------------------ // Operations // ------------------------------------------------------------------------ @Override public Object execute(ExecutionEvent event) throws ExecutionException { IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow(); if (window == null) { return false; } // Get user confirmation IConfirmDialog dialog = TraceControlDialogFactory.getInstance().getConfirmDialog(); if (!dialog.openConfirm(window.getShell(), Messages.TraceControl_DestroyConfirmationTitle, Messages.TraceControl_DestroyConfirmationMessage)) { return null; } Job job = new Job(Messages.TraceControl_DestroySessionJob) { @Override protected IStatus run(IProgressMonitor monitor) { try { // Make a copy of the list of sessions to avoid ConcurrentModificationException when iterating // over fSessions, since fSessions is modified in another thread triggered by the tree viewer refresh // after removing a session. TraceSessionComponent[] sessions = fSessions .toArray(new TraceSessionComponent[fSessions.size()]); for (int i = 0; i < sessions.length; i++) { // Destroy all selected sessions TraceSessionComponent session = sessions[i]; TraceSessionGroup sessionGroup = (TraceSessionGroup) session.getParent(); sessionGroup.destroySession(session, monitor); } } catch (ExecutionException e) { return new Status(IStatus.ERROR, Activator.PLUGIN_ID, Messages.TraceControl_DestroySessionFailure, e); } return Status.OK_STATUS; } }; job.setUser(true); job.schedule(); return null; } @Override public boolean isEnabled() { // Get workbench page for the Control View IWorkbenchPage page = getWorkbenchPage(); if (page == null) { return false; } fSessions.clear(); // Check if one or more session are selected ISelection selection = page.getSelection(ControlView.ID); if (selection instanceof StructuredSelection) { StructuredSelection structered = ((StructuredSelection) selection); for (Iterator<?> iterator = structered.iterator(); iterator.hasNext();) { Object element = iterator.next(); if (element instanceof TraceSessionComponent) { // Add only TraceSessionComponents that are inactive and not destroyed TraceSessionComponent session = (TraceSessionComponent) element; if ((session.getSessionState() == TraceSessionState.INACTIVE) && (!session.isDestroyed())) { fSessions.add((TraceSessionComponent) element); } } } } return !fSessions.isEmpty(); } }