blob: 16b511e44499e4556cda7253503a116b6fc6b94c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2018 Red Hat.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat - Initial Contribution
*******************************************************************************/
package org.eclipse.linuxtools.internal.docker.ui.commands;
import java.util.List;
import org.eclipse.linuxtools.docker.core.DockerException;
import org.eclipse.linuxtools.docker.core.IDockerConnection;
import org.eclipse.linuxtools.docker.core.IDockerContainer;
import org.eclipse.linuxtools.internal.docker.ui.views.DVMessages;
/**
* Command handler to kill all the selected {@link IDockerContainer}
*
*/
public class KillContainersCommandHandler extends BaseContainersCommandHandler {
private static final String CONTAINERS_KILL_MSG = "ContainersKill.msg"; //$NON-NLS-1$
private static final String CONTAINER_KILL_MSG = "ContainerKill.msg"; //$NON-NLS-1$
private static final String CONTAINER_KILL_ERROR_MSG = "ContainerKillError.msg"; //$NON-NLS-1$
@Override
void executeInJob(final IDockerContainer container, final IDockerConnection connection) {
try {
connection.killContainer(container.id());
connection.getContainers(true);
} catch (DockerException | InterruptedException e) {
final String errorMessage = DVMessages.getFormattedString(CONTAINER_KILL_ERROR_MSG, container.id());
openError(errorMessage, e);
}
}
@Override
String getJobName(final List<IDockerContainer> selectedContainers) {
return DVMessages.getString(CONTAINERS_KILL_MSG);
}
@Override
String getTaskName(final IDockerContainer container) {
return DVMessages.getFormattedString(CONTAINER_KILL_MSG, container.name());
}
}