Java Code Examples for com.sun.corba.se.spi.protocol.CorbaMessageMediator#isOneWay()

The following examples show how to use com.sun.corba.se.spi.protocol.CorbaMessageMediator#isOneWay() . 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 File: CorbaResponseWaitingRoomImpl.java    From jdk1.8-source-analysis with Apache License 2.0 4 votes vote down vote up
public InputObject waitForResponse(MessageMediator mediator)
{
  CorbaMessageMediator messageMediator = (CorbaMessageMediator) mediator;

  try {

    InputObject returnStream = null;

    if (orb.transportDebugFlag) {
        dprint(".waitForResponse->: " + opAndId(messageMediator));
    }

    Integer requestId = messageMediator.getRequestIdInteger();

    if (messageMediator.isOneWay()) {
        // The waiter is removed in releaseReply in the same
        // way as a normal request.

        if (orb.transportDebugFlag) {
            dprint(".waitForResponse: one way - not waiting: "
                   + opAndId(messageMediator));
        }

        return null;
    }

    OutCallDesc call = out_calls.get(requestId);
    if (call == null) {
        throw wrapper.nullOutCall(CompletionStatus.COMPLETED_MAYBE);
    }

    synchronized(call.done) {

        while (call.inputObject == null && call.exception == null) {
            // Wait for the reply from the server.
            // The ReaderThread reads in the reply IIOP message
            // and signals us.
            try {
                if (orb.transportDebugFlag) {
                    dprint(".waitForResponse: waiting: "
                           + opAndId(messageMediator));
                }
                call.done.wait();
            } catch (InterruptedException ie) {};
        }

        if (call.exception != null) {
            if (orb.transportDebugFlag) {
                dprint(".waitForResponse: exception: "
                       + opAndId(messageMediator));
            }
            throw call.exception;
        }

        returnStream = call.inputObject;
    }

    // REVISIT -- exceptions from unmarshaling code will
    // go up through this client thread!

    if (returnStream != null) {
        // On fragmented streams the header MUST be unmarshaled here
        // (in the client thread) in case it blocks.
        // If the header was already unmarshaled, this won't
        // do anything
        // REVISIT: cast - need interface method.
        ((CDRInputObject)returnStream).unmarshalHeader();
    }

    return returnStream;

  } finally {
    if (orb.transportDebugFlag) {
        dprint(".waitForResponse<-: " + opAndId(messageMediator));
    }
  }
}
 
Example 2
Source File: CorbaResponseWaitingRoomImpl.java    From TencentKona-8 with GNU General Public License v2.0 4 votes vote down vote up
public InputObject waitForResponse(MessageMediator mediator)
{
  CorbaMessageMediator messageMediator = (CorbaMessageMediator) mediator;

  try {

    InputObject returnStream = null;

    if (orb.transportDebugFlag) {
        dprint(".waitForResponse->: " + opAndId(messageMediator));
    }

    Integer requestId = messageMediator.getRequestIdInteger();

    if (messageMediator.isOneWay()) {
        // The waiter is removed in releaseReply in the same
        // way as a normal request.

        if (orb.transportDebugFlag) {
            dprint(".waitForResponse: one way - not waiting: "
                   + opAndId(messageMediator));
        }

        return null;
    }

    OutCallDesc call = out_calls.get(requestId);
    if (call == null) {
        throw wrapper.nullOutCall(CompletionStatus.COMPLETED_MAYBE);
    }

    synchronized(call.done) {

        while (call.inputObject == null && call.exception == null) {
            // Wait for the reply from the server.
            // The ReaderThread reads in the reply IIOP message
            // and signals us.
            try {
                if (orb.transportDebugFlag) {
                    dprint(".waitForResponse: waiting: "
                           + opAndId(messageMediator));
                }
                call.done.wait();
            } catch (InterruptedException ie) {};
        }

        if (call.exception != null) {
            if (orb.transportDebugFlag) {
                dprint(".waitForResponse: exception: "
                       + opAndId(messageMediator));
            }
            throw call.exception;
        }

        returnStream = call.inputObject;
    }

    // REVISIT -- exceptions from unmarshaling code will
    // go up through this client thread!

    if (returnStream != null) {
        // On fragmented streams the header MUST be unmarshaled here
        // (in the client thread) in case it blocks.
        // If the header was already unmarshaled, this won't
        // do anything
        // REVISIT: cast - need interface method.
        ((CDRInputObject)returnStream).unmarshalHeader();
    }

    return returnStream;

  } finally {
    if (orb.transportDebugFlag) {
        dprint(".waitForResponse<-: " + opAndId(messageMediator));
    }
  }
}
 
Example 3
Source File: CorbaResponseWaitingRoomImpl.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
public InputObject waitForResponse(MessageMediator mediator)
{
  CorbaMessageMediator messageMediator = (CorbaMessageMediator) mediator;

  try {

    InputObject returnStream = null;

    if (orb.transportDebugFlag) {
        dprint(".waitForResponse->: " + opAndId(messageMediator));
    }

    Integer requestId = messageMediator.getRequestIdInteger();

    if (messageMediator.isOneWay()) {
        // The waiter is removed in releaseReply in the same
        // way as a normal request.

        if (orb.transportDebugFlag) {
            dprint(".waitForResponse: one way - not waiting: "
                   + opAndId(messageMediator));
        }

        return null;
    }

    OutCallDesc call = out_calls.get(requestId);
    if (call == null) {
        throw wrapper.nullOutCall(CompletionStatus.COMPLETED_MAYBE);
    }

    synchronized(call.done) {

        while (call.inputObject == null && call.exception == null) {
            // Wait for the reply from the server.
            // The ReaderThread reads in the reply IIOP message
            // and signals us.
            try {
                if (orb.transportDebugFlag) {
                    dprint(".waitForResponse: waiting: "
                           + opAndId(messageMediator));
                }
                call.done.wait();
            } catch (InterruptedException ie) {};
        }

        if (call.exception != null) {
            if (orb.transportDebugFlag) {
                dprint(".waitForResponse: exception: "
                       + opAndId(messageMediator));
            }
            throw call.exception;
        }

        returnStream = call.inputObject;
    }

    // REVISIT -- exceptions from unmarshaling code will
    // go up through this client thread!

    if (returnStream != null) {
        // On fragmented streams the header MUST be unmarshaled here
        // (in the client thread) in case it blocks.
        // If the header was already unmarshaled, this won't
        // do anything
        // REVISIT: cast - need interface method.
        ((CDRInputObject)returnStream).unmarshalHeader();
    }

    return returnStream;

  } finally {
    if (orb.transportDebugFlag) {
        dprint(".waitForResponse<-: " + opAndId(messageMediator));
    }
  }
}
 
Example 4
Source File: CorbaResponseWaitingRoomImpl.java    From JDKSourceCode1.8 with MIT License 4 votes vote down vote up
public InputObject waitForResponse(MessageMediator mediator)
{
  CorbaMessageMediator messageMediator = (CorbaMessageMediator) mediator;

  try {

    InputObject returnStream = null;

    if (orb.transportDebugFlag) {
        dprint(".waitForResponse->: " + opAndId(messageMediator));
    }

    Integer requestId = messageMediator.getRequestIdInteger();

    if (messageMediator.isOneWay()) {
        // The waiter is removed in releaseReply in the same
        // way as a normal request.

        if (orb.transportDebugFlag) {
            dprint(".waitForResponse: one way - not waiting: "
                   + opAndId(messageMediator));
        }

        return null;
    }

    OutCallDesc call = out_calls.get(requestId);
    if (call == null) {
        throw wrapper.nullOutCall(CompletionStatus.COMPLETED_MAYBE);
    }

    synchronized(call.done) {

        while (call.inputObject == null && call.exception == null) {
            // Wait for the reply from the server.
            // The ReaderThread reads in the reply IIOP message
            // and signals us.
            try {
                if (orb.transportDebugFlag) {
                    dprint(".waitForResponse: waiting: "
                           + opAndId(messageMediator));
                }
                call.done.wait();
            } catch (InterruptedException ie) {};
        }

        if (call.exception != null) {
            if (orb.transportDebugFlag) {
                dprint(".waitForResponse: exception: "
                       + opAndId(messageMediator));
            }
            throw call.exception;
        }

        returnStream = call.inputObject;
    }

    // REVISIT -- exceptions from unmarshaling code will
    // go up through this client thread!

    if (returnStream != null) {
        // On fragmented streams the header MUST be unmarshaled here
        // (in the client thread) in case it blocks.
        // If the header was already unmarshaled, this won't
        // do anything
        // REVISIT: cast - need interface method.
        ((CDRInputObject)returnStream).unmarshalHeader();
    }

    return returnStream;

  } finally {
    if (orb.transportDebugFlag) {
        dprint(".waitForResponse<-: " + opAndId(messageMediator));
    }
  }
}
 
Example 5
Source File: CorbaResponseWaitingRoomImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
public InputObject waitForResponse(MessageMediator mediator)
{
  CorbaMessageMediator messageMediator = (CorbaMessageMediator) mediator;

  try {

    InputObject returnStream = null;

    if (orb.transportDebugFlag) {
        dprint(".waitForResponse->: " + opAndId(messageMediator));
    }

    Integer requestId = messageMediator.getRequestIdInteger();

    if (messageMediator.isOneWay()) {
        // The waiter is removed in releaseReply in the same
        // way as a normal request.

        if (orb.transportDebugFlag) {
            dprint(".waitForResponse: one way - not waiting: "
                   + opAndId(messageMediator));
        }

        return null;
    }

    OutCallDesc call = out_calls.get(requestId);
    if (call == null) {
        throw wrapper.nullOutCall(CompletionStatus.COMPLETED_MAYBE);
    }

    synchronized(call.done) {

        while (call.inputObject == null && call.exception == null) {
            // Wait for the reply from the server.
            // The ReaderThread reads in the reply IIOP message
            // and signals us.
            try {
                if (orb.transportDebugFlag) {
                    dprint(".waitForResponse: waiting: "
                           + opAndId(messageMediator));
                }
                call.done.wait();
            } catch (InterruptedException ie) {};
        }

        if (call.exception != null) {
            if (orb.transportDebugFlag) {
                dprint(".waitForResponse: exception: "
                       + opAndId(messageMediator));
            }
            throw call.exception;
        }

        returnStream = call.inputObject;
    }

    // REVISIT -- exceptions from unmarshaling code will
    // go up through this client thread!

    if (returnStream != null) {
        // On fragmented streams the header MUST be unmarshaled here
        // (in the client thread) in case it blocks.
        // If the header was already unmarshaled, this won't
        // do anything
        // REVISIT: cast - need interface method.
        ((CDRInputObject)returnStream).unmarshalHeader();
    }

    return returnStream;

  } finally {
    if (orb.transportDebugFlag) {
        dprint(".waitForResponse<-: " + opAndId(messageMediator));
    }
  }
}
 
Example 6
Source File: CorbaResponseWaitingRoomImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
public InputObject waitForResponse(MessageMediator mediator)
{
  CorbaMessageMediator messageMediator = (CorbaMessageMediator) mediator;

  try {

    InputObject returnStream = null;

    if (orb.transportDebugFlag) {
        dprint(".waitForResponse->: " + opAndId(messageMediator));
    }

    Integer requestId = messageMediator.getRequestIdInteger();

    if (messageMediator.isOneWay()) {
        // The waiter is removed in releaseReply in the same
        // way as a normal request.

        if (orb.transportDebugFlag) {
            dprint(".waitForResponse: one way - not waiting: "
                   + opAndId(messageMediator));
        }

        return null;
    }

    OutCallDesc call = out_calls.get(requestId);
    if (call == null) {
        throw wrapper.nullOutCall(CompletionStatus.COMPLETED_MAYBE);
    }

    synchronized(call.done) {

        while (call.inputObject == null && call.exception == null) {
            // Wait for the reply from the server.
            // The ReaderThread reads in the reply IIOP message
            // and signals us.
            try {
                if (orb.transportDebugFlag) {
                    dprint(".waitForResponse: waiting: "
                           + opAndId(messageMediator));
                }
                call.done.wait();
            } catch (InterruptedException ie) {};
        }

        if (call.exception != null) {
            if (orb.transportDebugFlag) {
                dprint(".waitForResponse: exception: "
                       + opAndId(messageMediator));
            }
            throw call.exception;
        }

        returnStream = call.inputObject;
    }

    // REVISIT -- exceptions from unmarshaling code will
    // go up through this client thread!

    if (returnStream != null) {
        // On fragmented streams the header MUST be unmarshaled here
        // (in the client thread) in case it blocks.
        // If the header was already unmarshaled, this won't
        // do anything
        // REVISIT: cast - need interface method.
        ((CDRInputObject)returnStream).unmarshalHeader();
    }

    return returnStream;

  } finally {
    if (orb.transportDebugFlag) {
        dprint(".waitForResponse<-: " + opAndId(messageMediator));
    }
  }
}
 
Example 7
Source File: CorbaResponseWaitingRoomImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
public InputObject waitForResponse(MessageMediator mediator)
{
  CorbaMessageMediator messageMediator = (CorbaMessageMediator) mediator;

  try {

    InputObject returnStream = null;

    if (orb.transportDebugFlag) {
        dprint(".waitForResponse->: " + opAndId(messageMediator));
    }

    Integer requestId = messageMediator.getRequestIdInteger();

    if (messageMediator.isOneWay()) {
        // The waiter is removed in releaseReply in the same
        // way as a normal request.

        if (orb.transportDebugFlag) {
            dprint(".waitForResponse: one way - not waiting: "
                   + opAndId(messageMediator));
        }

        return null;
    }

    OutCallDesc call = out_calls.get(requestId);
    if (call == null) {
        throw wrapper.nullOutCall(CompletionStatus.COMPLETED_MAYBE);
    }

    synchronized(call.done) {

        while (call.inputObject == null && call.exception == null) {
            // Wait for the reply from the server.
            // The ReaderThread reads in the reply IIOP message
            // and signals us.
            try {
                if (orb.transportDebugFlag) {
                    dprint(".waitForResponse: waiting: "
                           + opAndId(messageMediator));
                }
                call.done.wait();
            } catch (InterruptedException ie) {};
        }

        if (call.exception != null) {
            if (orb.transportDebugFlag) {
                dprint(".waitForResponse: exception: "
                       + opAndId(messageMediator));
            }
            throw call.exception;
        }

        returnStream = call.inputObject;
    }

    // REVISIT -- exceptions from unmarshaling code will
    // go up through this client thread!

    if (returnStream != null) {
        // On fragmented streams the header MUST be unmarshaled here
        // (in the client thread) in case it blocks.
        // If the header was already unmarshaled, this won't
        // do anything
        // REVISIT: cast - need interface method.
        ((CDRInputObject)returnStream).unmarshalHeader();
    }

    return returnStream;

  } finally {
    if (orb.transportDebugFlag) {
        dprint(".waitForResponse<-: " + opAndId(messageMediator));
    }
  }
}
 
Example 8
Source File: CorbaResponseWaitingRoomImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
public InputObject waitForResponse(MessageMediator mediator)
{
  CorbaMessageMediator messageMediator = (CorbaMessageMediator) mediator;

  try {

    InputObject returnStream = null;

    if (orb.transportDebugFlag) {
        dprint(".waitForResponse->: " + opAndId(messageMediator));
    }

    Integer requestId = messageMediator.getRequestIdInteger();

    if (messageMediator.isOneWay()) {
        // The waiter is removed in releaseReply in the same
        // way as a normal request.

        if (orb.transportDebugFlag) {
            dprint(".waitForResponse: one way - not waiting: "
                   + opAndId(messageMediator));
        }

        return null;
    }

    OutCallDesc call = out_calls.get(requestId);
    if (call == null) {
        throw wrapper.nullOutCall(CompletionStatus.COMPLETED_MAYBE);
    }

    synchronized(call.done) {

        while (call.inputObject == null && call.exception == null) {
            // Wait for the reply from the server.
            // The ReaderThread reads in the reply IIOP message
            // and signals us.
            try {
                if (orb.transportDebugFlag) {
                    dprint(".waitForResponse: waiting: "
                           + opAndId(messageMediator));
                }
                call.done.wait();
            } catch (InterruptedException ie) {};
        }

        if (call.exception != null) {
            if (orb.transportDebugFlag) {
                dprint(".waitForResponse: exception: "
                       + opAndId(messageMediator));
            }
            throw call.exception;
        }

        returnStream = call.inputObject;
    }

    // REVISIT -- exceptions from unmarshaling code will
    // go up through this client thread!

    if (returnStream != null) {
        // On fragmented streams the header MUST be unmarshaled here
        // (in the client thread) in case it blocks.
        // If the header was already unmarshaled, this won't
        // do anything
        // REVISIT: cast - need interface method.
        ((CDRInputObject)returnStream).unmarshalHeader();
    }

    return returnStream;

  } finally {
    if (orb.transportDebugFlag) {
        dprint(".waitForResponse<-: " + opAndId(messageMediator));
    }
  }
}
 
Example 9
Source File: CorbaResponseWaitingRoomImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
public InputObject waitForResponse(MessageMediator mediator)
{
  CorbaMessageMediator messageMediator = (CorbaMessageMediator) mediator;

  try {

    InputObject returnStream = null;

    if (orb.transportDebugFlag) {
        dprint(".waitForResponse->: " + opAndId(messageMediator));
    }

    Integer requestId = messageMediator.getRequestIdInteger();

    if (messageMediator.isOneWay()) {
        // The waiter is removed in releaseReply in the same
        // way as a normal request.

        if (orb.transportDebugFlag) {
            dprint(".waitForResponse: one way - not waiting: "
                   + opAndId(messageMediator));
        }

        return null;
    }

    OutCallDesc call = out_calls.get(requestId);
    if (call == null) {
        throw wrapper.nullOutCall(CompletionStatus.COMPLETED_MAYBE);
    }

    synchronized(call.done) {

        while (call.inputObject == null && call.exception == null) {
            // Wait for the reply from the server.
            // The ReaderThread reads in the reply IIOP message
            // and signals us.
            try {
                if (orb.transportDebugFlag) {
                    dprint(".waitForResponse: waiting: "
                           + opAndId(messageMediator));
                }
                call.done.wait();
            } catch (InterruptedException ie) {};
        }

        if (call.exception != null) {
            if (orb.transportDebugFlag) {
                dprint(".waitForResponse: exception: "
                       + opAndId(messageMediator));
            }
            throw call.exception;
        }

        returnStream = call.inputObject;
    }

    // REVISIT -- exceptions from unmarshaling code will
    // go up through this client thread!

    if (returnStream != null) {
        // On fragmented streams the header MUST be unmarshaled here
        // (in the client thread) in case it blocks.
        // If the header was already unmarshaled, this won't
        // do anything
        // REVISIT: cast - need interface method.
        ((CDRInputObject)returnStream).unmarshalHeader();
    }

    return returnStream;

  } finally {
    if (orb.transportDebugFlag) {
        dprint(".waitForResponse<-: " + opAndId(messageMediator));
    }
  }
}
 
Example 10
Source File: CorbaResponseWaitingRoomImpl.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
public InputObject waitForResponse(MessageMediator mediator)
{
  CorbaMessageMediator messageMediator = (CorbaMessageMediator) mediator;

  try {

    InputObject returnStream = null;

    if (orb.transportDebugFlag) {
        dprint(".waitForResponse->: " + opAndId(messageMediator));
    }

    Integer requestId = messageMediator.getRequestIdInteger();

    if (messageMediator.isOneWay()) {
        // The waiter is removed in releaseReply in the same
        // way as a normal request.

        if (orb.transportDebugFlag) {
            dprint(".waitForResponse: one way - not waiting: "
                   + opAndId(messageMediator));
        }

        return null;
    }

    OutCallDesc call = out_calls.get(requestId);
    if (call == null) {
        throw wrapper.nullOutCall(CompletionStatus.COMPLETED_MAYBE);
    }

    synchronized(call.done) {

        while (call.inputObject == null && call.exception == null) {
            // Wait for the reply from the server.
            // The ReaderThread reads in the reply IIOP message
            // and signals us.
            try {
                if (orb.transportDebugFlag) {
                    dprint(".waitForResponse: waiting: "
                           + opAndId(messageMediator));
                }
                call.done.wait();
            } catch (InterruptedException ie) {};
        }

        if (call.exception != null) {
            if (orb.transportDebugFlag) {
                dprint(".waitForResponse: exception: "
                       + opAndId(messageMediator));
            }
            throw call.exception;
        }

        returnStream = call.inputObject;
    }

    // REVISIT -- exceptions from unmarshaling code will
    // go up through this client thread!

    if (returnStream != null) {
        // On fragmented streams the header MUST be unmarshaled here
        // (in the client thread) in case it blocks.
        // If the header was already unmarshaled, this won't
        // do anything
        // REVISIT: cast - need interface method.
        ((CDRInputObject)returnStream).unmarshalHeader();
    }

    return returnStream;

  } finally {
    if (orb.transportDebugFlag) {
        dprint(".waitForResponse<-: " + opAndId(messageMediator));
    }
  }
}