Package lib :: Package cuckoo :: Package common :: Module abstracts :: Class Processing
[hide private]
[frames] | no frames]

Class Processing

source code

object --+
         |
        Processing

Base abstract class for processing module.

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
set_options(self, options)
Set report options.
source code
 
set_task(self, task)
Add task information.
source code
 
set_baseline(self, baseline_path)
Set the path to the baseline directory.
source code
 
set_path(self, analysis_path)
Set paths.
source code
 
set_results(self, results)
Set the results - the fat dictionary.
source code
 
run(self)
Start processing.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  order = 1
  enabled = True
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

set_options(self, options)

source code 

Set report options.

Parameters:
  • options - report options dict.

set_task(self, task)

source code 

Add task information.

Parameters:
  • task - task dictionary.

set_path(self, analysis_path)

source code 

Set paths.

Parameters:
  • analysis_path - analysis folder path.

run(self)

source code 

Start processing.

Raises:
  • NotImplementedError - this method is abstract.