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

com.signalfx.shaded.apache.commons.io.input.UncheckedBufferedReader 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.BufferedReader;
import java.io.IOException;
import java.io.Reader;
import java.io.UncheckedIOException;
import java.nio.CharBuffer;

import com.signalfx.shaded.apache.commons.io.build.AbstractStreamBuilder;
import com.signalfx.shaded.apache.commons.io.function.Uncheck;

/**
 * A {@link BufferedReader} that throws {@link UncheckedIOException} instead of {@link IOException}.
 * 

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

* * @see Builder * @see BufferedReader * @see IOException * @see UncheckedIOException * @since 2.12.0 */ public final class UncheckedBufferedReader extends BufferedReader { // @formatter:off /** * Builds a new {@link UncheckedBufferedReader}. * *

* Using File IO: *

*
{@code
     * UncheckedBufferedReader s = UncheckedBufferedReader.builder()
     *   .setFile(file)
     *   .setBufferSize(8192)
     *   .setCharset(Charset.defaultCharset())
     *   .get();}
     * 
*

* Using NIO Path: *

*
{@code
     * UncheckedBufferedReader s = UncheckedBufferedReader.builder()
     *   .setPath(path)
     *   .setBufferSize(8192)
     *   .setCharset(Charset.defaultCharset())
     *   .get();}
     * 
* * @see #get() */ // @formatter:on public static class Builder extends AbstractStreamBuilder { /** * Builds a new {@link UncheckedBufferedReader}. * *

* You must set input that supports {@link #getReader()} on this builder, otherwise, this method throws an exception. *

*

* This builder use the following aspects: *

*
    *
  • {@link #getReader()}
  • *
  • {@link #getBufferSize()}
  • *
* * @return a new instance. * @throws UnsupportedOperationException if the origin cannot provide a Reader. * @throws IllegalStateException if the {@code origin} is {@code null}. * @see #getReader() * @see #getBufferSize() */ @Override public UncheckedBufferedReader get() { // This an unchecked class, so this method is as well. return Uncheck.get(() -> new UncheckedBufferedReader(getReader(), getBufferSize())); } } /** * Constructs a new {@link Builder}. * * @return a new {@link Builder}. */ public static Builder builder() { return new Builder(); } /** * Constructs a buffering character-input stream that uses an input buffer of the specified size. * * @param reader A Reader * @param bufferSize Input-buffer size * * @throws IllegalArgumentException If {@code bufferSize <= 0} */ private UncheckedBufferedReader(final Reader reader, final int bufferSize) { super(reader, bufferSize); } /** * Calls this method's super and rethrow {@link IOException} as {@link UncheckedIOException}. */ @Override public void close() throws UncheckedIOException { Uncheck.run(super::close); } /** * Calls this method's super and rethrow {@link IOException} as {@link UncheckedIOException}. */ @Override public void mark(final int readAheadLimit) throws UncheckedIOException { Uncheck.accept(super::mark, readAheadLimit); } /** * Calls this method's super and rethrow {@link IOException} as {@link UncheckedIOException}. */ @Override public int read() throws UncheckedIOException { return Uncheck.get(super::read); } /** * Calls this method's super and rethrow {@link IOException} as {@link UncheckedIOException}. */ @Override public int read(final char[] cbuf) throws UncheckedIOException { return Uncheck.apply(super::read, cbuf); } /** * Calls this method's super and rethrow {@link IOException} as {@link UncheckedIOException}. */ @Override public int read(final char[] cbuf, final int off, final int len) throws UncheckedIOException { return Uncheck.apply(super::read, cbuf, off, len); } /** * Calls this method's super and rethrow {@link IOException} as {@link UncheckedIOException}. */ @Override public int read(final CharBuffer target) throws UncheckedIOException { return Uncheck.apply(super::read, target); } /** * Calls this method's super and rethrow {@link IOException} as {@link UncheckedIOException}. */ @Override public String readLine() throws UncheckedIOException { return Uncheck.get(super::readLine); } /** * Calls this method's super and rethrow {@link IOException} as {@link UncheckedIOException}. */ @Override public boolean ready() throws UncheckedIOException { return Uncheck.get(super::ready); } /** * Calls this method's super and rethrow {@link IOException} as {@link UncheckedIOException}. */ @Override public void reset() throws UncheckedIOException { Uncheck.run(super::reset); } /** * Calls this method's super and rethrow {@link IOException} as {@link UncheckedIOException}. */ @Override public long skip(final long n) throws UncheckedIOException { return Uncheck.apply(super::skip, n); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy