Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3c5f984f79aa690138f304f73deab4f3c4e33543 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*******************************************************************************
 * Copyright (c) 2015, 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.vagrant.ui.commands;

import java.io.File;
import java.nio.file.Paths;
import java.util.List;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.linuxtools.internal.vagrant.core.Activator;
import org.eclipse.linuxtools.vagrant.core.IVagrantConnection;
import org.eclipse.linuxtools.vagrant.core.IVagrantVM;
import org.eclipse.linuxtools.vagrant.core.VagrantException;
import org.eclipse.linuxtools.vagrant.core.VagrantService;

public class DestroyVMCommandHandler extends BaseVMCommandHandler {

	@Override
	String getJobName(List<IVagrantVM> selectedVMs) {
		return Messages.DestroyVMCommandHandler_removing_title;
	}

	@Override
	String getTaskName(IVagrantVM vm) {
		return Messages.DestroyVMCommandHandler_removing_msg + vm.id();
	}

	@Override
	void executeInJob(IVagrantVM vm, IProgressMonitor monitor) {
		IVagrantConnection connection = VagrantService.getInstance();
		try {
			connection.destroyVM(vm);
			String stateLoc = Activator.getDefault().getStateLocation().toOSString();
			File vagrantDir = Paths.get(stateLoc, vm.name()).toFile();
			CommandUtils.delete(vagrantDir);
		} catch (VagrantException | InterruptedException e) {
			final String errorMessage = Messages.DestroyVMCommandHandler_error + vm.id();
			openError(errorMessage, e);
		} finally {
			// always get images as we sometimes get errors on intermediate
			// images
			// being removed but we will remove some top ones successfully
			connection.getVMs(true);
		}
	}
}

Back to the top