Connection Information

To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.

Connection Type

Analyzing trace information programmatically – PB Docs 115 – PowerBuilder Library

Analyzing trace information programmatically – PB Docs 115

Analyzing trace information programmatically

PowerBuilder provides three ways to analyze trace information
using built-in system objects and functions:

  • Analyze performance
    by building a call graph model
    A call graph model contains information about all the routines
    in the trace file: how many times each routine was called, which
    routines called it and which routines it called, and the execution
    time taken by the routine itself and any routines it called.
  • Analyze program structure and logical flow by building
    a trace tree model
    A trace tree model contains information about all recorded
    activities in the trace file in chronological order, with the elapsed
    time for each activity.
  • Access the data in the trace file directly
    Trace objects and functions let you build your own model and
    analysis tools by giving you access to all the data in the trace
    file.

The profiling tools use the first two ways. The Class and
Routine views are based on a call graph model, and the Trace view
is based on a trace tree model.

note.gif Supporting files needed To create a profile from a trace file, PowerBuilder must also
access the PBL, PBD, or executable
file used to create the trace file, and the PBL,
PBD, or executable file must be in the same location as when the
trace file was created.

Analyzing performance with a call graph model

You use the PowerScript functions and PowerBuilder objects
listed in Table 33-8 to
analyze the performance of an application.

Table 33-8: Functions for analyzing performance
Use this function With this object To do this
SetTraceFileName Profiling Set the name of the trace file to be analyzed.
BuildModel Profiling Build a call graph model based on the trace
file. You can pass optional parameters that let you track the progress
of the build.
RoutineList Profiling and ProfileClass Get a list of routines in the model or in
a class.
ClassList Profiling Get a list of classes in the model.
SystemRoutine Profiling Get the name of the routine node that represents
the root of the model.
IncomingCallList ProfileRoutine Get a list of routines that called a specific
routine.
OutgoingCallList ProfileRoutine and ProfileLine Get a list of routines called by a specific
routine or from a specific line.
LineList ProfileRoutine Get a list of lines in the routine in
line order.
DestroyModel Profiling Destroy the current performance analysis
model and all the objects associated with it.

Each of these functions returns a value of the enumerated
datatype ErrorReturn. The objects contain information
such as the number of times a line or routine was executed, and
the amount of time spent in a line or routine and in any routines
called from that line or routine.

Using the BuildModel function to build a call graph model

The call graph model that you create with the BuildModel function
contains all the routines in the trace file and can take a long
time to build. If you want to monitor the progress of the build
or you want to be able to interrupt it while the model is being
built, you can pass optional arguments to BuildModel.

BuildModel arguments

BuildModel takes three arguments: the name
of an object of type PowerObject, the name of a user event, and
a long value representing how often the user event should be triggered
as a percentage of the build completed.

The user event returns a boolean value and has two arguments:
the number of the current activity, and the total number of activities
in the trace file.

Destroying existing models

Before you call BuildModel, you can call DestroyModel to
clean up any objects remaining from an existing model.

Example: building a call graph model

In the following example, the user event argument to BuildModel is
called ue_progress and is triggered
each time five percent of the activities have been processed. The
progress of the build is shown in a window called w_progress that
has a cancel button.

Extracting information from the call graph model

After you have built a call graph model of the application,
you can extract detailed information from it.

For routines and lines, you can extract the timing information
shown in Table 33-9 from
the ProfileRoutine and ProfileLine objects.

Table 33-9: Timing information in the call
graph model
Property What it means
AbsoluteSelfTime The time spent in the routine or line
itself. If the routine or line was executed more than once, this
is the total time spent in the routine or line itself.
MinSelfTime The shortest time spent in the routine
or line itself. If the routine or line was executed only once, this
is the same as AbsoluteSelfTime.
MaxSelfTime The longest time spent in the routine
or line itself. If the routine or line was executed only once, this
is the same as AbsoluteSelfTime.
AbsoluteTotalTime The time spent in the routine or line
and in routines or lines called from the routine or line. If the
routine or line was executed more than once, this is the total time
spent in the routine or line and in called routines or lines.
MinTotalTime The shortest time spent in the routine
or line and in called routines or lines. If the routine or line
was executed only once, this is the same as AbsoluteTotalTime.
MaxTotalTime The longest time spent in the routine
or line and in called routines or lines. If the routine or line
was executed only once, this is the same as AbsoluteTotalTime.
PercentSelfTime AbsoluteSelfTime as a percentage of the
total time tracing was active.
PercentTotalTime AbsoluteTotalTime as a percentage of
the total time tracing was active.

Example: extracting information from a call graph
model

The following function extracts information from a call graph
model about the routines called from a specific routine. You would
use similar functions to extract information about the routines
that called the given routine and about the routine itself.

The function takes a ProfileCall object and an index as arguments
and returns a structure containing the number of times the called
routine was executed and execution times for the called routine.

Analyzing structure and flow using a trace tree
model

You use the PowerScript functions and PowerBuilder objects
listed in Table 33-10 to
build a nested trace tree model of an application.

Table 33-10: Functions for analyzing program
structure and flow
Use this function With this object To do this
SetTraceFileName TraceTree Set the name of the trace file to be
analyzed.
BuildModel TraceTree Build a trace tree model based on the
trace file. You can pass optional parameters that let you track
the progress of the build.
EntryList TraceTree Get a list of the top-level entries in
the trace tree model.
GetChildrenList TraceTreeRoutine, TraceTreeObject, and TraceTreeGarbageCollect Get a list of the children of the routine
or object—that is, all the routines called directly by
the routine, or the destructor called as a result of the object’s deletion.
DestroyModel TraceTree Destroy the current trace tree model
and all the objects associated with it.

Each of these functions returns a value of type ErrorReturn.

Each TraceTreeNode object returned by the EntryList and GetChildrenList functions
represents a single node in the trace tree model and contains information
about the parent of the node and the type of activity it represents.

Inherited objects

The following objects inherit from TraceTreeNode and contain
additional information, including timer values:

  • TraceTreeError
  • TraceTreeESQL
  • TraceTreeGarbageCollect
  • TraceTreeLine
  • TraceTreeObject
  • TraceTreeRoutine
  • TraceTreeUser

Using BuildModel to build a trace
tree model

You use the same approach to building a trace tree model as
you do to building a call graph model, except that you build a model
of type TraceTree instead of type Profiling.

For example:

For more about using BuildModel,
see “Using the BuildModel function
to build a call graph model”
.

Extracting information from the trace tree model

To extract information from a tree model, you can use the EntryList function
to create a list of top-level entries in the model and then loop
through the list, extracting information about each node. For each
node, determine its activity type using the TraceActivity enumerated
datatype, and then use the appropriate TraceTree object to extract
information.

Example: trace tree model

The following simple example extracts information from an
existing trace tree model and stores it in a structure:

The of_dumpnode function takes
a TraceTreeNode object and a structure as arguments and populates
the structure with information about each node. The following code
shows part of the function:

Accessing trace data directly

You use the PowerScript functions and PowerBuilder objects
listed in Table 33-11 to
access the data in the trace file directly so that you can develop
your own analysis tools.

Table 33-11: Functions for direct access to
trace data
Use this function With this object To do this
Open TraceFile Opens the trace file to be analyzed.
NextActivity TraceFile Returns the next activity in the trace
file. The value returned is of type TraceActivityNode.
Reset TraceFile Resets the next activity to the beginning
of the trace file.
Close TraceFile Closes the open trace file.

With the exception of NextActivity, each
of these functions returns a value of type ErrorReturn.
Each TraceActivityNode object includes information about the category
of the activity, the timer value when the activity occurred, and
the activity type.

Timer values

The category of the activity is either TraceIn! or TraceOut!
for activities that have separate beginning and ending points, such
as routines, garbage collection, and tracing itself. Each such activity
has two timer values associated with it: the time when it began
and the time when it completed.

Activities that have only one associated timer value are in
the category TraceAtomic!. ActLine!, ActUser!, and ActError! are
all atomic activities.

Inherited objects

The following objects inherit from TraceActivityNode and contain
data about the associated activity type:

  • TraceBeginEnd
  • TraceError
  • TraceESQL
  • TraceGarbageCollect
  • TraceLine
  • TraceObject
  • TraceRoutine
  • TraceUser

note.gif TraceTreeNode and TraceActivityNode objects The objects that inherit from TraceActivityNode are analogous
to those that inherit from TraceTreeNode, and you can use similar
techniques when you write applications that use them.

For a list of activity types, see “Trace activities”.

Using the TraceFile object

To access the data in the trace file directly, you create
a TraceFile object, open a trace file, and then use the NextActivity function
to access each activity in the trace file sequentially. For each
node, determine what activity type it is by examining the TraceActivity enumerated
datatype, and then use the appropriate trace object to extract information.

Example: direct access to trace data

The following example creates a TraceFile object, opens a
trace file called ltcf_file, and then
uses a function called of_dumpActivityNode to
report the appropriate information for each activity depending on
its activity type.

The following code shows part of of_dumpActivityNode:


Document get from Powerbuilder help
Thank you for watching.
Was this article helpful?
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x