Language

The Free and Open Productivity Suite
Released: Apache OpenOffice 4.1.15

NAME

LogFile::Parser - Perl module for parsing the log file containing the profiling data emitted by an suitably instrumented executable of the OpenOffice family.


SYNOPSIS

   use LogFile::Parser;
   my $profiling_data = LogFileParser::parse ("profiling_data_1234.log");


DESCRIPTION

The only function of this package parses the log file containing the profiling data of one run of a program of the OpenOffice family. It splits the set of time stamps according their thread ids. The returned hash reference maps the thread ids to references of arrays of time stamps. Each time stamp is represented by a hash map containing the following items:

time
The time of the time stamp in milli seconds after program start.

what
A character denoting the type of time stamp. May be one of
{
enters a new function or scope

}
Leaves a function or scope

|
Arbitrary message not necessarily from inside a function or scope.

fname
Name of the function or scope that is entered or left or from which a message has been emitted.

message
The actual message. Empty if not a message entry, i.e. the what item was originally not a '|'.

project
A string that describes the project from which the time stamp has been emitted.

author
A string that contains the shortcout of the person that is responsible for the code from which the time stamp has been emitted.

Apache Software Foundation

Copyright & License | Privacy | Contact Us | Donate | Thanks

Apache, OpenOffice, OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. The Apache feather logo is a trademark of The Apache Software Foundation. Other names appearing on the site may be trademarks of their respective owners.