X-Git-Url: http://git.megacz.com/?p=org.ibex.js.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fjs%2FJSFunction.java;h=681e03e938625aa1b93f2a43348a924dc1eedaba;hp=4bf41e4831c2b678d41d5c0ccf4c01da67984b17;hb=a1e6b7e9307319c0195b0efbe5e5354c128be481;hpb=b1fa73c17b31f268fca5695d0876d7314fbacce3 diff --git a/src/org/ibex/js/JSFunction.java b/src/org/ibex/js/JSFunction.java index 4bf41e4..681e03e 100644 --- a/src/org/ibex/js/JSFunction.java +++ b/src/org/ibex/js/JSFunction.java @@ -1,12 +1,12 @@ -// Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL] -package org.ibex.js; +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. -import java.io.*; -import org.ibex.util.*; +package org.ibex.js; /** A JavaScript function, compiled into bytecode */ -class JSFunction extends JS implements ByteCodes, Tokens, Task { - +class JSFunction extends JS.Immutable implements ByteCodes, Tokens { + private static final JS[] emptyArgs = new JS[0]; // Fields and Accessors /////////////////////////////////////////////// @@ -25,27 +25,18 @@ class JSFunction extends JS implements ByteCodes, Tokens, Task { // Public ////////////////////////////////////////////////////////////////////////////// - // FEATURE: make sure that this can only be called from the Scheduler... - /** if you enqueue a function, it gets invoked in its own pauseable context */ - public void perform() throws JSExn { - Interpreter i = new Interpreter(this, true, new JSArray()); - i.resume(); - } - - /** parse and compile a function */ - public static JSFunction _fromReader(String sourceName, int firstLine, Reader sourceCode) throws IOException { - JSFunction ret = new JSFunction(sourceName, firstLine, null); - if (sourceCode == null) return ret; - Parser p = new Parser(sourceCode, sourceName, firstLine); - while(true) { - int s = ret.size; - p.parseStatement(ret, null); - if (s == ret.size) break; - } - ret.add(-1, LITERAL, null); - ret.add(-1, RETURN); + // FIXME: what needs to be syncrhonized (if anything)? + private Interpreter runner = null; + public Object run(Object o) throws JSExn { + if (runner == null) runner = new Interpreter(this, true, emptyArgs); + Object ret = runner.run(o); + if (runner.f == null) runner = null; return ret; } + public void pause() throws NotPausableException { + if (runner == null) throw new NotPausableException(); + runner.pause(); + } public JSFunction _cloneWithNewParentScope(JSScope s) { JSFunction ret = new JSFunction(sourceName, firstLine, s); @@ -59,18 +50,9 @@ class JSFunction extends JS implements ByteCodes, Tokens, Task { return ret; } - /** Note: code gets run in an unpauseable context. */ - public Object call(Object a0, Object a1, Object a2, Object[] rest, int nargs) throws JSExn { - JSArray args = new JSArray(); - if (nargs > 0) args.addElement(a0); - if (nargs > 1) args.addElement(a1); - if (nargs > 2) args.addElement(a2); - for(int i=3; i>>16) + " size: " + (n&0xffff)); } sb.append("\n"); }