com.sun.xml.internal.ws.api.pipe.Fiber Java Examples
The following examples show how to use
com.sun.xml.internal.ws.api.pipe.Fiber.
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: Stub.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Passes a message to a pipe for processing. * <p> * Unlike {@link Tube} instances, * this method is thread-safe and can be invoked from * multiple threads concurrently. * * @param packet The message to be sent to the server * @param requestContext The {@link RequestContext} when this invocation is originally scheduled. * This must be the same object as {@link #requestContext} for synchronous * invocations, but for asynchronous invocations, it needs to be a snapshot * captured at the point of invocation, to correctly satisfy the spec requirement. * @param receiver Receives the {@link ResponseContext}. Since the spec requires * that the asynchronous invocations must not update response context, * depending on the mode of invocation they have to go to different places. * So we take a setter that abstracts that away. */ protected final Packet process(Packet packet, RequestContext requestContext, ResponseContextReceiver receiver) { packet.isSynchronousMEP = true; packet.component = this; configureRequestPacket(packet, requestContext); Pool<Tube> pool = tubes; if (pool == null) { throw new WebServiceException("close method has already been invoked"); // TODO: i18n } Fiber fiber = engine.createFiber(); configureFiber(fiber); // then send it away! Tube tube = pool.take(); try { return fiber.runSync(tube, packet); } finally { // this allows us to capture the packet even when the call failed with an exception. // when the call fails with an exception it's no longer a 'reply' but it may provide some information // about what went wrong. // note that Packet can still be updated after // ResponseContext is created. Packet reply = (fiber.getPacket() == null) ? packet : fiber.getPacket(); receiver.setResponseContext(new ResponseContext(reply)); pool.recycle(tube); } }
Example #2
Source File: LoggingDumpTube.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processRequest(Packet request) { if (messageDumper.isLoggable()) { Packet dumpPacket = (request != null) ? request.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processRequest(request); }
Example #3
Source File: LoggingDumpTube.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processException(Throwable t) { if (messageDumper.isLoggable()) { messageDumper.dump(MessageDumper.MessageType.Exception, position.responseState, Converter.toString(t), tubeId, Fiber.current().owner.id); } return super.processException(t); }
Example #4
Source File: LoggingDumpTube.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processResponse(Packet response) { if (messageDumper.isLoggable()) { Packet dumpPacket = (response != null) ? response.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processResponse(response); }
Example #5
Source File: LoggingDumpTube.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processException(Throwable t) { if (messageDumper.isLoggable()) { messageDumper.dump(MessageDumper.MessageType.Exception, position.responseState, Converter.toString(t), tubeId, Fiber.current().owner.id); } return super.processException(t); }
Example #6
Source File: LoggingDumpTube.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processResponse(Packet response) { if (messageDumper.isLoggable()) { Packet dumpPacket = (response != null) ? response.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processResponse(response); }
Example #7
Source File: LoggingDumpTube.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processResponse(Packet response) { if (messageDumper.isLoggable()) { Packet dumpPacket = (response != null) ? response.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processResponse(response); }
Example #8
Source File: LoggingDumpTube.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processRequest(Packet request) { if (messageDumper.isLoggable()) { Packet dumpPacket = (request != null) ? request.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processRequest(request); }
Example #9
Source File: Stub.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * Passes a message to a pipe for processing. * <p> * Unlike {@link Tube} instances, * this method is thread-safe and can be invoked from * multiple threads concurrently. * * @param packet The message to be sent to the server * @param requestContext The {@link RequestContext} when this invocation is originally scheduled. * This must be the same object as {@link #requestContext} for synchronous * invocations, but for asynchronous invocations, it needs to be a snapshot * captured at the point of invocation, to correctly satisfy the spec requirement. * @param receiver Receives the {@link ResponseContext}. Since the spec requires * that the asynchronous invocations must not update response context, * depending on the mode of invocation they have to go to different places. * So we take a setter that abstracts that away. */ protected final Packet process(Packet packet, RequestContext requestContext, ResponseContextReceiver receiver) { packet.isSynchronousMEP = true; packet.component = this; configureRequestPacket(packet, requestContext); Pool<Tube> pool = tubes; if (pool == null) { throw new WebServiceException("close method has already been invoked"); // TODO: i18n } Fiber fiber = engine.createFiber(); configureFiber(fiber); // then send it away! Tube tube = pool.take(); try { return fiber.runSync(tube, packet); } finally { // this allows us to capture the packet even when the call failed with an exception. // when the call fails with an exception it's no longer a 'reply' but it may provide some information // about what went wrong. // note that Packet can still be updated after // ResponseContext is created. Packet reply = (fiber.getPacket() == null) ? packet : fiber.getPacket(); receiver.setResponseContext(new ResponseContext(reply)); pool.recycle(tube); } }
Example #10
Source File: LoggingDumpTube.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processResponse(Packet response) { if (messageDumper.isLoggable()) { Packet dumpPacket = (response != null) ? response.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processResponse(response); }
Example #11
Source File: LoggingDumpTube.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processException(Throwable t) { if (messageDumper.isLoggable()) { messageDumper.dump(MessageDumper.MessageType.Exception, position.responseState, Converter.toString(t), tubeId, Fiber.current().owner.id); } return super.processException(t); }
Example #12
Source File: Stub.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Passes a message to a pipe for processing. * <p> * Unlike {@link Tube} instances, * this method is thread-safe and can be invoked from * multiple threads concurrently. * * @param packet The message to be sent to the server * @param requestContext The {@link RequestContext} when this invocation is originally scheduled. * This must be the same object as {@link #requestContext} for synchronous * invocations, but for asynchronous invocations, it needs to be a snapshot * captured at the point of invocation, to correctly satisfy the spec requirement. * @param receiver Receives the {@link ResponseContext}. Since the spec requires * that the asynchronous invocations must not update response context, * depending on the mode of invocation they have to go to different places. * So we take a setter that abstracts that away. */ protected final Packet process(Packet packet, RequestContext requestContext, ResponseContextReceiver receiver) { packet.isSynchronousMEP = true; packet.component = this; configureRequestPacket(packet, requestContext); Pool<Tube> pool = tubes; if (pool == null) { throw new WebServiceException("close method has already been invoked"); // TODO: i18n } Fiber fiber = engine.createFiber(); configureFiber(fiber); // then send it away! Tube tube = pool.take(); try { return fiber.runSync(tube, packet); } finally { // this allows us to capture the packet even when the call failed with an exception. // when the call fails with an exception it's no longer a 'reply' but it may provide some information // about what went wrong. // note that Packet can still be updated after // ResponseContext is created. Packet reply = (fiber.getPacket() == null) ? packet : fiber.getPacket(); receiver.setResponseContext(new ResponseContext(reply)); pool.recycle(tube); } }
Example #13
Source File: LoggingDumpTube.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processRequest(Packet request) { if (messageDumper.isLoggable()) { Packet dumpPacket = (request != null) ? request.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processRequest(request); }
Example #14
Source File: LoggingDumpTube.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processResponse(Packet response) { if (messageDumper.isLoggable()) { Packet dumpPacket = (response != null) ? response.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processResponse(response); }
Example #15
Source File: LoggingDumpTube.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processException(Throwable t) { if (messageDumper.isLoggable()) { messageDumper.dump(MessageDumper.MessageType.Exception, position.responseState, Converter.toString(t), tubeId, Fiber.current().owner.id); } return super.processException(t); }
Example #16
Source File: LoggingDumpTube.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processException(Throwable t) { if (messageDumper.isLoggable()) { messageDumper.dump(MessageDumper.MessageType.Exception, position.responseState, Converter.toString(t), tubeId, Fiber.current().owner.id); } return super.processException(t); }
Example #17
Source File: Stub.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * Passes a message to a pipe for processing. * <p> * Unlike {@link Tube} instances, * this method is thread-safe and can be invoked from * multiple threads concurrently. * * @param packet The message to be sent to the server * @param requestContext The {@link RequestContext} when this invocation is originally scheduled. * This must be the same object as {@link #requestContext} for synchronous * invocations, but for asynchronous invocations, it needs to be a snapshot * captured at the point of invocation, to correctly satisfy the spec requirement. * @param receiver Receives the {@link ResponseContext}. Since the spec requires * that the asynchronous invocations must not update response context, * depending on the mode of invocation they have to go to different places. * So we take a setter that abstracts that away. */ protected final Packet process(Packet packet, RequestContext requestContext, ResponseContextReceiver receiver) { packet.isSynchronousMEP = true; packet.component = this; configureRequestPacket(packet, requestContext); Pool<Tube> pool = tubes; if (pool == null) { throw new WebServiceException("close method has already been invoked"); // TODO: i18n } Fiber fiber = engine.createFiber(); configureFiber(fiber); // then send it away! Tube tube = pool.take(); try { return fiber.runSync(tube, packet); } finally { // this allows us to capture the packet even when the call failed with an exception. // when the call fails with an exception it's no longer a 'reply' but it may provide some information // about what went wrong. // note that Packet can still be updated after // ResponseContext is created. Packet reply = (fiber.getPacket() == null) ? packet : fiber.getPacket(); receiver.setResponseContext(new ResponseContext(reply)); pool.recycle(tube); } }
Example #18
Source File: LoggingDumpTube.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processRequest(Packet request) { if (messageDumper.isLoggable()) { Packet dumpPacket = (request != null) ? request.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processRequest(request); }
Example #19
Source File: LoggingDumpTube.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processResponse(Packet response) { if (messageDumper.isLoggable()) { Packet dumpPacket = (response != null) ? response.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processResponse(response); }
Example #20
Source File: LoggingDumpTube.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processException(Throwable t) { if (messageDumper.isLoggable()) { messageDumper.dump(MessageDumper.MessageType.Exception, position.responseState, Converter.toString(t), tubeId, Fiber.current().owner.id); } return super.processException(t); }
Example #21
Source File: Stub.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Passes a message to a pipe for processing. * <p> * Unlike {@link Tube} instances, * this method is thread-safe and can be invoked from * multiple threads concurrently. * * @param packet The message to be sent to the server * @param requestContext The {@link RequestContext} when this invocation is originally scheduled. * This must be the same object as {@link #requestContext} for synchronous * invocations, but for asynchronous invocations, it needs to be a snapshot * captured at the point of invocation, to correctly satisfy the spec requirement. * @param receiver Receives the {@link ResponseContext}. Since the spec requires * that the asynchronous invocations must not update response context, * depending on the mode of invocation they have to go to different places. * So we take a setter that abstracts that away. */ protected final Packet process(Packet packet, RequestContext requestContext, ResponseContextReceiver receiver) { packet.isSynchronousMEP = true; packet.component = this; configureRequestPacket(packet, requestContext); Pool<Tube> pool = tubes; if (pool == null) { throw new WebServiceException("close method has already been invoked"); // TODO: i18n } Fiber fiber = engine.createFiber(); configureFiber(fiber); // then send it away! Tube tube = pool.take(); try { return fiber.runSync(tube, packet); } finally { // this allows us to capture the packet even when the call failed with an exception. // when the call fails with an exception it's no longer a 'reply' but it may provide some information // about what went wrong. // note that Packet can still be updated after // ResponseContext is created. Packet reply = (fiber.getPacket() == null) ? packet : fiber.getPacket(); receiver.setResponseContext(new ResponseContext(reply)); pool.recycle(tube); } }
Example #22
Source File: Stub.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * Passes a message to a pipe for processing. * <p> * Unlike {@link Tube} instances, * this method is thread-safe and can be invoked from * multiple threads concurrently. * * @param packet The message to be sent to the server * @param requestContext The {@link RequestContext} when this invocation is originally scheduled. * This must be the same object as {@link #requestContext} for synchronous * invocations, but for asynchronous invocations, it needs to be a snapshot * captured at the point of invocation, to correctly satisfy the spec requirement. * @param receiver Receives the {@link ResponseContext}. Since the spec requires * that the asynchronous invocations must not update response context, * depending on the mode of invocation they have to go to different places. * So we take a setter that abstracts that away. */ protected final Packet process(Packet packet, RequestContext requestContext, ResponseContextReceiver receiver) { packet.isSynchronousMEP = true; packet.component = this; configureRequestPacket(packet, requestContext); Pool<Tube> pool = tubes; if (pool == null) { throw new WebServiceException("close method has already been invoked"); // TODO: i18n } Fiber fiber = engine.createFiber(); configureFiber(fiber); // then send it away! Tube tube = pool.take(); try { return fiber.runSync(tube, packet); } finally { // this allows us to capture the packet even when the call failed with an exception. // when the call fails with an exception it's no longer a 'reply' but it may provide some information // about what went wrong. // note that Packet can still be updated after // ResponseContext is created. Packet reply = (fiber.getPacket() == null) ? packet : fiber.getPacket(); receiver.setResponseContext(new ResponseContext(reply)); pool.recycle(tube); } }
Example #23
Source File: LoggingDumpTube.java From hottub with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processRequest(Packet request) { if (messageDumper.isLoggable()) { Packet dumpPacket = (request != null) ? request.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Request, position.requestState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processRequest(request); }
Example #24
Source File: LoggingDumpTube.java From hottub with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processResponse(Packet response) { if (messageDumper.isLoggable()) { Packet dumpPacket = (response != null) ? response.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processResponse(response); }
Example #25
Source File: LoggingDumpTube.java From hottub with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processException(Throwable t) { if (messageDumper.isLoggable()) { messageDumper.dump(MessageDumper.MessageType.Exception, position.responseState, Converter.toString(t), tubeId, Fiber.current().owner.id); } return super.processException(t); }
Example #26
Source File: LoggingDumpTube.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processException(Throwable t) { if (messageDumper.isLoggable()) { messageDumper.dump(MessageDumper.MessageType.Exception, position.responseState, Converter.toString(t), tubeId, Fiber.current().owner.id); } return super.processException(t); }
Example #27
Source File: LoggingDumpTube.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
@Override public NextAction processResponse(Packet response) { if (messageDumper.isLoggable()) { Packet dumpPacket = (response != null) ? response.copy(true) : null; messageDumper.dump(MessageDumper.MessageType.Response, position.responseState, Converter.toString(dumpPacket), tubeId, Fiber.current().owner.id); } return super.processResponse(response); }
Example #28
Source File: MessageDumpingTube.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
@Override public NextAction processException(Throwable t) { dump(MessageType.Exception, Converter.toString(t), Fiber.current().owner.id); return super.processException(t); }
Example #29
Source File: NonAnonymousResponseProcessor.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
/** * Send a response to a non-anonymous address. Also closes the transport back channel * of {@link Packet} if it's not closed already. * * @param packet * The response from our server, which will be delivered to the destination. * @return The response packet that should be used to complete the tubeline response processing */ public Packet process(Packet packet) { Fiber.CompletionCallback fiberCallback = null; Fiber currentFiber = Fiber.getCurrentIfSet(); if (currentFiber != null) { // Link completion of the current fiber to the new fiber that will // deliver the async response. This allows access to the response // packet that may be generated by sending a new message for the // current async response. final Fiber.CompletionCallback currentFiberCallback = currentFiber.getCompletionCallback(); if (currentFiberCallback != null) { fiberCallback = new Fiber.CompletionCallback() { public void onCompletion(@NotNull Packet response) { currentFiberCallback.onCompletion(response); } public void onCompletion(@NotNull Throwable error) { currentFiberCallback.onCompletion(error); } }; currentFiber.setCompletionCallback(null); } } // we need to assemble a pipeline to talk to this endpoint. WSEndpoint<?> endpoint = packet.endpoint; WSBinding binding = endpoint.getBinding(); Tube transport = TransportTubeFactory.create(Thread.currentThread().getContextClassLoader(), new ClientTubeAssemblerContext( packet.endpointAddress, endpoint.getPort(), (WSService) null, binding, endpoint.getContainer(), ((BindingImpl) binding).createCodec(), null, null)); Fiber fiber = endpoint.getEngine().createFiber(); fiber.start(transport, packet, fiberCallback); // then we'll proceed the rest like one-way. Packet copy = packet.copy(false); copy.endpointAddress = null; return copy; }
Example #30
Source File: MessageDumpingTube.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
@Override public NextAction processResponse(Packet response) { dump(MessageType.Response, Converter.toString(response), Fiber.current().owner.id); return super.processResponse(response); }