Autopsy
4.19.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Inherits org.sleuthkit.autopsy.datamodel.AbstractContentNode< T >.
Classes | |
enum | AbstractFilePropertyType |
Public Member Functions | |
T | getContent () |
List< Content > | getContentChildren () |
int | getContentChildrenCount () |
List< Long > | getContentChildrenIds () |
String | getName () |
boolean | hasContentChildren () |
boolean | hasVisibleContentChildren () |
int | read (byte[] buf, long offset, long len) throws TskException |
void | setName (String name) |
Static Public Member Functions | |
static boolean | contentHasVisibleContentChildren (Content c) |
static void | fillPropertyMap (Map< String, Object > map, AbstractFile content) |
Protected Member Functions | |
void | addTagProperty (Sheet.Set sheetSet) |
synchronized Sheet | createSheet () |
void | finalize () throws Throwable |
List< Tag > | getAllTagsFromDatabase () |
HasCommentStatus | getCommentProperty (List< Tag > tags, CorrelationAttributeInstance attribute) |
CorrelationAttributeInstance | getCorrelationAttributeInstance () |
abstract Pair< Long, String > | getCountPropertyAndDescription (Type attributeType, String attributeValue, String defaultDescription) |
Pair< Long, String > | getCountPropertyAndDescription (CorrelationAttributeInstance.Type attributeType, String attributeValue, String defaultDescription) |
Pair< Score, String > | getScorePropertyAndDescription (List< Tag > tags) |
synchronized void | updateSheet (NodeProperty<?>...newProps) |
Static Protected Member Functions | |
static String | getHashSetHitsCsvList (AbstractFile file) |
Protected Attributes | |
final T | content |
Static Protected Attributes | |
static final String | NO_DESCR |
static final String | VALUE_LOADING |
Private Member Functions | |
List< NodeProperty<?> > | getProperties () |
void | removeListeners () |
Private Attributes | |
final PropertyChangeListener | pcl |
final PropertyChangeListener | weakPcl = WeakListeners.propertyChange(pcl, null) |
Static Private Attributes | |
static final Set< Case.Events > | CASE_EVENTS_OF_INTEREST |
static final Set< IngestManager.IngestModuleEvent > | INGEST_MODULE_EVENTS_OF_INTEREST = EnumSet.of(CONTENT_CHANGED) |
static final Logger | logger = Logger.getLogger(AbstractAbstractFileNode.class.getName()) |
An abstract node that encapsulates AbstractFile data
<T> | type of the AbstractFile to encapsulate |
Definition at line 75 of file AbstractAbstractFileNode.java.
|
protected |
Used by subclasses of AbstractAbstractFileNode to add the tags property to their sheets.
sheetSet | the modifiable Sheet.Set returned by Sheet.get(Sheet.PROPERTIES) |
Definition at line 380 of file AbstractAbstractFileNode.java.
|
staticinherited |
Return true if the given content object has children. Useful for lazy loading.
c | The content object to look for children on |
Definition at line 158 of file AbstractContentNode.java.
|
protected |
Definition at line 244 of file AbstractAbstractFileNode.java.
|
static |
Fill map with AbstractFile properties
map | map with preserved ordering, where property names/values are put |
content | The content to get properties for. |
TODO JIRA-4421: Deprecate this method and resolve warnings that appear in other locations.
Definition at line 533 of file AbstractAbstractFileNode.java.
|
protected |
The finalizer removes event listeners as the BlackboardArtifactNode is being garbage collected. Yes, we know that finalizers are considered to be "bad" but since the alternative also relies on garbage collection being run and we know that finalize will be called when the object is being GC'd it seems like this is a reasonable solution.
Throwable |
Definition at line 128 of file AbstractAbstractFileNode.java.
|
protected |
Definition at line 489 of file AbstractAbstractFileNode.java.
|
protected |
Definition at line 437 of file AbstractAbstractFileNode.java.
|
inherited |
Return the content data associated with this node
Definition at line 126 of file AbstractContentNode.java.
|
inherited |
Return children of the underlying content.
Definition at line 238 of file AbstractContentNode.java.
Referenced by org.sleuthkit.autopsy.directorytree.DirectoryTreeFilterChildren.IsLeafItemVisitor::visitDeep().
|
inherited |
Get count of the underlying content object children.
Useful for lazy loading.
Definition at line 260 of file AbstractContentNode.java.
|
inherited |
Return ids of children of the underlying content. The ids can be treated as keys - useful for lazy loading.
Definition at line 218 of file AbstractContentNode.java.
|
protected |
Definition at line 494 of file AbstractAbstractFileNode.java.
|
abstractprotectedinherited |
Returns occurrences/count property for the node.
attributeType | the type of the attribute to count |
attributeValue | the value of the attribute to count |
defaultDescription | a description to use when none is determined by the getCountPropertyAndDescription method |
|
protected |
Definition at line 414 of file AbstractAbstractFileNode.java.
|
staticprotected |
Gets a comma-separated values list of the names of the hash sets currently identified as including a given file.
file | The file. |
Definition at line 399 of file AbstractAbstractFileNode.java.
|
inherited |
Definition at line 136 of file AbstractContentNode.java.
|
private |
Creates and populates a list of properties for this nodes property sheet.
Definition at line 328 of file AbstractAbstractFileNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.createSheet().
|
protectedinherited |
Returns Score property for the node.
tags | list of tags. |
Definition at line 349 of file AbstractContentNode.java.
|
inherited |
Return true if the underlying content object has children Useful for lazy loading.
Definition at line 198 of file AbstractContentNode.java.
Referenced by org.sleuthkit.autopsy.directorytree.DirectoryTreeFilterChildren.IsLeafItemVisitor::visitDeep().
|
inherited |
Return true if the underlying content object has children Useful for lazy loading.
Definition at line 146 of file AbstractContentNode.java.
|
inherited |
Reads the content of this node (of the underlying content object).
buf | buffer to read into |
offset | the starting offset in the content object |
len | the length to read |
TskException | exception thrown if the requested part of content could not be read |
Definition at line 286 of file AbstractContentNode.java.
|
private |
Definition at line 133 of file AbstractAbstractFileNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.finalize().
|
inherited |
Definition at line 131 of file AbstractContentNode.java.
|
protectedinherited |
Updates the values of the properties in the current property sheet with the new properties being passed in. Only if that property exists in the current sheet will it be applied. That way, we allow for subclasses to add their own (or omit some!) properties and we will not accidentally disrupt their UI.
Race condition if not synchronized. Only one update should be applied at a time.
newProps | New file property instances to be updated in the current sheet. |
Definition at line 303 of file AbstractContentNode.java.
|
staticprivate |
Definition at line 79 of file AbstractAbstractFileNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.removeListeners().
|
protectedinherited |
Underlying Sleuth Kit Content object
Definition at line 63 of file AbstractContentNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >::getCorrelationAttributeInstance(), and org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >::getProperties().
|
staticprivate |
Definition at line 81 of file AbstractAbstractFileNode.java.
|
staticprivate |
Definition at line 77 of file AbstractAbstractFileNode.java.
|
staticprotectedinherited |
Default no description string
Definition at line 78 of file AbstractContentNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >::addTagProperty(), and org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >::getProperties().
|
private |
Definition at line 138 of file AbstractAbstractFileNode.java.
|
staticprotectedinherited |
Definition at line 79 of file AbstractContentNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >::getProperties().
|
private |
We pass a weak reference wrapper around the listener to the event publisher. This allows Netbeans to delete the node when the user navigates to another part of the tree (previously, nodes were not being deleted because the event publisher was holding onto a strong reference to the listener. We need to hold onto the weak reference here to support unregistering of the listener in removeListeners() below.
Definition at line 235 of file AbstractAbstractFileNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.removeListeners().
Copyright © 2012-2021 Basis Technology. Generated on: Fri Aug 6 2021
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.