All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pitest.util.StreamUtil Maven / Gradle / Ivy

package org.pitest.util;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;
import java.nio.channels.WritableByteChannel;

public abstract class StreamUtil {

  public static byte[] streamToByteArray(final InputStream in)
      throws IOException {
    try (ByteArrayOutputStream result = new ByteArrayOutputStream()) {
      copy(in, result);
      return result.toByteArray();
    }
  }

  public static InputStream copyStream(final InputStream in) throws IOException {
    final byte[] bs = streamToByteArray(in);
    return new ByteArrayInputStream(bs);
  }

  private static void copy(final InputStream input, final OutputStream output)
      throws IOException {
    //Ensure that this thread does not have the "interrupted" flag set, otherwise
    //the NIO calls will throw an java.nio.channels.ClosedByInterruptException
    Thread.interrupted();

    final ReadableByteChannel src = Channels.newChannel(input);
    final WritableByteChannel dest = Channels.newChannel(output);
    final ByteBuffer buffer = ByteBuffer.allocateDirect(16 * 1024);
    while (src.read(buffer) != -1) {
      buffer.flip();
      dest.write(buffer);
      buffer.compact();
    }
    buffer.flip();
    while (buffer.hasRemaining()) {
      dest.write(buffer);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy