Package PyFoam :: Package LogAnalysis :: Module GeneralLineAnalyzer :: Class GeneralLineAnalyzer
[hide private]
[frames] | no frames]

Class GeneralLineAnalyzer

source code

                     object --+    
                              |    
LogLineAnalyzer.LogLineAnalyzer --+
                                  |
                                 GeneralLineAnalyzer

Base class for analyzers that write data to files and store time-lines

Combines the capabilities of TimeLineLineAnalyzer and FileLineAnalyzer

Instance Methods [hide private]
 
__init__(self, doTimelines=False, doFiles=False, titles=[], accumulation=None, singleFile=False, progressTemplate=None, startTime=None, endTime=None)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
getCurrentData(self)
Give back the current analyzed data in a dictionary
source code
 
setMaster(self, master)
Assign another line-analyzer that will do the actual data gathering
source code
 
setTitles(self, titles)
Sets the titles anew
source code
 
setDirectory(self, oDir)
Creates the OutFileCollection-object
source code
 
timeChanged(self)
Sets the current time in the timelines
source code
 
getTimeline(self, name)
Returns: the timeline as two list: the times and the values
source code
 
doAnalysis(self, line)
General analysis method.
source code
 
startAnalysis(self, match)
Method at the start of a successfull match
source code
 
endAnalysis(self, match)
Method at the end of a successfull match
source code
 
addToTimelines(self, match)
Method that adds matched data to timelines
source code
 
addToFiles(self, match)
Method that adds matched data to files
source code
 
tearDown(self)
Closes files
source code

Inherited from LogLineAnalyzer.LogLineAnalyzer: addListener, getTime, goOn, notify, setParent, writeProgress

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, doTimelines=False, doFiles=False, titles=[], accumulation=None, singleFile=False, progressTemplate=None, startTime=None, endTime=None)
(Constructor)

source code 

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

Parameters:
  • titles - The titles of the data elements
  • progressTemplate - Progress output to be reported
Overrides: object.__init__

getCurrentData(self)

source code 

Give back the current analyzed data in a dictionary

To be overwritten by subclasses

Overrides: LogLineAnalyzer.LogLineAnalyzer.getCurrentData
(inherited documentation)

setTitles(self, titles)

source code 

Sets the titles anew

Parameters:
  • titles - the new titles

setDirectory(self, oDir)

source code 

Creates the OutFileCollection-object

Overrides: LogLineAnalyzer.LogLineAnalyzer.setDirectory

timeChanged(self)

source code 

Sets the current time in the timelines

Overrides: LogLineAnalyzer.LogLineAnalyzer.timeChanged

getTimeline(self, name)

source code 
Parameters:
  • name - Name of the timeline to return
Returns:
the timeline as two list: the times and the values

doAnalysis(self, line)

source code 

General analysis method. Derived classes should instead override callbacks

Overrides: LogLineAnalyzer.LogLineAnalyzer.doAnalysis

addToTimelines(self, match)

source code 

Method that adds matched data to timelines

Parameters:
  • match - data matched by a regular expression

addToFiles(self, match)

source code 

Method that adds matched data to files

Parameters:
  • match - data matched by a regular expression

tearDown(self)

source code 

Closes files

Overrides: LogLineAnalyzer.LogLineAnalyzer.tearDown