-
Notifications
You must be signed in to change notification settings - Fork 1.2k
xenserver: destroy halted vm on expunge #10833
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package com.cloud.hypervisor.xenserver.resource.wrapper.xenbase; | ||
|
||
import java.util.Iterator; | ||
import java.util.Set; | ||
|
||
import org.apache.log4j.Logger; | ||
|
||
import com.cloud.agent.api.Answer; | ||
import com.cloud.agent.api.CleanupVMCommand; | ||
import com.cloud.hypervisor.xenserver.resource.CitrixResourceBase; | ||
import com.cloud.resource.CommandWrapper; | ||
import com.cloud.resource.ResourceWrapper; | ||
import com.xensource.xenapi.Connection; | ||
import com.xensource.xenapi.Types; | ||
import com.xensource.xenapi.VM; | ||
|
||
@ResourceWrapper(handles = CleanupVMCommand.class) | ||
public class CitrixCleanupVMCommandWrapper extends CommandWrapper<CleanupVMCommand, Answer, CitrixResourceBase> { | ||
|
||
private static final Logger s_logger = Logger.getLogger(CitrixCleanupVMCommandWrapper.class); | ||
|
||
@Override | ||
public Answer execute(final CleanupVMCommand command, final CitrixResourceBase citrixResourceBase) { | ||
Check warning on line 40 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
if (citrixResourceBase.isDestroyHaltedVms()) { | ||
s_logger.debug(String.format("Cleanup VM is not needed for host with version %s", | ||
citrixResourceBase.getHost().getProductVersion())); | ||
return new Answer(command); | ||
Check warning on line 44 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
} | ||
final String vmName = command.getVmName(); | ||
try { | ||
final Connection conn = citrixResourceBase.getConnection(); | ||
final Set<VM> vms = VM.getByNameLabel(conn, vmName); | ||
Check warning on line 49 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
if (vms.isEmpty()) { | ||
return new Answer(command, true, "VM does not exist"); | ||
Check warning on line 51 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
} | ||
// destroy vm which is in HALTED state on this host | ||
final Iterator<VM> iter = vms.iterator(); | ||
Check warning on line 54 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
while (iter.hasNext()) { | ||
final VM vm = iter.next(); | ||
final VM.Record vmr = vm.getRecord(conn); | ||
Check warning on line 57 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
if (!Types.VmPowerState.HALTED.equals(vmr.powerState)) { | ||
final String msg = String.format("VM %s is not in %s state", vmName, Types.VmPowerState.HALTED); | ||
s_logger.error(msg); | ||
return new Answer(command, false, msg); | ||
Check warning on line 61 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
} | ||
if (citrixResourceBase.isRefNull(vmr.residentOn)) { | ||
continue; | ||
Check warning on line 64 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
} | ||
if (vmr.residentOn.getUuid(conn).equals(citrixResourceBase.getHost().getUuid())) { | ||
continue; | ||
Check warning on line 67 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
} | ||
iter.remove(); | ||
} | ||
Check warning on line 70 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
for (final VM vm : vms) { | ||
citrixResourceBase.destroyVm(vm, conn, true); | ||
} | ||
Check warning on line 73 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
|
||
} catch (final Exception e) { | ||
final String msg = String.format("Clean up VM %s fail due to %s", vmName, e); | ||
s_logger.error(msg, e); | ||
return new Answer(command, false, e.getMessage()); | ||
} | ||
return new Answer(command); | ||
} | ||
Check warning on line 81 in plugins/hypervisors/xenserver/src/main/java/com/cloud/hypervisor/xenserver/resource/wrapper/xenbase/CitrixCleanupVMCommandWrapper.java
|
||
} |
Uh oh!
There was an error while loading. Please reload this page.