All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.integration.aggregator.ResequencingMessageHandler Maven / Gradle / Ivy

There is a newer version: 6.3.3
Show newest version
/*
 * Copyright 2002-2019 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.integration.aggregator;

import java.util.Collection;

import org.springframework.integration.store.MessageGroup;
import org.springframework.integration.store.MessageGroupStore;
import org.springframework.integration.store.SimpleMessageStore;
import org.springframework.messaging.Message;

/**
 * Resequencer specific implementation of {@link AbstractCorrelatingMessageHandler}.
 * Will remove {@link MessageGroup}s only if 'sequenceSize' is provided and reached.
 *
 * @author Oleg Zhurakousky
 * @author Gary Russell
 * @author Artem Bilan
 *
 * @since 2.1
 */
public class ResequencingMessageHandler extends AbstractCorrelatingMessageHandler {

	public ResequencingMessageHandler(MessageGroupProcessor processor,
			MessageGroupStore store, CorrelationStrategy correlationStrategy,
			ReleaseStrategy releaseStrategy) {
		super(processor, store, correlationStrategy, releaseStrategy);
		this.setExpireGroupsUponTimeout(false);
	}


	public ResequencingMessageHandler(MessageGroupProcessor processor,
			MessageGroupStore store) {
		super(processor, store);
		this.setExpireGroupsUponTimeout(false);
	}


	public ResequencingMessageHandler(MessageGroupProcessor processor) {
		super(processor);
		this.setExpireGroupsUponTimeout(false);
	}

	/**
	 * {@inheritDoc}
	 *
	 * (overridden to false for a resequencer so late messages are immediately discarded rather
	 * than waiting for the next timeout)
	 */
	@Override
	public final void setExpireGroupsUponTimeout(boolean expireGroupsUponTimeout) {
		super.setExpireGroupsUponTimeout(expireGroupsUponTimeout);
	}

	@Override
	public String getComponentType() {
		return "resequencer";
	}

	@Override
	protected boolean shouldCopyRequestHeaders() {
		return false;
	}

	@Override
	protected void afterRelease(MessageGroup messageGroup, Collection> completedMessages) {
		afterRelease(messageGroup, completedMessages, false);
	}

	/**
	 * Perform group removal if its {@code size} is equal to the {@code sequenceSize}.
	 * Remove {@code completedMessages} from the group if it isn't null.
	 * @param messageGroup the group to clean up.
	 * @param completedMessages The completed messages.
	 * @param timeout True if the release/discard was due to a timeout.
	 */
	@Override
	protected void afterRelease(MessageGroup messageGroup, Collection> completedMessages, boolean timeout) {
		int size = messageGroup.size();
		int sequenceSize = messageGroup.getSequenceSize();

		// If there is no sequence then it must be incomplete or unbounded
		if (sequenceSize > 0 && sequenceSize == size) {
			remove(messageGroup);
		}
		else {
			Object groupId = messageGroup.getGroupId();
			MessageGroupStore messageStore = getMessageStore();
			if (completedMessages != null) {
				int lastReleasedSequenceNumber = findLastReleasedSequenceNumber(groupId, completedMessages);
				messageStore.setLastReleasedSequenceNumberForGroup(groupId, lastReleasedSequenceNumber);
				if (messageStore instanceof SimpleMessageStore
						&& completedMessages.size() == messageGroup.size()) {
					((SimpleMessageStore) messageStore).clearMessageGroup(groupId);
				}
				else {
					messageStore.removeMessagesFromGroup(groupId, completedMessages);
				}
			}
			if (timeout) {
				messageStore.completeGroup(groupId);
			}
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy