blob: b753690142c0612cb477383cd15b8eb996139d13 [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
*
* http://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.apache.qpid.ra;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.Topic;
import javax.jms.TopicPublisher;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* QpidRATopicPublisher.
*
*/
public class QpidRATopicPublisher extends QpidRAMessageProducer implements TopicPublisher
{
/** The logger */
private static final Logger _log = LoggerFactory.getLogger(QpidRATopicPublisher.class);
/**
* Create a new wrapper
* @param producer the producer
* @param session the session
*/
public QpidRATopicPublisher(final TopicPublisher producer, final QpidRASessionImpl session)
{
super(producer, session);
if (_log.isTraceEnabled())
{
_log.trace("constructor(" + Util.asString(producer) + ", " + session + ")");
}
}
/**
* Get the topic
* @return The topic
* @exception JMSException Thrown if an error occurs
*/
public Topic getTopic() throws JMSException
{
if (_log.isTraceEnabled())
{
_log.trace("getTopic()");
}
return ((TopicPublisher)_producer).getTopic();
}
/**
* Publish message
* @param message The message
* @param deliveryMode The delivery mode
* @param priority The priority
* @param timeToLive The time to live
* @exception JMSException Thrown if an error occurs
*/
public void publish(final Message message, final int deliveryMode, final int priority, final long timeToLive) throws JMSException
{
_session.lock();
try
{
if (_log.isTraceEnabled())
{
_log.trace("send " + this +
" message=" +
Util.asString(message) +
" deliveryMode=" +
deliveryMode +
" priority=" +
priority +
" ttl=" +
timeToLive);
}
checkState();
((TopicPublisher)_producer).publish(message, deliveryMode, priority, timeToLive);
if (_log.isTraceEnabled())
{
_log.trace("sent " + this + " result=" + Util.asString(message));
}
}
finally
{
_session.unlock();
}
}
/**
* Publish message
* @param message The message
* @exception JMSException Thrown if an error occurs
*/
public void publish(final Message message) throws JMSException
{
_session.lock();
try
{
if (_log.isTraceEnabled())
{
_log.trace("send " + this + " message=" + Util.asString(message));
}
checkState();
((TopicPublisher)_producer).publish(message);
if (_log.isTraceEnabled())
{
_log.trace("sent " + this + " result=" + Util.asString(message));
}
}
finally
{
_session.unlock();
}
}
/**
* Publish message
* @param destination The destination
* @param message The message
* @param deliveryMode The delivery mode
* @param priority The priority
* @param timeToLive The time to live
* @exception JMSException Thrown if an error occurs
*/
public void publish(final Topic destination,
final Message message,
final int deliveryMode,
final int priority,
final long timeToLive) throws JMSException
{
_session.lock();
try
{
if (_log.isTraceEnabled())
{
_log.trace("send " + this +
" destination=" +
destination +
" message=" +
Util.asString(message) +
" deliveryMode=" +
deliveryMode +
" priority=" +
priority +
" ttl=" +
timeToLive);
}
checkState();
((TopicPublisher)_producer).publish(destination, message, deliveryMode, priority, timeToLive);
if (_log.isTraceEnabled())
{
_log.trace("sent " + this + " result=" + Util.asString(message));
}
}
finally
{
_session.unlock();
}
}
/**
* Publish message
* @param destination The destination
* @param message The message
* @exception JMSException Thrown if an error occurs
*/
public void publish(final Topic destination, final Message message) throws JMSException
{
_session.lock();
try
{
if (_log.isTraceEnabled())
{
_log.trace("send " + this + " destination=" + destination + " message=" + Util.asString(message));
}
checkState();
((TopicPublisher)_producer).publish(destination, message);
if (_log.isTraceEnabled())
{
_log.trace("sent " + this + " result=" + Util.asString(message));
}
}
finally
{
_session.unlock();
}
}
}