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

Class Report

source code

object --+
         |
        Report

Base abstract class for reporting module.

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
_get_analysis_path(self, subpath) source code
 
set_path(self, analysis_path)
Set analysis folder path.
source code
 
set_options(self, options)
Set report options.
source code
 
set_task(self, task)
Add task information.
source code
 
run(self)
Start report 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
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_path(self, analysis_path)

source code 

Set analysis folder path.

Parameters:
  • analysis_path - analysis folder path.

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.

run(self)

source code 

Start report processing.

Raises:
  • NotImplementedError - this method is abstract.