summaryrefslogtreecommitdiff
path: root/java/java/client/src/org/apache/qpid/client/message/JMSObjectMessage.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/java/client/src/org/apache/qpid/client/message/JMSObjectMessage.java')
-rw-r--r--java/java/client/src/org/apache/qpid/client/message/JMSObjectMessage.java178
1 files changed, 178 insertions, 0 deletions
diff --git a/java/java/client/src/org/apache/qpid/client/message/JMSObjectMessage.java b/java/java/client/src/org/apache/qpid/client/message/JMSObjectMessage.java
new file mode 100644
index 0000000000..3c0d9b99c4
--- /dev/null
+++ b/java/java/client/src/org/apache/qpid/client/message/JMSObjectMessage.java
@@ -0,0 +1,178 @@
+/*
+ *
+ * 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.client.message;
+
+import org.apache.qpid.framing.ContentHeaderBody;
+import org.apache.qpid.framing.BasicContentHeaderProperties;
+import org.apache.qpid.AMQException;
+import org.apache.mina.common.ByteBuffer;
+
+import javax.jms.ObjectMessage;
+import javax.jms.JMSException;
+import javax.jms.MessageFormatException;
+import javax.jms.MessageNotWriteableException;
+import java.io.*;
+import java.nio.charset.Charset;
+import java.nio.charset.CharacterCodingException;
+
+public class JMSObjectMessage extends AbstractJMSMessage implements ObjectMessage
+{
+ static final String MIME_TYPE = "application/java-object-stream";
+ private final boolean _readonly;
+
+ private static final int DEFAULT_BUFFER_SIZE = 1024;
+ /**
+ * Creates empty, writable message for use by producers
+ */
+ JMSObjectMessage()
+ {
+ this(null);
+ }
+
+ private JMSObjectMessage(ByteBuffer data)
+ {
+ super(data);
+ if (data == null)
+ {
+ _data = ByteBuffer.allocate(DEFAULT_BUFFER_SIZE);
+ _data.setAutoExpand(true);
+ }
+ _readonly = (data != null);
+ getJmsContentHeaderProperties().setContentType(MIME_TYPE);
+ }
+
+ /**
+ * Creates read only message for delivery to consumers
+ */
+ JMSObjectMessage(long messageNbr, ByteBuffer data, ContentHeaderBody contentHeader) throws AMQException
+ {
+ super(messageNbr, (BasicContentHeaderProperties) contentHeader.properties, data);
+ _readonly = data != null;
+ }
+
+ public void clearBody() throws JMSException
+ {
+ if (_data != null)
+ {
+ _data.release();
+ }
+ _data = null;
+ }
+
+ public String toBodyString() throws JMSException
+ {
+ return toString(_data);
+ }
+
+ public String getMimeType()
+ {
+ return MIME_TYPE;
+ }
+
+ public void setObject(Serializable serializable) throws JMSException
+ {
+ if (_readonly)
+ {
+ throw new MessageNotWriteableException("Message is not writable.");
+ }
+
+ if (_data == null)
+ {
+ _data = ByteBuffer.allocate(DEFAULT_BUFFER_SIZE);
+ _data.setAutoExpand(true);
+ }
+ try
+ {
+ ObjectOutputStream out = new ObjectOutputStream(_data.asOutputStream());
+ out.writeObject(serializable);
+ out.flush();
+ out.close();
+ _data.rewind();
+ }
+ catch (IOException e)
+ {
+ throw new MessageFormatException("Message not serializable: " + e);
+ }
+ }
+
+ public Serializable getObject() throws JMSException
+ {
+ ObjectInputStream in = null;
+ if (_data == null)
+ {
+ return null;
+ }
+
+ try
+ {
+ in = new ObjectInputStream(_data.asInputStream());
+ return (Serializable) in.readObject();
+ }
+ catch (IOException e)
+ {
+ throw new MessageFormatException("Could not deserialize message: " + e);
+ }
+ catch (ClassNotFoundException e)
+ {
+ throw new MessageFormatException("Could not deserialize message: " + e);
+ }
+ finally
+ {
+ _data.rewind();
+ close(in);
+ }
+ }
+
+ private static void close(InputStream in)
+ {
+ try
+ {
+ if (in != null)
+ {
+ in.close();
+ }
+ }
+ catch (IOException ignore)
+ {
+ }
+ }
+
+ private static String toString(ByteBuffer data)
+ {
+ if (data == null)
+ {
+ return null;
+ }
+ int pos = data.position();
+ try
+ {
+ return data.getString(Charset.forName("UTF8").newDecoder());
+ }
+ catch (CharacterCodingException e)
+ {
+ return null;
+ }
+ finally
+ {
+ data.position(pos);
+ }
+ }
+}