blob: 81a8a59d9ebdf1de8584784f6a2c7a3b12659887 [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.director;
import java.util.*;
import org.eclipse.equinox.internal.provisional.p2.engine.InstallableUnitOperand;
import org.eclipse.equinox.internal.provisional.p2.metadata.*;
import org.eclipse.equinox.internal.provisional.p2.metadata.MetadataFactory.InstallableUnitDescription;
import org.eclipse.equinox.internal.provisional.p2.metadata.query.InstallableUnitQuery;
import org.eclipse.equinox.internal.provisional.p2.query.Collector;
public class OperationGenerator {
private static final IInstallableUnit NULL_IU = MetadataFactory.createResolvedInstallableUnit(MetadataFactory.createInstallableUnit(new InstallableUnitDescription()), new IInstallableUnitFragment[0]);
public InstallableUnitOperand[] generateOperation(Collection from_, Collection to_) {
List from = new ArrayList(from_);
Collections.sort(from);
List to = new ArrayList(to_);
Collections.sort(to);
ArrayList operations = new ArrayList();
generateUpdates(from, to, operations);
generateInstallUninstall(from, to, operations);
InstallableUnitOperand[] ops = (InstallableUnitOperand[]) operations.toArray(new InstallableUnitOperand[operations.size()]);
return ops;
}
private void generateInstallUninstall(List from, List to, ArrayList operations) {
int toIdx = 0;
int fromIdx = 0;
while (fromIdx != from.size() && toIdx != to.size()) {
IInstallableUnit fromIU = (IInstallableUnit) from.get(fromIdx);
IInstallableUnit toIU = (IInstallableUnit) to.get(toIdx);
int comparison = toIU.compareTo(fromIU);
if (comparison < 0) {
operations.add(createInstallOperation(toIU));
toIdx++;
} else if (comparison == 0) {
toIdx++;
fromIdx++;
// System.out.println("same " + fromIU);
} else {
operations.add(createUninstallOperation(fromIU));
fromIdx++;
}
}
if (fromIdx != from.size()) {
for (int i = fromIdx; i < from.size(); i++) {
operations.add(createUninstallOperation((IInstallableUnit) from.get(i)));
}
}
if (toIdx != to.size()) {
for (int i = toIdx; i < to.size(); i++) {
operations.add(createInstallOperation((IInstallableUnit) to.get(i)));
}
}
}
private void generateUpdates(List from, List to, ArrayList operations) {
Set processed = new HashSet();
Set removedFromTo = new HashSet();
for (int toIdx = 0; toIdx < to.size(); toIdx++) {
IInstallableUnit iuTo = (IInstallableUnit) to.get(toIdx);
if (iuTo.getId().equals(next(from, toIdx).getId())) {
toIdx = skip(to, iuTo, toIdx) - 1;
//System.out.println("Can't update " + iuTo + " because another iu with same id is in the target state");
continue;
}
if (iuTo.getUpdateDescriptor() == null)
continue;
//when the ui we update from is in the new state, skip (for example FROM is A, C, B & TO is C (update of
InstallableUnitQuery updateQuery = new InstallableUnitQuery(iuTo.getUpdateDescriptor().getId(), iuTo.getUpdateDescriptor().getRange());
Iterator updates = updateQuery.perform(from.iterator(), new Collector()).iterator();
IInstallableUnit iuFrom;
if (!updates.hasNext()) { //Nothing to update from.
continue;
}
iuFrom = (IInstallableUnit) updates.next();
if (updates.hasNext()) { //There are multiple IUs to update from
//System.out.println("Can't update " + iuTo + " because there are multiple IUs to update from (" + toString(iusFrom) + ')');
continue;
}
if (iuTo.equals(iuFrom)) {
from.remove(iuFrom);
removedFromTo.add(iuTo);
continue;
}
operations.add(createUpdateOperation(iuFrom, iuTo));
from.remove(iuFrom);
processed.add(iuTo);
}
to.removeAll(processed);
to.removeAll(removedFromTo);
}
private InstallableUnitOperand createUninstallOperation(IInstallableUnit iu) {
return new InstallableUnitOperand(iu, null);
}
private InstallableUnitOperand createInstallOperation(IInstallableUnit iu) {
return new InstallableUnitOperand(null, iu);
}
private InstallableUnitOperand createUpdateOperation(IInstallableUnit from, IInstallableUnit to) {
return new InstallableUnitOperand(from, to);
}
private IInstallableUnit next(List l, int i) {
i++;
if (i >= l.size())
return NULL_IU;
return (IInstallableUnit) l.get(i);
}
private int skip(List c, IInstallableUnit id, int idx) {
int i = idx;
for (; i < c.size(); i++) {
if (!id.getId().equals(((IInstallableUnit) c.get(idx)).getId()))
return i;
}
return i;
}
}