source: trunk/src/gcc/libjava/java/io/BufferedOutputStream.java@ 1213

Last change on this file since 1213 was 2, checked in by bird, 23 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: 6.8 KB
Line 
1/* BufferedOutputStream.java -- Buffer output into large blocks before writing
2 Copyright (C) 1998, 2000 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
38
39package java.io;
40
41/**
42 * This class accumulates bytes written in a buffer instead of immediately
43 * writing the data to the underlying output sink. The bytes are instead
44 * as one large block when the buffer is filled, or when the stream is
45 * closed or explicitly flushed. This mode operation can provide a more
46 * efficient mechanism for writing versus doing numerous small unbuffered
47 * writes.
48 *
49 * @version 0.0
50 *
51 * @author Aaron M. Renn ([email protected])
52 */
53public class BufferedOutputStream extends FilterOutputStream
54{
55
56/*************************************************************************/
57
58/*
59 * Class Variables
60 */
61
62/**
63 * This is the default buffer size
64 */
65private static final int DEFAULT_BUFFER_SIZE = 512;
66
67/*************************************************************************/
68
69/*
70 * Instance Variables
71 */
72
73/**
74 * This is the internal byte array used for buffering output before
75 * writing it.
76 */
77protected byte[] buf;
78
79/**
80 * This is the number of bytes that are currently in the buffer and
81 * are waiting to be written to the underlying stream. It always points to
82 * the index into the buffer where the next byte of data will be stored
83 */
84protected int count;
85
86/*************************************************************************/
87
88/*
89 * Constructors
90 */
91
92/**
93 * This method initializes a new <code>BufferedOutputStream</code> instance
94 * that will write to the specified subordinate <code>OutputStream</code>
95 * and which will use a default buffer size of 512 bytes.
96 *
97 * @param out The underlying <code>OutputStream</code> to write data to
98 */
99public
100BufferedOutputStream(OutputStream out)
101{
102 this(out, DEFAULT_BUFFER_SIZE);
103}
104
105/*************************************************************************/
106
107/**
108 * This method initializes a new <code>BufferedOutputStream</code> instance
109 * that will write to the specified subordinate <code>OutputStream</code>
110 * and which will use the specified buffer size
111 *
112 * @param out The underlying <code>OutputStream</code> to write data to
113 * @param size The size of the internal buffer
114 */
115public
116BufferedOutputStream(OutputStream out, int size)
117{
118 super(out);
119
120 buf = new byte[size];
121}
122
123/*************************************************************************/
124
125/*
126 * Instance Methods
127 */
128
129/**
130 * This method causes any currently buffered bytes to be immediately
131 * written to the underlying output stream.
132 *
133 * @exception IOException If an error occurs
134 */
135public synchronized void
136flush() throws IOException
137{
138 if (count == 0)
139 return;
140
141 out.write(buf, 0, count);
142 count = 0;
143}
144
145/*************************************************************************/
146
147/*
148 * This method flushes any remaining buffered bytes then closes the
149 * underlying output stream. Any further attempts to write to this stream
150 * may throw an exception
151 *
152public synchronized void
153close() throws IOException
154{
155 flush();
156 out.close();
157}
158*/
159
160/*************************************************************************/
161
162/*
163 * This method runs when the object is garbage collected. It is
164 * responsible for ensuring that all buffered bytes are written and
165 * for closing the underlying stream.
166 *
167 * @exception IOException If an error occurs (ignored by the Java runtime)
168 *
169protected void
170finalize() throws IOException
171{
172 close();
173}
174*/
175
176/*************************************************************************/
177
178/**
179 * This method writes a single byte of data. This will be written to the
180 * buffer instead of the underlying data source. However, if the buffer
181 * is filled as a result of this write request, it will be flushed to the
182 * underlying output stream.
183 *
184 * @param b The byte of data to be written, passed as an int
185 *
186 * @exception IOException If an error occurs
187 */
188public synchronized void
189write(int b) throws IOException
190{
191 buf[count] = (byte)(b & 0xFF);
192
193 ++count;
194 if (count == buf.length)
195 flush();
196}
197
198/*************************************************************************/
199
200/**
201 * This method writes <code>len</code> bytes from the byte array
202 * <code>buf</code> starting at position <code>offset</code> in the buffer.
203 * These bytes will be written to the internal buffer. However, if this
204 * write operation fills the buffer, the buffer will be flushed to the
205 * underlying output stream.
206 *
207 * @param buf The array of bytes to write.
208 * @param offset The index into the byte array to start writing from.
209 * @param len The number of bytes to write.
210 *
211 * @exception IOException If an error occurs
212 */
213public synchronized void
214write(byte[] buf, int offset, int len) throws IOException
215{
216 // Buffer can hold everything. Note that the case where LEN < 0
217 // is automatically handled by the downstream write.
218 if (len < (this.buf.length - count))
219 {
220 System.arraycopy(buf, offset, this.buf, count, len);
221 count += len;
222 }
223 else
224 {
225 // The write was too big. So flush the buffer and write the new
226 // bytes directly to the underlying stream, per the JDK 1.2
227 // docs.
228 flush();
229 out.write (buf, offset, len);
230 }
231}
232
233} // class BufferedOutputStream
Note: See TracBrowser for help on using the repository browser.