From 46e1287ec60f6f184d580282bc931cb3164d47da Mon Sep 17 00:00:00 2001 From: rfeng Date: Tue, 10 Nov 2009 17:46:50 +0000 Subject: Turn the module into a webapp git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@834562 13f79535-47bb-0310-9956-ffa450edef68 --- .../tuscany-provisioning/META-INF/MANIFEST.MF | 4 +- sandbox/rfeng/tuscany-provisioning/pom.xml | 45 +++++++------- .../sca/provision/ExtensionIntrospector.java | 36 +++++++++++- .../provision/servlet/ExtensionListerServlet.java | 68 ++++++++++++++++++++++ .../src/main/webapp/WEB-INF/web.xml | 22 +++++++ .../src/main/webapp/index.html | 41 +++++++++++++ 6 files changed, 191 insertions(+), 25 deletions(-) create mode 100644 sandbox/rfeng/tuscany-provisioning/src/main/java/org/apache/tuscany/sca/provision/servlet/ExtensionListerServlet.java create mode 100644 sandbox/rfeng/tuscany-provisioning/src/main/webapp/WEB-INF/web.xml create mode 100644 sandbox/rfeng/tuscany-provisioning/src/main/webapp/index.html (limited to 'sandbox/rfeng') diff --git a/sandbox/rfeng/tuscany-provisioning/META-INF/MANIFEST.MF b/sandbox/rfeng/tuscany-provisioning/META-INF/MANIFEST.MF index 5c8f9482b2..ef144ea7b4 100644 --- a/sandbox/rfeng/tuscany-provisioning/META-INF/MANIFEST.MF +++ b/sandbox/rfeng/tuscany-provisioning/META-INF/MANIFEST.MF @@ -9,7 +9,9 @@ Bnd-LastModified: 1225397240796 Bundle-ManifestVersion: 2 Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt Bundle-Description: Apache Tuscany SCA Node Implementation -Import-Package: org.apache.tuscany.sca.core;version="2.0.0", +Import-Package: javax.servlet;version="2.5.0", + javax.servlet.http;version="2.5.0", + org.apache.tuscany.sca.core;version="2.0.0", org.apache.tuscany.sca.extensibility;version="2.0.0" Bundle-SymbolicName: org.apache.tuscany.sca.provision Bundle-DocURL: http://www.apache.org/ diff --git a/sandbox/rfeng/tuscany-provisioning/pom.xml b/sandbox/rfeng/tuscany-provisioning/pom.xml index fcaa6aff08..7b2ebeef46 100644 --- a/sandbox/rfeng/tuscany-provisioning/pom.xml +++ b/sandbox/rfeng/tuscany-provisioning/pom.xml @@ -29,29 +29,9 @@ tuscany-provision Apache Tuscany SCA Provisioning - + war + - - - org.apache.tuscany.sca - tuscany-extensibility - 2.0-SNAPSHOT - - - - org.apache.tuscany.sca - tuscany-implementation-java-runtime - 2.0-SNAPSHOT - test - - - org.apache.tuscany.sca - tuscany-binding-ws-axis2 - 2.0-SNAPSHOT - test - - - org.apache.maven.shared maven-runtime @@ -68,6 +48,27 @@ 2.0.8 compile + + org.apache.tuscany.sca + tuscany-extensibility + 2.0-SNAPSHOT + + + + org.apache.tuscany.sca + tuscany-feature-all + pom + 2.0-SNAPSHOT + runtime + + + + javax.servlet + servlet-api + 2.5 + provided + + diff --git a/sandbox/rfeng/tuscany-provisioning/src/main/java/org/apache/tuscany/sca/provision/ExtensionIntrospector.java b/sandbox/rfeng/tuscany-provisioning/src/main/java/org/apache/tuscany/sca/provision/ExtensionIntrospector.java index b44c0e3089..41e847f791 100644 --- a/sandbox/rfeng/tuscany-provisioning/src/main/java/org/apache/tuscany/sca/provision/ExtensionIntrospector.java +++ b/sandbox/rfeng/tuscany-provisioning/src/main/java/org/apache/tuscany/sca/provision/ExtensionIntrospector.java @@ -20,6 +20,9 @@ package org.apache.tuscany.sca.provision; import java.lang.reflect.Field; +import java.net.MalformedURLException; +import java.net.URL; +import java.net.URLClassLoader; import java.util.Arrays; import java.util.Collection; import java.util.Collections; @@ -54,6 +57,8 @@ import org.codehaus.plexus.embed.Embedder; */ public class ExtensionIntrospector { private ExtensionPointRegistry registry; + private ClassLoader classLoader; + private boolean loaded; private boolean offline; private MavenRuntime mavenRuntime = new DefaultMavenRuntime(); @@ -77,8 +82,35 @@ public class ExtensionIntrospector { * @param registry */ public ExtensionIntrospector(ExtensionPointRegistry registry) { - super(); + this(registry, null); + } + + public ExtensionIntrospector(ExtensionPointRegistry registry, ClassLoader classLoader) { this.registry = (registry == null) ? new DefaultExtensionPointRegistry() : registry; + this.classLoader = (classLoader == null) ? ExtensionIntrospector.class.getClassLoader() : classLoader; + } + + public ExtensionIntrospector() { + this(null, null); + } + + public ExtensionIntrospector(URL distribution) { + this(null, createClassLoader(distribution)); + } + + private static ClassLoader createClassLoader(URL distribution) { + String url = distribution.toString(); + if (!url.endsWith("/")) { + url = url + "/"; + } + url = url + "features/tuscany-sca-manifest.jar"; + URL path = null; + try { + path = new URL(url); + } catch (MalformedURLException e) { + throw new IllegalArgumentException(e); + } + return new URLClassLoader(new URL[] {path}, ExtensionIntrospector.class.getClassLoader()); } public MavenProject findModule(String extensionType) { @@ -318,7 +350,7 @@ public class ExtensionIntrospector { } public static String generateDojoData(String[] args) throws Exception { - ExtensionIntrospector introspector = new ExtensionIntrospector(null); + ExtensionIntrospector introspector = new ExtensionIntrospector(); introspector.setOffline("true".equalsIgnoreCase(System.getProperty("offline"))); introspector.start(); Map> map = introspector.getDependencies(args); diff --git a/sandbox/rfeng/tuscany-provisioning/src/main/java/org/apache/tuscany/sca/provision/servlet/ExtensionListerServlet.java b/sandbox/rfeng/tuscany-provisioning/src/main/java/org/apache/tuscany/sca/provision/servlet/ExtensionListerServlet.java new file mode 100644 index 0000000000..791e9d11b7 --- /dev/null +++ b/sandbox/rfeng/tuscany-provisioning/src/main/java/org/apache/tuscany/sca/provision/servlet/ExtensionListerServlet.java @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.tuscany.sca.provision.servlet; + +import java.io.IOException; + +import javax.servlet.ServletException; +import javax.servlet.http.HttpServlet; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.apache.tuscany.sca.provision.ExtensionIntrospector; + +/** + * Servlet implementation class ExtensionListerServlet + */ +public class ExtensionListerServlet extends HttpServlet { + private static final long serialVersionUID = 1L; + private String json; + + /** + * Default constructor. + */ + public ExtensionListerServlet() { + } + + /** + * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) + */ + protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { + synchronized (this) { + if (json == null) { + try { + json = ExtensionIntrospector.generateDojoData(new String[0]); + } catch (Exception e) { + throw new ServletException(e); + } + } + } + response.setContentType("application/json"); + response.getWriter().write(json); + } + + /** + * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) + */ + protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, + IOException { + } + +} diff --git a/sandbox/rfeng/tuscany-provisioning/src/main/webapp/WEB-INF/web.xml b/sandbox/rfeng/tuscany-provisioning/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000000..e64bb913cd --- /dev/null +++ b/sandbox/rfeng/tuscany-provisioning/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,22 @@ + + + tuscany-provisioning-webapp + + index.html + index.htm + index.jsp + default.html + default.htm + default.jsp + + + + ExtensionListerServlet + ExtensionListerServlet + org.apache.tuscany.sca.provision.servlet.ExtensionListerServlet + + + ExtensionListerServlet + /extensions + + \ No newline at end of file diff --git a/sandbox/rfeng/tuscany-provisioning/src/main/webapp/index.html b/sandbox/rfeng/tuscany-provisioning/src/main/webapp/index.html new file mode 100644 index 0000000000..fcd25979a5 --- /dev/null +++ b/sandbox/rfeng/tuscany-provisioning/src/main/webapp/index.html @@ -0,0 +1,41 @@ + + + + +Tuscany Extensions + + + + + + + + +

Tuscany Extensions

+ +
+
+
+
+
+
+ + + + + \ No newline at end of file -- cgit v1.2.3