summaryrefslogtreecommitdiff
path: root/gnu/classpath/jdwp/value/Value.java
blob: 6db14494ccf5167f5311153a14847c012533883c (plain)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* Value.java -- base class of JDWP values
   Copyright (C) 2007, 2013 Free Software Foundation

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */


package gnu.classpath.jdwp.value;

import gnu.classpath.jdwp.exception.InvalidClassException;
import gnu.classpath.jdwp.exception.InvalidObjectException;
import gnu.classpath.jdwp.exception.InvalidTagException;
import gnu.classpath.jdwp.exception.JdwpInternalErrorException;

import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;

/**
 * Superclass for all JDWP Values.
 *
 * @author Kyle Galloway <kgallowa@redhat.com>
 */
public abstract class Value
{
  // A Tag representing the type of this value
  private byte _tag;

  /**
   * Create a new value of type tag.
   *
   * @param tag the type of the value
   */
  protected Value(byte tag)
  {
    _tag = tag;
  }

  /**
   * Get the tag for this Value
   *
   * @return the byte tag of this Value
   */
  public byte getTag()
  {
    return _tag;
  }

  /**
   * Calls the dervied classes writeValue method to write its value to the
   * DataOutputStream.
   *
   * @param os write the value here
   * @throws IOException
   */
  public void writeUntagged(DataOutputStream os)
    throws IOException
  {
    write(os);
  }

  /**
   * Will write the given object as a tagged value to the DataOutputStream.
   *
   * @param os write the value here
   * @param obj the Object to write
   * @throws IOException
   */
  public void writeTagged(DataOutputStream os)
    throws IOException
  {
    os.write (_tag);
    write(os);
  }

  /**
   * This method must write the value to the DataOutputStream in a manner
   * appropriate for the type of the value.
   *
   * @param os DataOutputStream to write to
   * @throws IOException
   */
  protected abstract void write(DataOutputStream os)
    throws IOException;

  /**
   * Returns an object representing this type
   *
   * @return an Object represntation of this value
   */
  protected abstract Object getObject();

  /**
   * Get an untagged object from the ByteBuffer
   *
   * @param bb the ByteBuffer to extract the value from
   * @param type a Class representing the type
   * @return an Object from the ByteBuffer of the type of the Class parameter
   * @throws JdwpInternalErrorException
   * @throws InvalidObjectException
   */
  public static Object getUntaggedObject(ByteBuffer bb, Class<?> type)
    throws JdwpInternalErrorException, InvalidObjectException, InvalidClassException
  {
    Value val = ValueFactory.createFromUntagged(bb, type);
    return val.getObject();
  }

  /**
   * Get an untagged object from the ByteBuffer
   *
   * @param bb the ByteBuffer to extract the value from
   * @param tag a byte tag representing the type
   * @return an Object from the ByteBuffer of the type of the Class parameter
   * @throws JdwpInternalErrorException
   * @throws InvalidObjectException
   */
  public static Object getTaggedObject(ByteBuffer bb)
    throws JdwpInternalErrorException, InvalidObjectException, InvalidTagException
  {
    Value val = ValueFactory.createFromTagged(bb);
    return val.getObject();
  }
}