blob: 243e03a9e8ab083f84a8d4a8ab1dac597d1a16e3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 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.provisional.p2.metadata.query;
import org.eclipse.equinox.internal.provisional.p2.metadata.*;
import org.eclipse.equinox.internal.provisional.p2.query.MatchQuery;
public class UpdateQuery extends MatchQuery {
private IInstallableUnit updateFrom;
public UpdateQuery(IInstallableUnit updateFrom) {
this.updateFrom = updateFrom;
}
public boolean isMatch(Object candidate) {
if (candidate instanceof IInstallableUnitPatch && !(updateFrom instanceof IInstallableUnitPatch)) {
IInstallableUnitPatch potentialPatch = (IInstallableUnitPatch) candidate;
IRequiredCapability lifeCycle = potentialPatch.getLifeCycle();
if (lifeCycle == null)
return false;
return updateFrom.satisfies(lifeCycle);
}
IInstallableUnit candidateIU = (IInstallableUnit) candidate;
IUpdateDescriptor descriptor = candidateIU.getUpdateDescriptor();
if (descriptor != null && descriptor.isUpdateOf(updateFrom)) {
if (!updateFrom.getId().equals(candidateIU.getId()))
return true;
return updateFrom.getVersion().compareTo(candidateIU.getVersion()) < 0;
}
return false;
}
}