Autopsy  4.9.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
Classes | Public Member Functions | Static Public Member Functions | Protected Member Functions | Static Protected Member Functions | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile > Class Template Referenceabstract

Inherits org.sleuthkit.autopsy.datamodel.AbstractContentNode< T >.

Classes

enum  AbstractFilePropertyType
 
enum  NodeSpecificEvents
 

Public Member Functions

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)
 

Protected Member Functions

void addTagProperty (Sheet.Set sheetSet)
 
synchronized Sheet createSheet ()
 
void finalize () throws Throwable
 

Static Protected Member Functions

static String getHashSetHitsCsvList (AbstractFile file)
 

Private Member Functions

List< NodeProperty<?> > getProperties ()
 
void removeListeners ()
 
synchronized void updateSheet (NodeProperty<?>...newProps)
 

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 Integer MAX_POOL_SIZE = 10
 
static final String NO_DESCR = AbstractAbstractFileNode_addFileProperty_desc()
 
static final ExecutorService translationPool
 

Detailed Description

An abstract node that encapsulates AbstractFile data

Parameters
<T>type of the AbstractFile to encapsulate

Definition at line 76 of file AbstractAbstractFileNode.java.

Member Function Documentation

void org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.addTagProperty ( Sheet.Set  sheetSet)
protected

Used by subclasses of AbstractAbstractFileNode to add the tags property to their sheets.

Parameters
sheetSetthe modifiable Sheet.Set returned by Sheet.get(Sheet.PROPERTIES)
Deprecated:

Definition at line 409 of file AbstractAbstractFileNode.java.

static boolean org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.contentHasVisibleContentChildren ( Content  c)
staticinherited

Return true if the given content object has children. Useful for lazy loading.

Parameters
cThe content object to look for children on
Returns
true if has children

Definition at line 111 of file AbstractContentNode.java.

synchronized Sheet org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.createSheet ( )
protected

Definition at line 270 of file AbstractAbstractFileNode.java.

static void org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.fillPropertyMap ( Map< String, Object >  map,
AbstractFile  content 
)
static

Fill map with AbstractFile properties

Parameters
mapmap with preserved ordering, where property names/values are put
contentThe content to get properties for.

TODO JIRA-4421: Deprecate this method and resolve warnings that appear in other locations.

Definition at line 612 of file AbstractAbstractFileNode.java.

void org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.finalize ( ) throws Throwable
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.

Exceptions
Throwable

Definition at line 124 of file AbstractAbstractFileNode.java.

T org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.getContent ( )
inherited

Return the content data associated with this node

Returns
the content object wrapped by this node

Definition at line 80 of file AbstractContentNode.java.

List<Content> org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.getContentChildren ( )
inherited

Return children of the underlying content.

Returns
list of content children content.

Definition at line 192 of file AbstractContentNode.java.

Referenced by org.sleuthkit.autopsy.directorytree.DirectoryTreeFilterChildren.IsLeafItemVisitor::visitDeep().

int org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.getContentChildrenCount ( )
inherited

Get count of the underlying content object children.

Useful for lazy loading.

Returns
content children count

Definition at line 214 of file AbstractContentNode.java.

List<Long> org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.getContentChildrenIds ( )
inherited

Return ids of children of the underlying content. The ids can be treated as keys - useful for lazy loading.

Returns
list of content ids of children content.

Definition at line 172 of file AbstractContentNode.java.

static String org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.getHashSetHitsCsvList ( AbstractFile  file)
staticprotected

Gets a comma-separated values list of the names of the hash sets currently identified as including a given file.

Parameters
fileThe file.
Returns
The CSV list of hash set names.
Deprecated:

Definition at line 428 of file AbstractAbstractFileNode.java.

String org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.getName ( )
inherited
List<NodeProperty<?> > org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.getProperties ( )
private

Creates and populates a list of properties for this nodes property sheet.

Definition at line 358 of file AbstractAbstractFileNode.java.

Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.createSheet().

boolean org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.hasContentChildren ( )
inherited

Return true if the underlying content object has children Useful for lazy loading.

Returns
true if has children

Definition at line 152 of file AbstractContentNode.java.

Referenced by org.sleuthkit.autopsy.directorytree.DirectoryTreeFilterChildren.IsLeafItemVisitor::visitDeep().

boolean org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.hasVisibleContentChildren ( )
inherited

Return true if the underlying content object has children Useful for lazy loading.

Returns
true if has children

Definition at line 100 of file AbstractContentNode.java.

int org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.read ( byte[]  buf,
long  offset,
long  len 
) throws TskException
inherited

Reads the content of this node (of the underlying content object).

Parameters
bufbuffer to read into
offsetthe starting offset in the content object
lenthe length to read
Returns
the bytes read
Exceptions
TskExceptionexception thrown if the requested part of content could not be read

Definition at line 240 of file AbstractContentNode.java.

void org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.removeListeners ( )
private
void org.sleuthkit.autopsy.datamodel.AbstractContentNode< T extends Content >.setName ( String  name)
inherited

Definition at line 85 of file AbstractContentNode.java.

synchronized void org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.updateSheet ( NodeProperty<?>...  newProps)
private

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.

Parameters
newPropsNew file property instances to be updated in the current sheet.

Definition at line 244 of file AbstractAbstractFileNode.java.

Member Data Documentation

final Set<Case.Events> org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.CASE_EVENTS_OF_INTEREST
staticprivate
Initial value:
= EnumSet.of(Case.Events.CURRENT_CASE,
Case.Events.CONTENT_TAG_ADDED, Case.Events.CONTENT_TAG_DELETED, Case.Events.CR_COMMENT_CHANGED)

Definition at line 82 of file AbstractAbstractFileNode.java.

Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.removeListeners().

final Logger org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.logger = Logger.getLogger(AbstractAbstractFileNode.class.getName())
staticprivate

Definition at line 78 of file AbstractAbstractFileNode.java.

final Integer org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.MAX_POOL_SIZE = 10
staticprivate

Definition at line 86 of file AbstractAbstractFileNode.java.

final String org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.NO_DESCR = AbstractAbstractFileNode_addFileProperty_desc()
staticprivate
final PropertyChangeListener org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.pcl
private

Definition at line 144 of file AbstractAbstractFileNode.java.

final ExecutorService org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.translationPool
staticprivate

Definition at line 85 of file AbstractAbstractFileNode.java.

final PropertyChangeListener org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< T extends AbstractFile >.weakPcl = WeakListeners.propertyChange(pcl, null)
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 229 of file AbstractAbstractFileNode.java.

Referenced by org.sleuthkit.autopsy.datamodel.AbstractAbstractFileNode< SpecialDirectory >.removeListeners().


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

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