blob: cf0276ef77301641196a873d811250859f36f9a8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.p2.engine.phases;
import java.util.Map;
import org.eclipse.core.runtime.*;
import org.eclipse.equinox.p2.engine.*;
import org.eclipse.equinox.p2.metadata.*;
import org.eclipse.osgi.util.NLS;
public class Configure extends Phase {
public Configure(int weight) {
super("configure", weight, Messages.Engine_Configure_Phase);
}
protected boolean isApplicable(Operand op) {
return (op.second() != null);
}
protected ProvisioningAction[] getActions(Operand currentOperand) {
//TODO: monitor.subTask(NLS.bind(Messages.Engine_Configuring_IU, unit.getId()));
IInstallableUnit unit = currentOperand.second();
if (unit.isFragment())
return null;
return getActions(unit, phaseId);
}
protected IStatus initializeOperand(Profile profile, Operand operand, Map parameters, IProgressMonitor monitor) {
IResolvedInstallableUnit iu = operand.second();
monitor.subTask(NLS.bind("Configuring {0}", iu.getId()));
parameters.put("iu", iu);
IArtifactKey[] artifacts = iu.getArtifacts();
if (artifacts != null && artifacts.length > 0)
parameters.put("artifact", artifacts[0]);
return Status.OK_STATUS;
}
}