summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/extensibility/src
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-02-24 23:17:59 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-02-24 23:17:59 +0000
commitdbed306fd58a4007be3df458e571bf4fd4302dce (patch)
tree5705f720d547fe3681829e2fa1337f3eef18174e /java/sca/modules/extensibility/src
parent2ee5c99d377a56d012604d5886df5b35142d4237 (diff)
A more complete fix for TUSCANY-2869
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@747607 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/extensibility/src')
-rw-r--r--java/sca/modules/extensibility/src/main/java/org/apache/tuscany/sca/extensibility/ContextClassLoaderServiceDiscoverer.java38
-rw-r--r--java/sca/modules/extensibility/src/test/java/org/apache/tuscany/sca/extensibility/ContextClassLoaderServiceDiscovererTestCase.java10
2 files changed, 39 insertions, 9 deletions
diff --git a/java/sca/modules/extensibility/src/main/java/org/apache/tuscany/sca/extensibility/ContextClassLoaderServiceDiscoverer.java b/java/sca/modules/extensibility/src/main/java/org/apache/tuscany/sca/extensibility/ContextClassLoaderServiceDiscoverer.java
index e90aa7c0d3..41764f35b9 100644
--- a/java/sca/modules/extensibility/src/main/java/org/apache/tuscany/sca/extensibility/ContextClassLoaderServiceDiscoverer.java
+++ b/java/sca/modules/extensibility/src/main/java/org/apache/tuscany/sca/extensibility/ContextClassLoaderServiceDiscoverer.java
@@ -35,6 +35,7 @@ import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
+import java.util.Properties;
import java.util.Set;
import java.util.StringTokenizer;
import java.util.logging.Level;
@@ -141,15 +142,8 @@ public class ContextClassLoaderServiceDiscoverer implements ServiceDiscoverer {
} else {
int j = declaration.indexOf('=');
if (j == -1) {
- // TUSCANY-xxx: handle Saxon xpath jar funny
- if (declaration.startsWith("http\\://")) {
- int k = declaration.lastIndexOf(':');
- attributes.put("class", declaration.substring(k+1).trim());
- return attributes;
- } else {
- attributes.put("class", declaration.trim());
- return attributes;
- }
+ attributes.put("class", declaration.trim());
+ return attributes;
} else {
declaration = ";" + declaration;
}
@@ -179,6 +173,8 @@ public class ContextClassLoaderServiceDiscoverer implements ServiceDiscoverer {
public Set<ServiceDeclaration> getServiceDeclarations(String serviceName) {
Set<ServiceDeclaration> descriptors = new HashSet<ServiceDeclaration>();
+ // http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/xpath/XPathFactory.html
+ boolean isPropertyFile = "javax.xml.xpath.XPathFactory".equals(serviceName);
String name = "META-INF/services/" + serviceName;
boolean debug = logger.isLoggable(Level.FINE);
try {
@@ -206,6 +202,30 @@ public class ContextClassLoaderServiceDiscoverer implements ServiceDiscoverer {
} catch (PrivilegedActionException e) {
throw (IOException)e.getException();
}
+ if (isPropertyFile) {
+ // Load as a property file
+ Properties props = new Properties();
+ props.load(is);
+ is.close();
+ for (Map.Entry<Object, Object> e : props.entrySet()) {
+ Map<String, String> attributes = new HashMap<String, String>();
+ String key = (String)e.getKey();
+ String value = (String)e.getValue();
+ // Unfortunately, the xalan file only has the classname
+ if ("".equals(value)) {
+ value = key;
+ key = "";
+ }
+ if (!"".equals(key)) {
+ attributes.put(key, value);
+ attributes.put("uri", key);
+ }
+ attributes.put("class", value);
+ ServiceDeclarationImpl descriptor = new ServiceDeclarationImpl(url, value, attributes);
+ descriptors.add(descriptor);
+ }
+ continue;
+ }
BufferedReader reader = null;
try {
reader = new BufferedReader(new InputStreamReader(is));
diff --git a/java/sca/modules/extensibility/src/test/java/org/apache/tuscany/sca/extensibility/ContextClassLoaderServiceDiscovererTestCase.java b/java/sca/modules/extensibility/src/test/java/org/apache/tuscany/sca/extensibility/ContextClassLoaderServiceDiscovererTestCase.java
index 288c759a18..cfab64bef7 100644
--- a/java/sca/modules/extensibility/src/test/java/org/apache/tuscany/sca/extensibility/ContextClassLoaderServiceDiscovererTestCase.java
+++ b/java/sca/modules/extensibility/src/test/java/org/apache/tuscany/sca/extensibility/ContextClassLoaderServiceDiscovererTestCase.java
@@ -59,6 +59,16 @@ public class ContextClassLoaderServiceDiscovererTestCase {
descriptor = discover.getFirstServiceDeclaration("notthere");
Assert.assertNull(descriptor);
}
+
+ @Test
+ public void testXPathFactory() {
+ Set<ServiceDeclaration> discriptors = discover.getServiceDeclarations("javax.xml.xpath.XPathFactory");
+ if (!discriptors.isEmpty()) {
+ ServiceDeclaration d = discriptors.iterator().next();
+ Assert.assertNotNull(d.getClassName());
+ Assert.assertTrue(d.getAttributes().containsKey("class"));
+ }
+ }
/**