#lang scheme/base
(require scheme/port
scheme/runtime-path
scheme/contract
"stx-helpers.ss"
"config.ss"
"compiler/pinfo.ss"
"collects/moby/runtime/stx.ss"
"collects/moby/runtime/permission-struct.ss"
"collects/moby/runtime/binding.ss")
(define-runtime-path yui.jar "../support/yuicompressor-2.4.2.jar")
(define-runtime-path google-closure-compiler.jar "../support/closure-compiler.jar")
(define (parse-string-as-program a-string [source-name "<unknown>"])
(let* ([ip (open-input-string a-string)])
(port-count-lines! ip)
(parameterize ([read-accept-reader #t]
[read-decimal-as-inexact #f])
(let loop ([a-stx (read-syntax source-name ip)])
(cond
[(eof-object? a-stx)
'()]
[else
(cons (syntax->stx a-stx)
(loop (read-syntax source-name ip)))])))))
(define (get-permissions a-pinfo)
(define ht (make-hash))
(for ([b (pinfo-used-bindings a-pinfo)])
(cond
[(binding:function? b)
(for ([p (binding:function-permissions b)])
(hash-set! ht p #t))]))
(for/list ([p (in-hash-keys ht)])
p))
(define (copy-port-to-debug-log inp)
(let loop ([line (read-line inp)])
(unless (eof-object? line)
(log-debug line)
(loop (read-line inp)))))
(define (copy-port-to-error-log inp)
(let loop ([line (read-line inp)])
(unless (eof-object? line)
(log-error line)
(loop (read-line inp)))))
(define (run-ant-build.xml dest-dir target)
(parameterize ([current-directory dest-dir])
(let*-values ([(string-error-port) (open-output-string "")]
[(a-subprocess inp outp errp)
(subprocess #f #f #f (current-ant-bin-path) target)]
[(t1 t2)
(values (thread (lambda ()
(copy-port-to-debug-log inp)))
(thread (lambda ()
(copy-port-to-error-log (peeking-input-port errp))
(copy-port errp string-error-port))))])
(close-output-port outp)
(subprocess-wait a-subprocess)
(sync t1)
(sync t2)
(unless (= 0 (subprocess-status a-subprocess))
(error 'ant "Internal error while running ant: ~a"
(get-output-string string-error-port)))
(void))))
(define (run-java-jar jar-file-path
#:bytes some-bytes
#:args args)
(let ([get-java-path
(lambda ()
(find-executable-path "java"))])
(let*-values ([(bytes-output-port) (open-output-bytes)]
[(a-subprocess inp outp errp)
(apply subprocess #f #f #f (get-java-path) "-jar" (path->string jar-file-path)
args)]
[(t1 t2)
(values (thread (lambda ()
(copy-port inp bytes-output-port)))
(thread (lambda ()
(copy-port errp (current-output-port)))))])
(copy-port (open-input-bytes some-bytes) outp)
(close-output-port outp)
(subprocess-wait a-subprocess)
(sync t1)
(sync t2)
(get-output-bytes bytes-output-port))))
(define (yui-compress source-code)
(run-java-jar yui.jar #:bytes source-code #:args (list "--type" "js")))
(define (google-closure-compile source-code #:aggressive? (aggressive? #f) )
(run-java-jar google-closure-compiler.jar #:bytes source-code #:args
(if aggressive?
(list "--compilation_level" "ADVANCED_OPTIMIZATIONS")
(list))))
(provide/contract
[parse-string-as-program ((string?) (string?) . ->* . (listof stx?))]
[get-permissions (pinfo? . -> . (listof permission?))]
[run-ant-build.xml (path? string? . -> . any)]
[yui-compress (bytes? . -> . bytes?)]
[google-closure-compile ((bytes?) (#:aggressive? boolean?) . ->* . bytes?)]
)