trying to get the module output working.

This commit is contained in:
Danny Yoo 2013-04-08 19:00:18 -06:00
parent 45aeb7d12a
commit 4d00c1bb5e
4 changed files with 111 additions and 19 deletions

View File

@ -142,7 +142,7 @@
var that = this; var that = this;
if (compiledResult.type === 'error') { if (compiledResult.type === 'error') {
return onDoneFail(compiledResult); return onDoneFail(compiledResult);
} else { } else if (compiledResult.type === 'repl') {
// compiledResult.compiledCodes is an array of function chunks. // compiledResult.compiledCodes is an array of function chunks.
// The evaluation leaves the value register of the machine // The evaluation leaves the value register of the machine
// to contain the list of values from toplevel evaluation. // to contain the list of values from toplevel evaluation.
@ -165,6 +165,10 @@
codeFunction(that.M, onGoodEvaluation, onBadEvaluation); codeFunction(that.M, onGoodEvaluation, onBadEvaluation);
}, },
onDoneSuccess); onDoneSuccess);
} else if (compiledResult.type === 'module') {
throw new Error("internal error: not yet implemented");
} else {
throw new Error("internal error: unexpected compilation result");
} }
}; };

View File

@ -17,12 +17,37 @@
}); });
}; };
var moduleCompile = function(options, onDone, onDoneError) {
jQuery.ajax({ 'url': url,
'cache': false,
'success': function(data, textStatus, jqXHR) {
onDone(data);
},
'error': function(jqXHR, textStatus, errorThrown) {
onDoneError(errorThrown);
},
'data': {'name' : options.name, // source
'mname' : options.mname,
'lang' : options.lang,
'src' : options.code,
'm' : 't'},
'dataType': 'json',
'type' : 'post'
});
};
// If we're in the context of an iframe, provide an easyXDM // If we're in the context of an iframe, provide an easyXDM
// interface to the compiler. // interface to the compiler.
if (window.top !== window) { if (window.top !== window) {
new easyXDM.Rpc({}, { new easyXDM.Rpc({}, {
local: { local: {
'replCompile': { method: replCompile } 'replCompile': { method: replCompile },
'moduleCompile': { method: moduleCompile }
} }
}); });
} }

View File

@ -0,0 +1,53 @@
#lang racket/base
(require racket/port
racket/contract)
(provide (contract-out [modularize-input-port (->
#:module-name symbol?
#:input-port input-port?
#:semantics-module symbol?
input-port?)]))
;; Add a module wrapper around s-expression-based toplevel code, but
;; preserving original source locations as best as we can.
(define (modularize-input-port #:module-name name ;; symbol
#:input-port ip ;; input port
#:semantics-module semantics-module) ;; symbol
(define header (format "(module ~s ~s\n" name semantics-module))
(define lang-ip (open-input-string header))
(define concatenated-port (input-port-append #f lang-ip ip (open-input-string ")")))
(define (count-concatenated-port)
(port-count-lines! concatenated-port))
(define (get-location)
(define-values (line column position) (port-next-location concatenated-port))
(cond [(not (and line column position))
(values #f #f #f)]
[(<= position (string-length header))
(values #f #f #f)]
[else
(port-next-location ip)]))
(define-values (starting-line starting-col starting-pos)
(port-next-location ip))
(transplant-input-port concatenated-port
get-location
(or starting-pos 1)
#f
count-concatenated-port))
(module* test racket/base
(require (submod "..")
racket/port)
(define original-ip (open-input-string "(+ 1\n 2)"))
(port-count-lines! original-ip)
(define relocated-ip (relocate-input-port original-ip 5 1 200))
(port-count-lines! relocated-ip)
(define new-ip (modularize-input-port #:module-name 'test
#:input-port relocated-ip #;original-ip
#:semantics-module 'wescheme))
(port-count-lines! new-ip)
(read-syntax #f new-ip))

View File

@ -1,7 +1,6 @@
#lang racket/base #lang racket/base
(require "repl-compile.rkt" (require json
json
file/gzip file/gzip
racket/runtime-path racket/runtime-path
racket/port racket/port
@ -9,6 +8,8 @@
racket/pretty racket/pretty
web-server/servlet-env web-server/servlet-env
web-server/servlet web-server/servlet
"repl-compile.rkt"
"modularize-input-port.rkt"
"../make/make-structs.rkt" "../make/make-structs.rkt"
"../js-assembler/package.rkt" "../js-assembler/package.rkt"
"../parser/parse-bytecode.rkt" "../parser/parse-bytecode.rkt"
@ -63,14 +64,18 @@
out)) out))
(define (lookup-binding req id)
(if (exists-binding? 'id (request-bindings req))
(extract-binding/single 'id (request-bindings req))
#f))
(define (start req) (define (start req)
(define-values (response op) (define-values (response op)
(make-port-response #:mime-type #"text/json" #:with-cors? #t)) (make-port-response #:mime-type #"text/json" #:with-cors? #t))
(define name (if (exists-binding? 'name (request-bindings req)) (define source-name (lookup-binding req 'name))
(extract-binding/single 'name (request-bindings req)) (define mname (lookup-binding req 'mname))
#f)) (define lang (lookup-binding req 'lang))
(define text-src (extract-binding/single 'src (request-bindings req))) (define src (extract-binding/single 'src (request-bindings req)))
(define as-mod? (match (extract-bindings 'm (request-bindings req)) (define as-mod? (match (extract-bindings 'm (request-bindings req))
[(list (or "t" "true")) [(list (or "t" "true"))
#t] #t]
@ -81,11 +86,11 @@
'message (exn-message exn)) 'message (exn-message exn))
op))]) op))])
(cond [(not as-mod?) (cond [(not as-mod?)
(define ip (open-input-string text-src)) (define ip (open-input-string src))
(port-count-lines! ip) (port-count-lines! ip)
(define assembled-codes (define assembled-codes
(let loop () (let loop ()
(define sexp (read-syntax name ip)) (define sexp (read-syntax source-name ip))
(cond [(eof-object? sexp) (cond [(eof-object? sexp)
'()] '()]
[else [else
@ -104,17 +109,22 @@
'compiledCodes assembled-codes) 'compiledCodes assembled-codes)
op)] op)]
[else [else
(define program-port (open-output-string)) (define program-input-port
(let* ([ip (open-input-string src)])
(port-count-lines! ip)
(modularize-input-port #:module-name (string->symbol mname)
#:input-port ip
#:semantics-module 'whalesong)))
(define program-output-port (open-output-string))[
(package (SexpSource (parameterize ([read-accept-reader #t]) (package (SexpSource (parameterize ([read-accept-reader #t])
(read (open-input-string (string-append "#lang whalesong\n" text-src))))) (read-syntax source-name program-input-port)))
#:should-follow-children? (lambda (src) #f) #:should-follow-children? (lambda (src) #f)
#:output-port program-port) #:output-port program-output-port)
(write-json (hash 'type "module" (write-json (hash 'type "module"
'compiledModule (get-output-string program-port)) 'module-name (string->symbol mname)
op) 'provides () ;; FIXME!
])) 'compiledModule (get-output-string program-output-port))
;; Send it back as json text.... op)]))
(close-output-port op) (close-output-port op)
response) response)
@ -140,4 +150,4 @@
[("-p" "--port") p "Port (default 8000)" [("-p" "--port") p "Port (default 8000)"
(current-port (string->number p))])) (current-port (string->number p))]))
(start-server #:port (current-port))) (start-server #:port (current-port)))