blob: 90418c25005eeec58a9f61651c8900c5faac5894 [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.internal.p2.ui.dialogs;
import java.util.*;
import org.eclipse.core.runtime.*;
import org.eclipse.equinox.internal.p2.ui.ProvUIMessages;
import org.eclipse.equinox.internal.p2.ui.model.AvailableUpdateElement;
import org.eclipse.equinox.p2.core.ProvisionException;
import org.eclipse.equinox.p2.director.ProvisioningPlan;
import org.eclipse.equinox.p2.engine.Profile;
import org.eclipse.equinox.p2.engine.phases.Sizing;
import org.eclipse.equinox.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.p2.ui.ProvUI;
import org.eclipse.equinox.p2.ui.model.IUElement;
import org.eclipse.equinox.p2.ui.operations.ProfileModificationOperation;
import org.eclipse.equinox.p2.ui.operations.ProvisioningUtil;
public class UpdateWizardPage extends UpdateOrInstallWizardPage {
public UpdateWizardPage(IInstallableUnit[] ius, Profile profile, UpdateOrInstallWizard wizard) {
super("UpdateWizardPage", ius, profile, wizard); //$NON-NLS-1$
setTitle(ProvUIMessages.UpdateAction_UpdatesAvailableTitle);
setDescription(ProvUIMessages.UpdateAction_UpdatesAvailableMessage);
}
protected void makeElements(IInstallableUnit[] ius, List elements, IProgressMonitor monitor) {
SubMonitor sub = SubMonitor.convert(monitor);
sub.setWorkRemaining(ius.length * 2);
for (int i = 0; i < ius.length; i++) {
if (monitor.isCanceled())
getWizard().performCancel();
try {
IInstallableUnit[] replacementIUs = ProvisioningUtil.updatesFor(new IInstallableUnit[] {ius[i]}, sub.newChild(1));
SubMonitor loopMonitor = sub.newChild(1);
loopMonitor.setWorkRemaining(replacementIUs.length);
for (int j = 0; j < replacementIUs.length; j++) {
elements.add(new AvailableUpdateElement(replacementIUs[j], getSize(ius[i], replacementIUs[j], loopMonitor.newChild(1)), ius[i]));
if (monitor.isCanceled())
getWizard().performCancel();
}
} catch (ProvisionException e) {
break;
}
}
}
private IInstallableUnit[] getIUsToReplace(Object[] replacementElements) {
Set iusToReplace = new HashSet();
for (int i = 0; i < replacementElements.length; i++) {
if (replacementElements[i] instanceof AvailableUpdateElement) {
iusToReplace.add(((AvailableUpdateElement) replacementElements[i]).getIUToBeUpdated());
}
}
return (IInstallableUnit[]) iusToReplace.toArray(new IInstallableUnit[iusToReplace.size()]);
}
protected long getSize(IInstallableUnit iuToRemove, IInstallableUnit iuToAdd, IProgressMonitor monitor) {
long size;
SubMonitor sub = SubMonitor.convert(monitor);
sub.setWorkRemaining(100);
try {
ProvisioningPlan plan = ProvisioningUtil.getReplacePlan(new IInstallableUnit[] {iuToRemove}, new IInstallableUnit[] {iuToAdd}, getProfile(), sub.newChild(50));
Sizing info = ProvisioningUtil.getSizeInfo(plan, getProfile(), sub.newChild(50));
size = info.getDiskSize();
} catch (ProvisionException e) {
size = IUElement.SIZE_UNKNOWN;
}
return size;
}
protected String getOperationLabel() {
return ProvUIMessages.UpdateIUOperationLabel;
}
protected ProfileModificationOperation createProfileModificationOperation(Object[] selectedElements, IProgressMonitor monitor) {
try {
ProvisioningPlan plan = ProvisioningUtil.getReplacePlan(getIUsToReplace(selectedElements), elementsToIUs(selectedElements), getProfile(), monitor);
IStatus status = plan.getStatus();
if (status.isOK())
return new ProfileModificationOperation(getOperationLabel(), getProfile().getProfileId(), plan);
ProvUI.reportStatus(status);
} catch (ProvisionException e) {
ProvUI.handleException(e, null);
}
return null;
}
}