Package ghidra.program.model.symbol
Interface Symbol
-
- All Known Implementing Classes:
ClassSymbol
,CodeSymbol
,FunctionSymbol
,GlobalRegisterSymbol
,GlobalSymbol
,GlobalVariableSymbolDB
,LibrarySymbol
,NamespaceSymbol
,SymbolDB
,VariableSymbolDB
public interface Symbol
Interface for a symbol, which associates a string value with an address.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
checkIsValid()
Check whether this symbol is still valid (i.e., deleted).boolean
delete()
Delete the symbol and its associated resources.Address
getAddress()
long
getID()
java.lang.String
getName()
java.lang.String
getName(boolean includeNamespace)
Returns the symbol name, optionally prepended with the namespace path.java.lang.Object
getObject()
Namespace
getParentNamespace()
Symbol
getParentSymbol()
Returns namespace symbol of the namespace containing this symboljava.lang.String[]
getPath()
Gets the full path name for this symbol as an ordered array of strings ending with the symbol name.Program
getProgram()
ProgramLocation
getProgramLocation()
int
getReferenceCount()
Reference[]
getReferences()
Returns all memory references to the address of this symbol.Reference[]
getReferences(TaskMonitor monitor)
Returns all memory references to the address of this symbol.SourceType
getSource()
Gets the source of this symbol.SymbolType
getSymbolType()
Returns the symbol typeboolean
hasMultipleReferences()
boolean
hasReferences()
boolean
isDescendant(Namespace namespace)
Returns true if the given namespace symbol is a descendant of this symbol.boolean
isDynamic()
boolean
isExternal()
Returns true if this an external symbol.boolean
isExternalEntryPoint()
boolean
isGlobal()
boolean
isPinned()
Returns true if the symbol is pinned to its current address.boolean
isPrimary()
boolean
isValidParent(Namespace parent)
Returns whether the given parent is valid for this Symbol.void
setName(java.lang.String newName, SourceType source)
Sets the name this symbol.void
setNameAndNamespace(java.lang.String newName, Namespace newNamespace, SourceType source)
Sets the symbols name and namespace.void
setNamespace(Namespace newNamespace)
Sets the symbols namespacevoid
setPinned(boolean pinned)
Sets whether or not this symbol is pinned to its associated address.boolean
setPrimary()
Sets this symbol to be primary.void
setSource(SourceType source)
Sets the source of this symbol.
-
-
-
Method Detail
-
getAddress
Address getAddress()
-
getName
java.lang.String getName()
-
checkIsValid
boolean checkIsValid()
Check whether this symbol is still valid (i.e., deleted).- Returns:
- true if valid or false if deleted.
-
getPath
java.lang.String[] getPath()
Gets the full path name for this symbol as an ordered array of strings ending with the symbol name. The global symbol will return an empty array.
-
getProgram
Program getProgram()
-
getName
java.lang.String getName(boolean includeNamespace)
Returns the symbol name, optionally prepended with the namespace path.- Parameters:
includeNamespace
- if true, the namespace path is prepended to the name.
-
getParentNamespace
Namespace getParentNamespace()
-
getParentSymbol
Symbol getParentSymbol()
Returns namespace symbol of the namespace containing this symbol
-
isDescendant
boolean isDescendant(Namespace namespace)
Returns true if the given namespace symbol is a descendant of this symbol.- Parameters:
namespace
- to test as descendant symbol of this Symbol- Returns:
- true if this symbol is an ancestor of the given namespace symbol
-
isValidParent
boolean isValidParent(Namespace parent)
Returns whether the given parent is valid for this Symbol.- Parameters:
parent
-
-
getSymbolType
SymbolType getSymbolType()
Returns the symbol type
-
getReferenceCount
int getReferenceCount()
-
hasMultipleReferences
boolean hasMultipleReferences()
-
hasReferences
boolean hasReferences()
-
getReferences
Reference[] getReferences(TaskMonitor monitor)
Returns all memory references to the address of this symbol. If you do not have aTaskMonitor
instance, then you can passTaskMonitorAdapter.DUMMY_MONITOR
or null.- Parameters:
monitor
- the monitor that is used to report progress and to cancel this potentially long-running call
-
getReferences
Reference[] getReferences()
Returns all memory references to the address of this symbol.- See Also:
getReferences(TaskMonitor)
-
getProgramLocation
ProgramLocation getProgramLocation()
-
setName
void setName(java.lang.String newName, SourceType source) throws DuplicateNameException, InvalidInputException
Sets the name this symbol. If this symbol is dynamic, then the name is set and the symbol is no longer dynamic.- Parameters:
newName
- the new name for this symbol.source
- the source of this symbol
Some symbol types, such as function symbols, can set the source to Symbol.DEFAULT.- Throws:
DuplicateNameException
- if name already exists as the name of another symbol or alias.InvalidInputException
- if alias contains blank characters, is zero length, or is nulljava.lang.IllegalArgumentException
- if you try to set the source to DEFAULT for a symbol type that doesn't allow it.
-
setNamespace
void setNamespace(Namespace newNamespace) throws DuplicateNameException, InvalidInputException, CircularDependencyException
Sets the symbols namespace- Parameters:
newNamespace
- new parent namespace- Throws:
DuplicateNameException
- if newNamespace already contains a symbol with this symbol's nameInvalidInputException
- is newNamespace is not a valid parent for this symbolCircularDependencyException
- if this symbol is an ancestor of newNamespace
-
setNameAndNamespace
void setNameAndNamespace(java.lang.String newName, Namespace newNamespace, SourceType source) throws DuplicateNameException, InvalidInputException, CircularDependencyException
Sets the symbols name and namespace. This is provided to allow the caller to avoid a name conflict by creating an autonomous action.- Parameters:
newName
- new symbol namenewNamespace
- new parent namespacesource
- the source of this symbol
Some symbol types, such as function symbols, can set the source to Symbol.DEFAULT.- Throws:
DuplicateNameException
- if newNamespace already contains a symbol with this symbol's nameInvalidInputException
- is newNamespace is not a valid parent for this symbolCircularDependencyException
- if this symbol is an ancestor of newNamespace
-
delete
boolean delete()
Delete the symbol and its associated resources.
-
isPinned
boolean isPinned()
Returns true if the symbol is pinned to its current address. If it is pinned, then moving or removing the memory associated with that address will not affect this symbol.
-
setPinned
void setPinned(boolean pinned)
Sets whether or not this symbol is pinned to its associated address.
If the symbol is pinned then moving or removing the memory associated with its address will not cause this symbol to be removed and will not cause its address to change. If the symbol is not pinned, then removing the memory at its address will also remove this symbol.
Likewise, moving a memory block containing a symbol that is not anchored will change the address for that symbol to keep it associated with the same byte in the memory block.
- Parameters:
pinned
- true indicates this symbol is anchored to its address. false indicates this symbol is not anchored to its address.
-
isDynamic
boolean isDynamic()
-
isExternal
boolean isExternal()
Returns true if this an external symbol.- Returns:
- true if this an external symbol.
- See Also:
Address.isExternalAddress()
-
isPrimary
boolean isPrimary()
-
setPrimary
boolean setPrimary()
Sets this symbol to be primary. All other symbols at the same address will be set to !primary. Only applies to non-function symbols.- Returns:
- returns true if the symbol was not primary and now it is, otherwise false
-
isExternalEntryPoint
boolean isExternalEntryPoint()
-
getID
long getID()
-
getObject
java.lang.Object getObject()
-
isGlobal
boolean isGlobal()
-
setSource
void setSource(SourceType source)
Sets the source of this symbol.SourceTypes
- Parameters:
source
- the new source of this symbol
-
getSource
SourceType getSource()
Gets the source of this symbol.SourceTypes
- Returns:
- the source of this symbol
-
-