// // ======================================================================== // Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd. // ------------------------------------------------------------------------ // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 // and Apache License v2.0 which accompanies this distribution. // // The Eclipse Public License is available at // http://www.eclipse.org/legal/epl-v10.html // // The Apache License v2.0 is available at // http://www.opensource.org/licenses/apache2.0.php // // You may elect to redistribute this code under either of these licenses. // ======================================================================== // package org.eclipse.jetty.util; import java.io.Closeable; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import org.eclipse.jetty.util.log.Log; import org.eclipse.jetty.util.log.Logger; /* ======================================================================== */ /** IO Utilities. * Provides stream handling utilities in * singleton Threadpool implementation accessed by static members. */ public class IO { private static final Logger LOG = Log.getLogger(IO.class); /* ------------------------------------------------------------------- */ public static int bufferSize = 64*1024; /* ------------------------------------------------------------------- */ /** Copy Stream in to Stream out until EOF or exception. */ public static void copy(InputStream in, OutputStream out) throws IOException { copy(in,out,-1); } /* ------------------------------------------------------------------- */ /** Copy Stream in to Stream for byteCount bytes or until EOF or exception. */ public static void copy(InputStream in, OutputStream out, long byteCount) throws IOException { byte buffer[] = new byte[bufferSize]; int len=bufferSize; if (byteCount>=0) { while (byteCount>0) { int max = byteCount<bufferSize?(int)byteCount:bufferSize; len=in.read(buffer,0,max); if (len==-1) break; byteCount -= len; out.write(buffer,0,len); } } else { while (true) { len=in.read(buffer,0,bufferSize); if (len<0 ) break; out.write(buffer,0,len); } } } /* ------------------------------------------------------------ */ /** * closes any {@link Closeable} * * @param c the closeable to close */ public static void close(Closeable c) { try { if (c != null) c.close(); } catch (IOException e) { LOG.ignore(e); } } /** * closes an input stream, and logs exceptions * * @param is the input stream to close */ public static void close(InputStream is) { try { if (is != null) is.close(); } catch (IOException e) { LOG.ignore(e); } } }