Autopsy
4.7.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Inherits JPanel, and org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Classes | |
class | MultiLineTableCellRenderer |
class | ResultsTableArtifact |
class | SelectedArtifactChangedTask |
class | SelectedNodeChangedTask |
class | ViewUpdate |
Public Member Functions | |
DataContentViewerArtifact () | |
DataContentViewer | createInstance () |
Component | getComponent () |
String | getTitle () |
String | getToolTip () |
int | isPreferred (Node node) |
boolean | isSupported (Node node) |
void | resetComponent () |
void | setNode (Node selectedNode) |
Private Member Functions | |
void | customizeComponents () |
List< ResultsTableArtifact > | getArtifactContents () |
void | initComponents () |
void | initResultsTable () |
void | nextPageButtonActionPerformed (java.awt.event.ActionEvent evt) |
void | prevPageButtonActionPerformed (java.awt.event.ActionEvent evt) |
void | resetComponents () |
void | setArtifactContents (List< ResultsTableArtifact > artifactList) |
synchronized void | startNewTask (SwingWorker< ViewUpdate, Void > task) |
void | updateColumnSizes () |
void | updateRowHeights () |
void | updateView (ViewUpdate viewUpdate) |
Private Attributes | |
javax.swing.JLabel | artifactLabel |
List< ResultsTableArtifact > | artifactTableContents |
javax.swing.JMenuItem | copyMenuItem |
Node | currentNode |
int | currentPage = 1 |
javax.swing.JLabel | currentPageLabel |
javax.swing.JPanel | jPanel1 |
javax.swing.JScrollPane | jScrollPane1 |
final Object | lock = new Object() |
javax.swing.JButton | nextPageButton |
javax.swing.JLabel | ofLabel |
javax.swing.JLabel | pageLabel |
javax.swing.JLabel | pageLabel2 |
javax.swing.JButton | prevPageButton |
ETable | resultsTable |
javax.swing.JScrollPane | resultsTableScrollPane |
javax.swing.JPopupMenu | rightClickMenu |
javax.swing.JMenuItem | selectAllMenuItem |
javax.swing.JLabel | totalPageLabel |
Static Private Attributes | |
static final int | CELL_BOTTOM_MARGIN = 5 |
static final int | CELL_RIGHT_MARGIN = 1 |
static final String[] | COLUMN_HEADERS |
static final int[] | COLUMN_WIDTHS = {100, 800, 100} |
static final String | ERROR_TEXT = NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.errorText") |
static final Logger | logger = Logger.getLogger(DataContentViewerArtifact.class.getName()) |
static final String | WAIT_TEXT = NbBundle.getMessage(DataContentViewerArtifact.class, "DataContentViewerArtifact.waitText") |
Instances of this class display the BlackboardArtifacts associated with the Content represented by a Node. Each BlackboardArtifact is rendered displayed in a JTable representation of its BlackboardAttributes.
Definition at line 67 of file DataContentViewerArtifact.java.
org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.DataContentViewerArtifact | ( | ) |
Definition at line 92 of file DataContentViewerArtifact.java.
DataContentViewer org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.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.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 447 of file DataContentViewerArtifact.java.
|
private |
Definition at line 371 of file DataContentViewerArtifact.java.
|
private |
Retrieve the cache of artifact represented as ResultsTableArtifacts.
Definition at line 682 of file DataContentViewerArtifact.java.
Component org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.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.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 452 of file DataContentViewerArtifact.java.
String org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.getTitle | ( | ) |
Returns the title of this viewer to display in the tab.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 437 of file DataContentViewerArtifact.java.
String org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.getToolTip | ( | ) |
Returns a short description of this viewer to use as a tool tip for its tab.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 442 of file DataContentViewerArtifact.java.
|
private |
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.
Definition at line 199 of file DataContentViewerArtifact.java.
|
private |
Definition at line 101 of file DataContentViewerArtifact.java.
int org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.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 Indexed 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 Indexed 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, Strings, and Metadata tabs are all this level
Level 0 - For cases where the content viewer should never be displayed by default.
node | Node to check for preference |
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 480 of file DataContentViewerArtifact.java.
boolean org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.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.
node | Node to check for support |
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 462 of file DataContentViewerArtifact.java.
|
private |
Definition at line 339 of file DataContentViewerArtifact.java.
|
private |
Definition at line 346 of file DataContentViewerArtifact.java.
void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.resetComponent | ( | ) |
Resets the contents of the viewer / component.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 457 of file DataContentViewerArtifact.java.
|
private |
Resets the components to an empty view state.
Definition at line 403 of file DataContentViewerArtifact.java.
|
private |
Populate the cache of artifact represented as ResultsTableArtifacts.
artifactList | A list of ResultsTableArtifact representations of artifacts. |
Definition at line 671 of file DataContentViewerArtifact.java.
void org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.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.
Implements org.sleuthkit.autopsy.corecomponentinterfaces.DataContentViewer.
Definition at line 415 of file DataContentViewerArtifact.java.
|
private |
Start a new task on its own background thread, canceling the previous task.
task | A new SwingWorker object to execute as a background thread. |
Definition at line 645 of file DataContentViewerArtifact.java.
|
private |
Update the column widths so that the Value column has most of the space.
Definition at line 178 of file DataContentViewerArtifact.java.
|
private |
Sets the row heights to the heights of the content in their Value column.
Definition at line 145 of file DataContentViewerArtifact.java.
|
private |
Called from queued SwingWorker done() methods on the EDT thread, so doesn't need to be synchronized.
viewUpdate | A simple container for display update information from a background thread. |
Definition at line 621 of file DataContentViewerArtifact.java.
References org.sleuthkit.autopsy.corecomponents.DataContentViewerArtifact.ResultsTableArtifact.getRows().
|
private |
Definition at line 354 of file DataContentViewerArtifact.java.
|
private |
Definition at line 82 of file DataContentViewerArtifact.java.
|
staticprivate |
Definition at line 89 of file DataContentViewerArtifact.java.
|
staticprivate |
Definition at line 90 of file DataContentViewerArtifact.java.
|
staticprivate |
Definition at line 84 of file DataContentViewerArtifact.java.
|
staticprivate |
Definition at line 88 of file DataContentViewerArtifact.java.
|
private |
Definition at line 355 of file DataContentViewerArtifact.java.
|
private |
Definition at line 79 of file DataContentViewerArtifact.java.
|
private |
Definition at line 80 of file DataContentViewerArtifact.java.
|
private |
Definition at line 356 of file DataContentViewerArtifact.java.
|
staticprivate |
Definition at line 78 of file DataContentViewerArtifact.java.
|
private |
Definition at line 357 of file DataContentViewerArtifact.java.
|
private |
Definition at line 358 of file DataContentViewerArtifact.java.
|
private |
Definition at line 81 of file DataContentViewerArtifact.java.
|
staticprivate |
Definition at line 76 of file DataContentViewerArtifact.java.
|
private |
Definition at line 359 of file DataContentViewerArtifact.java.
|
private |
Definition at line 360 of file DataContentViewerArtifact.java.
|
private |
Definition at line 361 of file DataContentViewerArtifact.java.
|
private |
Definition at line 362 of file DataContentViewerArtifact.java.
|
private |
Definition at line 363 of file DataContentViewerArtifact.java.
|
private |
Definition at line 369 of file DataContentViewerArtifact.java.
|
private |
Definition at line 364 of file DataContentViewerArtifact.java.
|
private |
Definition at line 365 of file DataContentViewerArtifact.java.
|
private |
Definition at line 366 of file DataContentViewerArtifact.java.
|
private |
Definition at line 367 of file DataContentViewerArtifact.java.
|
staticprivate |
Definition at line 77 of file DataContentViewerArtifact.java.
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.