corbacontactinfolistimpl.java
来自「JAVA 所有包」· Java 代码 · 共 223 行
JAVA
223 行
/* * @(#)CorbaContactInfoListImpl.java 1.37 06/08/14 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.impl.transport;import java.util.ArrayList;import java.util.Iterator;import java.util.List;import com.sun.corba.se.pept.transport.ContactInfo;import com.sun.corba.se.spi.ior.IOR ;import com.sun.corba.se.spi.ior.iiop.IIOPProfile ;import com.sun.corba.se.spi.ior.iiop.IIOPProfileTemplate ;import com.sun.corba.se.spi.oa.ObjectAdapterFactory;import com.sun.corba.se.spi.orb.ORB;import com.sun.corba.se.spi.protocol.LocalClientRequestDispatcher;import com.sun.corba.se.spi.protocol.LocalClientRequestDispatcherFactory;import com.sun.corba.se.spi.transport.CorbaContactInfoList ;import com.sun.corba.se.spi.transport.SocketInfo;import com.sun.corba.se.impl.orbutil.ORBConstants;import com.sun.corba.se.impl.protocol.NotLocalLocalCRDImpl;/** * @author Harold Carr */public class CorbaContactInfoListImpl implements CorbaContactInfoList{ protected ORB orb; protected LocalClientRequestDispatcher LocalClientRequestDispatcher; protected IOR targetIOR; protected IOR effectiveTargetIOR; protected List effectiveTargetIORContactInfoList; protected ContactInfo primaryContactInfo; // XREVISIT - is this used? public CorbaContactInfoListImpl(ORB orb) { this.orb = orb; } public CorbaContactInfoListImpl(ORB orb, IOR targetIOR) { this(orb); setTargetIOR(targetIOR); } //////////////////////////////////////////////////// // // pept.transport.ContactInfoList // public synchronized Iterator iterator() { createContactInfoList(); return new CorbaContactInfoListIteratorImpl( orb, this, primaryContactInfo, effectiveTargetIORContactInfoList); } //////////////////////////////////////////////////// // // spi.transport.CorbaContactInfoList // public synchronized void setTargetIOR(IOR targetIOR) { this.targetIOR = targetIOR; setEffectiveTargetIOR(targetIOR); } public synchronized IOR getTargetIOR() { return targetIOR; } public synchronized void setEffectiveTargetIOR(IOR effectiveTargetIOR) { this.effectiveTargetIOR = effectiveTargetIOR; effectiveTargetIORContactInfoList = null; if (primaryContactInfo != null && orb.getORBData().getIIOPPrimaryToContactInfo() != null) { orb.getORBData().getIIOPPrimaryToContactInfo() .reset(primaryContactInfo); } primaryContactInfo = null; setLocalSubcontract(); } public synchronized IOR getEffectiveTargetIOR() { return effectiveTargetIOR; } public synchronized LocalClientRequestDispatcher getLocalClientRequestDispatcher() { return LocalClientRequestDispatcher; } //////////////////////////////////////////////////// // // org.omg.CORBA.portable.Delegate // // REVISIT - hashCode(org.omg.CORBA.Object self) //////////////////////////////////////////////////// // // java.lang.Object // public synchronized int hashCode() { return targetIOR.hashCode(); } //////////////////////////////////////////////////// // // Implementation // protected void createContactInfoList() { if (effectiveTargetIORContactInfoList != null) { return; } effectiveTargetIORContactInfoList = new ArrayList(); IIOPProfile iiopProfile = effectiveTargetIOR.getProfile(); String hostname = ((IIOPProfileTemplate)iiopProfile.getTaggedProfileTemplate()) .getPrimaryAddress().getHost().toLowerCase(); int port = ((IIOPProfileTemplate)iiopProfile.getTaggedProfileTemplate()) .getPrimaryAddress().getPort(); // For use by "sticky manager" if one is registered. primaryContactInfo = createContactInfo(SocketInfo.IIOP_CLEAR_TEXT, hostname, port); if (iiopProfile.isLocal()) { // NOTE: IMPORTANT: // Only do local. The APP Server interceptors check // effectiveTarget.isLocal - which is determined via // the IOR - so if we added other addresses then // transactions and interceptors would not execute. ContactInfo contactInfo = new SharedCDRContactInfoImpl( orb, this, effectiveTargetIOR, orb.getORBData().getGIOPAddressDisposition()); effectiveTargetIORContactInfoList.add(contactInfo); } else { addRemoteContactInfos(effectiveTargetIOR, effectiveTargetIORContactInfoList); } } protected void addRemoteContactInfos( IOR effectiveTargetIOR, List effectiveTargetIORContactInfoList) { ContactInfo contactInfo; List socketInfos = orb.getORBData() .getIORToSocketInfo().getSocketInfo(effectiveTargetIOR); Iterator iterator = socketInfos.iterator(); while (iterator.hasNext()) { SocketInfo socketInfo = (SocketInfo) iterator.next(); String type = socketInfo.getType(); String host = socketInfo.getHost().toLowerCase(); int port = socketInfo.getPort(); contactInfo = createContactInfo(type, host, port); effectiveTargetIORContactInfoList.add(contactInfo); } } protected ContactInfo createContactInfo(String type, String hostname, int port) { return new SocketOrChannelContactInfoImpl( orb, this, // XREVISIT - See Base Line 62 effectiveTargetIOR, orb.getORBData().getGIOPAddressDisposition(), type, hostname, port); } /** * setLocalSubcontract sets cached information that is set whenever * the effectiveTargetIOR changes. * * Note: this must be maintained accurately whether or not the ORB * allows local optimization, because ServantManagers in the POA * ALWAYS use local optimization ONLY (they do not have a remote case). */ protected void setLocalSubcontract() { if (!effectiveTargetIOR.getProfile().isLocal()) { LocalClientRequestDispatcher = new NotLocalLocalCRDImpl(); return; } // XXX Note that this always uses the first IIOP profile to get the // scid. What about multi-profile IORs? This should perhaps be // tied to the current ContactInfo in some way, together with an // implementation of ClientDelegate that generally prefers co-located // ContactInfo. This may in fact mean that we should do this at // the ContactInfo level, rather than the IOR/profile level. int scid = effectiveTargetIOR.getProfile().getObjectKeyTemplate(). getSubcontractId() ; LocalClientRequestDispatcherFactory lcsf = orb.getRequestDispatcherRegistry().getLocalClientRequestDispatcherFactory( scid ) ; LocalClientRequestDispatcher = lcsf.create( scid, effectiveTargetIOR ) ; }}// End of file.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?