home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / main.bin / SocketOutputStream.java < prev    next >
Text File  |  1997-05-20  |  3KB  |  106 lines

  1. /*
  2.  * @(#)SocketOutputStream.java    1.11 97/01/25
  3.  * 
  4.  * Copyright (c) 1995, 1996 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  * CopyrightVersion 1.1_beta
  20.  * 
  21.  */
  22.  
  23. package java.net;
  24.  
  25. import java.io.FileOutputStream;
  26. import java.io.IOException;
  27.  
  28. /**
  29.  * This stream extends FileOutputStream to implement a
  30.  * SocketOutputStream. Note that this class should <b>NOT</b> be
  31.  * public.
  32.  *
  33.  * @version     1.11, 01/25/97
  34.  * @author     Jonathan Payne
  35.  * @author    Arthur van Hoff
  36.  */
  37. class SocketOutputStream extends FileOutputStream
  38. {
  39.     private SocketImpl impl;
  40.     private byte temp[] = new byte[1];
  41.     
  42.     /**
  43.      * Creates a new SocketOutputStream. Can only be called
  44.      * by a Socket. This method needs to hang on to the owner Socket so
  45.      * that the fd will not be closed.
  46.      * @param impl the socket output stream inplemented
  47.      */
  48.     SocketOutputStream(SocketImpl impl) throws IOException {
  49.     super(impl.getFileDescriptor());
  50.     this.impl = impl;
  51.     }
  52.  
  53.     /**
  54.      * Writes to the socket.
  55.      * @param b the data to be written
  56.      * @param off the start offset in the data
  57.      * @param len the number of bytes that are written
  58.      * @exception IOException If an I/O error has occurred.
  59.      */
  60.     private native void socketWrite(byte b[], int off, int len)
  61.     throws IOException;
  62.  
  63.     /** 
  64.      * Writes a byte to the socket. 
  65.      * @param b the data to be written
  66.      * @exception IOException If an I/O error has occurred. 
  67.      */
  68.     public void write(int b) throws IOException {
  69.     temp[0] = (byte)b;
  70.     socketWrite(temp, 0, 1);
  71.     }
  72.  
  73.     /** 
  74.      * Writes the contents of the buffer <i>b</i> to the socket.
  75.      * @param b the data to be written
  76.      * @exception SocketException If an I/O error has occurred. 
  77.      */
  78.     public void write(byte b[]) throws IOException {
  79.     socketWrite(b, 0, b.length);
  80.     }
  81.  
  82.     /** 
  83.      * Writes <i>length</i> bytes from buffer <i>b</i> starting at 
  84.      * offset <i>len</i>.
  85.      * @param b the data to be written
  86.      * @param off the start offset in the data
  87.      * @param len the number of bytes that are written
  88.      * @exception SocketException If an I/O error has occurred.
  89.      */
  90.     public void write(byte b[], int off, int len) throws IOException {
  91.     socketWrite(b, off, len);
  92.     }
  93.  
  94.     /**
  95.      * Closes the stream.
  96.      */
  97.     public void close() throws IOException {
  98.     impl.close();
  99.     }
  100.  
  101.     /** 
  102.      * Overrides finalize, the fd is closed by the Socket.
  103.      */
  104.     protected void finalize() {}
  105. }
  106.