Class InputStreamFromOutputStream<T>
- java.lang.Object
-
- java.io.InputStream
-
- java.io.PipedInputStream
-
- net.sf.okapi.common.io.InputStreamFromOutputStream<T>
-
- Type Parameters:
T- Optional result returned by the function produce(OutputStream) after the data has been written. It can be obtained calling the getResult()
- All Implemented Interfaces:
Closeable,AutoCloseable
public abstract class InputStreamFromOutputStream<T> extends PipedInputStream
This class allow to read the data written to an OutputStream from an InputStream.
To use this class you must subclass it and implement the abstract method produce(OutputStream). The data who is produced inside this function can be written to the sink
OutputStreampassed as a parameter. Later it can be read back from from theInputStreamFromOutputStreamclass (whose ancestor isjava.io.InputStream).final String dataId=//id of some data. final InputStreamFromOutputStream<String> isos = new InputStreamFromOutputStream<String>() { @Override public String produce(final OutputStream dataSink) throws Exception { //call your application function who produces the data here //WARNING: we're in another thread here, so this method shouldn't //write any class field or make assumptions on the state of the class. return produceMydata(dataId,dataSink) } }; try { //now you can read from the InputStream the data that was written to the //dataSink OutputStream byte[] read=IOUtils.toByteArray(isos); //Use data here } catch (final IOException e) { //Handle exception here } finally { isos.close(); } //You can get the result of produceMyData after the stream has been closed. String resultOfProduction = isos.getResult();This class encapsulates a pipe and a
Thread, hiding the complexity of using them. It is possible to select different strategies for allocating the internal thread or even specify the ExecutorService for thread execution.- Since:
- 1.0
- Author:
- dvd.smnt
-
-
Field Summary
-
Fields inherited from class java.io.PipedInputStream
buffer, in, out, PIPE_SIZE
-
-
Constructor Summary
Constructors Constructor Description InputStreamFromOutputStream()Creates aInputStreamFromOutputStreamwith a THREAD_PER_INSTANCE thread strategy.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidafterClose()This method is called just before theclose()method completes, and after the eventual join with the internal thread.voidclose()static String[]getActiveThreadNames()This method can be used for debugging purposes to get a list of the currently active threads.TgetResult()Returns the object that was previously returned by the produce(OutputStream) method.protected abstract Tproduce(OutputStream sink)This method must be implemented by the user of this class to produce the data that must be read from the externalInputStream.intread()intread(byte[] b, int off, int len)static voidsetDefaultPipeSize(int defaultPipeSize)Set the size for the pipe circular buffer for the newly createdInputStreamFromOutputStream.-
Methods inherited from class java.io.PipedInputStream
available, connect, receive
-
Methods inherited from class java.io.InputStream
mark, markSupported, nullInputStream, read, readAllBytes, readNBytes, readNBytes, reset, skip, transferTo
-
-
-
-
Method Detail
-
getActiveThreadNames
public static final String[] getActiveThreadNames()
This method can be used for debugging purposes to get a list of the currently active threads.- Returns:
- Array containing names of the threads currently active.
-
setDefaultPipeSize
public static void setDefaultPipeSize(int defaultPipeSize)
Set the size for the pipe circular buffer for the newly createdInputStreamFromOutputStream. Default is 4096 bytes.- Parameters:
defaultPipeSize- the default pipe buffer size in bytes.- Since:
- 1.2.2
-
afterClose
protected void afterClose() throws IOExceptionThis method is called just before the
close()method completes, and after the eventual join with the internal thread.It is an extension point designed for applications that need to perform some operation when the
InputStreamis closed.- Throws:
IOException- threw when the subclass wants to communicate an exception during close.- Since:
- 1.2.9
-
close
public final void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classPipedInputStream- Throws:
IOException
-
getResult
public T getResult() throws Exception
Returns the object that was previously returned by the produce(OutputStream) method. It performs all the synchronization operations needed to read the result and waits for the internal thread to terminate.
This method must be called after the method close(), otherwise an IllegalStateException is thrown.
- Returns:
- Object that was returned by the produce(OutputStream) method.
- Throws:
Exception- If the produce(OutputStream) method threw an java.lang.Exception this method will throw again the same exception.IllegalStateException- If the close() method hasn't been called yet.- Since:
- 1.2.0
-
produce
protected abstract T produce(OutputStream sink) throws Exception
This method must be implemented by the user of this class to produce the data that must be read from the external
InputStream.Special care must be paid passing arguments to this method or setting global fields because it is executed in another thread.
The right way to set a field variable is to return a value in the
produceand retrieve it in the getResult().- Parameters:
sink- the implementing class should write its data to this stream.- Returns:
- The implementing class can use this to return a result of data production. The result will be available through the method getResult().
- Throws:
Exception- the exception eventually thrown by the implementing class is returned by the read() methods.- See Also:
getResult()
-
read
public final int read() throws IOException- Overrides:
readin classPipedInputStream- Throws:
IOException
-
read
public final int read(byte[] b, int off, int len) throws IOException- Overrides:
readin classPipedInputStream- Throws:
IOException
-
-