/*
* SonarLint for Eclipse
* Copyright (C) 2015-2017 SonarSource SA
* sonarlint@sonarsource.com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonarlint.eclipse.ui.internal.server.actions;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.jface.viewers.ISelectionProvider;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.ISharedImages;
import org.eclipse.ui.IWorkbenchCommandConstants;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.actions.SelectionProviderAction;
import org.sonarlint.eclipse.core.internal.server.IServer;
import org.sonarlint.eclipse.core.resource.ISonarLintProject;
import org.sonarlint.eclipse.ui.internal.Messages;
import org.sonarlint.eclipse.ui.internal.server.DeleteServerDialog;
import org.sonarlint.eclipse.ui.internal.server.UnbindProjectDialog;
public class ServerOrProjectDeleteAction extends SelectionProviderAction {
private List<IServer> selectedServers;
private List<ISonarLintProject> selectedProjects;
private Shell shell;
public ServerOrProjectDeleteAction(Shell shell, ISelectionProvider selectionProvider) {
super(selectionProvider, Messages.actionDelete);
this.shell = shell;
ISharedImages sharedImages = PlatformUI.getWorkbench().getSharedImages();
setImageDescriptor(sharedImages.getImageDescriptor(ISharedImages.IMG_TOOL_DELETE));
setDisabledImageDescriptor(sharedImages.getImageDescriptor(ISharedImages.IMG_TOOL_DELETE_DISABLED));
setActionDefinitionId(IWorkbenchCommandConstants.EDIT_DELETE);
}
@Override
public void selectionChanged(IStructuredSelection sel) {
if (sel.isEmpty()) {
setEnabled(false);
return;
}
selectedServers = new ArrayList<>();
selectedProjects = new ArrayList<>();
Iterator iterator = sel.iterator();
while (iterator.hasNext()) {
Object obj = iterator.next();
if (obj instanceof IServer) {
IServer server = (IServer) obj;
selectedServers.add(server);
} else if (obj instanceof ISonarLintProject) {
ISonarLintProject project = (ISonarLintProject) obj;
selectedProjects.add(project);
} else {
setEnabled(false);
return;
}
}
setEnabled(selectedServers.isEmpty() != selectedProjects.isEmpty());
setText(!selectedServers.isEmpty() ? Messages.actionDelete : Messages.actionUnbind);
}
@Override
public void run() {
// It is possible that the server is created and added to the server view on workbench
// startup. As a result, when the user switches to the server view, the server is
// selected, but the selectionChanged event is not called, which results in servers
// being null. When servers is null the server will not be deleted and the error log
// will have an IllegalArgumentException.
//
// To handle the case where servers is null, the selectionChanged method is called
// to ensure servers will be populated.
if (selectedServers == null || selectedProjects == null) {
IStructuredSelection sel = getStructuredSelection();
if (sel != null) {
selectionChanged(sel);
}
}
if (selectedServers != null && !selectedServers.isEmpty()) {
// No check is made for valid parameters at this point, since if there is a failure, it
// should be output to the error log instead of failing silently.
DeleteServerDialog dsd = new DeleteServerDialog(shell, selectedServers);
dsd.open();
} else if (selectedProjects != null && !selectedProjects.isEmpty()) {
UnbindProjectDialog dsd = new UnbindProjectDialog(shell, selectedProjects);
dsd.open();
}
}
}