NativeScript.java
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.javascript;
import java.util.EnumSet;
/**
* The JavaScript Script object.
*
* <p>Note that the C version of the engine uses XDR as the format used by freeze and thaw. Since
* this depends on the internal format of structures in the C runtime, we cannot duplicate it.
*
* <p>Since we cannot replace 'this' as a result of the compile method, will forward requests to
* execute to the nonnull 'script' field.
*
* @since 1.3
* @author Norris Boyd
*/
class NativeScript extends BaseFunction {
private static final long serialVersionUID = -6795101161980121700L;
private static final Object SCRIPT_TAG = "Script";
static LambdaConstructor init(Context cx, Scriptable scope, boolean sealed) {
LambdaConstructor obj =
new LambdaConstructor(
scope,
"Script",
1,
NativeScript::js_constructorCall,
NativeScript::js_constructor);
var proto = new NativeScript(null);
proto.setPrototypeProperty(null);
obj.setPrototypeProperty(proto);
var function = (Scriptable) ScriptableObject.getProperty(scope, "Function");
var functionProto = (Scriptable) ScriptableObject.getProperty(function, "prototype");
proto.setPrototype(functionProto);
defineMethod(obj, scope, "toString", 0, NativeScript::js_toString);
defineMethod(obj, scope, "exec", 0, NativeScript::js_exec);
defineMethod(obj, scope, "compile", 0, NativeScript::js_compile);
ScriptableObject.defineProperty(scope, "Script", obj, DONTENUM);
if (sealed) {
obj.sealObject();
((ScriptableObject) obj.getPrototypeProperty()).sealObject();
}
return obj;
}
private static void defineMethod(
LambdaConstructor typedArray,
Scriptable scope,
String name,
int length,
SerializableCallable target) {
typedArray.definePrototypeMethod(
scope, name, length, target, DONTENUM, DONTENUM | READONLY);
}
/**
* @deprecated Use {@link #init(Context, Scriptable, boolean)} instead
*/
@Deprecated
static void init(Scriptable scope, boolean sealed) {
init(Context.getContext(), scope, sealed);
}
private NativeScript(Script script) {
this.script = script;
}
/** Returns the name of this JavaScript class, "Script". */
@Override
public String getClassName() {
return "Script";
}
@Override
public Object call(Context cx, Scriptable scope, Scriptable thisObj, Object[] args) {
if (script != null) {
return script.exec(cx, scope, thisObj);
}
return Undefined.instance;
}
@Override
public Scriptable construct(Context cx, Scriptable scope, Object[] args) {
throw Context.reportRuntimeErrorById("msg.script.is.not.constructor");
}
@Override
public int getLength() {
return 0;
}
@Override
public int getArity() {
return 0;
}
@Override
String decompile(int indent, EnumSet<DecompilerFlag> flags) {
if (script instanceof NativeFunction) {
return ((NativeFunction) script).decompile(indent, flags);
}
return super.decompile(indent, flags);
}
private static Object js_compile(
Context cx, Scriptable scope, Scriptable thisObj, Object[] args) {
NativeScript real = realThis(thisObj, "compile");
String source = ScriptRuntime.toString(args, 0);
real.script = compile(cx, source);
return real;
}
private static Object js_exec(Context cx, Scriptable scope, Scriptable thisObj, Object[] args) {
throw Context.reportRuntimeErrorById("msg.cant.call.indirect", "exec");
}
private static Object js_toString(
Context cx, Scriptable scope, Scriptable thisObj, Object[] args) {
NativeScript real = realThis(thisObj, "toString");
Script realScript = real.script;
if (realScript == null) {
return "";
}
return cx.decompileScript(realScript, 0);
}
private static Scriptable js_constructorCall(
Context cx, Scriptable scope, Scriptable thisObj, Object[] args) {
return js_constructor(cx, scope, args);
}
private static Scriptable js_constructor(Context cx, Scriptable scope, Object[] args) {
String source = (args.length == 0) ? "" : ScriptRuntime.toString(args[0]);
Script script = compile(cx, source);
NativeScript nscript = new NativeScript(script);
ScriptRuntime.setObjectProtoAndParent(nscript, scope);
return nscript;
}
private static NativeScript realThis(Scriptable thisObj, String name) {
return ensureType(thisObj, NativeScript.class, name);
}
private static Script compile(Context cx, String source) {
int[] linep = {0};
String filename = Context.getSourcePositionFromStack(linep);
if (filename == null) {
filename = "<Script object>";
linep[0] = 1;
}
ErrorReporter reporter;
reporter = DefaultErrorReporter.forEval(cx.getErrorReporter());
return cx.compileString(source, null, reporter, filename, linep[0], null, null);
}
private Script script;
}