|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.io.InputStream
org.apache.commons.compress.archivers.ArchiveInputStream
org.apache.commons.compress.archivers.cpio.CpioArchiveInputStream
public class CpioArchiveInputStream
CPIOArchiveInputStream is a stream for reading cpio streams. All formats of cpio are supported (old ascii, old binary, new portable format and the new portable format with crc).
The stream can be read by extracting a cpio entry (containing all informations about a entry) and afterwards reading from the stream the file specified by the entry.
CPIOArchiveInputStream cpioIn = new CPIOArchiveInputStream(
new FileInputStream(new File("test.cpio")));
CPIOArchiveEntry cpioEntry;
while ((cpioEntry = cpioIn.getNextEntry()) != null) {
System.out.println(cpioEntry.getName());
int tmp;
StringBuffer buf = new StringBuffer();
while ((tmp = cpIn.read()) != -1) {
buf.append((char) tmp);
}
System.out.println(buf.toString());
}
cpioIn.close();
Note: This implementation should be compatible to cpio 2.5
This class uses mutable fields and is not considered to be threadsafe.
Based on code from the jRPM project (jrpm.sourceforge.net)
| Field Summary |
|---|
| Fields inherited from interface org.apache.commons.compress.archivers.cpio.CpioConstants |
|---|
C_IRGRP, C_IROTH, C_IRUSR, C_ISBLK, C_ISCHR, C_ISDIR, C_ISFIFO, C_ISGID, C_ISLNK, C_ISNWK, C_ISREG, C_ISSOCK, C_ISUID, C_ISVTX, C_IWGRP, C_IWOTH, C_IWUSR, C_IXGRP, C_IXOTH, C_IXUSR, CPIO_TRAILER, FORMAT_NEW, FORMAT_NEW_CRC, FORMAT_NEW_MASK, FORMAT_OLD_ASCII, FORMAT_OLD_BINARY, FORMAT_OLD_MASK, MAGIC_NEW, MAGIC_NEW_CRC, MAGIC_OLD_ASCII, MAGIC_OLD_BINARY, S_IFMT |
| Constructor Summary | |
|---|---|
CpioArchiveInputStream(java.io.InputStream in)
Construct the cpio input stream |
|
| Method Summary | |
|---|---|
int |
available()
Returns 0 after EOF has reached for the current entry data, otherwise always return 1. |
void |
close()
Closes the CPIO input stream. |
CpioArchiveEntry |
getNextCPIOEntry()
Reads the next CPIO file entry and positions stream at the beginning of the entry data. |
ArchiveEntry |
getNextEntry()
Returns the next Archive Entry in this Stream. |
static boolean |
matches(byte[] signature,
int length)
Checks if the signature matches one of the following magic values: Strings: "070701" - MAGIC_NEW "070702" - MAGIC_NEW_CRC "070707" - MAGIC_OLD_ASCII Octal Binary value: 070707 - MAGIC_OLD_BINARY (held as a short) = 0x71C7 or 0xC771 |
int |
read(byte[] b,
int off,
int len)
Reads from the current CPIO entry into an array of bytes. |
long |
skip(long n)
Skips specified number of bytes in the current CPIO entry. |
| Methods inherited from class org.apache.commons.compress.archivers.ArchiveInputStream |
|---|
count, getCount, read |
| Methods inherited from class java.io.InputStream |
|---|
mark, markSupported, read, reset |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public CpioArchiveInputStream(java.io.InputStream in)
in - The cpio stream| Method Detail |
|---|
public int available()
throws java.io.IOException
available in class java.io.InputStreamjava.io.IOException - if an I/O error has occurred or if a CPIO file error has
occurred
public void close()
throws java.io.IOException
close in interface java.io.Closeableclose in class java.io.InputStreamjava.io.IOException - if an I/O error has occurred
public CpioArchiveEntry getNextCPIOEntry()
throws java.io.IOException
java.io.IOException - if an I/O error has occurred or if a CPIO file error has
occurred
public int read(byte[] b,
int off,
int len)
throws java.io.IOException
read in class java.io.InputStreamb - the buffer into which the data is readoff - the start offset of the datalen - the maximum number of bytes read
java.io.IOException - if an I/O error has occurred or if a CPIO file error has
occurred
public long skip(long n)
throws java.io.IOException
skip in class java.io.InputStreamn - the number of bytes to skip
java.io.IOException - if an I/O error has occurred
java.lang.IllegalArgumentException - if n < 0
public ArchiveEntry getNextEntry()
throws java.io.IOException
ArchiveInputStream
getNextEntry in class ArchiveInputStreamnull if there are no more entries
java.io.IOException - if the next entry could not be read
public static boolean matches(byte[] signature,
int length)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||