AspectJ: how i get to know, who executed 'thisJoinPoint'?

L

linuxadmin

hi!

i want to write a multi-thread tracing library.
so it is possible that different methods execute one same method
as a thread simultaneously. something like:

methodA-instance1 calls methodB-instance1
methodA-instance2 calls methodB-instance2 and methodB-instance3

because of that, i need to know, what joinpoint has
executed/called 'thisJoinPoint'. note, it's not enough
for me just to know the method, because, again, there may be
many simultaneous threads of that calling method.

i hope, you've got the problem.

thank you!
 
?

=?ISO-8859-1?Q?Arne_Vajh=F8j?=

i want to write a multi-thread tracing library.
so it is possible that different methods execute one same method
as a thread simultaneously. something like:

methodA-instance1 calls methodB-instance1
methodA-instance2 calls methodB-instance2 and methodB-instance3

because of that, i need to know, what joinpoint has
executed/called 'thisJoinPoint'. note, it's not enough
for me just to know the method, because, again, there may be
many simultaneous threads of that calling method.

For inspiration see code below.

Arne



LogLeaveAndEnter.aj
-------------------

aspect LogEnterAndLeave {
pointcut alltrace() : call(* *.*(..)) && !within(LogEnterAndLeave)
&& !within(Locator) && !call(* Locator.*(..));
before() : alltrace() {
Locator.enter(thisJoinPoint.getSignature().toString());
}
after() : alltrace() {
Locator.leave();
}
}

Locator.java
------------

import java.util.HashMap;
import java.util.Stack;

public class Locator {
private static HashMap data = new HashMap();
public static void enter(String name) {
String id = Thread.currentThread().getName();
Stack stk = (Stack)data.get(id);
if(stk == null) {
stk = new Stack();
data.put(id, stk);
}
stk.push(name);
}
public static void leave() {
String id = Thread.currentThread().getName();
Stack stk = (Stack)data.get(id);
stk.pop();
}
public static String current() {
String id = Thread.currentThread().getName();
Stack stk = (Stack)data.get(id);
return (String)stk.peek();
}
public static String previous() {
String id = Thread.currentThread().getName();
Stack stk = (Stack)data.get(id);
if(stk.size() > 1) {
return (String)stk.get(stk.size() - 2);
} else {
return "void main(String[])";
}
}
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,434
Messages
2,571,689
Members
48,796
Latest member
Greg L.

Latest Threads

Top