Package ghidra.program.database.data
Class SourceArchiveDB
java.lang.Object
ghidra.program.database.DatabaseObject
ghidra.program.database.data.SourceArchiveDB
- All Implemented Interfaces:
SourceArchive
-
Field Summary
Fields inherited from class ghidra.program.database.DatabaseObject
key -
Constructor Summary
ConstructorsConstructorDescriptionSourceArchiveDB(DataTypeManagerDB dtMgr, DBObjectCache<SourceArchiveDB> cache, ghidra.program.database.data.SourceArchiveAdapter adapter, DBRecord record) -
Method Summary
Modifier and TypeMethodDescriptionGets an indicator for the type of data type archive.Gets the ID used to uniquely identify the domain file for the data type archive.longReturns the last time that this source archive was synchronized to the containing DataTypeManager.getName()Returns the name of the source archiveGets the ID that the program has associated with the data type archive.booleanisDirty()Returns true if at least one data type that originally came from this source archive has been changed.protected booleanrefresh()Tells the object to refresh its state from the database.voidsetDirtyFlag(boolean isDirty) Sets the dirty flag to indicate if at least one data type that originally came from the associated source archive has been changed since the last time the containing DataTypeManager was synchronized with it.voidsetLastSyncTime(long syncTime) Sets the last time that this source archive was synchronized to the containing DataTypeManager.voidSets the name of the source archive associated with this SourceArchive object.toString()Methods inherited from class ghidra.program.database.DatabaseObject
checkDeleted, checkIsValid, checkIsValid, getKey, isDeleted, isInvalid, keyChanged, refresh, setDeleted, setInvalid, validate
-
Constructor Details
-
SourceArchiveDB
public SourceArchiveDB(DataTypeManagerDB dtMgr, DBObjectCache<SourceArchiveDB> cache, ghidra.program.database.data.SourceArchiveAdapter adapter, DBRecord record)
-
-
Method Details
-
getSourceArchiveID
Gets the ID that the program has associated with the data type archive.- Specified by:
getSourceArchiveIDin interfaceSourceArchive- Returns:
- the data type archive ID
-
getDomainFileID
Gets the ID used to uniquely identify the domain file for the data type archive.- Specified by:
getDomainFileIDin interfaceSourceArchive- Returns:
- the domain file identifier
-
getArchiveType
Gets an indicator for the type of data type archive. (PROGRAM_TYPE, PROJECT_TYPE, FILE_TYPE)- Specified by:
getArchiveTypein interfaceSourceArchive- Returns:
- the type
-
getName
Description copied from interface:SourceArchiveReturns the name of the source archive- Specified by:
getNamein interfaceSourceArchive- Returns:
- the name of the source archive.
-
refresh
protected boolean refresh()Description copied from class:DatabaseObjectTells the object to refresh its state from the database.- Specified by:
refreshin classDatabaseObject- Returns:
- true if the object was able to refresh itself. Return false if the object was deleted. Objects that extend this class must implement a refresh method. If an object can never refresh itself, then it should always return false.
-
getLastSyncTime
public long getLastSyncTime()Description copied from interface:SourceArchiveReturns the last time that this source archive was synchronized to the containing DataTypeManager.- Specified by:
getLastSyncTimein interfaceSourceArchive- Returns:
- the last time that this source archive was synchronized to the containing DataTypeManager.
-
isDirty
public boolean isDirty()Description copied from interface:SourceArchiveReturns true if at least one data type that originally came from this source archive has been changed.- Specified by:
isDirtyin interfaceSourceArchive- Returns:
- true if at least one data type that originally came from this source archive has been changed.
-
setLastSyncTime
public void setLastSyncTime(long syncTime) Description copied from interface:SourceArchiveSets the last time that this source archive was synchronized to the containing DataTypeManager.- Specified by:
setLastSyncTimein interfaceSourceArchive- Parameters:
syncTime- the last time that this source archive was synchronized to the containing DataTypeManager.
-
setDirtyFlag
public void setDirtyFlag(boolean isDirty) Description copied from interface:SourceArchiveSets the dirty flag to indicate if at least one data type that originally came from the associated source archive has been changed since the last time the containing DataTypeManager was synchronized with it.- Specified by:
setDirtyFlagin interfaceSourceArchive- Parameters:
isDirty- true means at least one data type that originally came from this source archive has been changed.
-
setName
Description copied from interface:SourceArchiveSets the name of the source archive associated with this SourceArchive object.- Specified by:
setNamein interfaceSourceArchive- Parameters:
newName- the name of the associated source archive.
-
toString
-