Package org.eclipse.cdt.utils.coff
Class PEArchive
- java.lang.Object
-
- org.eclipse.cdt.utils.coff.PEArchive
-
- All Implemented Interfaces:
AutoCloseable
@Deprecated public class PEArchive extends Object implements AutoCloseable
Deprecated.- use org.eclipse.cdt.ui.utils.ARTheAR
class is used for parsing standard ELF archive (ar) files. Each object within the archive is represented by an ARHeader class. Each of of these objects can then be turned into an PE object for performing PE class operations.- See Also:
PEArchive.ARHeader
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
PEArchive.ARHeader
Deprecated.TheARHeader
class is used to store the per-object file archive headers.
-
Field Summary
Fields Modifier and Type Field Description protected String
filename
Deprecated.protected RandomAccessFile
rfile
Deprecated.protected long
strtbl_pos
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
close()
Deprecated.void
dispose()
Deprecated.String[]
extractFiles(String outdir)
Deprecated.String[]
extractFiles(String outdir, String[] names)
Deprecated.protected void
finalize()
Deprecated.Do not leak fds.PEArchive.ARHeader[]
getHeaders()
Deprecated.Get an array of all the object file headers for this archive.static boolean
isARHeader(byte[] ident)
Deprecated.
-
-
-
Field Detail
-
filename
protected String filename
Deprecated.
-
rfile
protected RandomAccessFile rfile
Deprecated.
-
strtbl_pos
protected long strtbl_pos
Deprecated.
-
-
Constructor Detail
-
PEArchive
public PEArchive(String filename) throws IOException
Deprecated.Creates a newAR
object from the contents of the given file.- Parameters:
filename
- The file to process.- Throws:
IOException
- The file is not a valid archive.
-
-
Method Detail
-
close
public void close()
Deprecated.- Specified by:
close
in interfaceAutoCloseable
-
dispose
public void dispose()
Deprecated.
-
finalize
protected void finalize() throws Throwable
Deprecated.Do not leak fds.
-
isARHeader
public static boolean isARHeader(byte[] ident)
Deprecated.
-
getHeaders
public PEArchive.ARHeader[] getHeaders() throws IOException
Deprecated.Get an array of all the object file headers for this archive.- Returns:
- An array of headers, one for each object within the archive.
- Throws:
IOException
- Unable to process the archive file.- See Also:
PEArchive.ARHeader
-
extractFiles
public String[] extractFiles(String outdir, String[] names) throws IOException
Deprecated.- Throws:
IOException
-
extractFiles
public String[] extractFiles(String outdir) throws IOException
Deprecated.- Throws:
IOException
-
-