Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.touchpoint.eclipse')
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java
index da9d01141..f371588e8 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java
@@ -26,6 +26,7 @@ import org.eclipse.equinox.p2.core.spi.Constants;
import org.eclipse.equinox.p2.engine.IProfile;
import org.eclipse.equinox.p2.metadata.*;
import org.eclipse.equinox.p2.repository.IRepository;
+import org.eclipse.equinox.p2.repository.IRepositoryManager;
import org.eclipse.equinox.p2.repository.artifact.*;
import org.eclipse.osgi.service.datalocation.Location;
import org.eclipse.osgi.service.environment.EnvironmentInfo;
@@ -143,9 +144,26 @@ public class Util {
}
}
}
+
+ getRunnableRepositories(manager, bundleRepositories);
return new AggregatedBundleRepository(agent, bundleRepositories);
}
+ private static void getRunnableRepositories(IArtifactRepositoryManager manager, List<IFileArtifactRepository> bundleRepositories) {
+ URI[] localURLs = manager.getKnownRepositories(IRepositoryManager.REPOSITORIES_LOCAL);
+ for (int i = 0; i < localURLs.length; i++) {
+ try {
+ IArtifactRepository candidate = manager.loadRepository(localURLs[i], new NullProgressMonitor());
+ if (Boolean.parseBoolean(candidate.getProperty(IArtifactRepository.PROP_RUNNABLE))) {
+ if (candidate != null && candidate instanceof IFileArtifactRepository && !bundleRepositories.contains(candidate))
+ bundleRepositories.add((IFileArtifactRepository) candidate);
+ }
+ } catch (ProvisionException e) {
+ //skip repositories that could not be read
+ }
+ }
+ }
+
private static List<String> getListProfileProperty(IProfile profile, String key) {
List<String> listProperty = new ArrayList<String>();
String dropinRepositories = profile.getProperty(key);

Back to the top