I have to execute a given String as JavaScript code, e.g. eval('Foo.setMessage("Hello!")'), from within a class called Engine. Here, setMessage() is a public static method of the Foo class. Because I want to access some properties of the Engine object from within the setMessage() method, how can I obtain a reference to the Engine object?
I do know how to get the caller class name using Reflection or CurrentThreadStack or Throwable (see the code below), but these do not return a caller object reference.
//----------------------------------------------------------------
@John: I have followed your four steps and made the following code. However, in the Foo class, I cann't get the right Engine object which is calling the setMessage() method. Thanks.
import javax.script.*;
public class Engine {
public static ScriptEngine scriptEngine = new ScriptEngineManager().getEngineByName("ECMAScript");
public String engineName;
public String message;
public Engine(String name) {
this.engineName = name;
}
public void eval(String script) {
try {
Engine.scriptEngine.eval(script);
//to do something more
} catch (ScriptException e) {
System.out.println(e.toString());
}
}
public static void main(String[] args) {
Engine firstEngine = new Engine("First engine");
Engine.scriptEngine.put("firstEngine", firstEngine);
firstEngine.eval("Packages.Foo.setMessage('Hello!');");
Engine secondEngine = new Engine("Second engine");
Engine.scriptEngine.put("secondEngine", secondEngine);
secondEngine.eval("Packages.Foo.setMessage('Hello!');");
}
}
public class Foo {
public static void setMessage(String msg){
Engine myEngine = (Engine)Engine.scriptEngine.get("What engine to get: first engine or second engine???");
myEngine.message = msg;
System.out.println(myEngine.engineName);
}
}
Please help, thanks, John