blob: e9fdc6f8b89d2c8334b373abf951fa154179fa69 [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.ui.model;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.SubMonitor;
import org.eclipse.equinox.internal.p2.ui.ProvUIMessages;
import org.eclipse.equinox.internal.provisional.p2.core.ProvisionException;
import org.eclipse.equinox.internal.provisional.p2.director.ProfileChangeRequest;
import org.eclipse.equinox.internal.provisional.p2.director.ProvisioningPlan;
import org.eclipse.equinox.internal.provisional.p2.engine.IProfile;
import org.eclipse.equinox.internal.provisional.p2.engine.ProvisioningContext;
import org.eclipse.equinox.internal.provisional.p2.engine.phases.Sizing;
import org.eclipse.equinox.internal.provisional.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.internal.provisional.p2.ui.ProvUIImages;
import org.eclipse.equinox.internal.provisional.p2.ui.model.IUElement;
import org.eclipse.equinox.internal.provisional.p2.ui.operations.ProvisioningUtil;
/**
* Element wrapper class for IU's that are available for installation.
* Used instead of the plain IU when additional information such as sizing
* info is necessary.
*
* @since 3.4
*/
public class AvailableIUElement extends ProvElement implements IUElement {
IInstallableUnit iu;
// Currently this variable is not settable due to the
// poor performance of sizing, but it is kept here for future improvement.
// If we reinstate the ability to compute individual sizes we would
// probably refer to some preference or policy to decide what to do.
// See https://bugs.eclipse.org/bugs/show_bug.cgi?id=221087
private static boolean shouldShowSize = false;
long size = IUElement.SIZE_UNKNOWN;
String profileID;
public AvailableIUElement(IInstallableUnit iu, String profileID) {
this.iu = iu;
this.profileID = profileID;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.equinox.internal.provisional.p2.ui.model.ProvElement#getImageID(java.lang.Object)
*/
protected String getImageId(Object obj) {
return ProvUIImages.IMG_UNINSTALLED_IU;
}
public String getLabel(Object o) {
return iu.getId();
}
public Object[] getChildren(Object o) {
return null;
}
/*
* (non-Javadoc)
* @see org.eclipse.equinox.internal.provisional.p2.ui.model.ProvElement#getParent(java.lang.Object)
*/
public Object getParent(Object o) {
return null;
}
public Object getAdapter(Class adapter) {
if (adapter == IInstallableUnit.class)
return iu;
return super.getAdapter(adapter);
}
public long getSize() {
return size;
}
public void computeSize(IProgressMonitor monitor) {
if (profileID == null)
return;
try {
SubMonitor mon = SubMonitor.convert(monitor, 100);
ProvisioningPlan plan = getSizingPlan(mon.newChild(50));
Sizing info = ProvisioningUtil.getSizeInfo(plan, profileID, mon.newChild(50));
if (info == null)
size = IUElement.SIZE_UNAVAILABLE;
else
size = info.getDiskSize();
} catch (ProvisionException e) {
handleException(e, ProvUIMessages.AvailableIUElement_ProfileNotFound);
size = IUElement.SIZE_UNAVAILABLE;
}
}
protected IProfile getProfile() throws ProvisionException {
return ProvisioningUtil.getProfile(profileID);
}
protected ProvisioningPlan getSizingPlan(IProgressMonitor monitor) throws ProvisionException {
ProfileChangeRequest request = ProfileChangeRequest.createByProfileId(profileID);
request.addInstallableUnits(new IInstallableUnit[] {getIU()});
return ProvisioningUtil.getProvisioningPlan(request, new ProvisioningContext(), monitor);
}
public IInstallableUnit getIU() {
return iu;
}
public boolean shouldShowSize() {
return shouldShowSize;
}
public boolean shouldShowVersion() {
return true;
}
}