Autopsy  4.17.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
Classes | Public Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes | Static Private Attributes | List of all members
org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer Class Reference

Inherits org.sleuthkit.autopsy.corecomponentinterfaces.TextViewer.

Classes

class  NextFindActionListener
 
class  NextPageActionListener
 
class  PrevFindActionListener
 
class  PrevPageActionListener
 
class  SourceChangeActionListener
 

Public Member Functions

 ExtractedTextViewer ()
 
TextViewer createInstance ()
 
synchronized Component getComponent ()
 
String getTitle ()
 
String getToolTip ()
 
int isPreferred (Node node)
 
boolean isSupported (Node node)
 
void resetComponent ()
 
void setNode (Node selectedNode)
 
void setNode (final Node node)
 

Private Member Functions

void nextPage ()
 
void previousPage ()
 
void scrollToCurrentHit ()
 
void setPanel (String contentName, List< IndexedText > sources)
 
boolean solrHasContent (Long objectId)
 

Static Private Member Functions

static IndexedText getAccountsText (Content content, Lookup nodeLookup) throws TskCoreException
 
static IndexedText getRawArtifactText (BlackboardArtifact artifact) throws TskCoreException, NoCurrentCaseException
 

Private Attributes

volatile Node currentNode = null
 
IndexedText currentSource = null
 
ExtractedContentPanel panel
 

Static Private Attributes

static final Logger logger = Logger.getLogger(ExtractedTextViewer.class.getName())
 
static final BlackboardAttribute.Type TSK_ACCOUNT_TYPE = new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_ACCOUNT_TYPE)
 
static final BlackboardAttribute.Type TSK_ASSOCIATED_ARTIFACT_TYPE = new BlackboardAttribute.Type(TSK_ASSOCIATED_ARTIFACT)
 

Detailed Description

A text viewer that displays the indexed text associated with a file or an artifact, possibly marked up with HTML to highlight keyword hits.

Definition at line 54 of file ExtractedTextViewer.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.ExtractedTextViewer ( )

Constructs a text viewer that displays the indexed text associated with a file or an artifact, possibly marked up with HTML to highlight keyword hits.

Definition at line 70 of file ExtractedTextViewer.java.

Member Function Documentation

TextViewer org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.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 TextViewer. This method is used to get an instance of your specific type.

Returns
A new instance of the viewer

Implements org.sleuthkit.autopsy.corecomponentinterfaces.TextViewer.

Definition at line 269 of file ExtractedTextViewer.java.

static IndexedText org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.getAccountsText ( Content  content,
Lookup  nodeLookup 
) throws TskCoreException
staticprivate

Definition at line 236 of file ExtractedTextViewer.java.

synchronized Component org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.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.TextViewer.

Definition at line 274 of file ExtractedTextViewer.java.

static IndexedText org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.getRawArtifactText ( BlackboardArtifact  artifact) throws TskCoreException, NoCurrentCaseException
staticprivate
String org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.getTitle ( )

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

Returns
the title of TextViewer

Implements org.sleuthkit.autopsy.corecomponentinterfaces.TextViewer.

Definition at line 259 of file ExtractedTextViewer.java.

String org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.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.TextViewer.

Definition at line 264 of file ExtractedTextViewer.java.

int org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.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. The current text viewer that can return level 7 is 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.

Level 5 - Based on the file in the selected node and very specific to the file type.

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.

Level 1 - Very general and should always be available. The Strings tabs is this this level

Level 0 - For cases where the text 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.TextViewer.

Definition at line 375 of file ExtractedTextViewer.java.

boolean org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.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.TextViewer.

Definition at line 295 of file ExtractedTextViewer.java.

void org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.nextPage ( )
private

Definition at line 538 of file ExtractedTextViewer.java.

void org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.previousPage ( )
private

Definition at line 571 of file ExtractedTextViewer.java.

void org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.resetComponent ( )

Resets the contents of the viewer / component.

Implements org.sleuthkit.autopsy.corecomponentinterfaces.TextViewer.

Definition at line 287 of file ExtractedTextViewer.java.

void org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.scrollToCurrentHit ( )
private

Definition at line 249 of file ExtractedTextViewer.java.

void org.sleuthkit.autopsy.corecomponentinterfaces.TextViewer.setNode ( Node  selectedNode)
inherited

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

Implemented in org.sleuthkit.autopsy.contentviewers.textcontentviewer.StringsTextViewer.

void org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.setNode ( final Node  node)

Sets the node displayed by the text viewer.

Parameters
nodeThe node to display

Pull the search results, file, artifact and report objects (if any) from the lookup.

Definition at line 80 of file ExtractedTextViewer.java.

void org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.setPanel ( String  contentName,
List< IndexedText >  sources 
)
private

Set the MarkupSources for the panel to display (safe to call even if the panel hasn't been created yet)

Parameters
contentNameThe name of the content to be displayed
sourcesA list of IndexedText that have different 'views' of the content.

Definition at line 412 of file ExtractedTextViewer.java.

boolean org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.solrHasContent ( Long  objectId)
private

Check if Solr has extracted content for a given node

Parameters
objectId
Returns
true if Solr has content, else false

Definition at line 425 of file ExtractedTextViewer.java.

References org.sleuthkit.autopsy.keywordsearch.KeywordSearch.getServer(), and org.sleuthkit.autopsy.keywordsearch.Server.queryIsIndexed().

Member Data Documentation

volatile Node org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.currentNode = null
private

Definition at line 62 of file ExtractedTextViewer.java.

IndexedText org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.currentSource = null
private

Definition at line 63 of file ExtractedTextViewer.java.

final Logger org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.logger = Logger.getLogger(ExtractedTextViewer.class.getName())
staticprivate

Definition at line 56 of file ExtractedTextViewer.java.

ExtractedContentPanel org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.panel
private

Definition at line 61 of file ExtractedTextViewer.java.

final BlackboardAttribute.Type org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.TSK_ACCOUNT_TYPE = new BlackboardAttribute.Type(BlackboardAttribute.ATTRIBUTE_TYPE.TSK_ACCOUNT_TYPE)
staticprivate

Definition at line 59 of file ExtractedTextViewer.java.

final BlackboardAttribute.Type org.sleuthkit.autopsy.keywordsearch.ExtractedTextViewer.TSK_ASSOCIATED_ARTIFACT_TYPE = new BlackboardAttribute.Type(TSK_ASSOCIATED_ARTIFACT)
staticprivate

Definition at line 58 of file ExtractedTextViewer.java.


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

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