|
Glassfish example source code file (POAProtocolMgr.java)
The Glassfish POAProtocolMgr.java source code
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2011 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package org.glassfish.enterprise.iiop.impl;
import com.sun.corba.ee.spi.ior.IOR;
import com.sun.corba.ee.spi.ior.ObjectKey;
import com.sun.corba.ee.spi.ior.TaggedProfile;
import com.sun.corba.ee.spi.oa.rfm.ReferenceFactory;
import java.rmi.Remote;
import java.rmi.RemoteException;
import org.glassfish.enterprise.iiop.api.ProtocolManager;
import org.glassfish.enterprise.iiop.api.RemoteReferenceFactory;
import org.glassfish.enterprise.iiop.spi.EjbContainerFacade;
import org.glassfish.enterprise.iiop.spi.EjbService;
import com.sun.enterprise.deployment.EjbDescriptor;
import com.sun.enterprise.util.Utility;
import javax.ejb.NoSuchObjectLocalException;
import javax.ejb.TransactionRolledbackLocalException;
import javax.ejb.TransactionRequiredLocalException;
import org.omg.PortableServer.POA;
import org.omg.PortableServer.Servant;
import org.omg.CosNaming.NamingContext;
import org.omg.CosNaming.NamingContextHelper;
import org.omg.CosNaming.NameComponent;
import com.sun.corba.ee.spi.oa.rfm.ReferenceFactoryManager ;
import com.sun.corba.ee.spi.orb.ORB;
import com.sun.corba.ee.spi.presentation.rmi.PresentationManager;
import com.sun.corba.ee.spi.presentation.rmi.StubAdapter;
import com.sun.corba.ee.spi.orbutil.ORBConstants;
import com.sun.logging.LogDomains;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.rmi.CORBA.Tie;
import org.jvnet.hk2.annotations.Service;
import org.jvnet.hk2.component.Habitat;
import org.jvnet.hk2.annotations.Inject;
import org.omg.CORBA.CompletionStatus;
import org.omg.CORBA.INVALID_TRANSACTION;
import org.omg.CORBA.LocalObject;
import org.omg.CORBA.MARSHAL;
import org.omg.CORBA.NO_PERMISSION;
import org.omg.CORBA.OBJECT_NOT_EXIST;
import org.omg.CORBA.Policy;
import org.omg.CORBA.TRANSACTION_REQUIRED;
import org.omg.CORBA.TRANSACTION_ROLLEDBACK;
import org.omg.PortableServer.ForwardRequest;
import org.omg.PortableServer.ServantLocator;
import org.omg.PortableServer.ServantLocatorPackage.CookieHolder;
/**
* This class implements the ProtocolManager interface for the
* RMI/IIOP ORB with POA (Portable Object Adapter).
* Note that the POA is now accessed only through the
* ReferenceFactoryManager for EJB.
*
* @author Vivek Nagar
*/
@Service
public final class POAProtocolMgr extends org.omg.CORBA.LocalObject
implements ProtocolManager
{
private static final Logger _logger =
LogDomains.getLogger(POAProtocolMgr.class, LogDomains.CORBA_LOGGER);
private static final int MAPEXCEPTION_CODE = 9998;
private ORB orb;
private ReferenceFactoryManager rfm = null ;
private PresentationManager presentationMgr;
@Inject
private Habitat habitat;
public POAProtocolMgr() {}
@Override
public void initialize(org.omg.CORBA.ORB o) {
this.orb = (ORB)o;
this.presentationMgr = ORB.getPresentationManager();
}
// Called in all VMs, must be called only after InitialNaming is available
@Override
public void initializePOAs() throws Exception {
// NOTE: The RootPOA manager used to be activated here.
getRFM() ;
_logger.log(Level.FINE,
"POAProtocolMgr.initializePOAs: RFM resolved and activated");
}
private static class RemoteNamingServantLocator extends LocalObject
implements ServantLocator {
private final ORB orb ;
private final Servant servant ;
public RemoteNamingServantLocator( ORB orb, Remote impl ) {
this.orb = orb ;
Tie tie = ORB.getPresentationManager().getTie() ;
tie.setTarget( impl ) ;
servant = Servant.class.cast( tie ) ;
}
@Override
public synchronized Servant preinvoke( byte[] oid, POA adapter,
String operation, CookieHolder the_cookie ) throws ForwardRequest {
return servant ;
}
@Override
public void postinvoke( byte[] oid, POA adapter,
String operation, Object the_cookie, Servant the_servant ) {
}
}
private synchronized ReferenceFactoryManager getRFM() {
if (rfm == null) {
try {
rfm = ReferenceFactoryManager.class.cast(
orb.resolve_initial_references( "ReferenceFactoryManager" )) ;
rfm.activate() ;
} catch (Exception exc) {
// do nothing
}
}
return rfm ;
}
private org.omg.CORBA.Object getRemoteNamingReference( Remote remoteNamingProvider ) {
final ServantLocator locator = new RemoteNamingServantLocator( orb,
remoteNamingProvider ) ;
final PresentationManager pm = ORB.getPresentationManager() ;
String repositoryId ;
try {
repositoryId = pm.getRepositoryId( remoteNamingProvider ) ;
} catch (Exception exc) {
throw new RuntimeException( exc ) ;
}
final List<Policy> policies = new ArrayList
Other Glassfish examples (source code examples)Here is a short list of links related to this Glassfish POAProtocolMgr.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.