com.sun.xml.ws.rx.rm.runtime.SourceMessageHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wsit-impl Show documentation
Show all versions of wsit-impl Show documentation
This module contains the Metro WSIT runtime code.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2010 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 com.sun.xml.ws.rx.rm.runtime;
import com.sun.istack.NotNull;
import com.sun.istack.Nullable;
import com.sun.istack.logging.Logger;
import com.sun.xml.ws.rx.RxRuntimeException;
import com.sun.xml.ws.rx.rm.protocol.AcknowledgementData;
import com.sun.xml.ws.rx.rm.runtime.sequence.DuplicateMessageRegistrationException;
import com.sun.xml.ws.rx.rm.runtime.sequence.Sequence;
import com.sun.xml.ws.rx.rm.runtime.sequence.SequenceManager;
import com.sun.xml.ws.rx.rm.runtime.sequence.UnknownSequenceException;
import java.util.logging.Level;
/**
* Handles outgoing application messages. This class encapsulates
* RM Source logic that is independent on of the actual delivery mechanism
* or framework (such as JAX-WS fibers).
*
* @author Marek Potociar
*/
class SourceMessageHandler implements MessageHandler {
private static final Logger LOGGER = Logger.getLogger(SourceMessageHandler.class);
private volatile SequenceManager sequenceManager;
SourceMessageHandler(@Nullable SequenceManager sequenceManager) {
this.sequenceManager = sequenceManager;
}
void setSequenceManager(SequenceManager sequenceManager) {
this.sequenceManager = sequenceManager;
}
/**
* Registers outgoing message with the provided outbound sequence and
* sets sequenceId and messageNumber properties on the outgoing message.
*
* Once the message is registered and properties are set, the message is placed into
* a delivery queue and delivery callback is invoked.
*
* @throws UnknownSequenceException if no such sequence exits for a given sequence identifier
*/
public void registerMessage(@NotNull ApplicationMessage outMessage, @NotNull String outboundSequenceId) throws DuplicateMessageRegistrationException, UnknownSequenceException {
assert sequenceManager != null;
assert outMessage != null;
assert outboundSequenceId != null;
final Sequence outboundSequence = sequenceManager.getOutboundSequence(outboundSequenceId);
outboundSequence.registerMessage(outMessage, true); // TODO it may not be needed to store message if AtMostOnce delivery
}
/**
* Attaches RM acknowledgement information such as inbound sequence acknowledgements
* (if there is an inbound sequence bound to the specified outbound sequence) or
* outbound sequence acknowledgement requested flag to the outgoing message.
*
* @throws UnknownSequenceException if no such sequence exits for a given sequence identifier
*/
public void attachAcknowledgementInfo(@NotNull ApplicationMessage outMessage) throws UnknownSequenceException {
assert sequenceManager != null;
assert outMessage != null;
assert outMessage.getSequenceId() != null;
// inbound sequence acknowledgements
outMessage.setAcknowledgementData(getAcknowledgementData(outMessage.getSequenceId()));
}
/**
* Retrieves acknowledgement information for a given outbound (and inbound) sequence
*
* @param outboundSequenceId outbound sequence identifier
* @return acknowledgement information for a given outbound sequence
* @throws UnknownSequenceException if no such sequence exits for a given sequence identifier
*/
public AcknowledgementData getAcknowledgementData(String outboundSequenceId) throws UnknownSequenceException {
assert sequenceManager != null;
AcknowledgementData.Builder ackDataBuilder = AcknowledgementData.getBuilder();
Sequence inboundSequence = sequenceManager.getBoundSequence(outboundSequenceId);
if (inboundSequence != null) {
/**
* If inbound sequence exists, we are not checking if inboundSequence.isAckRequested() is true.
* Instead, we are allways attaching inbound sequence acknowledegements (even if not requested by the other side)
* This is to avoid potential locks in InOrder delivery/redelivery scenarios.
*
* For example, following could happen on the client side with InOrder enabled
* if we strictly checked for inboundSequence.isAckRequested() to be true:
*
* 0. response to a previous client request arrives, endpoint is waiting for an acknowledgement
* 1. client request is put to delivery queue
* 2. acknowledgements are attached to the client request and ackRequested flag is cleared on inbound sequence
* 3. client request gets lost.
* 4. client request is scheduled for a resend
* 5. client request is put to delivery queue
* 6. this time, ackRequested flag is clear, so we will not append any acknowledgements
* 7. client request is processed on the endpoint and response is put to the endpoint's source delivery queue
* 8. since there was no acknowledgement of the previous response, the new response is blocekd in the delivery queue forever
*
* After step 8., communication between client and endpoint might freeze in a deadlock unless
* another means of communicating the sequence acknowledgements from client to the endpoint
* are established.
*/
ackDataBuilder.acknowledgements(inboundSequence.getId(), inboundSequence.getAcknowledgedMessageNumbers(), inboundSequence.isClosed());
inboundSequence.clearAckRequestedFlag();
}
// outbound sequence ack requested flag
final Sequence outboundSequence = sequenceManager.getOutboundSequence(outboundSequenceId);
if (outboundSequence.hasUnacknowledgedMessages()) {
ackDataBuilder.ackReqestedSequenceId(outboundSequenceId);
outboundSequence.updateLastAcknowledgementRequestTime();
}
final AcknowledgementData acknowledgementData = ackDataBuilder.build();
return acknowledgementData;
}
public void putToDeliveryQueue(ApplicationMessage message) throws RxRuntimeException {
assert sequenceManager != null;
if (LOGGER.isLoggable(Level.FINER)) {
LOGGER.finer(String.format("Putting a message with number [ %d ] to the delivery queue of a sequence [ %s ]", message.getMessageNumber(), message.getSequenceId()));
}
sequenceManager.getOutboundSequence(message.getSequenceId()).getDeliveryQueue().put(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy