Class CliTableAssembly
java.lang.Object
ghidra.app.util.bin.format.pe.cli.tables.CliAbstractTable
ghidra.app.util.bin.format.pe.cli.tables.CliTableAssembly
- All Implemented Interfaces:
PeMarkupable
,StructConverter
Describes the Assembly table. One-row table stores information about the current assembly.
-
Nested Class Summary
-
Field Summary
Fields inherited from class ghidra.app.util.bin.format.pe.cli.tables.CliAbstractTable
blobs, metadataStream, numRows, PATH, readerOffset, rows, strings, tableType, userStrings
-
Constructor Summary
ConstructorDescriptionCliTableAssembly
(BinaryReader reader, CliStreamMetadata stream, CliTypeTable tableId) -
Method Summary
Modifier and TypeMethodDescriptionGets the data type of a row in this table.void
markup
(Program program, boolean isBinary, TaskMonitor monitor, MessageLog log, NTHeader ntHeader) Marks up a PE structure.Returns a structure datatype representing the contents of the implementor of this interface.Methods inherited from class ghidra.app.util.bin.format.pe.cli.tables.CliAbstractTable
getNumRows, getRow, getRowRepresentationSafe, getRowShortRepSafe, getRowSize, getTableSize, getTableType, readBlobIndex, readGuidIndex, readStringIndex, readTableIndex, toString
-
Constructor Details
-
CliTableAssembly
public CliTableAssembly(BinaryReader reader, CliStreamMetadata stream, CliTypeTable tableId) throws IOException - Throws:
IOException
-
-
Method Details
-
getRowDataType
Description copied from class:CliAbstractTable
Gets the data type of a row in this table.- Specified by:
getRowDataType
in classCliAbstractTable
- Returns:
- The data type of a row in this table.
-
markup
public void markup(Program program, boolean isBinary, TaskMonitor monitor, MessageLog log, NTHeader ntHeader) throws DuplicateNameException, CodeUnitInsertionException, IOException Description copied from interface:PeMarkupable
Marks up a PE structure.- Specified by:
markup
in interfacePeMarkupable
- Overrides:
markup
in classCliAbstractTable
- Parameters:
program
- The program to markup.isBinary
- True if the program is binary; otherwise, false.monitor
- The monitor.log
- The log.ntHeader
- The PE's NT Header structure.- Throws:
DuplicateNameException
CodeUnitInsertionException
IOException
-
toDataType
Description copied from interface:StructConverter
Returns a structure datatype representing the contents of the implementor of this interface.For example, given:
class A { int foo; double bar; }
The return value should be a structure data type with two data type components; an INT and a DOUBLE. The structure should contain field names and, if possible, field comments.
- Specified by:
toDataType
in interfaceStructConverter
- Overrides:
toDataType
in classCliAbstractTable
- Returns:
- returns a structure datatype representing the implementor of this interface
- See Also:
-