Package org.jclouds.abiquo.domain.infrastructure

Source Code of org.jclouds.abiquo.domain.infrastructure.RemoteService

/*
* 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.abiquo.domain.infrastructure;

import static com.google.common.base.Preconditions.checkNotNull;

import org.jclouds.abiquo.AbiquoApi;
import org.jclouds.abiquo.domain.DomainWrapper;
import org.jclouds.abiquo.reference.ValidationErrors;
import org.jclouds.abiquo.reference.rest.ParentLinkName;
import org.jclouds.rest.ApiContext;

import com.abiquo.model.enumerator.RemoteServiceType;
import com.abiquo.server.core.infrastructure.DatacenterDto;
import com.abiquo.server.core.infrastructure.RemoteServiceDto;

/**
* Adds high level functionality to {@link RemoteServiceDto}. The Remote Service
* resource offers the functionality of managing the remote services of a
* datacenter in a logical way.
*
* @author Ignasi Barrera
* @author Francesc Montserrat
* @see API: <a
*      href="http://community.abiquo.com/display/ABI20/RemoteServiceResource">
*      http://community.abiquo.com/display/ABI20/RemoteServiceResource</a>
*/
public class RemoteService extends DomainWrapper<RemoteServiceDto> {
   /** The default status. */
   private static final int DEFAULT_STATUS = 0;

   /** The datacenter using the remote service. */
   private Datacenter datacenter;

   /**
    * Constructor to be used only by the builder.
    */
   protected RemoteService(final ApiContext<AbiquoApi> context, final RemoteServiceDto target) {
      super(context, target);
   }

   /**
    * Delete the remote service.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/RemoteServiceResource#RemoteServiceResource-DeleteaRemoteService"
    *      > http://community.abiquo.com/display/ABI20/RemoteServiceResource#
    *      RemoteServiceResource- DeleteaRemoteService</a>
    */
   public void delete() {
      context.getApi().getInfrastructureApi().deleteRemoteService(target);
      target = null;
   }

   /**
    * Create the remote service.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/RemoteServiceResource#RemoteServiceResource-CreateaRemoteService"
    *      > http://community.abiquo.com/display/ABI20/RemoteServiceResource#
    *      RemoteServiceResource- CreateaRemoteService</a>
    */
   public void save() {
      target = context.getApi().getInfrastructureApi().createRemoteService(datacenter.unwrap(), target);
   }

   /**
    * Update remote service information in the server with the data from this
    * remote service.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/RemoteServiceResource#RemoteServiceResource-UpdateanexistingRemoteService"
    *      > http://community.abiquo.com/display/ABI20/RemoteServiceResource#
    *      RemoteServiceResource- UpdateanexistingRemoteService</a>
    */
   public void update() {
      target = context.getApi().getInfrastructureApi().updateRemoteService(target);
   }

   /**
    * Check remote service availability.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/RemoteServiceResource#RemoteServiceResource-CheckthestatusofaRemoteService"
    *      > http://community.abiquo.com/display/ABI20/RemoteServiceResource#
    *      RemoteServiceResource- CheckthestatusofaRemoteService</a>
    */
   public boolean isAvailable() {
      // If the remote service can not be checked, assume it is available
      return !getType().canBeChecked() ? true : context.getApi().getInfrastructureApi().isAvailable(target);
   }

   // Parent access

   /**
    * Retrieve the datacenter using this remotes service.
    *
    * @see API: <a href=
    *      "http://community.abiquo.com/display/ABI20/DatacenterResource#DatacenterResource-Retrieveadatacenter"
    *      > http://community.abiquo.com/display/ABI20/DatacenterResource#
    *      DatacenterResource- Retrieveadatacenter</a>
    */
   public Datacenter getDatacenter() {
      Integer datacenterId = target.getIdFromLink(ParentLinkName.DATACENTER);
      DatacenterDto dto = context.getApi().getInfrastructureApi().getDatacenter(datacenterId);
      datacenter = wrap(context, Datacenter.class, dto);
      return datacenter;
   }

   public static Builder builder(final ApiContext<AbiquoApi> context, final Datacenter datacenter) {
      return new Builder(context, datacenter);
   }

   public static class Builder {
      private ApiContext<AbiquoApi> context;

      private Integer id;

      private Datacenter datacenter;

      private String ip;

      private Integer port;

      private RemoteServiceType type;

      private Integer status = DEFAULT_STATUS;

      // To be used only internally by the builder
      private String uri;

      public Builder(final ApiContext<AbiquoApi> context, final Datacenter datacenter) {
         super();
         checkNotNull(datacenter, ValidationErrors.NULL_RESOURCE + Datacenter.class);
         this.datacenter = datacenter;
         this.context = context;
      }

      public Builder datacenter(final Datacenter datacenter) {
         checkNotNull(datacenter, ValidationErrors.NULL_RESOURCE + Datacenter.class);
         this.datacenter = datacenter;
         return this;
      }

      public Builder status(final int status) {
         this.status = status;
         return this;
      }

      public Builder type(final RemoteServiceType type) {
         this.type = type;
         return this;
      }

      public Builder ip(final String ip) {
         this.ip = ip;
         return this;
      }

      public Builder port(final int port) {
         this.port = port;
         return this;
      }

      private String generateUri(final String ip, final Integer port, final RemoteServiceType type) {
         return type.getDefaultProtocol() + ip + ":" + port + "/" + type.getServiceMapping();
      }

      public RemoteService build() {
         if (uri == null) {
            checkNotNull(ip, ValidationErrors.MISSING_REQUIRED_FIELD + "ip");
            checkNotNull(type, ValidationErrors.MISSING_REQUIRED_FIELD + "type");

            uri = generateUri(ip, port == null ? type.getDefaultPort() : port, type);
         }

         RemoteServiceDto dto = new RemoteServiceDto();
         dto.setId(id);
         dto.setType(type);
         dto.setUri(uri);
         dto.setStatus(status);
         RemoteService remoteservice = new RemoteService(context, dto);
         remoteservice.datacenter = datacenter;
         return remoteservice;
      }

      public static Builder fromRemoteService(final RemoteService in) {
         Builder builder = RemoteService.builder(in.context, in.getDatacenter()).status(in.getStatus())
               .type(in.getType());
         builder.uri = in.getUri();
         return builder;
      }
   }

   // Delegate methods

   public Integer getId() {
      return target.getId();
   }

   public RemoteServiceType getType() {
      return target.getType();
   }

   public int getStatus() {
      return target.getStatus();
   }

   public String getUri() {
      return target.getUri();
   }

   public void setStatus(final int status) {
      target.setStatus(status);
   }

   public void setType(final RemoteServiceType type) {
      target.setType(type);
   }

   public void setUri(final String uri) {
      target.setUri(uri);
   }

   @Override
   public String toString() {
      return "RemoteService [id=" + getId() + ", available=" + isAvailable() + ", type=" + getType() + ", status="
            + getStatus() + ", uri" + getUri() + "]";
   }

}
TOP

Related Classes of org.jclouds.abiquo.domain.infrastructure.RemoteService

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.