From 39b5ec6205e35d308d5fdeeac553c21750094ae7 Mon Sep 17 00:00:00 2001 From: rfeng Date: Thu, 31 Jul 2008 23:22:25 +0000 Subject: Add an OSgi bundle activator to set the OSGiServiceDiscoverer to ServiceDiscovery git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@681546 13f79535-47bb-0310-9956-ffa450edef68 --- java/sca/modules/extensibility-osgi/pom.xml | 1 + .../extensibility/osgi/OSGiServiceDiscoverer.java | 7 +++- .../osgi/OSGiServiceDiscoveryActivator.java | 40 ++++++++++++++++++++++ 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 java/sca/modules/extensibility-osgi/src/main/java/org/apache/tuscany/sca/extensibility/osgi/OSGiServiceDiscoveryActivator.java (limited to 'java/sca') diff --git a/java/sca/modules/extensibility-osgi/pom.xml b/java/sca/modules/extensibility-osgi/pom.xml index b4b00c3f58..3eab33771d 100644 --- a/java/sca/modules/extensibility-osgi/pom.xml +++ b/java/sca/modules/extensibility-osgi/pom.xml @@ -55,6 +55,7 @@ ${tuscany.version} org.apache.tuscany.sca.extensibility.osgi ${pom.name} + org.apache.tuscany.sca.extensibility.osgi.OSGiServiceDiscoveryActivator * diff --git a/java/sca/modules/extensibility-osgi/src/main/java/org/apache/tuscany/sca/extensibility/osgi/OSGiServiceDiscoverer.java b/java/sca/modules/extensibility-osgi/src/main/java/org/apache/tuscany/sca/extensibility/osgi/OSGiServiceDiscoverer.java index 1b07753f3d..8b6a5ceea4 100644 --- a/java/sca/modules/extensibility-osgi/src/main/java/org/apache/tuscany/sca/extensibility/osgi/OSGiServiceDiscoverer.java +++ b/java/sca/modules/extensibility-osgi/src/main/java/org/apache/tuscany/sca/extensibility/osgi/OSGiServiceDiscoverer.java @@ -163,7 +163,12 @@ public class OSGiServiceDiscoverer implements ServiceDiscoverer { } public Class loadClass(String className) throws ClassNotFoundException { - return bundle.loadClass(className); + try { + return bundle.loadClass(className); + } catch (ClassNotFoundException e) { + logger.severe(e.getMessage() + ": " + OSGiServiceDiscoverer.toString(bundle)); + throw e; + } } public URL getLocation() { diff --git a/java/sca/modules/extensibility-osgi/src/main/java/org/apache/tuscany/sca/extensibility/osgi/OSGiServiceDiscoveryActivator.java b/java/sca/modules/extensibility-osgi/src/main/java/org/apache/tuscany/sca/extensibility/osgi/OSGiServiceDiscoveryActivator.java new file mode 100644 index 0000000000..0a58776754 --- /dev/null +++ b/java/sca/modules/extensibility-osgi/src/main/java/org/apache/tuscany/sca/extensibility/osgi/OSGiServiceDiscoveryActivator.java @@ -0,0 +1,40 @@ +/* + * 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.extensibility.osgi; + +import org.apache.tuscany.sca.extensibility.ServiceDiscovery; +import org.osgi.framework.BundleActivator; +import org.osgi.framework.BundleContext; + +/** + * The Bundle Activator that creates the OSGi-based service discoverer + */ +public class OSGiServiceDiscoveryActivator implements BundleActivator { + + public void start(BundleContext context) throws Exception { + OSGiServiceDiscoverer discoverer = new OSGiServiceDiscoverer(context); + ServiceDiscovery.setServiceDiscoverer(discoverer); + } + + public void stop(BundleContext arg0) throws Exception { + // ServiceDiscovery.setServiceDiscoverer(discoverer); + } + +} -- cgit v1.2.3