blob: 3bf200477736e6e3a694febbff4f5c2a9458d127 [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 org.eclipse.equinox.internal.p2.garbagecollector.marksetproviders
* extension point must implement this interface. Given a Profile, implementors will need to provide an array of
* MarkSet objects, each of which should contain an IArtifactRepository and the IArtifactKeys used by the given
* Profile.
*/
public interface IMarkSetProvider {
/**
* 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 MarkSet[] getMarkSets(IProfile profile);
/**
* Returns the IArtifactRepository for which this IMarkSetProvider provides a MarkSet.
* @param p The Profile whose IArtifactRepository is required
* @return The IArtifactRepository for which this IMarkSetProvider provides a MarkSet.
*/
public IArtifactRepository getRepository(IProfile p);
}