Autopsy
4.7.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 | |
Action[] | getActions (boolean context) |
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) |
static String | getHashSetHitsForFile (AbstractFile file) |
Protected Member Functions | |
void | addTagProperty (Sheet.Set sheetSet) |
void | finalize () throws Throwable |
Private Member Functions | |
void | removeListeners () |
void | updateSheet () |
Static Private Member Functions | |
static String | getContentPath (AbstractFile file) |
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 Logger | logger = Logger.getLogger(AbstractAbstractFileNode.class.getName()) |
static final String | NO_DESCR = AbstractAbstractFileNode_addFileProperty_desc() |
An abstract node that encapsulates AbstractFile data
<T> | type of the AbstractFile to encapsulate |
Definition at line 59 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 284 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 111 of file AbstractContentNode.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. |
Definition at line 236 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 97 of file AbstractAbstractFileNode.java.
Action [] org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.getActions | ( | boolean | context | ) |
Definition at line 262 of file AbstractAbstractFileNode.java.
|
inherited |
Return the content data associated with this node
Definition at line 80 of file AbstractContentNode.java.
|
inherited |
Return children of the underlying content.
Definition at line 181 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 203 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 161 of file AbstractContentNode.java.
|
staticprivate |
Definition at line 297 of file AbstractAbstractFileNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.fillPropertyMap().
|
static |
Definition at line 319 of file AbstractAbstractFileNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.fillPropertyMap().
|
inherited |
Definition at line 90 of file AbstractContentNode.java.
|
inherited |
Return true if the underlying content object has children Useful for lazy loading.
Definition at line 141 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 100 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 229 of file AbstractContentNode.java.
|
private |
Definition at line 102 of file AbstractAbstractFileNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.finalize().
|
inherited |
Definition at line 85 of file AbstractContentNode.java.
|
private |
Definition at line 166 of file AbstractAbstractFileNode.java.
|
staticprivate |
Definition at line 65 of file AbstractAbstractFileNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.removeListeners().
|
staticprivate |
Definition at line 61 of file AbstractAbstractFileNode.java.
|
staticprivate |
Definition at line 63 of file AbstractAbstractFileNode.java.
|
private |
Definition at line 107 of file AbstractAbstractFileNode.java.
|
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 164 of file AbstractAbstractFileNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.removeListeners().
Copyright © 2012-2016 Basis Technology. Generated on: Mon Jun 18 2018
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.