in the middle of fixing require for js-implemented modules

This commit is contained in:
Danny Yoo 2011-07-08 13:20:29 -04:00
parent e0429d565a
commit 91c2460a23
6 changed files with 76 additions and 36 deletions

View File

@ -1,5 +1,5 @@
#lang planet dyoo/whalesong #lang planet dyoo/whalesong
(require (planet dyoo/whalesong/world)) (require (planet dyoo/whalesong/image))
(display "hello again") (display "hello again")
(newline) (newline)

View File

@ -10,6 +10,7 @@
"../parser/path-rewriter.rkt" "../parser/path-rewriter.rkt"
"../parser/parse-bytecode.rkt" "../parser/parse-bytecode.rkt"
racket/match racket/match
racket/list
(prefix-in query: "../lang/js/query.rkt") (prefix-in query: "../lang/js/query.rkt")
(planet dyoo/closure-compile:1:1) (planet dyoo/closure-compile:1:1)
(prefix-in runtime: "get-runtime.rkt") (prefix-in runtime: "get-runtime.rkt")
@ -106,32 +107,65 @@
(log-debug "~a requires ~a" (log-debug "~a requires ~a"
(ModuleSource-path src) (ModuleSource-path src)
module-requires) module-requires)
(let ([module-body-text
(format "
if(--MACHINE.callsBeforeTrampoline<0) { throw arguments.callee; }
var modrec = MACHINE.modules[~s];
var exports = {};
modrec.isInvoked = true;
(function(MACHINE, RUNTIME, EXPORTS){~a})(MACHINE, plt.runtime, exports);
~a
return MACHINE.control.pop().label(MACHINE);"
(symbol->string name)
text
(get-provided-name-code bytecode))])
(make-UninterpretedSource (make-UninterpretedSource
(format " (format "
MACHINE.modules[~s] = MACHINE.modules[~s] =
new plt.runtime.ModuleRecord(~s, new plt.runtime.ModuleRecord(~s,
function(MACHINE) { function(MACHINE) {
if(--MACHINE.callsBeforeTrampoline<0) { throw arguments.callee; } ~a
var modrec = MACHINE.modules[~s];
var exports = {};
modrec.isInvoked = true;
(function(MACHINE, RUNTIME, EXPORTS){~a})(MACHINE, plt.runtime, exports);
// FIXME: we need to inject the namespace with the values defined in exports.
~a
return MACHINE.control.pop().label(MACHINE);
}); });
" "
(symbol->string name) (symbol->string name)
(symbol->string name) (symbol->string name)
(symbol->string name) (assemble-modinvokes module-requires module-body-text))
text
(get-provided-name-code bytecode))))] (map make-ModuleSource module-requires))))]
[(SexpSource? src) [(SexpSource? src)
(error 'get-javascript-implementation)] (error 'get-javascript-implementation)]
[(UninterpretedSource? src) [(UninterpretedSource? src)
(error 'get-javascript-implementation)])) (error 'get-javascript-implementation)]))
(define (assemble-modinvokes paths after)
(cond
[(empty? paths)
after]
[else
(assemble-modinvoke (first paths)
(assemble-modinvokes (rest paths) after))]))
(define (assemble-modinvoke path after)
(format "if (! MACHINE.modules[~s].isInvoked) {
MACHINE.modules[~s].invoke(MACHINE,
function() {
~a
},
MACHINE.params.currentErrorHandler);
} else {
~a
}
"
path
path
after
after))

View File

@ -223,6 +223,7 @@ if(this['plt'] === undefined) { this['plt'] = {}; }
} }
}; };
// External invokation of a module. // External invokation of a module.
ModuleRecord.prototype.invoke = function(MACHINE, succ, fail) { ModuleRecord.prototype.invoke = function(MACHINE, succ, fail) {
MACHINE = MACHINE || plt.runtime.currentMachine; MACHINE = MACHINE || plt.runtime.currentMachine;

View File

@ -25,7 +25,8 @@
#:transparent) #:transparent)
(define-struct: SexpSource ([sexp : Any]) (define-struct: SexpSource ([sexp : Any])
#:transparent) #:transparent)
(define-struct: UninterpretedSource ([datum : String]) (define-struct: UninterpretedSource ([datum : String]
[neighbors : (Listof Source)])
#:transparent) #:transparent)

View File

@ -132,26 +132,30 @@
(Source (U False Expression) -> (Listof Source))) (Source (U False Expression) -> (Listof Source)))
(define (collect-new-dependencies this-source ast) (define (collect-new-dependencies this-source ast)
(cond (cond
[(eq? ast #f) [(UninterpretedSource? this-source)
empty] (UninterpretedSource-neighbors this-source)]
[(not (should-follow-children? this-source))
empty]
[else [else
(let* ([dependent-module-names (get-dependencies ast)] (cond
[paths [(eq? ast #f)
(foldl (lambda: ([mp : ModuleLocator] empty]
[acc : (Listof Source)]) [(not (should-follow-children? this-source))
(let ([rp [ModuleLocator-real-path mp]]) empty]
(cond [((current-kernel-module-locator?) [else
mp) (let* ([dependent-module-names (get-dependencies ast)]
acc] [paths
[(path? rp) (foldl (lambda: ([mp : ModuleLocator]
(cons (make-ModuleSource rp) acc)] [acc : (Listof Source)])
[else (let ([rp [ModuleLocator-real-path mp]])
acc]))) (cond [((current-kernel-module-locator?)
'() mp)
dependent-module-names)]) acc]
paths)])) [(path? rp)
(cons (make-ModuleSource rp) acc)]
[else
acc])))
'()
dependent-module-names)])
paths)])]))
(let: loop : Void ([sources : (Listof Source) sources]) (let: loop : Void ([sources : (Listof Source) sources])
(cond (cond

View File

@ -11,7 +11,7 @@
"test-conform-browser.rkt" "test-conform-browser.rkt"
"test-earley-browser.rkt" "test-earley-browser.rkt"
"test-get-dependencies.rkt" "test-get-dependencies.rkt"
"more-tests/run-more-tests.rkt") "run-more-tests.rkt")
;; This test takes a bit too much time. ;; This test takes a bit too much time.