/* Util.java -- Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ package javax.rmi.CORBA; import org.omg.CORBA.Any; import org.omg.CORBA.BAD_PARAM; import org.omg.CORBA.COMM_FAILURE; import org.omg.CORBA.CompletionStatus; import org.omg.CORBA.INVALID_TRANSACTION; import org.omg.CORBA.INV_OBJREF; import org.omg.CORBA.MARSHAL; import org.omg.CORBA.NO_PERMISSION; import org.omg.CORBA.OBJECT_NOT_EXIST; import org.omg.CORBA.OMGVMCID; import org.omg.CORBA.ORB; import org.omg.CORBA.SystemException; import org.omg.CORBA.TRANSACTION_REQUIRED; import org.omg.CORBA.TRANSACTION_ROLLEDBACK; import org.omg.CORBA.TypeCode; import org.omg.CORBA.portable.InputStream; import org.omg.CORBA.portable.OutputStream; import gnu.javax.rmi.CORBA.DelegateFactory; import java.rmi.AccessException; import java.rmi.MarshalException; import java.rmi.NoSuchObjectException; import java.rmi.Remote; import java.rmi.RemoteException; import java.rmi.ServerError; import java.rmi.ServerException; import java.rmi.UnexpectedException; import java.rmi.server.RMIClassLoader; import javax.transaction.InvalidTransactionException; import javax.transaction.TransactionRequiredException; import javax.transaction.TransactionRolledbackException; /** * Provides utility methods used by stubs and ties to perform common operations. * The functionality is forwarded to the enclosed UtilDelegate. This delegate * can be altered by setting the system property "javax.rmi.CORBA.UtilClass" to * the name of the alternative class that must implement {@link UtilDelegate}. * * @author Audrius Meskauskas (AudriusA@Bioinformatics.org) */ public class Util { /** * The delegate, responsible for all functionality. */ static UtilDelegate delegate = (UtilDelegate) DelegateFactory.getInstance(DelegateFactory.UTIL); /** * Prevents this class from being instantiated. */ private Util() { } /** * Used by local stubs to create a copy of the object. The object must be * Serializable for this operation to succeed. Strings are not copied and * 1D-3D string arrays are only cloned. */ public static java.lang.Object copyObject(java.lang.Object object, ORB orb) throws RemoteException { return delegate.copyObject(object, orb); } /** * Used by local stubs to create a multiple copies of the object, preserving * sharing accross the parameters if necessary. */ public static java.lang.Object[] copyObjects(java.lang.Object[] object, ORB orb) throws RemoteException { return delegate.copyObjects(object, orb); } /** * Get the value handler that Serializes Java objects to and from CDR (GIOP) * streams. * * When using the default Util implementation, the class of the returned * handler can be altered by setting by setting the system property * "javax.rmi.CORBA.ValueHandlerClass" to the name of the alternative class * that must implement {@link ValueHandler}. */ public static ValueHandler createValueHandler() { return delegate.createValueHandler(); } /** * This call is finally delegated to {@link RMIClassLoader#getClassAnnotation}; */ public static String getCodebase(Class clz) { return delegate.getCodebase(clz); } /** * Get the Tie that handles invocations on the given target. If the target/Tie * pair has not been previously registered using {@link #registerTarget}, * this method tries to locate a tie class by the name pattern. If this * succeeds, the tie-target pair is also registered. * * @return the Tie. */ public static Tie getTie(Remote target) { return delegate.getTie(target); } /** * Checks if the given stub is local. The implementation it delegates call to * {@link ObjectImpl#_is_local(). * * @param stub a stub to check. * @return true if the stub is local, false otherwise. * * @throws RemoteException if the {@link ObjectImpl#_is_local()} throws a * {@link org.omg.CORBA.SystemException}. */ public static boolean isLocal(Stub stub) throws RemoteException { return delegate.isLocal(stub); } /** * Load the class. The method uses class loaders from the call stact first. If * this fails, the further behaviour depends on the System Property * "java.rmi.server.useCodebaseOnly" with default value "false". * *
*
CORBA Exception | *RMI Exception | *
---|---|
{@link COMM_FAILURE} | *{@link MarshalException} | *
{@link INV_OBJREF} | *{@link NoSuchObjectException} | *
{@link NO_PERMISSION} | *{@link AccessException} | *
{@link MARSHAL} | *{@link MarshalException} | *
{@link BAD_PARAM} (all other cases) | *{@link MarshalException} | *
{@link OBJECT_NOT_EXIST} | *{@link NoSuchObjectException} | *
{@link TRANSACTION_REQUIRED} | *{@link TransactionRequiredException} | *
{@link TRANSACTION_ROLLEDBACK} | *{@link TransactionRolledbackException} | *
{@link INVALID_TRANSACTION} | *{@link InvalidTransactionException} | *
Any other {@link SystemException} | *{@link RemoteException} | *
* The exception detailed message always consists of *
; nested exception is: (line feed)(tab)
"* For instance, if the Internet connection was refused: *
* CORBA COMM_FAILURE 0x535500C9 No
*
* The original CORBA exception is set as the cause of the RemoteException * being created. *
*/ public static RemoteException mapSystemException(SystemException ex) { return delegate.mapSystemException(ex); } /** * Register the Tie-target pair. As the Tie is a Servant, it can potentially * be connected to several objects and hence may be registered with several * targets. */ public static void registerTarget(Tie tie, Remote target) { delegate.registerTarget(tie, target); } /** * Deactivate the associated Tie, if it is found and is not connected to other * registered targets. Independing from the POA policies, the transparent * reactivation will not be possible. */ public static void unexportObject(Remote target) throws NoSuchObjectException { delegate.unexportObject(target); } /** * Converts the exception that was thrown by the implementation method on a * server side into RemoteException that can be transferred and re-thrown on a * client side. The method converts exceptions as defined in the following * table:Exception to map (or subclass) | *Maps into | *
---|---|
{@link Error} | *{@link ServerError} | *
{@link RemoteException} | *{@link ServerException} | *
{@link SystemException} | *wrapException({@link #mapSystemException}) | *
{@link RuntimeException} | *rethrows | *
Any other exception | *{@link UnexpectedException} | *