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

com.signalfx.shaded.apache.commons.io.input.UnsynchronizedByteArrayInputStream Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.signalfx.shaded.apache.commons.io.input;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Objects;

import com.signalfx.shaded.apache.commons.io.build.AbstractOrigin;
import com.signalfx.shaded.apache.commons.io.build.AbstractStreamBuilder;

/**
 * This is an alternative to {@link java.io.ByteArrayInputStream} which removes the synchronization overhead for non-concurrent access; as such this class is
 * not thread-safe.
 * 

* To build an instance, use {@link Builder}. *

* * @see Builder * @see ByteArrayInputStream * @since 2.7 */ //@NotThreadSafe public class UnsynchronizedByteArrayInputStream extends InputStream { // @formatter:off /** * Builds a new {@link UnsynchronizedByteArrayInputStream}. * *

* Using a Byte Array: *

*
{@code
     * UnsynchronizedByteArrayInputStream s = UnsynchronizedByteArrayInputStream.builder()
     *   .setByteArray(byteArray)
     *   .setOffset(0)
     *   .setLength(byteArray.length)
     *   .get();
     * }
     * 
*

* Using File IO: *

*
{@code
     * UnsynchronizedByteArrayInputStream s = UnsynchronizedByteArrayInputStream.builder()
     *   .setFile(file)
     *   .setOffset(0)
     *   .setLength(byteArray.length)
     *   .get();
     * }
     * 
*

* Using NIO Path: *

*
{@code
     * UnsynchronizedByteArrayInputStream s = UnsynchronizedByteArrayInputStream.builder()
     *   .setPath(path)
     *   .setOffset(0)
     *   .setLength(byteArray.length)
     *   .get();
     * }
     * 
* * @see #get() */ // @formatter:on public static class Builder extends AbstractStreamBuilder { private int offset; private int length; /** * Builds a new {@link UnsynchronizedByteArrayInputStream}. *

* You must set input that supports {@code byte[]} on this builder, otherwise, this method throws an exception. *

*

* This builder use the following aspects: *

*
    *
  • {@code byte[]}
  • *
  • offset
  • *
  • length
  • *
* * @return a new instance. * @throws UnsupportedOperationException if the origin cannot provide a byte[]. * @throws IllegalStateException if the {@code origin} is {@code null}. * @see AbstractOrigin#getByteArray() */ @Override public UnsynchronizedByteArrayInputStream get() throws IOException { return new UnsynchronizedByteArrayInputStream(checkOrigin().getByteArray(), offset, length); } @Override public Builder setByteArray(final byte[] origin) { length = Objects.requireNonNull(origin, "origin").length; return super.setByteArray(origin); } /** * Sets the length. * * @param length Must be greater or equal to 0. * @return this. */ public Builder setLength(final int length) { if (length < 0) { throw new IllegalArgumentException("length cannot be negative"); } this.length = length; return this; } /** * Sets the offset. * * @param offset Must be greater or equal to 0. * @return this. */ public Builder setOffset(final int offset) { if (offset < 0) { throw new IllegalArgumentException("offset cannot be negative"); } this.offset = offset; return this; } } /** * The end of stream marker. */ public static final int END_OF_STREAM = -1; /** * Constructs a new {@link Builder}. * * @return a new {@link Builder}. */ public static Builder builder() { return new Builder(); } private static int minPosLen(final byte[] data, final int defaultValue) { requireNonNegative(defaultValue, "defaultValue"); return Math.min(defaultValue, data.length > 0 ? data.length : defaultValue); } private static int requireNonNegative(final int value, final String name) { if (value < 0) { throw new IllegalArgumentException(name + " cannot be negative"); } return value; } /** * The underlying data buffer. */ private final byte[] data; /** * End Of Data. * * Similar to data.length, i.e. the last readable offset + 1. */ private final int eod; /** * Current offset in the data buffer. */ private int offset; /** * The current mark (if any). */ private int markedOffset; /** * Constructs a new byte array input stream. * * @param data the buffer * @deprecated Use {@link #builder()}, {@link Builder}, and {@link Builder#get()}. */ @Deprecated public UnsynchronizedByteArrayInputStream(final byte[] data) { this(data, data.length, 0, 0); } /** * Constructs a new byte array input stream. * * @param data the buffer * @param offset the offset into the buffer * * @throws IllegalArgumentException if the offset is less than zero * @deprecated Use {@link #builder()}, {@link Builder}, and {@link Builder#get()}. */ @Deprecated public UnsynchronizedByteArrayInputStream(final byte[] data, final int offset) { this(data, data.length, Math.min(requireNonNegative(offset, "offset"), minPosLen(data, offset)), minPosLen(data, offset)); } /** * Constructs a new byte array input stream. * * @param data the buffer * @param offset the offset into the buffer * @param length the length of the buffer * * @throws IllegalArgumentException if the offset or length less than zero * @deprecated Use {@link #builder()}, {@link Builder}, and {@link Builder#get()}. */ @Deprecated public UnsynchronizedByteArrayInputStream(final byte[] data, final int offset, final int length) { requireNonNegative(offset, "offset"); requireNonNegative(length, "length"); this.data = Objects.requireNonNull(data, "data"); this.eod = Math.min(minPosLen(data, offset) + length, data.length); this.offset = minPosLen(data, offset); this.markedOffset = minPosLen(data, offset); } private UnsynchronizedByteArrayInputStream(final byte[] data, final int eod, final int offset, final int markedOffset) { this.data = Objects.requireNonNull(data, "data"); this.eod = eod; this.offset = offset; this.markedOffset = markedOffset; } @Override public int available() { return offset < eod ? eod - offset : 0; } @SuppressWarnings("sync-override") @Override public void mark(final int readLimit) { this.markedOffset = this.offset; } @Override public boolean markSupported() { return true; } @Override public int read() { return offset < eod ? data[offset++] & 0xff : END_OF_STREAM; } @Override public int read(final byte[] dest) { Objects.requireNonNull(dest, "dest"); return read(dest, 0, dest.length); } @Override public int read(final byte[] dest, final int off, final int len) { Objects.requireNonNull(dest, "dest"); if (off < 0 || len < 0 || off + len > dest.length) { throw new IndexOutOfBoundsException(); } if (offset >= eod) { return END_OF_STREAM; } int actualLen = eod - offset; if (len < actualLen) { actualLen = len; } if (actualLen <= 0) { return 0; } System.arraycopy(data, offset, dest, off, actualLen); offset += actualLen; return actualLen; } @SuppressWarnings("sync-override") @Override public void reset() { this.offset = this.markedOffset; } @Override public long skip(final long n) { if (n < 0) { throw new IllegalArgumentException("Skipping backward is not supported"); } long actualSkip = eod - offset; if (n < actualSkip) { actualSkip = n; } offset = Math.addExact(offset, Math.toIntExact(n)); return actualSkip; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy