Package org.jclouds.virtualbox.functions.admin

Source Code of org.jclouds.virtualbox.functions.admin.UnregisterMachineIfExistsAndDeleteItsMedia$DeleteChildrenOfMedium

/*
* 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 org.jclouds.virtualbox.functions.admin;

import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.collect.Iterables.filter;
import static com.google.common.collect.Iterables.transform;

import java.util.List;

import javax.annotation.Resource;
import javax.inject.Named;
import javax.inject.Singleton;

import org.jclouds.compute.reference.ComputeServiceConstants;
import org.jclouds.logging.Logger;
import org.jclouds.virtualbox.domain.ErrorCode;
import org.jclouds.virtualbox.domain.StorageController;
import org.jclouds.virtualbox.domain.VmSpec;
import org.virtualbox_4_2.DeviceType;
import org.virtualbox_4_2.IMachine;
import org.virtualbox_4_2.IMedium;
import org.virtualbox_4_2.IProgress;
import org.virtualbox_4_2.VBoxException;

import com.google.common.base.Function;
import com.google.common.base.Predicate;
import com.google.common.base.Throwables;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;

@Singleton
public class UnregisterMachineIfExistsAndDeleteItsMedia implements Function<IMachine, Void> {

   @Resource
   @Named(ComputeServiceConstants.COMPUTE_LOGGER)
   protected Logger logger = Logger.NULL;

   private final VmSpec vmSpec;

   public UnregisterMachineIfExistsAndDeleteItsMedia(VmSpec vmSpec) {
      this.vmSpec = vmSpec;
   }

   @Override
   public Void apply(IMachine machine) {
      List<IMedium> mediaToBeDeleted = ImmutableList.of();
      try {
         mediaToBeDeleted = machine.unregister(vmSpec.getCleanupMode());
      } catch (VBoxException e) {
         ErrorCode errorCode = ErrorCode.valueOf(e);
         switch (errorCode) {
            case VBOX_E_OBJECT_NOT_FOUND:
               logger.debug("Machine %s does not exists, cannot unregister", vmSpec.getVmName());
               break;
            default:
               throw e;
         }
      }

      List<IMedium> filteredMediaToBeDeleted = Lists.newArrayList(transform(
               filter(mediaToBeDeleted, new AutoDeleteHardDiskPredicate(vmSpec)), new DeleteChildrenOfMedium()));

      if (!filteredMediaToBeDeleted.isEmpty()) {
         try {
            IProgress deletion = machine.delete(filteredMediaToBeDeleted);
            deletion.waitForCompletion(-1);
         } catch (Exception e) {
            logger.error(e, "Problem in deleting the media attached to %s", machine.getName());
            Throwables.propagate(e);
         }
      }

      return null;
   }

   private static class AutoDeleteHardDiskPredicate implements Predicate<IMedium> {

      private VmSpec vmSpec;

      public AutoDeleteHardDiskPredicate(VmSpec vmSpec) {
         this.vmSpec = vmSpec;
      }

      @Override
      public boolean apply(IMedium medium) {
         for (StorageController controller : vmSpec.getControllers()) {
            if (controller.getHardDisk(medium.getName()).isAutoDelete())
               return true;
         }
         return false;
      }

   };

   private static class DeleteChildrenOfMedium implements Function<IMedium, IMedium> {
      @Override
      public IMedium apply(IMedium medium) {
         checkNotNull(medium.getChildren());
         if (medium.getDeviceType().equals(DeviceType.HardDisk)) {
            for (IMedium child : medium.getChildren()) {
               IProgress deletion = child.deleteStorage();
               deletion.waitForCompletion(-1);
            }
         }
         return medium;
      }

   };

}
TOP

Related Classes of org.jclouds.virtualbox.functions.admin.UnregisterMachineIfExistsAndDeleteItsMedia$DeleteChildrenOfMedium

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.