blob: 02cfd738d1e3aee00f39682b923def449ee52de9 [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.activemq.artemis.ra;
import java.util.Arrays;
import javax.jms.JMSException;
import javax.jms.StreamMessage;
/**
* A wrapper for a message
*/
public class ActiveMQRAStreamMessage extends ActiveMQRAMessage implements StreamMessage {
/**
* Whether trace is enabled
*/
private static boolean trace = ActiveMQRALogger.LOGGER.isTraceEnabled();
/**
* Create a new wrapper
*
* @param message the message
* @param session the session
*/
public ActiveMQRAStreamMessage(final StreamMessage message, final ActiveMQRASession session) {
super(message, session);
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("constructor(" + message + ", " + session + ")");
}
}
/**
* Read
*
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public boolean readBoolean() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readBoolean()");
}
return ((StreamMessage) message).readBoolean();
}
/**
* Read
*
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public byte readByte() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readByte()");
}
return ((StreamMessage) message).readByte();
}
/**
* Read
*
* @param value The value
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public int readBytes(final byte[] value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readBytes(" + Arrays.toString(value) + ")");
}
return ((StreamMessage) message).readBytes(value);
}
/**
* Read
*
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public char readChar() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readChar()");
}
return ((StreamMessage) message).readChar();
}
/**
* Read
*
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public double readDouble() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readDouble()");
}
return ((StreamMessage) message).readDouble();
}
/**
* Read
*
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public float readFloat() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readFloat()");
}
return ((StreamMessage) message).readFloat();
}
/**
* Read
*
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public int readInt() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readInt()");
}
return ((StreamMessage) message).readInt();
}
/**
* Read
*
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public long readLong() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readLong()");
}
return ((StreamMessage) message).readLong();
}
/**
* Read
*
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public Object readObject() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readObject()");
}
return ((StreamMessage) message).readObject();
}
/**
* Read
*
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public short readShort() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readShort()");
}
return ((StreamMessage) message).readShort();
}
/**
* Read
*
* @return The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public String readString() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("readString()");
}
return ((StreamMessage) message).readString();
}
/**
* Reset
*
* @throws JMSException Thrown if an error occurs
*/
@Override
public void reset() throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("reset()");
}
((StreamMessage) message).reset();
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeBoolean(final boolean value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeBoolean(" + value + ")");
}
((StreamMessage) message).writeBoolean(value);
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeByte(final byte value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeByte(" + value + ")");
}
((StreamMessage) message).writeByte(value);
}
/**
* Write
*
* @param value The value
* @param offset The offset
* @param length The length
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeBytes(final byte[] value, final int offset, final int length) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeBytes(" + Arrays.toString(value) + ", " + offset + ", " + length + ")");
}
((StreamMessage) message).writeBytes(value, offset, length);
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeBytes(final byte[] value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeBytes(" + Arrays.toString(value) + ")");
}
((StreamMessage) message).writeBytes(value);
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeChar(final char value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeChar(" + value + ")");
}
((StreamMessage) message).writeChar(value);
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeDouble(final double value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeDouble(" + value + ")");
}
((StreamMessage) message).writeDouble(value);
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeFloat(final float value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeFloat(" + value + ")");
}
((StreamMessage) message).writeFloat(value);
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeInt(final int value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeInt(" + value + ")");
}
((StreamMessage) message).writeInt(value);
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeLong(final long value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeLong(" + value + ")");
}
((StreamMessage) message).writeLong(value);
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeObject(final Object value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeObject(" + value + ")");
}
((StreamMessage) message).writeObject(value);
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeShort(final short value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeShort(" + value + ")");
}
((StreamMessage) message).writeShort(value);
}
/**
* Write
*
* @param value The value
* @throws JMSException Thrown if an error occurs
*/
@Override
public void writeString(final String value) throws JMSException {
if (ActiveMQRAStreamMessage.trace) {
ActiveMQRALogger.LOGGER.trace("writeString(" + value + ")");
}
((StreamMessage) message).writeString(value);
}
}