Package ghidra.program.database.data
Class SourceArchiveDB
- java.lang.Object
-
- ghidra.program.database.DatabaseObject
-
- ghidra.program.database.data.SourceArchiveDB
-
- All Implemented Interfaces:
SourceArchive
public class SourceArchiveDB extends DatabaseObject implements SourceArchive
-
-
Field Summary
-
Fields inherited from class ghidra.program.database.DatabaseObject
key
-
-
Constructor Summary
Constructors Constructor Description SourceArchiveDB(DataTypeManagerDB dtMgr, DBObjectCache<SourceArchiveDB> cache, ghidra.program.database.data.SourceArchiveAdapter adapter, Record record)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArchiveTypegetArchiveType()Gets an indicator for the type of data type archive.java.lang.StringgetDomainFileID()Gets the ID used to uniquely identify the domain file for the data type archive.longgetLastSyncTime()Returns the last time that this source archive was synchronized to the containing DataTypeManager.java.lang.StringgetName()Returns the name of the source archiveUniversalIDgetSourceArchiveID()Gets 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.voidsetName(java.lang.String newName)Sets the name of the source archive associated with this SourceArchive object.java.lang.StringtoString()-
Methods inherited from class ghidra.program.database.DatabaseObject
checkDeleted, checkIsValid, checkIsValid, getKey, isDeleted, isInvalid, keyChanged, refresh, setInvalid, validate
-
-
-
-
Constructor Detail
-
SourceArchiveDB
public SourceArchiveDB(DataTypeManagerDB dtMgr, DBObjectCache<SourceArchiveDB> cache, ghidra.program.database.data.SourceArchiveAdapter adapter, Record record)
-
-
Method Detail
-
getSourceArchiveID
public UniversalID 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
public java.lang.String 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
public ArchiveType 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
public java.lang.String 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
public void setName(java.lang.String newName)
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
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-