Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Bull2012-03-09 00:29:37 +0000
committerIan Bull2012-03-09 00:29:37 +0000
commitb3b6f954c0c4d39365428567d066dbcc4ca5803b (patch)
treea13d7a1de195684cf1b29d58ab29e259be0e5a23 /bundles
parent72f7b2af2c2488d9a58f9a18450bbdd3d626f51a (diff)
downloadrt.equinox.p2-b3b6f954c0c4d39365428567d066dbcc4ca5803b.tar.gz
rt.equinox.p2-b3b6f954c0c4d39365428567d066dbcc4ca5803b.tar.xz
rt.equinox.p2-b3b6f954c0c4d39365428567d066dbcc4ca5803b.zip
Let's the advice file set min/max values for capability advice.v20120309-0029
If both min and max are set, then these values will be used instead of optional/multiple.
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/AdviceFileParser.java23
1 files changed, 22 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/AdviceFileParser.java b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/AdviceFileParser.java
index 2bf051ed8..398ff0b46 100644
--- a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/AdviceFileParser.java
+++ b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/p2/publisher/AdviceFileParser.java
@@ -13,9 +13,11 @@ import java.net.URISyntaxException;
import java.util.*;
import java.util.Map.Entry;
import org.eclipse.equinox.internal.p2.metadata.ArtifactKey;
+import org.eclipse.equinox.internal.p2.metadata.InstallableUnit;
import org.eclipse.equinox.p2.metadata.*;
import org.eclipse.equinox.p2.metadata.MetadataFactory.InstallableUnitDescription;
import org.eclipse.equinox.p2.metadata.MetadataFactory.InstallableUnitFragmentDescription;
+import org.eclipse.equinox.p2.metadata.expression.IMatchExpression;
import org.eclipse.equinox.spi.p2.publisher.PublisherHelper;
public class AdviceFileParser {
@@ -38,6 +40,8 @@ public class AdviceFileParser {
private static final String SINGLETON = "singleton"; //$NON-NLS-1$
private static final String IMPORT = "import"; //$NON-NLS-1$
private static final String RANGE = "range"; //$NON-NLS-1$
+ private static final String MIN = "min"; //$NON-NLS-1$
+ private static final String MAX = "max"; //$NON-NLS-1$
private static final String FILTER = "filter"; //$NON-NLS-1$
private static final String MULTIPLE = "multiple"; //$NON-NLS-1$
private static final String OPTIONAL = "optional"; //$NON-NLS-1$
@@ -238,6 +242,9 @@ public class AdviceFileParser {
boolean multiple = false;
boolean greedy = true;
+ int min = -1;
+ int max = -1;
+
while (current != null && current.startsWith(prefix)) {
String token = current.substring(prefix.length());
if (token.equals(GREEDY)) {
@@ -254,17 +261,31 @@ public class AdviceFileParser {
namespace = currentValue();
} else if (token.equals(RANGE)) {
range = new VersionRange(substituteVersionAndQualifier(currentValue()));
+ } else if (token.equals(MIN)) {
+ min = Integer.valueOf(currentValue()).intValue();
+ } else if (token.equals(MAX)) {
+ max = Integer.valueOf(currentValue()).intValue();
} else {
// we ignore elements we do not understand
}
next();
}
- IRequirement capability = createRequirement(namespace, name, range, filter, optional, multiple, greedy);
+ IRequirement capability = null;
+ if (min >= 0 && max >= 0) {
+ capability = createRequirement(namespace, name, range, filter, min, max, greedy);
+ } else {
+ capability = createRequirement(namespace, name, range, filter, optional, multiple, greedy);
+ }
if (capability != null) {
requires.add(capability);
}
}
+ protected IRequirement createRequirement(String namespace, String name, VersionRange range, String filter, int min, int max, boolean greedy) {
+ IMatchExpression<IInstallableUnit> filterExpression = InstallableUnit.parseFilter(filter);
+ return MetadataFactory.createRequirement(namespace, name, range, filterExpression, min, max, greedy);
+ }
+
protected IRequirement createRequirement(String namespace, String name, VersionRange range, String filter, boolean optional, boolean multiple, boolean greedy) {
return MetadataFactory.createRequirement(namespace, name, range, filter, optional, multiple, greedy);
}

Back to the top