blob: fd626d36b83749d29c1e403d254f08b792cc07ba [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 Band XI International, LLC 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:
* Band XI - initial API and implementation
* IBM - ongoing development
*******************************************************************************/
package org.eclipse.equinox.p2.engine;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
/**
* The engine is a service that naively performs a set of requested changes to a provisioned
* system. No attempt is made to determine whether the requested changes or the
* resulting system are valid or consistent. It is assumed that the engine client has
* crafted a valid provisioning plan for the engine to perform, typically by using a planner
* service.
* <p>
* The engine operates by executing a series of installation phases. The client can
* customize the set of phases that are executed, or else the engine will execute
* a default set of phases. During each phase the changes described by the provisioning
* plan are performed against the profile being provisioned.
*
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
* @since 2.0
*/
public interface IEngine {
/**
* Service name constant for the engine service.
*/
public static final String SERVICE_NAME = IEngine.class.getName();
/**
* Creates a provisioning plan whose methods can be use to provide pre-validated changes.
* This is an advanced method for clients that know they are creating changes that do
* not require validation by a planner. Most clients should instead obtain a validated plan
* from a planner.
*
* @param profile The profile to operate against
* @param context The provisioning context for the plan
* @return A provisioning plan
*/
public IProvisioningPlan createPlan(IProfile profile, ProvisioningContext context);
/**
* Executes a provisioning plan.
*
* @param plan The plan describing the changes to be made
* @param phaseSet The phases to run, or <code>null</code> to run default phases
* @param monitor A progress monitor, or <code>null</code> if progress reporting is not required
* @return The result of executing the plan
*/
public IStatus perform(IProvisioningPlan plan, IPhaseSet phaseSet, IProgressMonitor monitor);
/**
* Executes a provisioning plan with a default phase set and context.
*
* @param plan The plan describing the changes to be made
* @param monitor A progress monitor, or <code>null</code> if progress reporting is not required
* @return The result of executing the plan
*/
public IStatus perform(IProvisioningPlan plan, IProgressMonitor monitor);
}