All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pentaho.packageManagement.Package Maven / Gradle / Ivy

Go to download

Allows the management of packages in a central package repository, for installation in the user's home directory.

There is a newer version: 1.0.11
Show newest version
/*
 * Copyright (c) 2010 Pentaho Corporation.  All rights reserved. 
 * This software was developed by Pentaho Corporation and is provided under the terms 
 * of the GNU Lesser General Public License, Version 2.1. You may not use 
 * this file except in compliance with the license. If you need a copy of the license, 
 * please go to http://www.gnu.org/licenses/lgpl-2.1.txt. The Original Code is Pentaho 
 * Package Manager.  The Initial Developer is Pentaho Corporation.
 *
 * Software distributed under the GNU Lesser Public License is distributed on an "AS IS" 
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or  implied. Please refer to 
 * the license for the specific language governing your rights and limitations.
 */

/*
 *    Package.java
 *    Copyright (C) 2009 Pentaho Corporation
 */

package org.pentaho.packageManagement;

import java.net.URL;
import java.util.List;
import java.util.Map;

/**
 * Abstract base class for Packages.
 * 
 * @author mhall (mhall{[at]}pentaho{[dot]}com)
 * @version $Revision: 44030 $
 *
 */
public abstract class Package implements Cloneable {
  
  /**
   * The meta data for the package
   */
  protected Map m_packageMetaData;
  
  /**
   * Set the meta data for this package.
   * 
   * @param metaData the meta data for this package.
   */
  public void setPackageMetaData(Map metaData) {
    m_packageMetaData = metaData;
  }
  
  /**
   * Get the meta data for this package.
   * 
   * @return the meta data for this package
   */
  public Map getPackageMetaData() {
    return m_packageMetaData;
  }
  
  /**
   * Convenience method to return the name of this package.
   * 
   * @return the name of this package.
   */
  public abstract String getName();
  
  /**
   * Convenience method that returns the URL to the package (i.e the provider's URL).
   * This information is assumed to be stored in the package meta data.
   * 
   * @return the URL to the package or null if the URL is not available for some reason
   * @throws Exception if the URL can't be retrieved for some reason
   */
  public abstract URL getPackageURL() throws Exception;
  
  /**
   * Compare the supplied package to this package. Simply does an equals()
   * comparison between the two. Concrete subclasses should override if they
   * wan't to do comparison based on specific package meta data elements.
   * 
   * @param toCompare the package to compare against.
   * @return true if the supplied package is equal to this one.
   */
  public boolean equals(Package toCompare) {
    return m_packageMetaData.equals(toCompare.getPackageMetaData());
  }
  
  /**
   * Get the list of packages that this package depends on.
   * 
   * @return the list of packages that this package depends on.
   * @throws Exception if a problem occurs while getting the list
   * of dependencies.
   */
  public abstract List getDependencies() throws Exception;
  
  /**
   * Returns true if this package is already installed
   * 
   * @return true if this package is installed
   */
  public abstract boolean isInstalled();
  
  /**
   * Install this package.
   * 
   * @throws Exception if something goes wrong during installation.
   */
  public abstract void install() throws Exception;
  
  /**
   * Returns true if this package is compatible with the currently installed
   * version of the base system.
   * 
   * @return true if this package is compatible with the main software system.
   * @throws Exception if a problem occurs while checking compatibility.
   */
  public abstract boolean isCompatibleBaseSystem()
    throws Exception;
  
  /**
   * Returns true if this package is good to go with the current version
   * of the software and versions of any installed packages that it depends on.
   * 
   * @return true if this package is good to go.
   * @throws Exception if a problem occurs while checking compatibility.
   */
  /*public abstract boolean isCompatible()
    throws Exception; */
  
  /**
   * Gets the dependency on the base system that this package
   * requires.
   * 
   * @return the base system dependency(s) for this package
   * @throws Exception if the base system dependency can't be
   * determined for some reason.
   */
  public abstract List getBaseSystemDependency() throws Exception;
  
  /**
   * Gets a list of packages that this package depends on that are
   * not currently installed.
   * 
   * @return a list of missing packages that this package depends on.
   */
  public abstract List getMissingDependencies() throws Exception;
  
  /**
   * Gets a list of packages that this package depends on that are not
   * in the supplied list of packages.
   * 
   * @param packages a list of packages to compare this package's dependencies
   * against.
   * @return those packages that this package depends on that aren't in the supplied
   * list.
   * @throws Exception if the list of missing depenencies can't be determined for
   * some reason.
   */
  public abstract List getMissingDependencies(List packages)
    throws Exception;
  
  /**
   * Gets a list of installed packages that this package depends on
   * that are currently incompatible with this package.
   * 
   * @return a list of incompatible installed packages that this package
   * depends on. 
   */
  public abstract List getIncompatibleDependencies() throws Exception;
  
  /**
   * Gets those packages from the supplied list that this package depends on
   * and are currently incompatible with this package.
   * 
   * @param packages a list of packages to compare this package's dependencies against
   * @return those packages from the supplied list that are incompatible with respect
   * to this package's dependencies
   * @throws Exception if the list of incompatible dependencies can't be generated for
   * some reason.
   */
  public abstract List getIncompatibleDependencies(List packages) 
    throws Exception;
    
  /**
   * Gets the package meta data element associated with the supplied key.
   * 
   * @param key the key to use to look up a value in the meta data
   * @return the meta data value or null if the key does not exist.
   */
  public Object getPackageMetaDataElement(Object key) {
    if (m_packageMetaData == null) {
      return null;
    }
    
    return m_packageMetaData.get(key);
  }
  
  /**
   * Adds a key, value pair to the meta data map.
   * 
   * @param key the key
   * @param value the value to add
   * @throws Exception if there is no meta data map to add to.
   */
  public abstract void setPackageMetaDataElement(Object key, Object value) throws Exception;
  
  public abstract Object clone();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy