com.sun.corba.se.spi.protocol.CorbaMessageMediator Java Examples
The following examples show how to use
com.sun.corba.se.spi.protocol.CorbaMessageMediator.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source Project: jdk8u60 Author: chenghanpeng File: CDROutputObject.java License: GNU General Public License v2.0 | 6 votes |
private CDROutputObject( ORB orb, GIOPVersion giopVersion, Message header, BufferManagerWrite manager, byte streamFormatVersion, CorbaMessageMediator mediator) { super(orb, giopVersion, header.getEncodingVersion(), false, manager, streamFormatVersion, ((mediator != null && mediator.getConnection() != null) ? ((CorbaConnection)mediator.getConnection()). shouldUseDirectByteBuffers() : false)); this.header = header; this.orb = orb; this.wrapper = ORBUtilSystemException.get( orb, CORBALogDomains.RPC_ENCODING ) ; this.omgWrapper = OMGSystemException.get( orb, CORBALogDomains.RPC_ENCODING ) ; getBufferManager().setOutputObject(this); this.corbaMessageMediator = mediator; }
Example #2
Source Project: openjdk-8-source Author: keerath File: CDROutputObject.java License: GNU General Public License v2.0 | 6 votes |
public CDROutputObject(ORB orb, MessageMediator messageMediator, Message header, byte streamFormatVersion, int strategy) { this( orb, ((CorbaMessageMediator)messageMediator).getGIOPVersion(), header, BufferManagerFactory. newBufferManagerWrite(strategy, header.getEncodingVersion(), orb), streamFormatVersion, (CorbaMessageMediator)messageMediator); }
Example #3
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: CDROutputObject.java License: GNU General Public License v2.0 | 6 votes |
public CDROutputObject(ORB orb, CorbaMessageMediator mediator, GIOPVersion giopVersion, CorbaConnection connection, Message header, byte streamFormatVersion) { this( orb, giopVersion, header, BufferManagerFactory. newBufferManagerWrite(giopVersion, header.getEncodingVersion(), orb), streamFormatVersion, mediator); this.connection = connection ; }
Example #4
Source Project: hottub Author: dsrg-uoft File: CDROutputObject.java License: GNU General Public License v2.0 | 6 votes |
public CDROutputObject(ORB orb, CorbaMessageMediator mediator, GIOPVersion giopVersion, CorbaConnection connection, Message header, byte streamFormatVersion) { this( orb, giopVersion, header, BufferManagerFactory. newBufferManagerWrite(giopVersion, header.getEncodingVersion(), orb), streamFormatVersion, mediator); this.connection = connection ; }
Example #5
Source Project: openjdk-8-source Author: keerath File: SharedCDRContactInfoImpl.java License: GNU General Public License v2.0 | 6 votes |
public MessageMediator createMessageMediator(Broker broker, ContactInfo contactInfo, Connection connection, String methodName, boolean isOneWay) { if (connection != null) { /// XXX LOGGING throw new RuntimeException("connection is not null"); } CorbaMessageMediator messageMediator = new CorbaMessageMediatorImpl( (ORB) broker, contactInfo, null, // Connection; GIOPVersion.chooseRequestVersion( (ORB)broker, effectiveTargetIOR), effectiveTargetIOR, requestId++, // Fake RequestId getAddressingDisposition(), methodName, isOneWay); return messageMediator; }
Example #6
Source Project: openjdk-8-source Author: keerath File: CDROutputObject.java License: GNU General Public License v2.0 | 6 votes |
public CDROutputObject(ORB orb, CorbaMessageMediator mediator, GIOPVersion giopVersion, CorbaConnection connection, Message header, byte streamFormatVersion) { this( orb, giopVersion, header, BufferManagerFactory. newBufferManagerWrite(giopVersion, header.getEncodingVersion(), orb), streamFormatVersion, mediator); this.connection = connection ; }
Example #7
Source Project: jdk1.8-source-analysis Author: raysonfang File: CorbaContactInfoBase.java License: Apache License 2.0 | 6 votes |
public MessageMediator createMessageMediator(Broker broker, ContactInfo contactInfo, Connection connection, String methodName, boolean isOneWay) { // REVISIT: Would like version, ior, requestid, etc., decisions // to be in client subcontract. Cannot pass these to this // factory method because it breaks generic abstraction. // Maybe set methods on mediator called from subcontract // after creation? CorbaMessageMediator messageMediator = new CorbaMessageMediatorImpl( (ORB) broker, contactInfo, connection, GIOPVersion.chooseRequestVersion( (ORB)broker, effectiveTargetIOR), effectiveTargetIOR, ((CorbaConnection)connection).getNextRequestId(), getAddressingDisposition(), methodName, isOneWay); return messageMediator; }
Example #8
Source Project: jdk1.8-source-analysis Author: raysonfang File: SocketOrChannelConnectionImpl.java License: Apache License 2.0 | 6 votes |
public boolean read() { try { if (orb.transportDebugFlag) { dprint(".read->: " + this); } CorbaMessageMediator messageMediator = readBits(); if (messageMediator != null) { // Null can happen when client closes stream // causing purgecalls. return dispatch(messageMediator); } return true; } finally { if (orb.transportDebugFlag) { dprint(".read<-: " + this); } } }
Example #9
Source Project: jdk8u60 Author: chenghanpeng File: CDROutputObject.java License: GNU General Public License v2.0 | 6 votes |
public CDROutputObject(ORB orb, MessageMediator messageMediator, Message header, byte streamFormatVersion, int strategy) { this( orb, ((CorbaMessageMediator)messageMediator).getGIOPVersion(), header, BufferManagerFactory. newBufferManagerWrite(strategy, header.getEncodingVersion(), orb), streamFormatVersion, (CorbaMessageMediator)messageMediator); }
Example #10
Source Project: TencentKona-8 Author: Tencent File: CDROutputObject.java License: GNU General Public License v2.0 | 6 votes |
public CDROutputObject(ORB orb, MessageMediator messageMediator, Message header, byte streamFormatVersion, int strategy) { this( orb, ((CorbaMessageMediator)messageMediator).getGIOPVersion(), header, BufferManagerFactory. newBufferManagerWrite(strategy, header.getEncodingVersion(), orb), streamFormatVersion, (CorbaMessageMediator)messageMediator); }
Example #11
Source Project: hottub Author: dsrg-uoft File: PIHandlerImpl.java License: GNU General Public License v2.0 | 6 votes |
public void initializeServerPIInfo( CorbaMessageMediator request, ObjectAdapter oa, byte[] objectId, ObjectKeyTemplate oktemp ) { if( !hasServerInterceptors ) return; RequestInfoStack infoStack = (RequestInfoStack)threadLocalServerRequestInfoStack.get(); ServerRequestInfoImpl info = new ServerRequestInfoImpl( orb ); infoStack.push( info ); printPush(); // Notify request object that once response is constructed, make // sure we execute ending points. request.setExecutePIInResponseConstructor( true ); info.setInfo( request, oa, objectId, oktemp ); }
Example #12
Source Project: JDKSourceCode1.8 Author: wupeixuan File: CorbaMessageMediatorImpl.java License: MIT License | 6 votes |
protected void runInterceptors(CorbaMessageMediator messageMediator, ReplyMessage reply) { if( messageMediator.executePIInResponseConstructor() ) { // Invoke server request ending interception points (send_*): // Note: this may end up with a SystemException or an internal // Runtime ForwardRequest ((ORB)messageMediator.getBroker()).getPIHandler(). invokeServerPIEndingPoint( reply ); // Note this will be executed even if a ForwardRequest or // SystemException is thrown by a Portable Interceptors ending // point since we end up in this constructor again anyway. ((ORB)messageMediator.getBroker()).getPIHandler(). cleanupServerPIRequest(); // See createSystemExceptionResponse for why this is necesary. messageMediator.setExecutePIInResponseConstructor(false); } }
Example #13
Source Project: TencentKona-8 Author: Tencent File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
protected void runRemoveThreadInfo(CorbaMessageMediator messageMediator) { // Once you get here then the final reply is available (i.e., // postinvoke and interceptors have completed. if (messageMediator.executeRemoveThreadInfoInResponseConstructor()) { messageMediator.setExecuteRemoveThreadInfoInResponseConstructor(false); ((ORB)messageMediator.getBroker()).popInvocationInfo() ; } }
Example #14
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
private void endRequest(CorbaMessageMediator messageMediator) { ORB orb = (ORB) messageMediator.getBroker(); if (orb.subcontractDebugFlag) { dprint(".handleRequest<-: " + opAndId(messageMediator)); } // release NIO ByteBuffers to ByteBufferPool try { OutputObject outputObj = messageMediator.getOutputObject(); if (outputObj != null) { outputObj.close(); } InputObject inputObj = messageMediator.getInputObject(); if (inputObj != null) { inputObj.close(); } } catch (IOException ex) { // Given what close() does, this catch shouldn't ever happen. // See CDRInput/OutputObject.close() for more info. // It also won't result in a Corba error if an IOException happens. if (orb.subcontractDebugFlag) { dprint(".endRequest: IOException:" + ex.getMessage(), ex); } } finally { ((CorbaConnection)messageMediator.getConnection()).serverRequestProcessingEnds(); } }
Example #15
Source Project: openjdk-8 Author: bpupadhyaya File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
public void handleThrowableDuringServerDispatch( CorbaMessageMediator messageMediator, Throwable throwable, CompletionStatus completionStatus) { if (((ORB)messageMediator.getBroker()).subcontractDebugFlag) { dprint(".handleThrowableDuringServerDispatch: " + opAndId(messageMediator) + ": " + throwable); } // If we haven't unmarshaled the header, we probably don't // have enough information to even send back a reply. // REVISIT // Cannot do this check. When target addressing disposition does // not match (during header unmarshaling) it throws an exception // to be handled here. /* if (! ((CDRInputObject)messageMediator.getInputObject()) .unmarshaledHeader()) { return; } */ handleThrowableDuringServerDispatch(messageMediator, throwable, completionStatus, 1); }
Example #16
Source Project: openjdk-8 Author: bpupadhyaya File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
public CorbaMessageMediator createResponse( CorbaMessageMediator messageMediator, ServiceContexts svc) { // REVISIT: ignore service contexts during framework transition. // They are set in SubcontractResponseHandler to the wrong connection. // Then they would be set again here and a duplicate contexts // exception occurs. return createResponseHelper( messageMediator, getServiceContextsForReply(messageMediator, null)); }
Example #17
Source Project: jdk8u60 Author: chenghanpeng File: SocketOrChannelAcceptorImpl.java License: GNU General Public License v2.0 | 5 votes |
public OutputObject createOutputObject(Broker broker, MessageMediator messageMediator) { CorbaMessageMediator corbaMessageMediator = (CorbaMessageMediator) messageMediator; return sun.corba.OutputStreamFactory.newCDROutputObject((ORB) broker, corbaMessageMediator, corbaMessageMediator.getReplyHeader(), corbaMessageMediator.getStreamFormatVersion()); }
Example #18
Source Project: TencentKona-8 Author: Tencent File: OutputStreamFactory.java License: GNU General Public License v2.0 | 5 votes |
public static CDROutputObject newCDROutputObject( final ORB orb, final CorbaMessageMediator mediator, final GIOPVersion giopVersion, final CorbaConnection connection, final Message header, final byte streamFormatVersion) { return AccessController.doPrivileged( new PrivilegedAction<CDROutputObject>() { @Override public CDROutputObject run() { return new CDROutputObject(orb, mediator, giopVersion, connection, header, streamFormatVersion); } }); }
Example #19
Source Project: openjdk-8-source Author: keerath File: CorbaContactInfoBase.java License: GNU General Public License v2.0 | 5 votes |
public MessageMediator finishCreatingMessageMediator(Broker broker, Connection conn, MessageMediator messageMediator) { ORB orb = (ORB) broker; CorbaConnection connection = (CorbaConnection) conn; CorbaMessageMediator corbaMessageMediator = (CorbaMessageMediator)messageMediator; if (orb.transportDebugFlag) { dprint( ".finishCreatingMessageMediator: waiting for message body on connection: " + connection); } Message msg = corbaMessageMediator.getDispatchHeader(); msg.setByteBuffer(corbaMessageMediator.getDispatchBuffer()); // read giop body only msg = MessageBase.readGIOPBody(orb, connection, msg); ByteBuffer byteBuffer = msg.getByteBuffer(); msg.setByteBuffer(null); corbaMessageMediator.setDispatchHeader(msg); corbaMessageMediator.setDispatchBuffer(byteBuffer); return corbaMessageMediator; }
Example #20
Source Project: TencentKona-8 Author: Tencent File: SharedCDRContactInfoImpl.java License: GNU General Public License v2.0 | 5 votes |
public OutputObject createOutputObject(MessageMediator messageMediator) { CorbaMessageMediator corbaMessageMediator = (CorbaMessageMediator) messageMediator; // NOTE: GROW. OutputObject outputObject = sun.corba.OutputStreamFactory.newCDROutputObject(orb, messageMediator, corbaMessageMediator.getRequestHeader(), corbaMessageMediator.getStreamFormatVersion(), BufferManagerFactory.GROW); messageMediator.setOutputObject(outputObject); return outputObject; }
Example #21
Source Project: JDKSourceCode1.8 Author: wupeixuan File: CorbaServerRequestDispatcherImpl.java License: MIT License | 5 votes |
protected CorbaMessageMediator handleDynamicResult( ServerRequestImpl sreq, CorbaMessageMediator req) { try { if (orb.subcontractDebugFlag) { dprint(".handleDynamicResult->: " + opAndId(req)); } CorbaMessageMediator response = null ; // Check if ServerRequestImpl.result() has been called Any excany = sreq.checkResultCalled(); if (excany == null) { // normal return if (orb.subcontractDebugFlag) { dprint(".handleDynamicResult: " + opAndId(req) + ": handling normal result"); } // Marshal out/inout/return parameters into the ReplyMessage response = sendingReply(req); OutputStream os = (OutputStream) response.getOutputObject(); sreq.marshalReplyParams(os); } else { if (orb.subcontractDebugFlag) { dprint(".handleDynamicResult: " + opAndId(req) + ": handling error"); } response = sendingReply(req, excany); } return response ; } finally { if (orb.subcontractDebugFlag) { dprint(".handleDynamicResult<-: " + opAndId(req)); } } }
Example #22
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: CorbaContactInfoBase.java License: GNU General Public License v2.0 | 5 votes |
public InputObject createInputObject(Broker broker, MessageMediator messageMediator) { // REVISIT: Duplicate of acceptor code. CorbaMessageMediator corbaMessageMediator = (CorbaMessageMediator) messageMediator; return new CDRInputObject((ORB)broker, (CorbaConnection)messageMediator.getConnection(), corbaMessageMediator.getDispatchBuffer(), corbaMessageMediator.getDispatchHeader()); }
Example #23
Source Project: openjdk-jdk8u-backup Author: AdoptOpenJDK File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
public CorbaMessageMediator createLocationForward( CorbaMessageMediator messageMediator, IOR ior, ServiceContexts svc) { ReplyMessage reply = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), ReplyMessage.LOCATION_FORWARD, getServiceContextsForReply(messageMediator, svc), ior); return createResponseHelper(messageMediator, reply, ior); }
Example #24
Source Project: jdk1.8-source-analysis Author: raysonfang File: CorbaMessageMediatorImpl.java License: Apache License 2.0 | 5 votes |
protected CorbaMessageMediator createResponseHelper( CorbaMessageMediator messageMediator, ServiceContexts svc,boolean user) { ReplyMessage message = MessageBase.createReply( (ORB)messageMediator.getBroker(), messageMediator.getGIOPVersion(), messageMediator.getEncodingVersion(), messageMediator.getRequestId(), user ? ReplyMessage.USER_EXCEPTION : ReplyMessage.SYSTEM_EXCEPTION, svc, null); return createResponseHelper(messageMediator, message, null); }
Example #25
Source Project: hottub Author: dsrg-uoft File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
private void beginRequest(CorbaMessageMediator messageMediator) { ORB orb = (ORB) messageMediator.getBroker(); if (orb.subcontractDebugFlag) { dprint(".handleRequest->:"); } connection.serverRequestProcessingBegins(); }
Example #26
Source Project: jdk8u60 Author: chenghanpeng File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
private void sendResponse(CorbaMessageMediator messageMediator) { if (orb.subcontractDebugFlag) { dprint(".handleRequest: " + opAndId(messageMediator) + ": sending response"); } // REVISIT - type and location CDROutputObject outputObject = (CDROutputObject) messageMediator.getOutputObject(); if (outputObject != null) { // REVISIT - can be null for TRANSIENT below. outputObject.finishSendingMessage(); } }
Example #27
Source Project: jdk1.8-source-analysis Author: raysonfang File: CorbaServerRequestDispatcherImpl.java License: Apache License 2.0 | 5 votes |
protected CorbaMessageMediator handleDynamicResult( ServerRequestImpl sreq, CorbaMessageMediator req) { try { if (orb.subcontractDebugFlag) { dprint(".handleDynamicResult->: " + opAndId(req)); } CorbaMessageMediator response = null ; // Check if ServerRequestImpl.result() has been called Any excany = sreq.checkResultCalled(); if (excany == null) { // normal return if (orb.subcontractDebugFlag) { dprint(".handleDynamicResult: " + opAndId(req) + ": handling normal result"); } // Marshal out/inout/return parameters into the ReplyMessage response = sendingReply(req); OutputStream os = (OutputStream) response.getOutputObject(); sreq.marshalReplyParams(os); } else { if (orb.subcontractDebugFlag) { dprint(".handleDynamicResult: " + opAndId(req) + ": handling error"); } response = sendingReply(req, excany); } return response ; } finally { if (orb.subcontractDebugFlag) { dprint(".handleDynamicResult<-: " + opAndId(req)); } } }
Example #28
Source Project: jdk1.8-source-analysis Author: raysonfang File: CorbaContactInfoBase.java License: Apache License 2.0 | 5 votes |
public MessageMediator createMessageMediator(Broker broker,Connection conn) { ORB orb = (ORB) broker; CorbaConnection connection = (CorbaConnection) conn; if (orb.transportDebugFlag) { if (connection.shouldReadGiopHeaderOnly()) { dprint( ".createMessageMediator: waiting for message header on connection: " + connection); } else { dprint( ".createMessageMediator: waiting for message on connection: " + connection); } } Message msg = null; if (connection.shouldReadGiopHeaderOnly()) { // read giop header only msg = MessageBase.readGIOPHeader(orb, connection); } else { // read entire giop message msg = MessageBase.readGIOPMessage(orb, connection); } ByteBuffer byteBuffer = msg.getByteBuffer(); msg.setByteBuffer(null); CorbaMessageMediator messageMediator = new CorbaMessageMediatorImpl(orb, connection, msg, byteBuffer); return messageMediator; }
Example #29
Source Project: openjdk-jdk8u Author: AdoptOpenJDK File: CorbaMessageMediatorImpl.java License: GNU General Public License v2.0 | 5 votes |
private void beginRequest(CorbaMessageMediator messageMediator) { ORB orb = (ORB) messageMediator.getBroker(); if (orb.subcontractDebugFlag) { dprint(".handleRequest->:"); } connection.serverRequestProcessingBegins(); }
Example #30
Source Project: jdk1.8-source-analysis Author: raysonfang File: CorbaContactInfoBase.java License: Apache License 2.0 | 5 votes |
public OutputObject createOutputObject(MessageMediator messageMediator) { CorbaMessageMediator corbaMessageMediator = (CorbaMessageMediator) messageMediator; OutputObject outputObject = sun.corba.OutputStreamFactory.newCDROutputObject(orb, messageMediator, corbaMessageMediator.getRequestHeader(), corbaMessageMediator.getStreamFormatVersion()); messageMediator.setOutputObject(outputObject); return outputObject; }