Package org.apache.cloudstack.storage.command

Source Code of org.apache.cloudstack.storage.command.DownloadCommand

// 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.apache.cloudstack.storage.command;

import org.apache.cloudstack.api.InternalIdentity;
import org.apache.cloudstack.storage.to.TemplateObjectTO;
import org.apache.cloudstack.storage.to.VolumeObjectTO;

import com.cloud.agent.api.storage.AbstractDownloadCommand;
import com.cloud.agent.api.storage.PasswordAuth;
import com.cloud.agent.api.storage.Proxy;
import com.cloud.agent.api.to.DataStoreTO;
import com.cloud.agent.api.to.NfsTO;
import com.cloud.storage.Storage.ImageFormat;


public class DownloadCommand extends AbstractDownloadCommand implements InternalIdentity {

    public static enum ResourceType {
        VOLUME, TEMPLATE
    }

  private boolean hvm;
  private String description;
  private String checksum;
  private PasswordAuth auth;
  private Proxy _proxy;
  private Long maxDownloadSizeInBytes = null;
  private long id;
  private ResourceType resourceType = ResourceType.TEMPLATE;
  private String installPath;
  private DataStoreTO _store;
    private DataStoreTO cacheStore;

  protected DownloadCommand() {
  }


  public DownloadCommand(DownloadCommand that) {
      super(that);
      hvm = that.hvm;
      checksum = that.checksum;
      id = that.id;
      description = that.description;
      auth = that.getAuth();
      setSecUrl(that.getSecUrl());
      maxDownloadSizeInBytes = that.getMaxDownloadSizeInBytes();
      resourceType = that.resourceType;
      installPath = that.installPath;
      _store = that._store;
  }

  public DownloadCommand(TemplateObjectTO template, Long maxDownloadSizeInBytes) {

      super(template.getName(), template.getOrigUrl(), template.getFormat(), template.getAccountId());
      _store = template.getDataStore();
      installPath = template.getPath();
      hvm = template.isRequiresHvm();
      checksum = template.getChecksum();
      id = template.getId();
      description = template.getDescription();
        if (_store instanceof NfsTO) {
            setSecUrl(((NfsTO) _store).getUrl());
        }
      this.maxDownloadSizeInBytes = maxDownloadSizeInBytes;
  }

  public DownloadCommand(TemplateObjectTO template, String user, String passwd, Long maxDownloadSizeInBytes) {
      this(template, maxDownloadSizeInBytes);
    auth = new PasswordAuth(user, passwd);
  }

    public DownloadCommand(VolumeObjectTO volume, Long maxDownloadSizeInBytes, String checkSum, String url, ImageFormat format) {
        super(volume.getName(), url, format, volume.getAccountId());
        checksum = checkSum;
        id = volume.getVolumeId();
        installPath = volume.getPath();
        _store = volume.getDataStore();
        this.maxDownloadSizeInBytes = maxDownloadSizeInBytes;
        resourceType = ResourceType.VOLUME;
    }
  @Override
    public long getId() {
      return id;
  }

  public void setHvm(boolean hvm) {
    this.hvm = hvm;
  }

  public boolean isHvm() {
    return hvm;
  }

  public String getDescription() {
    return description;
  }

  public String getChecksum() {
    return checksum;
  }

    public void setDescription(String description) {
    this.description = description;
  }

  public void setChecksum(String checksum) {
    this.checksum = checksum;
  }

    @Override
    public boolean executeInSequence() {
        return false;
    }


  public PasswordAuth getAuth() {
    return auth;
  }

  public void setCreds(String userName, String passwd) {
    auth = new PasswordAuth(userName, passwd);
  }

  public Proxy getProxy() {
    return _proxy;
  }

  public void setProxy(Proxy proxy) {
    _proxy = proxy;
  }

  public Long getMaxDownloadSizeInBytes() {
    return maxDownloadSizeInBytes;
  }


  public ResourceType getResourceType() {
    return resourceType;
  }


  public void setResourceType(ResourceType resourceType) {
    this.resourceType = resourceType;
  }


    public DataStoreTO getDataStore() {
        return _store;
    }


    public void setDataStore(DataStoreTO _store) {
        this._store = _store;
    }


    public String getInstallPath() {
        return installPath;
    }


    public void setInstallPath(String installPath) {
        this.installPath = installPath;
    }

    public void setCacheStore(DataStoreTO cacheStore) {
        this.cacheStore = cacheStore;
    }

    public DataStoreTO getCacheStore() {
        return cacheStore;
    }
}
TOP

Related Classes of org.apache.cloudstack.storage.command.DownloadCommand

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.