Package ghidra.program.model.data
Class ArrayDataType
- java.lang.Object
-
- ghidra.program.model.data.AbstractDataType
-
- ghidra.program.model.data.DataTypeImpl
-
- ghidra.program.model.data.ArrayDataType
-
- All Implemented Interfaces:
Array,DataType,java.util.EventListener,javax.swing.event.ChangeListener
public class ArrayDataType extends DataTypeImpl implements Array
Basic implementation of the Array interface.
-
-
Field Summary
-
Fields inherited from class ghidra.program.model.data.DataTypeImpl
defaultSettings
-
Fields inherited from class ghidra.program.model.data.AbstractDataType
categoryPath, dataMgr, name
-
Fields inherited from interface ghidra.program.model.data.Array
ARRAY_LABEL_PREFIX
-
Fields inherited from interface ghidra.program.model.data.DataType
CONFLICT_SUFFIX, DEFAULT, NO_LAST_CHANGE_TIME, NO_SOURCE_SYNC_TIME, VOID
-
-
Constructor Summary
Constructors Constructor Description ArrayDataType(DataType dataType, int numElements, int elementLength)Constructs a new Array dataType.ArrayDataType(DataType dataType, int numElements, int elementLength, DataTypeManager dtm)Constructs a new Array dataType.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataTypeclone(DataTypeManager dtm)Returns an instance of this DataType with its universalID and SourceArchive identity retained.DataTypecopy(DataTypeManager dtm)Returns a new instance (shallow copy) of this DataType with a new identity.voiddataTypeAlignmentChanged(DataType dt)Notification that the given dataType's alignment has changed.voiddataTypeDeleted(DataType dt)Informs this dataType that the given dataType has been deleted.voiddataTypeNameChanged(DataType dt, java.lang.String oldName)Informs this data type that its name has changed from the indicated old name.voiddataTypeReplaced(DataType oldDt, DataType newDt)Informs this data type that the given oldDT has been replaced with newDT
TODO: This method is reserved for internal DB use.voiddataTypeSizeChanged(DataType dt)Notification that the given dataType's size has changed.booleandependsOn(DataType dt)Returns true if this dataType depends on the existence of the given dataType.CategoryPathgetCategoryPath()Gets the categoryPath associated with this data typeDataTypegetDataType()Returns the dataType of the elements in the array.java.lang.StringgetDefaultLabelPrefix()Returns the appropriate string to use as the default label prefix in the absence of any data.java.lang.StringgetDefaultLabelPrefix(MemBuffer buf, Settings settings, int len, DataTypeDisplayOptions options)Returns the appropriate string to use as the default label prefix.java.lang.StringgetDefaultOffcutLabelPrefix(MemBuffer buf, Settings settings, int len, DataTypeDisplayOptions options, int offcutLength)Returns the appropriate string to use as the default label prefix, taking into account the fact that there exists a reference to the data that referencesoffcutLengthbytes into this typejava.lang.StringgetDescription()Get a String briefly describing this DataType.intgetElementLength()Returns the length of an element in the arraylonggetLastChangeTime()Get the timestamp corresponding to the last time this type was changed within its data type managerintgetLength()Get the length (number of 8-bit bytes) of this DataType.java.lang.StringgetMnemonic(Settings settings)Get the mnemonic for this DataType.intgetNumElements()Returns the number of elements in the arrayjava.lang.StringgetRepresentation(MemBuffer buf, Settings settings, int length)Get bytes from memory in a printable format for this type.SettingsDefinition[]getSettingsDefinitions()Gets a list of all the settingsDefinitions used by this data type.java.lang.ObjectgetValue(MemBuffer buf, Settings settings, int length)Get the data in the form of the appropriate Object for this DataType.java.lang.Class<?>getValueClass(Settings settings)Get the Class of the value to be returned by this data type.booleanhasLanguageDependantLength()Indicates if the length of this data-type is determined based upon theDataOrganizationobtained from the associatedDataTypeManager.booleanisDeleted()Returns true if this data type has been deleted and is no longer validbooleanisEquivalent(DataType obj)Returns true if the given dataType is equivalent to this dataType.booleanisZeroLength()Indicates is this datatype is defined with a zero length.voidsetCategoryPath(CategoryPath path)voidsetName(java.lang.String name)Sets the name of the dataTypevoidsetNameAndCategory(CategoryPath path, java.lang.String name)Sets the name and category of a dataType at the same time.-
Methods inherited from class ghidra.program.model.data.DataTypeImpl
addParent, equals, getAlignment, getDefaultSettings, getLastChangeTimeInSourceArchive, getParents, getPathName, getSourceArchive, getUniversalID, hashCode, notifyAlignmentChanged, notifyDeleted, notifyNameChanged, notifyParents, notifyReplaced, notifySizeChanged, removeParent, replaceWith, setDefaultSettings, setDescription, setLastChangeTime, setLastChangeTimeInSourceArchive, setSourceArchive, stateChanged
-
Methods inherited from class ghidra.program.model.data.AbstractDataType
getDataOrganization, getDataTypeManager, getDataTypePath, getDefaultAbbreviatedLabelPrefix, getDisplayName, getDocs, getName, isNotYetDefined, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface ghidra.program.model.data.Array
getArrayDefaultLabelPrefix, getArrayDefaultOffcutLabelPrefix, getArrayRepresentation, getArrayValue, getArrayValueClass
-
Methods inherited from interface ghidra.program.model.data.DataType
addParent, getAlignment, getDataOrganization, getDataTypeManager, getDataTypePath, getDefaultAbbreviatedLabelPrefix, getDefaultSettings, getDisplayName, getDocs, getLastChangeTimeInSourceArchive, getName, getParents, getPathName, getSourceArchive, getUniversalID, isNotYetDefined, removeParent, replaceWith, setDefaultSettings, setDescription, setLastChangeTime, setLastChangeTimeInSourceArchive, setSourceArchive
-
-
-
-
Constructor Detail
-
ArrayDataType
public ArrayDataType(DataType dataType, int numElements, int elementLength)
Constructs a new Array dataType.- Parameters:
dataType- the dataType of the elements in the array.numElements- the number of elements in the array.elementLength- the length of an individual element in the array.
-
ArrayDataType
public ArrayDataType(DataType dataType, int numElements, int elementLength, DataTypeManager dtm)
Constructs a new Array dataType.- Parameters:
dataType- the dataType of the elements in the array.numElements- the number of elements in the array.elementLength- the length of an individual element in the array.dtm- datatype manager or null
-
-
Method Detail
-
hasLanguageDependantLength
public boolean hasLanguageDependantLength()
Description copied from interface:DataTypeIndicates if the length of this data-type is determined based upon theDataOrganizationobtained from the associatedDataTypeManager.- Specified by:
hasLanguageDependantLengthin interfaceDataType- Overrides:
hasLanguageDependantLengthin classAbstractDataType- Returns:
- true length is language/compiler-specification dependent, else false
-
getSettingsDefinitions
public SettingsDefinition[] getSettingsDefinitions()
Description copied from interface:DataTypeGets a list of all the settingsDefinitions used by this data type.- Specified by:
getSettingsDefinitionsin interfaceDataType- Overrides:
getSettingsDefinitionsin classDataTypeImpl- Returns:
- a list of the settingsDefinitions used by this data type.
-
isEquivalent
public boolean isEquivalent(DataType obj)
Description copied from interface:DataTypeReturns true if the given dataType is equivalent to this dataType. The precise meaning of "equivalent" is dataType dependent.
NOTE: if invoked by a DB object or manager it should be invoked on the DataTypeDB object passing the other datatype as the argument.- Specified by:
isEquivalentin interfaceDataType- Parameters:
obj- the dataType being tested for equivalence.- Returns:
- true if the if the given dataType is equivalent to this dataType.
-
getNumElements
public int getNumElements()
Description copied from interface:ArrayReturns the number of elements in the array- Specified by:
getNumElementsin interfaceArray- Returns:
- the number of elements in the array
-
getMnemonic
public java.lang.String getMnemonic(Settings settings)
Description copied from interface:DataTypeGet the mnemonic for this DataType.- Specified by:
getMnemonicin interfaceDataType- Overrides:
getMnemonicin classAbstractDataType- Parameters:
settings- settings which may influence the result or null- Returns:
- the mnemonic for this DataType.
-
isZeroLength
public boolean isZeroLength()
Description copied from interface:DataTypeIndicates is this datatype is defined with a zero length. This method should not be confused withDataType.isNotYetDefined()which indicates that nothing but the name and basic type is known. NOTE: Support for zero-length datatypes is not yet fully supported, as a result they will generally return a non-zero length.- Specified by:
isZeroLengthin interfaceDataType- Overrides:
isZeroLengthin classAbstractDataType- Returns:
- true if type definition has a length of 0 even though it may report a length of 1, else false.
-
getLength
public int getLength()
Description copied from interface:DataTypeGet the length (number of 8-bit bytes) of this DataType.
-
getDescription
public java.lang.String getDescription()
Description copied from interface:DataTypeGet a String briefly describing this DataType.- Specified by:
getDescriptionin interfaceDataType- Returns:
- a one-liner describing this DataType.
-
getDataType
public DataType getDataType()
Description copied from interface:ArrayReturns the dataType of the elements in the array.- Specified by:
getDataTypein interfaceArray- Returns:
- the dataType of the elements in the array
-
clone
public final DataType clone(DataTypeManager dtm)
Description copied from interface:DataTypeReturns an instance of this DataType with its universalID and SourceArchive identity retained. The current instanceof will be returned if this datatype's DataTypeManager matches the specified dtm. The recursion depth of a clone will stop on any datatype whose DataTypeManager matches the specified dtm and simply use the existing datatype instance.
-
copy
public final DataType copy(DataTypeManager dtm)
Description copied from interface:DataTypeReturns a new instance (shallow copy) of this DataType with a new identity. Any reference to other datatypes will useDataType.clone(DataTypeManager).
-
dataTypeSizeChanged
public void dataTypeSizeChanged(DataType dt)
Description copied from interface:DataTypeNotification that the given dataType's size has changed. DataTypes may need to make internal changes in response.
TODO: This method is reserved for internal DB use.- Specified by:
dataTypeSizeChangedin interfaceDataType- Overrides:
dataTypeSizeChangedin classAbstractDataType- Parameters:
dt- the dataType that has changed.
-
dataTypeAlignmentChanged
public void dataTypeAlignmentChanged(DataType dt)
Description copied from interface:DataTypeNotification that the given dataType's alignment has changed. DataTypes may need to make internal changes in response.
TODO: This method is reserved for internal DB use.- Specified by:
dataTypeAlignmentChangedin interfaceDataType- Overrides:
dataTypeAlignmentChangedin classAbstractDataType- Parameters:
dt- the dataType that has changed.
-
getValueClass
public java.lang.Class<?> getValueClass(Settings settings)
Description copied from interface:DataTypeGet the Class of the value to be returned by this data type.- Specified by:
getValueClassin interfaceDataType- Overrides:
getValueClassin classDataTypeImpl- Parameters:
settings- the relevant settings to use or null for default.- Returns:
- Class of the value to be returned by this data type or null if it can vary or is unspecified. Types which correspond to a string or char array will return the String class.
-
setName
public void setName(java.lang.String name) throws InvalidNameExceptionDescription copied from interface:DataTypeSets the name of the dataType- Specified by:
setNamein interfaceDataType- Overrides:
setNamein classAbstractDataType- Parameters:
name- the new name for this dataType.- Throws:
InvalidNameException- if the given name does not form a valid name.
-
getElementLength
public int getElementLength()
Description copied from interface:ArrayReturns the length of an element in the array- Specified by:
getElementLengthin interfaceArray- Returns:
- the length of one element in the array.
-
dataTypeDeleted
public void dataTypeDeleted(DataType dt)
Description copied from interface:DataTypeInforms this dataType that the given dataType has been deleted.
TODO: This method is reserved for internal DB use.- Specified by:
dataTypeDeletedin interfaceDataType- Overrides:
dataTypeDeletedin classAbstractDataType- Parameters:
dt- the dataType that has been deleted.
-
isDeleted
public boolean isDeleted()
Description copied from interface:DataTypeReturns true if this data type has been deleted and is no longer valid- Specified by:
isDeletedin interfaceDataType- Overrides:
isDeletedin classAbstractDataType- Returns:
- true if this data type has been deleted and is no longer valid.
-
dataTypeReplaced
public void dataTypeReplaced(DataType oldDt, DataType newDt)
Description copied from interface:DataTypeInforms this data type that the given oldDT has been replaced with newDT
TODO: This method is reserved for internal DB use.- Specified by:
dataTypeReplacedin interfaceDataType- Overrides:
dataTypeReplacedin classAbstractDataType- Parameters:
oldDt- old data typenewDt- new data type
-
setCategoryPath
public void setCategoryPath(CategoryPath path) throws DuplicateNameException
- Specified by:
setCategoryPathin interfaceDataType- Overrides:
setCategoryPathin classAbstractDataType- Parameters:
path- set the categoryPath associated with this data type- Throws:
DuplicateNameException- if an attempt to place this datatype into the specified category resulted in a name collision. This should not occur for non-DB DataType instances.
-
setNameAndCategory
public void setNameAndCategory(CategoryPath path, java.lang.String name) throws InvalidNameException, DuplicateNameException
Description copied from interface:DataTypeSets the name and category of a dataType at the same time.- Specified by:
setNameAndCategoryin interfaceDataType- Overrides:
setNameAndCategoryin classAbstractDataType- Parameters:
path- the new category path.name- the new name- Throws:
InvalidNameException- if the name is invalidDuplicateNameException- if name change on storedDataTypeis a duplicate of another datatype within the same category (only applies to DB storedDataType).
-
getCategoryPath
public CategoryPath getCategoryPath()
Description copied from interface:DataTypeGets the categoryPath associated with this data type- Specified by:
getCategoryPathin interfaceDataType- Overrides:
getCategoryPathin classAbstractDataType- Returns:
- the datatype's category path
-
dataTypeNameChanged
public void dataTypeNameChanged(DataType dt, java.lang.String oldName)
Description copied from interface:DataTypeInforms this data type that its name has changed from the indicated old name.
TODO: This method is reserved for internal DB use.- Specified by:
dataTypeNameChangedin interfaceDataType- Overrides:
dataTypeNameChangedin classAbstractDataType- Parameters:
dt- the data type whose name changedoldName- the data type's old name
-
dependsOn
public boolean dependsOn(DataType dt)
Description copied from interface:DataTypeReturns true if this dataType depends on the existence of the given dataType. For example byte[] depends on byte. If byte were deleted, then byte[] would also be deleted.- Specified by:
dependsOnin interfaceDataType- Overrides:
dependsOnin classAbstractDataType- Parameters:
dt- the dataType to test that this dataType depends on.- Returns:
- true if the existence of this datatype relies on the existence of the specified datatype dt.
-
getDefaultLabelPrefix
public java.lang.String getDefaultLabelPrefix()
Description copied from interface:DataTypeReturns the appropriate string to use as the default label prefix in the absence of any data.- Specified by:
getDefaultLabelPrefixin interfaceDataType- Overrides:
getDefaultLabelPrefixin classAbstractDataType- Returns:
- the default label prefix or null if none specified.
-
getDefaultLabelPrefix
public java.lang.String getDefaultLabelPrefix(MemBuffer buf, Settings settings, int len, DataTypeDisplayOptions options)
Description copied from interface:DataTypeReturns the appropriate string to use as the default label prefix.- Specified by:
getDefaultLabelPrefixin interfaceDataType- Overrides:
getDefaultLabelPrefixin classAbstractDataType- Parameters:
buf- memory buffer containing the bytes.settings- the Settings objectlen- the length of the data.options- options for how to format the default label prefix.- Returns:
- the default label prefix or null if none specified.
-
getDefaultOffcutLabelPrefix
public java.lang.String getDefaultOffcutLabelPrefix(MemBuffer buf, Settings settings, int len, DataTypeDisplayOptions options, int offcutLength)
Description copied from interface:DataTypeReturns the appropriate string to use as the default label prefix, taking into account the fact that there exists a reference to the data that referencesoffcutLengthbytes into this type- Specified by:
getDefaultOffcutLabelPrefixin interfaceDataType- Overrides:
getDefaultOffcutLabelPrefixin classAbstractDataType- Parameters:
buf- memory buffer containing the bytes.settings- the Settings objectlen- the length of the data.options- options for how to format the default label prefix.offcutLength- offset into datatype- Returns:
- the default label prefix.
-
getLastChangeTime
public long getLastChangeTime()
Description copied from interface:DataTypeGet the timestamp corresponding to the last time this type was changed within its data type manager- Specified by:
getLastChangeTimein interfaceDataType- Overrides:
getLastChangeTimein classDataTypeImpl- Returns:
- timestamp of last change within data type manager
-
getValue
public java.lang.Object getValue(MemBuffer buf, Settings settings, int length)
Description copied from interface:DataTypeGet the data in the form of the appropriate Object for this DataType. For instance if the data type is an AddressDT, return an Address object. a Byte, return a Scalar* (maybe this should be a Byte) a Float, return a Float
-
getRepresentation
public java.lang.String getRepresentation(MemBuffer buf, Settings settings, int length)
Description copied from interface:DataTypeGet bytes from memory in a printable format for this type.- Specified by:
getRepresentationin interfaceDataType- Parameters:
buf- the data.settings- the settings to use for the representation.length- the number of bytes to represent.- Returns:
- the representation of the data in this format, never null.
-
-