Autopsy  3.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
Public Member Functions | List of all members
org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory Class Reference

Inherits org.sleuthkit.autopsy.ingest.IngestModuleFactoryAdapter.

Public Member Functions

String getModuleDisplayName ()
 
String getModuleDescription ()
 
String getModuleVersionNumber ()
 
boolean hasGlobalSettingsPanel ()
 
IngestModuleGlobalSettingsPanel getGlobalSettingsPanel ()
 
IngestModuleIngestJobSettings getDefaultIngestJobSettings ()
 
boolean hasIngestJobSettingsPanel ()
 
IngestModuleIngestJobSettingsPanel getIngestJobSettingsPanel (IngestModuleIngestJobSettings settings)
 
boolean isFileIngestModuleFactory ()
 
FileIngestModule createFileIngestModule (IngestModuleIngestJobSettings settings)
 
boolean isDataSourceIngestModuleFactory ()
 
DataSourceIngestModule createDataSourceIngestModule (IngestModuleIngestJobSettings ingestOptions)
 

Detailed Description

A factory that creates file ingest modules that determine the types of files.

Definition at line 36 of file FileTypeIdModuleFactory.java.

Member Function Documentation

DataSourceIngestModule org.sleuthkit.autopsy.ingest.IngestModuleFactoryAdapter.createDataSourceIngestModule ( IngestModuleIngestJobSettings  settings)
inherited

Creates a data source ingest module instance.

Autopsy will generally use the factory to several instances of each type of module for each ingest job it performs. Completing an ingest job entails processing a single data source (e.g., a disk image) and all of the files from the data source, including files extracted from archives and any unallocated space (made to look like a series of files). The data source is passed through one or more pipelines of data source ingest modules. The files are passed through one or more pipelines of file ingest modules.

The ingest framework may use multiple threads to complete an ingest job, but it is guaranteed that there will be no more than one module instance per thread. However, if the module instances must share resources, the modules are responsible for synchronizing access to the shared resources and doing reference counting as required to release those resources correctly. Also, more than one ingest job may be in progress at any given time. This must also be taken into consideration when sharing resources between module instances. modules.

If the module family does not include data source ingest modules, the factory may extend IngestModuleFactoryAdapter to get an implementation of this method that throws an UnsupportedOperationException.

Parameters
settingsThe settings for the ingest job.
Returns
A data source ingest module instance.

Implements org.sleuthkit.autopsy.ingest.IngestModuleFactory.

Definition at line 67 of file IngestModuleFactoryAdapter.java.

FileIngestModule org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory.createFileIngestModule ( IngestModuleIngestJobSettings  settings)
IngestModuleIngestJobSettings org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory.getDefaultIngestJobSettings ( )
IngestModuleGlobalSettingsPanel org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory.getGlobalSettingsPanel ( )
IngestModuleIngestJobSettingsPanel org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory.getIngestJobSettingsPanel ( IngestModuleIngestJobSettings  settings)
String org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory.getModuleDescription ( )
String org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory.getModuleDisplayName ( )
String org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory.getModuleVersionNumber ( )
boolean org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory.hasGlobalSettingsPanel ( )
boolean org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory.hasIngestJobSettingsPanel ( )
boolean org.sleuthkit.autopsy.ingest.IngestModuleFactoryAdapter.isDataSourceIngestModuleFactory ( )
inherited

Queries the factory to determine if it is capable of creating data source ingest modules. If the module family does not include data source ingest modules, the factory may extend IngestModuleFactoryAdapter to get an implementation of this method that returns false.

Returns
True if the factory can create data source ingest modules.

Implements org.sleuthkit.autopsy.ingest.IngestModuleFactory.

Definition at line 62 of file IngestModuleFactoryAdapter.java.

boolean org.sleuthkit.autopsy.modules.filetypeid.FileTypeIdModuleFactory.isFileIngestModuleFactory ( )

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

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