Autopsy
4.12.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Inherits org.sleuthkit.autopsy.datamodel.AbstractContentNode< Volume >.
Public Member Functions | |
VolumeNode (Volume vol) | |
Action[] | getActions (boolean popup) |
T | getContent () |
List< Content > | getContentChildren () |
int | getContentChildrenCount () |
List< Long > | getContentChildrenIds () |
String | getItemType () |
String | getName () |
boolean | hasContentChildren () |
boolean | hasVisibleContentChildren () |
boolean | isLeafTypeNode () |
int | read (byte[] buf, long offset, long len) throws TskException |
void | setName (String name) |
Static Public Member Functions | |
static boolean | contentHasVisibleContentChildren (Content c) |
Protected Member Functions | |
Sheet | createSheet () |
List< Tag > | getAllTagsFromDatabase () |
DataResultViewerTable.HasCommentStatus | getCommentProperty (List< Tag > tags, CorrelationAttributeInstance attribute) |
CorrelationAttributeInstance | getCorrelationAttributeInstance () |
Pair< Long, String > | getCountPropertyAndDescription (CorrelationAttributeInstance.Type attributeType, String attributeValue, String defaultDescription) |
abstract Pair< Long, String > | getCountPropertyAndDescription (Type attributeType, String attributeValue, String defaultDescription) |
Pair< DataResultViewerTable.Score, String > | getScorePropertyAndDescription (List< Tag > tags) |
synchronized void | updateSheet (NodeProperty<?>...newProps) |
Static Protected Attributes | |
static final String | NO_DESCR |
static final String | VALUE_LOADING |
Private Member Functions | |
void | removeListeners () |
Private Attributes | |
final PropertyChangeListener | pcl |
Static Private Attributes | |
static final Set< IngestManager.IngestModuleEvent > | INGEST_MODULE_EVENTS_OF_INTEREST = EnumSet.of(IngestManager.IngestModuleEvent.CONTENT_CHANGED) |
static final Logger | logger = Logger.getLogger(VolumeNode.class.getName()) |
This class is used to represent the "Node" for the volume. Its child is the root directory of a file system
Definition at line 53 of file VolumeNode.java.
org.sleuthkit.autopsy.datamodel.VolumeNode.VolumeNode | ( | Volume | vol | ) |
vol | underlying Content instance |
Definition at line 74 of file VolumeNode.java.
References org.sleuthkit.autopsy.casemodule.Case.addEventTypeSubscriber(), org.sleuthkit.autopsy.ingest.IngestManager.addIngestModuleEventListener(), org.sleuthkit.autopsy.casemodule.Case.Events.CURRENT_CASE, org.sleuthkit.autopsy.ingest.IngestManager.getInstance(), org.sleuthkit.autopsy.datamodel.VolumeNode.INGEST_MODULE_EVENTS_OF_INTEREST, and org.sleuthkit.autopsy.datamodel.VolumeNode.pcl.
|
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 155 of file AbstractContentNode.java.
|
protected |
Definition at line 168 of file VolumeNode.java.
Action [] org.sleuthkit.autopsy.datamodel.VolumeNode.getActions | ( | boolean | popup | ) |
Right click action for volume node
popup |
Definition at line 153 of file VolumeNode.java.
References org.sleuthkit.autopsy.directorytree.ExplorerNodeActionVisitor.getActions().
|
protected |
Reads and returns a list of all tags associated with this content node.
Null implementation of an abstract method.
Definition at line 232 of file VolumeNode.java.
|
protected |
Returns comment property for the node.
Null implementation of an abstract method.
tags | list of tags |
attribute | correlation attribute instance |
Definition at line 275 of file VolumeNode.java.
References org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.HasCommentStatus.NO_COMMENT.
|
inherited |
Return the content data associated with this node
Definition at line 123 of file AbstractContentNode.java.
|
inherited |
Return children of the underlying content.
Definition at line 235 of file AbstractContentNode.java.
|
inherited |
Get count of the underlying content object children.
Useful for lazy loading.
Definition at line 257 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 215 of file AbstractContentNode.java.
|
protected |
Returns correlation attribute instance for the underlying content of the node.
Null implementation of an abstract method.
Definition at line 246 of file VolumeNode.java.
|
protected |
Returns occurrences/count property for the node.
Null implementation of an abstract method.
attributeType | the type of the attribute to count |
attributeValue | the value of the attribute to coun |
defaultDescription | a description to use when none is determined by the getCountPropertyAndDescription method |
Definition at line 292 of file VolumeNode.java.
References org.sleuthkit.autopsy.datamodel.AbstractContentNode< Volume >.NO_DESCR.
|
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 |
String org.sleuthkit.autopsy.datamodel.VolumeNode.getItemType | ( | ) |
Definition at line 220 of file VolumeNode.java.
|
inherited |
Definition at line 133 of file AbstractContentNode.java.
|
protected |
Returns Score property for the node.
Null implementation of an abstract method.
tags | list of tags. |
Definition at line 260 of file VolumeNode.java.
References org.sleuthkit.autopsy.datamodel.AbstractContentNode< Volume >.NO_DESCR, and org.sleuthkit.autopsy.corecomponents.DataResultViewerTable.Score.NO_SCORE.
|
inherited |
Return true if the underlying content object has children Useful for lazy loading.
Definition at line 195 of file AbstractContentNode.java.
|
inherited |
Return true if the underlying content object has children Useful for lazy loading.
Definition at line 143 of file AbstractContentNode.java.
boolean org.sleuthkit.autopsy.datamodel.VolumeNode.isLeafTypeNode | ( | ) |
Definition at line 210 of file VolumeNode.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 283 of file AbstractContentNode.java.
|
private |
Definition at line 91 of file VolumeNode.java.
References org.sleuthkit.autopsy.casemodule.Case.Events.CURRENT_CASE, org.sleuthkit.autopsy.ingest.IngestManager.getInstance(), org.sleuthkit.autopsy.datamodel.VolumeNode.pcl, org.sleuthkit.autopsy.casemodule.Case.removeEventTypeSubscriber(), and org.sleuthkit.autopsy.ingest.IngestManager.removeIngestModuleEventListener().
|
inherited |
Definition at line 128 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 300 of file AbstractContentNode.java.
|
staticprivate |
Definition at line 56 of file VolumeNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.VolumeNode.VolumeNode().
|
staticprivate |
Definition at line 55 of file VolumeNode.java.
|
staticprotectedinherited |
Default no description string
Definition at line 75 of file AbstractContentNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.VolumeNode::getCountPropertyAndDescription(), and org.sleuthkit.autopsy.datamodel.VolumeNode::getScorePropertyAndDescription().
|
private |
Definition at line 100 of file VolumeNode.java.
Referenced by org.sleuthkit.autopsy.datamodel.VolumeNode.removeListeners(), and org.sleuthkit.autopsy.datamodel.VolumeNode.VolumeNode().
|
staticprotectedinherited |
Definition at line 76 of file AbstractContentNode.java.
Copyright © 2012-2018 Basis Technology. Generated on: Wed Sep 18 2019
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.