net.sf.sevenzipjbinding.impl
Class SequentialInStreamImpl

java.lang.Object
  extended by net.sf.sevenzipjbinding.impl.SequentialInStreamImpl
All Implemented Interfaces:
java.io.Closeable, ISequentialInStream

Deprecated. use InputStreamSequentialInStream

@Deprecated
public class SequentialInStreamImpl
extends java.lang.Object
implements ISequentialInStream

Implementation of ISequentialInStream based on InputStream.

Since:
4.65-1
Author:
Boris Brodski

Constructor Summary
SequentialInStreamImpl(java.io.InputStream inputStream)
          Deprecated. Create instance of SequentialInStreamImpl based on InputStream
 
Method Summary
 void close()
          Deprecated.  
 java.io.InputStream getInputStream()
          Deprecated. Get underlaying input stream
 int read(byte[] data)
          Deprecated. Reads at least 1 and maximum data.length bytes from the in-stream.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SequentialInStreamImpl

public SequentialInStreamImpl(java.io.InputStream inputStream)
Deprecated. 
Create instance of SequentialInStreamImpl based on InputStream

Parameters:
inputStream - input stream to use
Method Detail

read

public int read(byte[] data)
         throws SevenZipException
Deprecated. 
Reads at least 1 and maximum data.length bytes from the in-stream. If data.length == 0 0 should be returned. If data.length != 0, then return value 0 indicates end-of-stream (EOF). This means no more bytes can be read from the stream.
This function is allowed to read less than number of remaining bytes in stream and less then data.length. You must call read() function in loop, if you need exact amount of data.

Note: depending on the archive format and the data size this method may be called from different threads. Synchronized implementation may be required.

Specified by:
read in interface ISequentialInStream
Parameters:
data - buffer to get read data
Returns:
amount of bytes written in the data array. 0 - represents end of stream.
Throws:
SevenZipException - in error case. If this method ends with an exception, the current operation will be reported to 7-Zip as failed. There are no guarantee, that there are no further call back methods will get called. The first and last thrown exceptions will be saved and thrown later on from the originally called method such as ISevenZipInArchive.extract() or SevenZip.openInArchive(). Up to four exceptions depending on the situation can be saved for further analysis. See SevenZipException and SevenZipException.printStackTraceExtended() for details.

getInputStream

public java.io.InputStream getInputStream()
Deprecated. 
Get underlaying input stream

Returns:
input stream

close

public void close()
           throws java.io.IOException
Deprecated. 
Specified by:
close in interface java.io.Closeable
Throws:
java.io.IOException