working on resource loading

This commit is contained in:
Danny Yoo 2011-08-12 16:54:38 -04:00
parent ef0911ca61
commit 4e614d2f5f
5 changed files with 54 additions and 23 deletions

View File

@ -30,7 +30,8 @@
get-standalone-code get-standalone-code
write-standalone-code write-standalone-code
get-runtime get-runtime
write-runtime) write-runtime
current-on-resource)
@ -41,6 +42,13 @@
(define current-on-resource
(make-parameter (lambda (r)
(log-debug "Resource ~s should be written"
(resource-path r))
(void))))
(define-struct js-impl (name ;; symbol (define-struct js-impl (name ;; symbol
@ -57,13 +65,11 @@
(define (package-anonymous source-code (define (package-anonymous source-code
#:should-follow-children? should-follow? #:should-follow-children? should-follow?
#:output-port op #:output-port op)
#:on-resource (on-resource (lambda (r) (void))))
(fprintf op "(function() {\n") (fprintf op "(function() {\n")
(package source-code (package source-code
#:should-follow-children? should-follow? #:should-follow-children? should-follow?
#:output-port op #:output-port op)
#:on-resource on-resource)
(fprintf op " return invoke; })\n")) (fprintf op " return invoke; })\n"))
@ -210,13 +216,7 @@ MACHINE.modules[~s] =
;; load in modules. ;; load in modules.
(define (package source-code (define (package source-code
#:should-follow-children? should-follow? #:should-follow-children? should-follow?
#:output-port op #:output-port op)
#:on-resource (on-resource
(lambda (r)
(log-debug "Resource ~s found"
(resource-path r))
(void))))
(define resources (set)) (define resources (set))
@ -283,7 +283,7 @@ MACHINE.modules[~s] =
(fprintf op "});\n") (fprintf op "});\n")
(for ([r resources]) (for ([r resources])
(on-resource r))) ((current-on-resource) r)))

View File

@ -1,4 +1,6 @@
#lang s-exp "../lang/kernel.rkt" #lang s-exp "../lang/kernel.rkt"
(require "compile-time.rkt") (require "compile-time.rkt"
(provide (all-from-out "compile-time.rkt")) "runtime.rkt")
(provide (all-from-out "compile-time.rkt"
"runtime.rkt"))

10
resource/racket-impl.rkt Normal file
View File

@ -0,0 +1,10 @@
#lang racket/base
(provide resource->url)
(require "structs.rkt"
net/url)
(define (resource->url r)
(path->url (resource-path r)))

9
resource/runtime.rkt Normal file
View File

@ -0,0 +1,9 @@
#lang s-exp "../lang/js/js.rkt"
(require "structs.rkt")
(declare-implementation
#:racket "racket-impl.rkt"
#:javascript ("js-impl.js")
#:provided-values (resource->url))

View File

@ -4,8 +4,10 @@
(require racket/list (require racket/list
racket/string racket/string
racket/match racket/match
racket/file
"make/make-structs.rkt" "make/make-structs.rkt"
"js-assembler/package.rkt" "js-assembler/package.rkt"
"resource/structs.rkt"
"private/command.rkt" "private/command.rkt"
"logger.rkt" "logger.rkt"
"parameters.rkt" "parameters.rkt"
@ -31,6 +33,9 @@
(define current-verbose? (make-parameter #f)) (define current-verbose? (make-parameter #f))
(define current-resource-dir (make-parameter
(build-path (current-directory) "res")))
(define current-write-resources? (make-parameter #t))
(define (at-toplevel) (define (at-toplevel)
@ -111,12 +116,19 @@
(regexp-replace #rx"[.](rkt|ss)$" (regexp-replace #rx"[.](rkt|ss)$"
(path->string filename) (path->string filename)
".xhtml"))]) ".xhtml"))])
(call-with-output-file* output-filename (parameterize ([current-on-resource
(lambda (op) (lambda (r)
(package-standalone-xhtml (make-directory* (current-resource-dir))
(make-ModuleSource (build-path f)) (log-info (format "Writing resource ~s" (resource-path r)))
op)) (copy-file (resource-path r)
#:exists 'replace)))) (build-path (current-resource-dir)
(resource-key r))))])
(call-with-output-file* output-filename
(lambda (op)
(package-standalone-xhtml
(make-ModuleSource (build-path f))
op))
#:exists 'replace)))))
@ -135,7 +147,5 @@
(current-output-port))) (current-output-port)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(at-toplevel) (at-toplevel)