Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9c62145bb856a7384f1f2ab42b1feb945e78fd4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 * Copyright (c) 2007, 2011, 2012, 2015 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.net4j.internal.jms;

import org.eclipse.net4j.internal.jms.bundle.OM;
import org.eclipse.net4j.util.io.ExtendedDataInputStream;
import org.eclipse.net4j.util.io.ExtendedDataOutputStream;

import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.ObjectMessage;

import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;

public class ObjectMessageImpl extends MessageImpl implements ObjectMessage
{
  private Serializable object;

  public ObjectMessageImpl()
  {
  }

  public ObjectMessageImpl(Serializable object)
  {
    this.object = object;
  }

  public Serializable getObject()
  {
    return object;
  }

  public void setObject(Serializable object)
  {
    this.object = object;
  }

  @Override
  public void populate(Message source) throws JMSException
  {
    super.populate(source);
    ObjectMessage object = (ObjectMessage)source;
    setObject(object.getObject());
  }

  @Override
  public void write(ExtendedDataOutputStream out) throws IOException
  {
    super.write(out);
    if (object != null)
    {
      out.writeBoolean(true);
      ObjectOutputStream stream = new ObjectOutputStream(out);
      stream.writeObject(object);
    }
    else
    {
      out.writeBoolean(false);
    }
  }

  @Override
  public void read(ExtendedDataInputStream in) throws IOException
  {
    super.read(in);
    boolean notNull = in.readBoolean();
    if (notNull)
    {
      try
      {
        ObjectInputStream stream = new ObjectInputStream(in);
        object = (Serializable)stream.readObject();
      }
      catch (ClassNotFoundException ex)
      {
        OM.LOG.error(ex);
        throw new IOException(ex.getMessage());
      }
    }
  }
}

Back to the top