Rhino を Java アプリケーションに埋め込んでいます。基本的に、私はJavascriptコードを実行し、Java関数を呼び出し、これが別のJavascriptコードを呼び出します。2 番目の Javascript コードを実行すると、使用している共有スコープが新しいスコープ内のオブジェクトを認識できないため、問題が発生します。
エラーを示すテストを次に示します (アプリケーションで使用しているのと同じシナリオを再現するために、2 つの共有スコープがあることに注意してください)。
import org.junit.Test;
import org.mozilla.javascript.Context;
import org.mozilla.javascript.ContextFactory;
import org.mozilla.javascript.Scriptable;
import org.mozilla.javascript.ScriptableObject;
public class SimpleRhinoTest {
static class DynamicScopeFactory extends ContextFactory {
@Override
protected boolean hasFeature(Context cx, int featureIndex) {
if (featureIndex == Context.FEATURE_DYNAMIC_SCOPE) {
return true;
}
return super.hasFeature(cx, featureIndex);
}
}
static {
ContextFactory.initGlobal(new DynamicScopeFactory());
}
public static class HelperScope extends ScriptableObject {
private ScriptableObject sharedScope;
@Override
public String getClassName() {
return "global";
}
public void debug(String text) {
System.out.println(text);
}
public void doSomething1(String param) {
debug(param);
Context ctx = Context.enter();
Scriptable scriptScope = ctx.newObject(sharedScope);
scriptScope.setPrototype(sharedScope);
scriptScope.setParentScope(null);
ctx.evaluateString(scriptScope, "var currentScope = 'test2';", "", 1, null);
ctx.evaluateString(scriptScope, "foo(); doSomething2('end')", "", 1, null);
Context.exit();
}
public void doSomething2(String param) {
debug(param);
}
public ScriptableObject getSharedScope() {
return sharedScope;
}
public void setSharedScope(ScriptableObject sharedScope) {
this.sharedScope = sharedScope;
}
}
@Test
public void testSharedScopes() {
// init shared scopes
Context ctx = Context.enter();
HelperScope helperScope1 = new HelperScope();
ScriptableObject sharedScope1 = ctx.initStandardObjects(helperScope1, true);
String[] names = {"doSomething1", "doSomething2", "debug"};
helperScope1.defineFunctionProperties(names, HelperScope.class, ScriptableObject.DONTENUM);
ctx.evaluateString(sharedScope1, "var foo = function() { debug(currentScope); };", "", 1, null);
sharedScope1.sealObject();
Context.exit();
ctx = Context.enter();
HelperScope helperScope2 = new HelperScope();
ScriptableObject sharedScope2 = ctx.initStandardObjects(helperScope2, true);
names = new String[] {"doSomething1", "doSomething2", "debug"};
helperScope2.defineFunctionProperties(names, HelperScope.class, ScriptableObject.DONTENUM);
ctx.evaluateString(sharedScope2, "var foo = function() { debug(currentScope); };", "", 1, null);
sharedScope1.sealObject();
Context.exit();
helperScope1.setSharedScope(helperScope2);
ctx = Context.enter();
Scriptable scriptScope1 = ctx.newObject(sharedScope1);
scriptScope1.setPrototype(sharedScope1);
scriptScope1.setParentScope(null);
ctx.evaluateString(scriptScope1, "var currentScope = 'test1'; foo(); doSomething1('entering');", "", 1, null);
Context.exit();
}
}
このテストを実行すると、次のエラーが発生します。
org.mozilla.javascript.EcmaError: ReferenceError: "currentScope" is not defined. (#1)
したがって、ここで説明されているように、動的にシールドされたスコープを使用しています。
https://developer.mozilla.org/en-US/docs/Rhino/Scopes_and_Contexts
私にとって奇妙なのは、最初の Javascript コードを実行するときに、問題なく「currentScope」変数にアクセスできることです。同じコードを使用して2番目のスコープを初期化しますが、スクリプトの2回目の実行時に例外がスローされます。
私は何を間違っていますか?
ありがとう!