net.markenwerk.utils.data.fetcher.AbstractDataFetcher Maven / Gradle / Ivy
/*
* Copyright (c) 2015, 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.data.fetcher;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import net.markenwerk.commons.nulls.NullInputStream;
import net.markenwerk.commons.nulls.NullOutputStream;
/**
* {@link AbstractDataFetcher} is a sensible base implementation of
* {@link DataFetcher}.
*
*
* Implementers must only implement a single simplified method that copies all
* bytes from an {@link InputStream} to an {@link OutputStream}:
* {@link AbstractDataFetcher#doCopy(InputStream, OutputStream, DataFetchProgressListener)}.
*
*
* @author Torsten Krause (tk at markenwerk dot net)
* @since 4.0.0
*/
public abstract class AbstractDataFetcher implements DataFetcher {
private static final InputStream NULL_INPUT_STREAM = new NullInputStream();
private static final OutputStream NULL_OUTPUT_STREAM = new NullOutputStream();
private static final DataFetchProgressListener NULL_LISTENER = new IdleDataFetchProgressListener() {
};
@Override
public final byte[] fetch(InputStream in) throws DataFetchException {
return fetch(in, null, false);
}
@Override
public final byte[] fetch(InputStream in, boolean close) throws DataFetchException {
return fetch(in, null, close);
}
@Override
public final byte[] fetch(InputStream in, DataFetchProgressListener listener) throws DataFetchException {
return fetch(in, listener, false);
}
@Override
public final byte[] fetch(InputStream in, DataFetchProgressListener listener, boolean close)
throws DataFetchException {
ByteArrayOutputStream out = new ByteArrayOutputStream();
copy(in, out, listener, close, true);
return out.toByteArray();
}
@Override
public final void copy(InputStream in, OutputStream out) throws DataFetchException {
copy(in, out, false, false);
}
@Override
public final void copy(InputStream in, OutputStream out, boolean closeIn, boolean closeOut)
throws DataFetchException {
copy(in, out, null, closeIn, closeOut);
}
@Override
public final void copy(InputStream in, OutputStream out, DataFetchProgressListener listener)
throws DataFetchException {
copy(in, out, listener, false, false);
}
@Override
public final void copy(InputStream in, OutputStream out, DataFetchProgressListener listener, boolean closeIn,
boolean closeOut) throws DataFetchException {
if (null == in) {
in = NULL_INPUT_STREAM;
}
if (null == out) {
out = NULL_OUTPUT_STREAM;
}
if (null == listener) {
listener = NULL_LISTENER;
}
doCopy(in, out, listener, closeIn, closeOut);
}
private void doCopy(InputStream in, OutputStream out, DataFetchProgressListener listener, boolean closeIn,
boolean closeOut) throws DataFetchException {
try {
doCopy(in, out, listener);
} catch (DataFetchException e) {
throw e;
} finally {
if (closeIn) {
try {
in.close();
} catch (IOException e) {
}
}
if (closeOut) {
try {
out.close();
} catch (IOException e) {
}
}
}
}
/**
* Copies the content of a given {@link InputStream} into a given
* {@link OutputStream}.
*
*
* It is guaranteed that neither the given {@link InputStream} nor the given
* {@link OutputStream} nor the given {@link DataFetchProgressListener} is
* {@literal null}.
*
*
* Implementers must not close either of the given streams.
*
* @param in
* The {@link InputStream} to read from.
* @param out
* The {@link OutputStream} to write to.
* @param listener
* The {@link DataFetchProgressListener} to report to.
* @throws DataFetchException
* If anything went wrong while reading from the given
* {@link InputStream} or writing to the given
* {@link OutputStream}.
*/
protected abstract void doCopy(InputStream in, OutputStream out, DataFetchProgressListener listener)
throws DataFetchException;
}