blob: edb21b3f5e03b36fe14c9bf8e9393ef558acfba5 [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.p2.garbagecollector;
import org.eclipse.equinox.internal.provisional.p2.artifact.repository.IArtifactRepository;
import org.eclipse.equinox.internal.provisional.p2.engine.IProfile;
/**
* Any class which declares itself as an extension to the <tt>org.eclipse.equinox.p2.garbagecollector.marksetproviders</tt>
* extension point must extend this base class. Given a Profile, implementors are required
* to provide an array of MarkSet objects, each of which must contain an IArtifactRepository
* and the IArtifactKeys used by the given Profile.
*/
public abstract class MarkSetProvider {
/**
* Returns a MarkSet for each bundle pool used by a Profile p. The MarkSet will contain
* all of the IArtifactKeys found in p, as well as the IArtifactRepository over which the
* root set of keys is being created.
* @param profile A profile whose ArtifactRepositories require a garbage collection
* @return An array of MarkSet object(s) containing p's IArtifactRepository and its root set of IArtifactKeys
*/
public abstract MarkSet[] getMarkSets(IProfile profile);
/**
* Returns the IArtifactRepository for which this MarkSetProvider provides a MarkSet.
* @param p The Profile whose IArtifactRepository is required
* @return The IArtifactRepository for which this MarkSetProvider provides a MarkSet.
*/
public abstract IArtifactRepository getRepository(IProfile p);
}