com.oracle.coherence.patterns.messaging.TopicSubscriber Maven / Gradle / Ivy
Show all versions of coherence-messagingpattern Show documentation
/*
* File: TopicSubscriber.java
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* The contents of this file are subject to the terms and conditions of
* the Common Development and Distribution License 1.0 (the "License").
*
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the License by consulting the LICENSE.txt file
* distributed with this file, or by consulting
* or https://oss.oracle.com/licenses/CDDL
*
* 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 LICENSE.txt.
*
* 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]"
*/
package com.oracle.coherence.patterns.messaging;
import com.oracle.coherence.patterns.messaging.entryprocessors.AcknowledgeMessageProcessor;
import com.oracle.coherence.patterns.messaging.entryprocessors.AcknowledgeSubscriptionMessagesProcessor;
import com.oracle.coherence.patterns.messaging.entryprocessors.RequestMessageProcessor;
import com.oracle.coherence.patterns.messaging.entryprocessors.SubscriptionRollbackProcessor;
import com.tangosol.net.CacheFactory;
import com.tangosol.net.NamedCache;
import com.tangosol.util.processor.ExtractorProcessor;
import com.tangosol.util.processor.UpdaterProcessor;
import java.util.ArrayList;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* A specific implementation of {@link Subscriber} for {@link Topic}s.
*
* Copyright (c) 2008. All Rights Reserved. Oracle Corporation.
* Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
*
* @author Brian Oliver
*/
class TopicSubscriber extends AbstractSubscriber
{
/**
* Logger
*/
private static Logger logger = Logger.getLogger(TopicSubscriber.class.getName());
/**
* Package Level Constructor.
*
* @param messagingSession messaging session
* @param subscriptionIdentifier subscription identifier
*/
TopicSubscriber(MessagingSession messagingSession,
SubscriptionIdentifier subscriptionIdentifier)
{
super(messagingSession, subscriptionIdentifier);
}
/**
* {@inheritDoc}
*/
public Object getMessage()
{
// ensure that the subscriber is still active
ensureActive();
// ensure that we have a subscription from which we can retrieve
// messages
ensureSubscription();
// ask the subscription for the next message to read
// (and wait if we must for a message to become visible)
MessageIdentifier messageIdentifier = MessageIdentifier.getNullIdentifier();
while (messageIdentifier.isNullIdentifier())
{
NamedCache subscriptions = CacheFactory.getCache(Subscription.CACHENAME);
messageIdentifier =
(MessageIdentifier) subscriptions.invoke(this.getSubscriptionIdentifier(),
new ExtractorProcessor("nextMessageToDeliver"));
// wait for the message to arrive (we'll be notified by the map
// listener when this happens)
if (messageIdentifier.isNullIdentifier())
{
getNextSubscriptionUpdate();
// ensure the subscription has not been removed/shutdown
ensureSubscription();
}
}
Message message;
if (isAutoCommitting())
{
// retrieve and acknowledge the message on behalf of this subscriber
message =
(Message) CacheFactory.getCache(Message.CACHENAME)
.invoke(Message.getKey(getDestinationIdentifier(), messageIdentifier),
new AcknowledgeMessageProcessor(getSubscriptionIdentifier()));
if (message == null)
{
logger.log(Level.SEVERE,
"AcknowledgeMessageProcessor returned null message for subscription {0}",
getSubscriptionIdentifier());
return null;
}
if (!verifyMessageSequence(message))
{
// verifyMessageSequence will log an error
return null;
}
// let the subscription know that we've acknowledged the message
MessageTracker messageTracker = new DefaultMessageTracker();
messageTracker.add(messageIdentifier);
CacheFactory.getCache(Subscription.CACHENAME).invoke(getSubscriptionIdentifier(),
new AcknowledgeSubscriptionMessagesProcessor(messageTracker));
}
else
{
// retrieve the message
message =
(Message) CacheFactory.getCache(Message.CACHENAME)
.invoke(Message.getKey(getDestinationIdentifier(), messageIdentifier),
new RequestMessageProcessor(getSubscriptionIdentifier()));
if (message == null)
{
logger.log(Level.SEVERE,
"RequestMessageProcessor returned null message for subscription {0}",
getSubscriptionIdentifier());
return null;
}
if (!verifyMessageSequence(message))
{
// verifyMessageSequence will log an error
return null;
}
// let the subscription know we've accepted the message
MessageTracker messageTracker = new DefaultMessageTracker();
messageTracker.add(messageIdentifier);
CacheFactory.getCache(Subscription.CACHENAME).invoke(getSubscriptionIdentifier(),
new UpdaterProcessor("onMessagesDelivered",
messageTracker));
}
return message.getPayload();
}
/**
* {@inheritDoc}
*/
public void commit()
{
ensureActive();
if (!isAutoCommitting())
{
// ensure that we have a subscription from which we can retrieve
// messages
ensureSubscription();
// determine the range of messages that have been delivered
// (these are the ones we must acknowledge)
MessageTracker messageTracker =
(MessageTracker) CacheFactory.getCache(Subscription.CACHENAME).invoke(getSubscriptionIdentifier(),
new ExtractorProcessor("getDeliveredMessageTracker"));
if (!messageTracker.isEmpty())
{
// Tell Message that is has been acked
ArrayList messageKeys = messageTracker.getMessageKeys(getDestinationIdentifier());
CacheFactory.getCache(Message.CACHENAME).invokeAll(messageKeys,
new AcknowledgeMessageProcessor(getSubscriptionIdentifier()));
// Tell subscription that msg has been acked.
CacheFactory.getCache(Subscription.CACHENAME).invoke(getSubscriptionIdentifier(),
new AcknowledgeSubscriptionMessagesProcessor(messageTracker));
}
}
}
/**
* {@inheritDoc}
*/
public void rollback()
{
ensureActive();
resetMessageSequenceVerification();
if (!isAutoCommitting())
{
// ensure that we have a subscription from which we can retrieve
// messages
ensureSubscription();
// clear the delivered list for the subscription
CacheFactory.getCache(Subscription.CACHENAME).invoke(getSubscriptionIdentifier(),
new SubscriptionRollbackProcessor());
}
}
/**
* {@inheritDoc}
*/
public void release()
{
ensureActive();
// shutdown local resources for the subscription
shutdown(State.Shutdown);
// suspend the subscription
CacheFactory.getCache(Subscription.CACHENAME).invoke(getSubscriptionIdentifier(),
new UpdaterProcessor("getLease.setIsSuspended",
Boolean.TRUE));
}
}