FSF GCC merge 02/23/03
[official-gcc.git] / libjava / gnu / java / nio / DoubleBufferImpl.java
blobf4dffc2d8f44422f24eb07ca2164b0db5d131d9a
1 /* DoubleBufferImpl.java --
2 Copyright (C) 2002 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 package gnu.java.nio;
40 import java.nio.ByteBuffer;
41 import java.nio.ByteOrder;
42 import java.nio.DoubleBuffer;
43 import java.nio.ReadOnlyBufferException;
45 /**
46 * This is a Heap memory implementation
48 public final class DoubleBufferImpl extends DoubleBuffer
50 private boolean readOnly;
52 public DoubleBufferImpl(int cap, int off, int lim)
54 super (cap, lim, off, 0);
55 this.backing_buffer = new double[cap];
56 readOnly = false;
59 public DoubleBufferImpl(double[] array, int offset, int length)
61 super (array.length, length, offset, 0);
62 this.backing_buffer = array;
63 readOnly = false;
66 public DoubleBufferImpl(DoubleBufferImpl copy)
68 super (copy.capacity (), copy.limit (), copy.position (), 0);
69 backing_buffer = copy.backing_buffer;
70 readOnly = copy.isReadOnly ();
73 DoubleBufferImpl (byte[] copy)
75 super (copy.length, copy.length, 0, 0);
76 this.backing_buffer = copy != null ? nio_cast (copy) : null;
77 readOnly = false;
80 private static native byte nio_get_Byte (DoubleBufferImpl b, int index, int limit);
82 private static native void nio_put_Byte (DoubleBufferImpl b, int index, int limit, byte value);
84 public ByteBuffer asByteBuffer ()
86 ByteBufferImpl res = new ByteBufferImpl (backing_buffer);
87 res.limit ((limit () * 1) / 8);
88 return res;
91 private static native double[] nio_cast (byte[] copy);
93 public boolean isReadOnly ()
95 return readOnly;
98 public DoubleBuffer slice ()
100 return new DoubleBufferImpl (this);
103 public DoubleBuffer duplicate()
105 return new DoubleBufferImpl(this);
108 public DoubleBuffer asReadOnlyBuffer()
110 DoubleBufferImpl result = new DoubleBufferImpl (this);
111 result.readOnly = true;
112 return result;
115 public DoubleBuffer compact()
117 return this;
120 public boolean isDirect()
122 return false;
125 final public double get()
127 double e = backing_buffer[position()];
128 position(position()+1);
129 return e;
132 final public DoubleBuffer put(double b)
134 if (readOnly)
135 throw new ReadOnlyBufferException ();
137 backing_buffer[position()] = b;
138 position(position()+1);
139 return this;
142 final public double get(int index)
144 return backing_buffer[index];
147 final public DoubleBuffer put(int index, double b)
149 if (readOnly)
150 throw new ReadOnlyBufferException ();
152 backing_buffer[index] = b;
153 return this;
156 final public ByteOrder order ()
158 return ByteOrder.BIG_ENDIAN;