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

net.markenwerk.utils.text.fetcher.TextFetcher Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2016 Torsten Krause, Markenwerk GmbH
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package net.markenwerk.utils.text.fetcher;

import java.io.Closeable;

/**
 * A {@link TextFetcher} can fetch the entire content of a given
 * {@link Readable} into a fresh {@code char[]} or {@link String} or copy it
 * into a given {@link Appendable}.
 * 
 * 

* All methods take optional parameters to specify the buffer size and to * specify, whether the provided streams should be closed afterwards. This * allows to write compact code like * *

 * {
 * 	foo.setContent(fetcher.fetch(new FileReadable(file), true));
 * }
 * 
* * instead of unnecessarily verbose code like * *
 * {
 * 	Readable in = new FileReadable(file);
 * 	foo.setContent(fetcher.fetch(in));
 * 	in.close();
 * }
 * 
* * @author Torsten Krause (tk at markenwerk dot net) * @since 1.0.0 */ public interface TextFetcher { /** * Fetches the content of a given {@link Readable} into a fresh char[]. * *

* See {@link TextFetcher#copy(Readable, Appendable, boolean, boolean)} * for the handling of missing or invalid arguments. * * @param in * The {@link Readable} to read from. * @return A new {@code char[]}, containing the content of the given * {@link Readable}. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable}. */ public char[] fetch(Readable in) throws TextFetchException; /** * Fetches the content of a given {@link Readable} into a fresh char[]. * *

* See {@link TextFetcher#copy(Readable, Appendable, boolean, boolean)} * for the handling of missing or invalid arguments. * * @param in * The {@link Readable} to read from. * @param close * Whether to close the given {@link Readable}, after reading * from it, if the given {@link Readable} is {@link Closeable}. * @return A new {@code char[]}, containing the content of the given * {@link Readable}. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable}. {@link TextFetchException FetchExceptions} * thrown while trying to close the given {@link Readable}, if * requested, are ignored. */ public char[] fetch(Readable in, boolean close) throws TextFetchException; /** * Fetches the content of a given {@link Readable} into a fresh char[]. * *

* See {@link TextFetcher#copy(Readable, Appendable, boolean, boolean)} * for the handling of missing or invalid arguments. * * @param in * The {@link Readable} to read from. * @param listener * The {@link TextFetchProgressListener} to report to. * @return A new {@code char[]}, containing the content of the given * {@link Readable}. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable}. */ public char[] fetch(Readable in, TextFetchProgressListener listener) throws TextFetchException; /** * Fetches the content of a given {@link Readable} into a fresh char[]. * *

* See {@link TextFetcher#copy(Readable, Appendable, boolean, boolean)} * for the handling of missing or invalid arguments. * * @param in * The {@link Readable} to read from. * @param listener * The {@link TextFetchProgressListener} to report to. * @param close * Whether to close the given {@link Readable}, after reading * from it, if the given {@link Readable} is {@link Closeable}. * @return A new {@code char[]}, containing the content of the given * {@link Readable}. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable}. {@link TextFetchException FetchExceptions} * thrown while trying to close the given {@link Readable}, if * requested, are ignored. */ public char[] fetch(Readable in, TextFetchProgressListener listener, boolean close) throws TextFetchException; /** * Reads the content of a given {@link Readable} as a {@link String}. * *

* See {@link TextFetcher#copy(Readable, Appendable, boolean, boolean)} * for the handling of missing or invalid arguments. * * @param in * The {@link Readable} to read from. * @return A new {@code char[]}, containing the content of the given * {@link Readable}. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable}. */ public String read(Readable in) throws TextFetchException; /** * Reads the content of a given {@link Readable} as a {@link String} * *

* See {@link TextFetcher#copy(Readable, Appendable, boolean, boolean)} * for the handling of missing or invalid arguments. * * @param in * The {@link Readable} to read from. * @param close * Whether to close the given {@link Readable}, after reading * from it, if the given {@link Readable} is {@link Closeable}. * @return A new {@code char[]}, containing the content of the given * {@link Readable}. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable}. {@link TextFetchException FetchExceptions} * thrown while trying to close the given {@link Readable}, if * requested, are ignored. */ public String read(Readable in, boolean close) throws TextFetchException; /** * Reads the content of a given {@link Readable} as a {@link String}. * *

* See {@link TextFetcher#copy(Readable, Appendable, boolean, boolean)} * for the handling of missing or invalid arguments. * * @param in * The {@link Readable} to read from. * @param listener * The {@link TextFetchProgressListener} to report to. * @return A new {@code char[]}, containing the content of the given * {@link Readable}. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable}. */ public String read(Readable in, TextFetchProgressListener listener) throws TextFetchException; /** * Reads the content of a given {@link Readable} as a {@link String}. * *

* See {@link TextFetcher#copy(Readable, Appendable, boolean, boolean)} * for the handling of missing or invalid arguments. * * @param in * The {@link Readable} to read from. * @param listener * The {@link TextFetchProgressListener} to report to. * @param close * Whether to close the given {@link Readable}, after reading * from it, if the given {@link Readable} is {@link Closeable}. * @return A new {@code char[]}, containing the content of the given * {@link Readable}. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable}. {@link TextFetchException FetchExceptions} * thrown while trying to close the given {@link Readable}, if * requested, are ignored. */ public String read(Readable in, TextFetchProgressListener listener, boolean close) throws TextFetchException; /** * Copies the content of a given {@link Readable} into a given * {@link Appendable}. * *

* See {@link TextFetcher#copy(Readable, Appendable, boolean, boolean)} * for the handling of missing or invalid arguments. * * @param in * The {@link Readable} to read from. * @param out * The {@link Appendable} to write to. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable} or appending to the given {@link Appendable}. */ public void copy(Readable in, Appendable out) throws TextFetchException; /** * Copies the content of a given {@link Readable} into a given * {@link Appendable}. * *

* Missing or invalid arguments are handled gracefully with the following * behaviour. * *

* A {@code null} is given as an {@link Readable}, it is simply ignored and * handled as if there was nothing to read. If {@code closeOut} is * {@literal true}, the given {@link Appendable} will be closed anyway * *

* A {@code null} is given as an {@link Appendable}, it is simply ignored, * but the content of given {@link Readable} is fetched anyway. If * {@code closeIn} is {@literal true}, the given {@link Readable} will be * closed anyway * * @param in * The {@link Readable} to read from. * @param out * The {@link Appendable} to write to. * @param closeIn * Whether to close the given {@link Readable}, after reading * from it, if the given {@link Readable} is {@link Closeable}. * @param closeOut * Whether to close the given {@link Appendable}, after appending * to it, if the given {@link Appendable} is {@link Closeable}. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable} or appending to the given {@link Appendable}. * {@link TextFetchException FetchExceptions} thrown while trying to * close one of the given streams, if requested, are ignored. */ public void copy(Readable in, Appendable out, boolean closeIn, boolean closeOut) throws TextFetchException; /** * Copies the content of a given {@link Readable} into a given * {@link Appendable}. * *

* See {@link TextFetcher#copy(Readable, Appendable, boolean, boolean)} * for the handling of missing or invalid arguments. * * @param in * The {@link Readable} to read from. * @param out * The {@link Appendable} to write to. * @param listener * The {@link TextFetchProgressListener} to report to. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable} or appending to the given {@link Appendable}. */ public void copy(Readable in, Appendable out, TextFetchProgressListener listener) throws TextFetchException; /** * Copies the content of a given {@link Readable} into a given * {@link Appendable}. * *

* Missing or invalid arguments are handled gracefully with the following * behaviour. * *

* A {@code null} is given as an {@link Readable}, it is simply ignored and * handled as if there was nothing to read. If {@code closeOut} is * {@literal true}, the given {@link Appendable} will be closed anyway * *

* A {@code null} is given as an {@link Appendable}, it is simply ignored, * but the content of given {@link Readable} is fetched anyway. If * {@code closeIn} is {@literal true}, the given {@link Readable} will be * closed anyway * * @param in * The {@link Readable} to read from. * @param out * The {@link Appendable} to write to. * @param listener * The {@link TextFetchProgressListener} to report to. * @param closeIn * Whether to close the given {@link Readable}, after reading * from it, if the given {@link Readable} is {@link Closeable}. * @param closeOut * Whether to close the given {@link Appendable}, after appending * to it, if the given {@link Appendable} is {@link Closeable}. * * @throws TextFetchException * If anything went wrong while reading from the given * {@link Readable} or appending to the given {@link Appendable}. * {@link TextFetchException FetchExceptions} thrown while trying * to close one of the given streams, if requested, are ignored. */ public void copy(Readable in, Appendable out, TextFetchProgressListener listener, boolean closeIn, boolean closeOut) throws TextFetchException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy