Autopsy  4.18.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
Public Member Functions | Private Attributes | Static Private Attributes | List of all members
org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer Class Reference

Inherits org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Public Member Functions

DataContentViewer createInstance ()
 
Component getComponent ()
 
String getTitle ()
 
default String getTitle (Node node)
 
String getToolTip ()
 
int isPreferred (Node node)
 
boolean isSupported (Node node)
 
void resetComponent ()
 
synchronized void setNode (Node node)
 

Private Attributes

final AnalysisResultsContentPanel panel = new AnalysisResultsContentPanel()
 
final AnalysisResultsViewModel viewModel = new AnalysisResultsViewModel()
 
SwingWorker<?,?> worker = null
 

Static Private Attributes

static final Logger logger = Logger.getLogger(AnalysisResultsContentPanel.class.getName())
 
static final int PREFERRED_VALUE = 6
 

Detailed Description

Displays a list of analysis results as a content viewer.

Definition at line 42 of file AnalysisResultsContentViewer.java.

Member Function Documentation

DataContentViewer org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.createInstance ( )

Create and return a new instance of your viewer. The reason that this is needed is because the specific viewer modules will be found via NetBeans Lookup and the type will only be DataContentViewer. This method is used to get an instance of your specific type.

Returns
A new instance of the viewer

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 72 of file AnalysisResultsContentViewer.java.

Component org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.getComponent ( )

Return the Swing Component to display. Implementations of this method that extend JPanel and do a 'return this;'. Otherwise return an internal instance of the JPanel.

Returns
the component which is displayed for this viewer

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 77 of file AnalysisResultsContentViewer.java.

String org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.getTitle ( )

Returns the title of this viewer to display in the tab.

Returns
the title of DataContentViewer

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 59 of file AnalysisResultsContentViewer.java.

default String org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.getTitle ( Node  node)
inherited

Returns the title of this viewer to display in the tab.

Parameters
nodeThe node to be viewed in the DataContentViewer.
Returns
the title of DataContentViewer.

Implemented in org.sleuthkit.autopsy.contentviewers.Metadata.

Definition at line 61 of file DataContentViewer.java.

References org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.getTitle().

String org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.getToolTip ( )

Returns a short description of this viewer to use as a tool tip for its tab.

Returns
the tooltip for this TextViewer

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 67 of file AnalysisResultsContentViewer.java.

int org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.isPreferred ( Node  node)

Checks whether the given viewer is preferred for the Node. This is a bit subjective, but the idea is that Autopsy wants to display the most relevant tab. The more generic the viewer, the lower the return value should be. This will only be called on viewers that support the given node (i.e., isSupported() has already returned true).

The following are some examples of the current levels in use. If the selected node is an artifact, the level may be determined by both the artifact and its associated file.

Level 7 - Based on the artifact, if any, in the selected node and specific to an artifact type or types. Current content viewers that can return level 7 are the Messages tab (only supported for email and SMS) and the Text tab when the selected node is a Keyword Search hit.

Level 6 - Based on the artifact, if any, in the selected node but not restricted to particular types. The current content viewer that can return level 6 is the Results tab. It returns this level for most artifact types, unless the associated file is assumed to be of greater interest (for example, a Hash Set Hit will not be level 6 because the file itself is of greater interest).

Level 5 - Based on the file in the selected node and very specific to the file type. The current content viewer that will return level 5 is the Application tab, which supports media files (such as images) and certain types of databases.

Level 4 - Based on the file in the selected node but fairly general. Currently this is the level returned by the Text tab if Keyword Search has been run (unless the node is a Keyword Search hit or a Credit Card account). This is the default tab for most files.

Level 3 - Based on the artifact, if any, in the selected node where the artifact is thought to be of less interest than the associated file. This level is returned by the Results tab for artifacts like Hash Set Hits.

Level 1 - Very general and should always be available. The Hex, Text, and Metadata tabs are all this level

Level 0 - For cases where the content viewer should never be displayed by default.

Parameters
nodeNode to check for preference
Returns
an int (0-10) higher return means the viewer has higher priority

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 156 of file AnalysisResultsContentViewer.java.

boolean org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.isSupported ( Node  node)

Checks whether the given node is supported by the viewer. This will be used to enable or disable the tab for the viewer.

Parameters
nodeNode to check for support
Returns
True if the node can be displayed / processed, else false

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 128 of file AnalysisResultsContentViewer.java.

References org.sleuthkit.autopsy.casemodule.Case.getCurrentCaseThrows(), and org.sleuthkit.autopsy.casemodule.Case.getSleuthkitCase().

void org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.resetComponent ( )

Resets the contents of the viewer / component.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 82 of file AnalysisResultsContentViewer.java.

synchronized void org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.setNode ( Node  selectedNode)

Autopsy will call this when this panel is focused with the file that should be analyzed. When called with null, must clear all references to previous nodes.

Parameters
selectedNodethe node which is used to determine what is displayed in this viewer

Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.

Definition at line 90 of file AnalysisResultsContentViewer.java.

References org.sleuthkit.autopsy.datasourcesummary.uiutils.DataFetchResult< R >.ResultType.SUCCESS.

Member Data Documentation

final Logger org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.logger = Logger.getLogger(AnalysisResultsContentPanel.class.getName())
staticprivate

Definition at line 43 of file AnalysisResultsContentViewer.java.

final AnalysisResultsContentPanel org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.panel = new AnalysisResultsContentPanel()
private

Definition at line 49 of file AnalysisResultsContentViewer.java.

final int org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.PREFERRED_VALUE = 6
staticprivate

Definition at line 46 of file AnalysisResultsContentViewer.java.

final AnalysisResultsViewModel org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.viewModel = new AnalysisResultsViewModel()
private

Definition at line 48 of file AnalysisResultsContentViewer.java.

SwingWorker<?, ?> org.sleuthkit.autopsy.contentviewers.analysisresults.AnalysisResultsContentViewer.worker = null
private

Definition at line 51 of file AnalysisResultsContentViewer.java.


The documentation for this class was generated from the following file:

Copyright © 2012-2021 Basis Technology. Generated on: Thu Jul 8 2021
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.