source: trunk/gcc/libjava/gnu/java/nio/FloatBufferImpl.java

Last change on this file was 1389, checked in by bird, 21 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 4.2 KB
Line 
1/* FloatBufferImpl.java --
2 Copyright (C) 2002 Free Software Foundation, Inc.
3
4This file is part of GNU Classpath.
5
6GNU Classpath is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Classpath is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Classpath; see the file COPYING. If not, write to the
18Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
1902111-1307 USA.
20
21Linking this library statically or dynamically with other modules is
22making a combined work based on this library. Thus, the terms and
23conditions of the GNU General Public License cover the whole
24combination.
25
26As a special exception, the copyright holders of this library give you
27permission to link this library with independent modules to produce an
28executable, regardless of the license terms of these independent
29modules, and to copy and distribute the resulting executable under
30terms of your choice, provided that you also meet, for each linked
31independent module, the terms and conditions of the license of that
32module. An independent module is a module which is not derived from
33or based on this library. If you modify this library, you may extend
34this exception to your version of the library, but you are not
35obligated to do so. If you do not wish to do so, delete this
36exception statement from your version. */
37
38package gnu.java.nio;
39
40import java.nio.ByteBuffer;
41import java.nio.ByteOrder;
42import java.nio.FloatBuffer;
43import java.nio.ReadOnlyBufferException;
44
45/**
46 * This is a Heap memory implementation
47 */
48public final class FloatBufferImpl extends FloatBuffer
49{
50 private boolean readOnly;
51
52 public FloatBufferImpl(int cap, int off, int lim)
53 {
54 super (cap, lim, off, 0);
55 this.backing_buffer = new float [cap];
56 readOnly = false;
57 }
58
59 public FloatBufferImpl(float[] array, int offset, int length)
60 {
61 super (array.length, length, offset, 0);
62 this.backing_buffer = array;
63 readOnly = false;
64 }
65
66 public FloatBufferImpl(FloatBufferImpl copy)
67 {
68 super (copy.capacity (), copy.limit (), copy.position (), 0);
69 backing_buffer = copy.backing_buffer;
70 readOnly = copy.isReadOnly ();
71 }
72
73 private static native float[] nio_cast (byte[] copy);
74
75 FloatBufferImpl (byte[] copy)
76 {
77 super (copy.length, copy.length, 0, 0);
78 this.backing_buffer = copy != null ? nio_cast (copy) : null;
79 readOnly = false;
80 }
81
82 private static native byte nio_get_Byte (FloatBufferImpl b, int index, int limit);
83
84 private static native void nio_put_Byte (FloatBufferImpl b, int index, int limit, byte value);
85
86 public ByteBuffer asByteBuffer()
87 {
88 ByteBufferImpl res = new ByteBufferImpl (backing_buffer);
89 res.limit ((limit () * 1) / 4);
90 return res;
91 }
92
93 public boolean isReadOnly ()
94 {
95 return readOnly;
96 }
97
98 public FloatBuffer slice()
99 {
100 return new FloatBufferImpl (this);
101 }
102
103 public FloatBuffer duplicate()
104 {
105 return new FloatBufferImpl(this);
106 }
107
108 public FloatBuffer asReadOnlyBuffer()
109 {
110 FloatBufferImpl result = new FloatBufferImpl (this);
111 result.readOnly = true;
112 return result;
113 }
114
115 public FloatBuffer compact()
116 {
117 return this;
118 }
119
120 public boolean isDirect()
121 {
122 return false;
123 }
124
125 final public float get()
126 {
127 float e = backing_buffer[position()];
128 position(position()+1);
129 return e;
130 }
131
132 final public FloatBuffer put(float b)
133 {
134 if (readOnly)
135 throw new ReadOnlyBufferException ();
136
137 backing_buffer[position()] = b;
138 position(position()+1);
139 return this;
140 }
141
142 final public float get(int index)
143 {
144 return backing_buffer[index];
145 }
146
147 final public FloatBuffer put(int index, float b)
148 {
149 if (readOnly)
150 throw new ReadOnlyBufferException ();
151
152 backing_buffer[index] = b;
153 return this;
154 }
155
156 final public ByteOrder order ()
157 {
158 return ByteOrder.BIG_ENDIAN;
159 }
160}
Note: See TracBrowser for help on using the repository browser.