From a7c1a39d8c3c4ef4d5878dbff726085082a17e8a Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 11 Nov 2009 23:09:31 +0000 Subject: Moving 2.x branches git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835136 13f79535-47bb-0310-9956-ffa450edef68 --- .../tuscany/sca/host/rmi/DefaultRMIHost.java | 169 --------------------- 1 file changed, 169 deletions(-) delete mode 100644 branches/sca-java-2.0-M3/modules/host-rmi/src/main/java/org/apache/tuscany/sca/host/rmi/DefaultRMIHost.java (limited to 'branches/sca-java-2.0-M3/modules/host-rmi/src/main/java/org/apache/tuscany/sca/host/rmi/DefaultRMIHost.java') diff --git a/branches/sca-java-2.0-M3/modules/host-rmi/src/main/java/org/apache/tuscany/sca/host/rmi/DefaultRMIHost.java b/branches/sca-java-2.0-M3/modules/host-rmi/src/main/java/org/apache/tuscany/sca/host/rmi/DefaultRMIHost.java deleted file mode 100644 index f98ce018e5..0000000000 --- a/branches/sca-java-2.0-M3/modules/host-rmi/src/main/java/org/apache/tuscany/sca/host/rmi/DefaultRMIHost.java +++ /dev/null @@ -1,169 +0,0 @@ -/* - * 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.host.rmi; - -import java.net.URI; -import java.rmi.AlreadyBoundException; -import java.rmi.NoSuchObjectException; -import java.rmi.NotBoundException; -import java.rmi.Remote; -import java.rmi.RemoteException; -import java.rmi.registry.LocateRegistry; -import java.rmi.registry.Registry; -import java.rmi.server.UnicastRemoteObject; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; -import java.util.logging.Logger; - -/** - * Default implementation of a RMI host. - * - * @version $Rev$ $Date$ - */ -public class DefaultRMIHost implements RMIHost { - private final static Logger logger = Logger.getLogger(DefaultRMIHost.class.getName()); - // Map of RMI registries started and running - private Map rmiRegistries; - - public DefaultRMIHost() { - rmiRegistries = new ConcurrentHashMap(); - /* - * if (System.getSecurityManager() == null) { System.setSecurityManager(new RMISecurityManager()); } - */ - } - - public void registerService(String uri, Remote serviceObject) throws RMIHostException, RMIHostRuntimeException { - RMIURI rmiURI = new RMIURI(uri); - - Registry registry; - try { - registry = rmiRegistries.get(Integer.toString(rmiURI.port)); - if (registry == null) { - try { - registry = LocateRegistry.getRegistry(rmiURI.port); - registry.lookup(rmiURI.serviceName); - } catch (RemoteException e) { - registry = LocateRegistry.createRegistry(rmiURI.port); - } catch (NotBoundException e) { - // Ignore - } - rmiRegistries.put(Integer.toString(rmiURI.port), registry); - } - registry.bind(rmiURI.serviceName, serviceObject); - logger.info("RMI service registered: " + rmiURI); - } catch (AlreadyBoundException e) { - throw new RMIHostException(e); - } catch (RemoteException e) { - RMIHostRuntimeException rmiExec = new RMIHostRuntimeException(e.getMessage()); - rmiExec.setStackTrace(e.getStackTrace()); - throw rmiExec; - } - - } - - public void unregisterService(String uri) throws RMIHostException, RMIHostRuntimeException { - RMIURI rmiURI = new RMIURI(uri); - - try { - Registry registry = rmiRegistries.get(Integer.toString(rmiURI.port)); - if (registry == null) { - registry = LocateRegistry.getRegistry(rmiURI.port); - rmiRegistries.put(Integer.toString(rmiURI.port), registry); - } - registry.unbind(rmiURI.serviceName); - logger.info("RMI service unregistered: " + rmiURI); - } catch (RemoteException e) { - RMIHostRuntimeException rmiExec = new RMIHostRuntimeException(e.getMessage()); - rmiExec.setStackTrace(e.getStackTrace()); - throw rmiExec; - } catch (NotBoundException e) { - throw new RMIHostException(e.getMessage()); - } - } - - public Remote findService(String uri) throws RMIHostException, RMIHostRuntimeException { - RMIURI rmiURI = new RMIURI(uri); - - Remote remoteService = null; - try { - // Requires permission java.net.SocketPermission "host:port", "connect,accept,resolve" - // in security policy. - Registry registry = LocateRegistry.getRegistry(rmiURI.host, rmiURI.port); - - if (registry != null) { - remoteService = registry.lookup(rmiURI.serviceName); - } - } catch (RemoteException e) { - RMIHostRuntimeException rmiExec = new RMIHostRuntimeException(e.getMessage()); - rmiExec.setStackTrace(e.getStackTrace()); - throw rmiExec; - } catch (NotBoundException e) { - throw new RMIHostException(e.getMessage()); - } - return remoteService; - } - - /** - * A representation of an RMI URI. - * - * rmi://[host][:port][/[object]] - * rmi:[/][object] - */ - private static class RMIURI { - private String uriStr; - private String host; - private int port; - private String serviceName; - - private RMIURI(String uriStr) { - this.uriStr = uriStr; - URI uri = URI.create(uriStr); - host = uri.getHost(); - if (host == null) { - host = "localhost"; - } - port = uri.getPort(); - if (port <= 0) { - port = RMI_DEFAULT_PORT; - } - String path = uri.getPath(); - if (path != null && path.charAt(0) == '/') { - path = path.substring(1); - } - serviceName = path; - } - - public String toString() { - return uriStr; - } - } - - public void destroy() { - for (Registry registry : rmiRegistries.values()) { - try { - UnicastRemoteObject.unexportObject(registry, false); - } catch (NoSuchObjectException e) { - e.printStackTrace(); - } - } - rmiRegistries.clear(); - } - -} -- cgit v1.2.3