blob: a43a10601a0f4ca69fbeaf924027664d8488077a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 EclipseSource 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:
* EclipseSource - initial API and implementation
******************************************************************************/
package org.eclipse.equinox.p2.internal.repository.tools.analyzer;
import org.eclipse.equinox.p2.metadata.IInstallableUnit;
import org.eclipse.equinox.p2.metadata.Version;
import org.eclipse.equinox.p2.repository.metadata.IMetadataRepository;
import org.eclipse.equinox.p2.repository.tools.analyzer.IUAnalyzer;
/**
* This service checks that each IU has a proper version number
* 1. No 0.0.0
* 2. No x.y.z.qualifier (each qualifier has been replaced)
*/
public class VersionAnalyzer extends IUAnalyzer {
public void analyzeIU(IInstallableUnit iu) {
if (iu.getVersion().equals(Version.emptyVersion)) {
error(iu, "[ERROR] IU: " + iu.getId() + " has not replaced its qualifiier");
return;
}
if (iu.getVersion().isOSGiCompatible()) {
String qualifier = toOSGiVersion(iu.getVersion()).getQualifier();
if (qualifier != null && qualifier.equals("qualifier")) {
error(iu, "[ERROR] IU: " + iu.getId() + " has not replaced its qualifiier");
return;
}
}
}
private static org.osgi.framework.Version toOSGiVersion(Version version) {
if (version == null)
return null;
if (version == Version.emptyVersion)
return org.osgi.framework.Version.emptyVersion;
if (version == Version.MAX_VERSION)
return new org.osgi.framework.Version(Integer.MAX_VALUE, Integer.MAX_VALUE, Integer.MAX_VALUE);
return new org.osgi.framework.Version(version.toString());
}
public void preAnalysis(IMetadataRepository repo) {
// Do nothing
}
}