home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-05-20 | 4.7 KB | 182 lines |
- /*
- * @(#)CharArrayWriter.java 1.6 97/01/22
- *
- * Copyright (c) 1995, 1996 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the confidential and proprietary information of Sun
- * Microsystems, Inc. ("Confidential Information"). You shall not
- * disclose such Confidential Information and shall use it only in
- * accordance with the terms of the license agreement you entered into
- * with Sun.
- *
- * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
- * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
- * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
- * THIS SOFTWARE OR ITS DERIVATIVES.
- *
- * CopyrightVersion 1.1_beta
- *
- */
-
- package java.io;
-
- /**
- * This class implements a character buffer that can be used as an Writer.
- * The buffer automatically grows when data is written to the stream. The data
- * can be retrieved using toCharArray() and toString().
- *
- * @author Herb Jellinek
- * @version 1.6, 01/22/97
- * @since JDK1.1
- */
- public
- class CharArrayWriter extends Writer {
- /**
- * The buffer where data is stored.
- */
- protected char buf[];
-
- /**
- * The number of chars in the buffer.
- */
- protected int count;
-
- /**
- * Creates a new CharArrayWriter.
- */
- public CharArrayWriter() {
- this(32);
- }
-
- /**
- * Creates a new CharArrayWriter with the specified initial size.
- * @since JDK1.1
- */
- public CharArrayWriter(int initialSize) {
- buf = new char[initialSize];
- }
-
- /**
- * Writes a character to the buffer.
- * @since JDK1.1
- */
- public void write(int c) {
- synchronized (lock) {
- int newcount = count + 1;
- if (newcount > buf.length) {
- char newbuf[] = new char[Math.max(buf.length << 1, newcount)];
- System.arraycopy(buf, 0, newbuf, 0, count);
- buf = newbuf;
- }
- buf[count] = (char)c;
- count = newcount;
- }
- }
-
- /**
- * Writes characters to the buffer.
- * @param c the data to be written
- * @param off the start offset in the data
- * @param len the number of chars that are written
- * @since JDK1.1
- */
- public void write(char c[], int off, int len) {
- synchronized (lock) {
- int newcount = count + len;
- if (newcount > buf.length) {
- char newbuf[] = new char[Math.max(buf.length << 1, newcount)];
- System.arraycopy(buf, 0, newbuf, 0, count);
- buf = newbuf;
- }
- System.arraycopy(c, off, buf, count, len);
- count = newcount;
- }
- }
-
- /**
- * Write a portion of a string to the buffer.
- * @param str String to be written from
- * @param off Offset from which to start reading characters
- * @param len Number of characters to be written
- * @since JDK1.1
- */
- public void write(String str, int off, int len) {
- synchronized (lock) {
- int newcount = count + len;
- if (newcount > buf.length) {
- char newbuf[] = new char[Math.max(buf.length << 1, newcount)];
- System.arraycopy(buf, 0, newbuf, 0, count);
- buf = newbuf;
- }
- str.getChars(off, off + len, buf, count);
- count = newcount;
- }
- }
-
- /**
- * Writes the contents of the buffer to another character stream.
- * @param out the output stream to write to
- * @since JDK1.1
- */
- public void writeTo(Writer out) throws IOException {
- synchronized (lock) {
- out.write(buf, 0, count);
- }
- }
-
- /**
- * Resets the buffer so that you can use it again without
- * throwing away the already allocated buffer.
- * @since JDK1.1
- */
- public void reset() {
- count = 0;
- }
-
- /**
- * Returns a copy of the input data.
- * @since JDK1.1
- */
- public char toCharArray()[] {
- synchronized (lock) {
- char newbuf[] = new char[count];
- System.arraycopy(buf, 0, newbuf, 0, count);
- return newbuf;
- }
- }
-
- /**
- * Returns the current size of the buffer.
- * @since JDK1.1
- */
- public int size() {
- return count;
- }
-
- /**
- * Converts input data to a string.
- * @return the string.
- * @since JDK1.1
- */
- public String toString() {
- synchronized (lock) {
- return new String(toCharArray());
- }
- }
-
- /**
- * Flush the stream.
- * @since JDK1.1
- */
- public void flush() { }
-
- /**
- * Close the stream. This method does not release the buffer, since its
- * contents might still be required.
- * @since JDK1.1
- */
- public void close() { }
- }
-