All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.proxy.ejb.HomeHandleImplIIOP Maven / Gradle / Ivy

The newest version!
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2006, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.jboss.proxy.ejb;

import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.rmi.RemoteException;
import java.security.AccessController;
import java.security.PrivilegedAction;

import javax.ejb.EJBHome;
import javax.ejb.HomeHandle;
import javax.ejb.spi.HandleDelegate;
import javax.rmi.PortableRemoteObject;
import javax.rmi.CORBA.Stub;

import org.jboss.iiop.CorbaORB;
import org.jboss.proxy.ejb.handle.HandleDelegateImpl;

/**
 * A CORBA-based EJB home handle implementation.
 *      
 * @author  Rickard Öberg.
 * @author  Jason Dillon
 * @author  Francisco Reverbel
 * @author  [email protected]
 * @version $Revision: 65794 $
 */
public class HomeHandleImplIIOP
      implements HomeHandle 
{
   /** @since 4.2.0 */
   static final long serialVersionUID = 8652819695513956661L;

   static final boolean oldSerialization;
   
   static
   {
      oldSerialization = AccessController.doPrivileged(new PrivilegedAction() 
      {
         public Boolean run()
         {
            try
            {
               return Boolean.getBoolean("org.jboss.proxy.ejb.old.homehandle.serialization");
            }
            catch (Exception ignored)
            {
               return false;
            }
         }
      });
   }
   
   /**
    * This handle encapsulates an stringfied CORBA reference for an 
    * EJBHome. 
    */
   private String ior;

   /** The stub class */
   private transient Class stubClass = EJBHome.class;
   
   /**
    * Constructs a HomeHandleImplIIOP.
    *
    * @param ior     An stringfied CORBA reference for an EJBHome.
    */
   public HomeHandleImplIIOP(String ior) 
   {
      this.ior = ior;
   }
   
   /**
    * Constructs a HomeHandleImplIIOP.
    *
    * @param home    An EJBHome.
    */
   public HomeHandleImplIIOP(EJBHome home) 
   {
      this((org.omg.CORBA.Object)home);
   }
   
   /**
    * Constructs a HomeHandleImplIIOP.
    *
    * @param home    A CORBA reference for an EJBHome.
    */
   public HomeHandleImplIIOP(org.omg.CORBA.Object home) 
   {
      this.ior = CorbaORB.getInstance().object_to_string(home);
      this.stubClass = home.getClass();
   }
   
   // Public --------------------------------------------------------
   
   // Handle implementation -----------------------------------------
   
   /**
    * Obtains the EJBHome represented by this home handle.
    *
    * @return  a reference to an EJBHome.
    * @throws RemoteException
    */
   public EJBHome getEJBHome() throws RemoteException 
   {
      try 
      {
         org.omg.CORBA.Object obj = CorbaORB.getInstance().string_to_object(ior);
         return narrow(obj);
      }
      catch (RemoteException e)
      {
         throw e;
      }
      catch (Exception e) 
      {
         throw new RemoteException("Could not get EJBHome from HomeHandle", e);
      }
   }

   private EJBHome narrow(org.omg.CORBA.Object obj) throws ClassCastException, RemoteException
   {
      // Null object - this should probably throw some kind of error?
      if (obj == null)
         return null;
      
      // Already the correct type
      if (stubClass.isAssignableFrom(obj.getClass()))
         return (EJBHome) obj;
      
      // Backwards compatibility - almost certainly wrong!
      if (stubClass == EJBHome.class)
         return (EJBHome) PortableRemoteObject.narrow(obj, EJBHome.class);

      // Create the stub from the stub class
      try
      {
         Stub stub = (Stub) stubClass.newInstance();
         stub._set_delegate(((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate());
         return (EJBHome) stub;
      }
      catch (Exception e)
      {
         throw new RemoteException("Error creating stub", e);
      }
   }

   private void writeObject(ObjectOutputStream oostream) throws IOException
   {
      if (oldSerialization)
      {
         oostream.defaultWriteObject();
      }
      else
      {
         HandleDelegate delegate = HandleDelegateImpl.getDelegate();
         delegate.writeEJBHome(getEJBHome(), oostream);
      }
   }

   private void readObject(ObjectInputStream oistream) throws IOException, ClassNotFoundException
   {
      if (oldSerialization)
      {
         oistream.defaultReadObject();
         stubClass = EJBHome.class;
      }
      else
      {
         HandleDelegate delegate = HandleDelegateImpl.getDelegate();
         EJBHome obj = delegate.readEJBHome(oistream);
         this.ior = CorbaORB.getInstance().object_to_string((org.omg.CORBA.Object) obj);
         this.stubClass = obj.getClass();
      }
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy