blob: e23d1ed0a28d44fc23faf5dd6a1d748a4fb48eb7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.provisional.spi.p2.metadata.repository;
import java.net.URL;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.equinox.internal.provisional.p2.core.ProvisionException;
import org.eclipse.equinox.internal.provisional.p2.metadata.repository.IMetadataRepository;
public interface IMetadataRepositoryFactory {
/**
* Creates and returns a new empty metadata repository of the given type at
* the given location.
*
* @param location the location for the new repository
* @param name the name of the new repository
* @param type the kind of repository to create
* @return the newly created repository
* @throws ProvisionException if the repository could not be created. Reasons include:
* <ul>
* <li>The repository type is not supported by this factory.</li>
* <li>There was an error writing to the given repository location.</li>
* </ul>
*/
public IMetadataRepository create(URL location, String name, String type) throws ProvisionException;
/**
* Loads a repository corresponding to the given URL.
*
* @param location The location of the repository to load
* @param monitor a progress monitor, or <code>null</code> if progress
* reporting is not desired
* @return The loaded metadata repository
* @throws ProvisionException if the repository could not be created. Reasons include:
* <ul>
* <li>There is no existing repository at that location.</li>
* <li>The repository at that location could not be read.</li>
* </ul>
*/
public IMetadataRepository load(URL location, IProgressMonitor monitor) throws ProvisionException;
/**
* Validates a candidate repository URL and returns a status indicating the
* likelihood of a valid repository being located at the location. Implementors
* should make all attempts to validate the URL that can be made without
* actually loading the repository. The computation for this method must be
* significantly faster than loading the repository. Early detectable error
* conditions, such as the non-existence of the location, or an inability to read
* the location, should be determined in this method.
*
* @param location The location of the repository to validate
* @param monitor a progress monitor, or <code>null</code> if progress
* reporting is not desired
* @return A status indicating whether a valid repository is likely located at the
* location. A status with severity <code>OK</code> indicates that the repository is
* likely to be loadable, or that as much validation as could be done was successful.
* Reasons for a non-OK status include:
* <ul>
* <li>The specified location is not a valid repository location.</li>
* <li>There is no existing repository at that location.</li>
* <li>The repository at that location could not be read.</li>
* </ul>
*/
public IStatus validate(URL location, IProgressMonitor monitor);
}