Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Test and Performance Tools Platform (TPTP) » Information about tptp
Information about tptp [message #124136] Mon, 25 February 2008 14:10 Go to next message
Eclipse UserFriend
Originally posted by: biscio81.tiscali.it

i would have some informations about TPTP.

I'm a student of the "University of Salerno" (Italy) and i'm getting
the degree in Computer Science. My name is Marco.

I would know if is possible with TPTP retrieve the class that call the
method monitored.

Example:

We have two classes, MyClass and Class. The MethodA of the class MyClass
call the MethodB of the class Class.



public class MyClass{

public void MethodA(){

Class cl= new Class()

cl.MethodB()

}

}



public class Class{

public void MethodB(){

}

}



I want this information:

The class MyClass call the method MethodB of the class Class



Waiting for a your response.

Best regards,
Marco Biscione, Salerno, Italy
Re: Information about tptp [message #124288 is a reply to message #124136] Tue, 26 February 2008 08:28 Go to previous messageGo to next message
Asaf Yaffe is currently offline Asaf YaffeFriend
Messages: 333
Registered: July 2009
Senior Member
Marco,

Thank you for your interest in TPTP.

The information you need is provided by the Execution Time Analysis data
collector of the TPTP Java Profiler. Please refer to the following URL
for more information on using the profiler:
http://help.eclipse.org/help33/topic/org.eclipse.tptp.platfo rm.doc.user/tasks/tefilter.htm#Profiling_Java_1.5_and_higher _java_virtual_machine_based_applications
(see the "Profiling Java 5.0..." section). Make sure to enable the
"Execution Details" option in the "Execution Time Analysis" data collector.

If you have any specific questions, please let us know.

Thanks,
Asaf

--
Asaf Yaffe
Eclipse TPTP Committer, JVMTI Profiler
Re: Information about tptp [message #124301 is a reply to message #124288] Tue, 26 February 2008 10:07 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: biscio81.tiscali.it

hi Asaf
I must retrive the information i need by using the probekit of TPTP.
Is it possible?
I succeed to retrive with probekit the method name monitored and the class
name that method belong to. I need to retrive the class name that call the
method monitored.

thanks for your helpfulness.
Marco
"Asaf Yaffe" <asaf.yaffe@intel.com> ha scritto nel messaggio
news:fq0ijh$8ve$1@build.eclipse.org...
> Marco,
>
> Thank you for your interest in TPTP.
>
> The information you need is provided by the Execution Time Analysis data
> collector of the TPTP Java Profiler. Please refer to the following URL for
> more information on using the profiler:
> http://help.eclipse.org/help33/topic/org.eclipse.tptp.platfo rm.doc.user/tasks/tefilter.htm#Profiling_Java_1.5_and_higher _java_virtual_machine_based_applications
> (see the "Profiling Java 5.0..." section). Make sure to enable the
> "Execution Details" option in the "Execution Time Analysis" data
> collector.
>
> If you have any specific questions, please let us know.
>
> Thanks,
> Asaf
>
> --
> Asaf Yaffe
> Eclipse TPTP Committer, JVMTI Profiler
Re: Information about tptp [message #125021 is a reply to message #124301] Sun, 02 March 2008 09:10 Go to previous message
Asaf Yaffe is currently offline Asaf YaffeFriend
Messages: 333
Registered: July 2009
Senior Member
Marco wrote:
> hi Asaf
> I must retrive the information i need by using the probekit of TPTP.
> Is it possible?
> I succeed to retrive with probekit the method name monitored and the class
> name that method belong to. I need to retrive the class name that call the
> method monitored.

You can a combination of "entry" and "beforeCall" probes to get
information on both the invoked method ("entry" probe) and the invoking
method ("beforeCall"). Please check the TPTP online help for more
information.

If you need to capture entire stack trace (i.e., method call chain)
leading to a specific method invocation, you can "abuse" the Java
exception mechanism in your "entry" probe by instantiating an Exception
object and obtaining its tack trace.

Here's an example code you can use inside an "entry" probe:

....
Exception e = new Exception();
StackTraceElement[] stackTrace = e.getStackTrace();
....


HTH,
Asaf

--
Asaf Yaffe
Eclipse TPTP Committer, JVMTI Profiler
Previous Topic:Is there any training provided for tptp
Next Topic:Behaviour Tab missing
Goto Forum:
  


Current Time: Sat Apr 20 04:03:27 GMT 2024

Powered by FUDForum. Page generated in 0.03621 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top