org.dasein.cloud.cloudstack.compute.CSTemplateCapabilities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dasein-cloud-cloudstack Show documentation
Show all versions of dasein-cloud-cloudstack Show documentation
Implements the Dasein Cloud API for Cloud.com Cloudstack-based public and private clouds.
/**
* Copyright (C) 2009-2015 Dell, Inc.
*
* ====================================================================
* Licensed 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.dasein.cloud.cloudstack.compute;
import org.dasein.cloud.AbstractCapabilities;
import org.dasein.cloud.CloudException;
import org.dasein.cloud.InternalException;
import org.dasein.cloud.Requirement;
import org.dasein.cloud.VisibleScope;
import org.dasein.cloud.cloudstack.CSCloud;
import org.dasein.cloud.cloudstack.CSException;
import org.dasein.cloud.cloudstack.CSMethod;
import org.dasein.cloud.cloudstack.Param;
import org.dasein.cloud.compute.ImageCapabilities;
import org.dasein.cloud.compute.ImageClass;
import org.dasein.cloud.compute.MachineImageFormat;
import org.dasein.cloud.compute.MachineImageType;
import org.dasein.cloud.compute.VmState;
import org.dasein.cloud.util.APITrace;
import org.dasein.cloud.util.NamingConstraints;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import java.util.Set;
import java.util.TreeSet;
/**
* Describes the capabilities of Cloudstack with respect to Dasein image operations.
* User: daniellemayne
* Date: 06/03/2014
* Time: 08:31
*/
public class CSTemplateCapabilities extends AbstractCapabilities implements ImageCapabilities{
public CSTemplateCapabilities(@Nonnull CSCloud provider) {
super(provider);
}
@Override
public boolean canBundle(@Nonnull VmState fromState) throws CloudException, InternalException {
return false;
}
@Override
public boolean canImage(@Nonnull VmState fromState) throws CloudException, InternalException {
return fromState.equals(VmState.STOPPED);
}
@Override
public @Nonnull String getProviderTermForImage(@Nonnull Locale locale, @Nonnull ImageClass cls) {
switch( cls ) {
case KERNEL: return "kernel template";
case RAMDISK: return "ramdisk template";
}
return "template";
}
@Override
public @Nonnull String getProviderTermForCustomImage(@Nonnull Locale locale, @Nonnull ImageClass cls) {
return getProviderTermForImage(locale, cls);
}
@Override
public @Nullable VisibleScope getImageVisibleScope() {
return null; //To change body of implemented methods use File | Settings | File Templates.
}
@Override
public @Nonnull Requirement identifyLocalBundlingRequirement() throws CloudException, InternalException {
return Requirement.NONE;
}
@Override
public @Nonnull Iterable listSupportedFormats() throws CloudException, InternalException {
return Arrays.asList(
MachineImageFormat.QCOW2,
MachineImageFormat.VHD,
MachineImageFormat.RAW
);
}
@Override
public @Nonnull Iterable listSupportedFormatsForBundling() throws CloudException, InternalException {
return Collections.emptyList();
}
@Override
public @Nonnull Iterable listSupportedImageClasses() throws CloudException, InternalException {
return Collections.singletonList(ImageClass.MACHINE);
}
@Override
public @Nonnull Iterable listSupportedImageTypes() throws CloudException, InternalException {
return Collections.singletonList(MachineImageType.VOLUME);
}
@Override
public boolean imageCaptureDestroysVM() throws InternalException, CloudException{
return false;
}
@Override
public @Nonnull NamingConstraints getImageNamingConstraints() throws CloudException, InternalException {
// not sure what these are from the api docs, but from the UI they don't seem
// to restrict on much of anything
return NamingConstraints.getAlphaNumeric(1, 255);
}
@Override
public boolean supportsDirectImageUpload() throws CloudException, InternalException {
return getProvider().hasApi(Templates.REGISTER_TEMPLATE);
}
@Override
public boolean supportsImageCapture(@Nonnull MachineImageType type) throws CloudException, InternalException {
return getProvider().hasApi(Templates.CREATE_TEMPLATE);
}
@Override
public boolean supportsImageCopy() throws CloudException, InternalException {
return false;
}
@Override
public boolean supportsImageSharing() throws CloudException, InternalException {
return getProvider().hasApi(Templates.UPDATE_TEMPLATE_PERMISSIONS);
}
@Override
public boolean supportsImageSharingWithPublic() throws CloudException, InternalException {
return getProvider().hasApi(Templates.UPDATE_TEMPLATE_PERMISSIONS);
}
@Override
public boolean supportsListingAllRegions() throws CloudException, InternalException {
return false;
}
@Override
public boolean supportsPublicLibrary(@Nonnull ImageClass cls) throws CloudException, InternalException {
return true;
}
}