SocketOutputStream.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.apache.commons.net.io;

  18. import java.io.FilterOutputStream;
  19. import java.io.IOException;
  20. import java.io.OutputStream;
  21. import java.net.Socket;

  22. /**
  23.  * This class wraps an output stream, storing a reference to its originating socket. When the stream is closed, it will also close the socket immediately
  24.  * afterward. This class is useful for situations where you are dealing with a stream originating from a socket, but do not have a reference to the socket, and
  25.  * want to make sure it closes when the stream closes.
  26.  *
  27.  *
  28.  * @see SocketInputStream
  29.  */

  30. public class SocketOutputStream extends FilterOutputStream {
  31.     private final Socket socket;

  32.     /**
  33.      * Creates a SocketOutputStream instance wrapping an output stream and storing a reference to a socket that should be closed on closing the stream.
  34.      *
  35.      * @param socket The socket to close on closing the stream.
  36.      * @param stream The input stream to wrap.
  37.      */
  38.     public SocketOutputStream(final Socket socket, final OutputStream stream) {
  39.         super(stream);
  40.         this.socket = socket;
  41.     }

  42.     /**
  43.      * Closes the stream and immediately afterward closes the referenced socket.
  44.      *
  45.      * @throws IOException If there is an error in closing the stream or socket.
  46.      */
  47.     @Override
  48.     public void close() throws IOException {
  49.         super.close();
  50.         socket.close();
  51.     }

  52.     /**
  53.      * Writes a number of bytes from a byte array to the stream starting from a given offset. This method bypasses the equivalent method in FilterOutputStream
  54.      * because the FilterOutputStream implementation is very inefficient.
  55.      *
  56.      * @param buffer The byte array to write.
  57.      * @param offset The offset into the array at which to start copying data.
  58.      * @param length The number of bytes to write.
  59.      * @throws IOException If an error occurs while writing to the underlying stream.
  60.      */
  61.     @Override
  62.     public void write(final byte buffer[], final int offset, final int length) throws IOException {
  63.         out.write(buffer, offset, length);
  64.     }
  65. }