Class GoStructType
java.lang.Object
ghidra.app.util.bin.format.golang.rtti.types.GoType
ghidra.app.util.bin.format.golang.rtti.types.GoStructType
- All Implemented Interfaces:
StructureMarkup<GoType>
Golang type information about a specific structure type.
-
Field Summary
Fields inherited from class ghidra.app.util.bin.format.golang.rtti.types.GoType
context, programContext, typ, uncommonType -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidadditionalMarkup(MarkupSession session) Called to allow the implementor to perform custom markup of itself.booleandiscoverGoTypes(Set<Long> discoveredTypes) Iterates this type, and any types this type refers to, while registering the types with theGoRttiMappercontext.longReturns the location of where this type object, and any known associated optional structures ends.Returns the fields defined by this struct type.Returns the package path of this structure typeReturns the package path of this structure type.Returns a descriptive string that defines the declaration of this type.Converts a golang RTTI type structure into a Ghidra data type.Methods inherited from class ghidra.app.util.bin.format.golang.rtti.types.GoType
getBaseType, getDebugId, getImplementsInterfaceString, getMethodInfoList, getMethodListString, getMethodSignature, getName, getNameWithPackageString, getOffsetEndOfFullType, getSpecializedTypeClass, getStructureContext, getStructureName, getStructureNamespace, getTypeOffset, getUncommonType, getUniqueTypename, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface ghidra.app.util.bin.format.golang.structmapping.StructureMarkup
getExternalInstancesToMarkup, getStructureLabel
-
Constructor Details
-
GoStructType
public GoStructType()
-
-
Method Details
-
getPkgPath
Returns the package path of this structure type.- Returns:
- package path of this structure type
- Throws:
IOException- if error reading
-
getPackagePathString
Returns the package path of this structure type- Overrides:
getPackagePathStringin classGoType- Returns:
- package path of this structure type, as a string
-
getFields
Returns the fields defined by this struct type.- Returns:
- list of fields defined by this struct type
- Throws:
IOException- if error reading
-
getEndOfTypeInfo
Description copied from class:GoTypeReturns the location of where this type object, and any known associated optional structures ends.- Overrides:
getEndOfTypeInfoin classGoType- Returns:
- index location of end of this type object
- Throws:
IOException- if error reading
-
additionalMarkup
Description copied from interface:StructureMarkupCalled to allow the implementor to perform custom markup of itself.- Specified by:
additionalMarkupin interfaceStructureMarkup<GoType>- Overrides:
additionalMarkupin classGoType- Parameters:
session- state and methods to assist marking up the program- Throws:
IOException- if error during markupCancelledException- if cancelled
-
getTypeDeclString
Description copied from class:GoTypeReturns a descriptive string that defines the declaration of this type.This method should be overloaded by more specific types.
- Overrides:
getTypeDeclStringin classGoType- Returns:
- descriptive string
- Throws:
IOException- if error reading data
-
recoverDataType
Description copied from class:GoTypeConverts a golang RTTI type structure into a Ghidra data type.- Overrides:
recoverDataTypein classGoType- Returns:
DataTypethat represents the golang type- Throws:
IOException- if error getting name of the type
-
discoverGoTypes
Description copied from class:GoTypeIterates this type, and any types this type refers to, while registering the types with theGoRttiMappercontext.This method should be overloaded by derived type classes to add any additional types referenced by the derived type.
- Overrides:
discoverGoTypesin classGoType- Parameters:
discoveredTypes- set of already iterated types- Returns:
- boolean boolean flag, if false the type has already been discovered, if true the type was encountered for the first time
- Throws:
IOException- if error reading type info
-