FSF GCC merge 02/23/03
[official-gcc.git] / libjava / gnu / java / nio / CharBufferImpl.java
blob5126e28f096a447549edf74ecd81c2c073903d00
1 /* CharBufferImpl.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.CharBuffer;
43 import java.nio.ReadOnlyBufferException;
45 /**
46 * This is a Heap memory implementation
48 public final class CharBufferImpl extends CharBuffer
50 private boolean readOnly;
52 public CharBufferImpl(int cap, int off, int lim)
54 super (cap, lim, off, 0);
55 this.backing_buffer = new char [cap];
56 readOnly = false;
59 public CharBufferImpl(char[] array, int offset, int length)
61 super (array.length, length, offset, 0);
62 this.backing_buffer = array;
63 readOnly = false;
66 public CharBufferImpl (CharBufferImpl copy)
68 super (copy.capacity (), copy.limit (), copy.position (), 0);
69 backing_buffer = copy.backing_buffer;
70 readOnly = copy.isReadOnly ();
73 private static native char[] nio_cast (byte[] copy);
75 CharBufferImpl (byte[] copy)
77 super (copy.length / 2, copy.length / 2, 0, 0);
78 this.backing_buffer = (copy != null ? nio_cast (copy) : null);
79 readOnly = false;
82 private static native byte nio_get_Byte (CharBufferImpl b, int index, int limit);
84 private static native void nio_put_Byte (CharBufferImpl b, int index, int limit, byte value);
86 public ByteBuffer asByteBuffer ()
88 ByteBufferImpl res = new ByteBufferImpl (backing_buffer);
89 res.limit ((limit () * 1) / 2);
90 return res;
94 public boolean isReadOnly()
96 return readOnly;
99 public CharBuffer slice()
101 return new CharBufferImpl (this);
104 public CharBuffer duplicate()
106 return new CharBufferImpl(this);
109 public CharBuffer asReadOnlyBuffer()
111 CharBufferImpl result = new CharBufferImpl (this);
112 result.readOnly = true;
113 return result;
116 public CharBuffer compact()
118 return this;
121 public boolean isDirect()
123 return false;
126 final public CharSequence subSequence (int start, int end)
128 if (start < 0 ||
129 end > length () ||
130 start > end)
131 throw new IndexOutOfBoundsException ();
133 // No support for direct buffers yet.
134 // assert array () != null;
135 return new CharBufferImpl (array (), position () + start,
136 position () + end);
140 * Relative get method. Reads the next character from the buffer.
142 final public char get()
144 char e = backing_buffer[position()];
145 position(position()+1);
146 return e;
150 * Relative put method. Writes <code>value</code> to the next position
151 * in the buffer.
153 * @exception ReadOnlyBufferException If this buffer is read-only.
155 final public CharBuffer put(char b)
157 if (readOnly)
158 throw new ReadOnlyBufferException ();
160 backing_buffer[position()] = b;
161 position(position()+1);
162 return this;
166 * Absolute get method. Reads the character at position <code>index</code>.
168 * @exception IndexOutOfBoundsException If index is negative or not smaller
169 * than the buffer's limit.
171 final public char get(int index)
173 if (index < 0
174 || index >= limit ())
175 throw new IndexOutOfBoundsException ();
177 return backing_buffer[index];
181 * Absolute put method. Writes <code>value</value> to position
182 * <code>index</code> in the buffer.
184 * @exception IndexOutOfBoundsException If index is negative or not smaller
185 * than the buffer's limit.
186 * @exception ReadOnlyBufferException If this buffer is read-only.
188 final public CharBuffer put(int index, char b)
190 if (index < 0
191 || index >= limit ())
192 throw new IndexOutOfBoundsException ();
194 if (readOnly)
195 throw new ReadOnlyBufferException ();
197 backing_buffer[index] = b;
198 return this;
202 public final ByteOrder order()
204 return ByteOrder.BIG_ENDIAN;