home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classsrc / net / ftp / ftpinputstream.java < prev    next >
Text File  |  1995-08-11  |  2KB  |  56 lines

  1. /*
  2.  * @(#)FtpInputStream.java    1.3 95/05/10 Chris Warth
  3.  *
  4.  * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19.  
  20. package net.ftp;
  21.  
  22. import java.io.FilterInputStream;
  23. import java.io.InputStream;
  24. import net.TelnetInputStream;
  25.  
  26. /*
  27.  * The only purpose of this class is to hold onto an instance of
  28.  * FtpClient to prevent the FtpClient from being garbage collected.
  29.  * If the client gets collected it will close the command stream
  30.  * which will cause the remote ftp daemon to close its outputstream
  31.  * which will cause and EOF on this inputstream on our end.  
  32.  *
  33.  * The real answer is to re-architect all this stuff to not open an
  34.  * ftp connection each time the user needs something from the remote
  35.  * side.  The other correct thing it to totally ignore all the ftp
  36.  * client stuff and just use the ftp proxy stuff in the CERN HTTP
  37.  * server.
  38.  *
  39.  * @version    1.3, 10 May 1995
  40.  * @author    Chris Warth
  41.  */
  42.  
  43. public class FtpInputStream extends TelnetInputStream {
  44.     FtpClient ftp;
  45.  
  46.     FtpInputStream(FtpClient ftp, InputStream fd, boolean binary) {
  47.     super(fd, binary);
  48.     this.ftp = ftp;
  49.     }
  50.  
  51.     public void close() {
  52.     ftp.closeServer();
  53.     super.close();
  54.     }
  55. }
  56.