continuing to exercise the parser.

This commit is contained in:
Danny Yoo 2011-05-20 12:03:03 -04:00
parent b658834626
commit 3a6f525c32
2 changed files with 31 additions and 9 deletions

View File

@ -1,5 +1,7 @@
#lang racket/base
(require racket/contract racket/path)
(require racket/contract
racket/path
syntax/modcode)
(provide/contract [get-module-bytecode ((or/c string? path? input-port?) . -> . bytes?)])
@ -9,21 +11,34 @@
(define (get-module-bytecode x)
(let ([compiled-code
(cond
;; Assumed to be a path string
[(string? x)
(call-with-input-file x
(lambda (ip)
(get-compiled-code-from-port ip)))]
(get-compiled-code-from-path (normalize-path (build-path x)))]
[(path? x)
(call-with-input-file x
(lambda (ip)
(get-compiled-code-from-port ip)))]
(get-compiled-code-from-path x)]
;; Input port is assumed to contain the text of a module.
[(input-port? x)
(get-compiled-code-from-port x)]
[else
(get-compiled-code-from-port x)])])
(error 'get-module-bytecode)])])
(let ([op (open-output-bytes)])
(write compiled-code op)
(get-output-bytes op))))
;; Tries to use get-module-code to grab at module bytecode. Sometimes this fails
;; because it appears get-module-code tries to write to compiled/.
(define (get-compiled-code-from-path p)
(with-handlers ([void (lambda (exn)
;; Failsafe: try to do it from scratch
(call-with-input-file* p
(lambda (ip)
(get-compiled-code-from-port ip))))])
(get-module-code p)))
(define (get-compiled-code-from-port ip)
(parameterize ([read-accept-reader #t]

View File

@ -1,5 +1,11 @@
#lang racket/base
;; Tries to parse all the files in collects and sees how long it takes.
;;
;; TODO: figure out why it fails to get the module bytecode for
;; collects/tests/matrix-test.rkt. I'm seeing the following:
;; read-syntax: cannot load snip-class reader
(require "../parse-bytecode.rkt"
racket/path)
@ -14,9 +20,10 @@
p]))))
(for ([path (in-directory)])
(for ([path (in-directory collects-dir)])
(when (regexp-match? #rx"[.]rkt$" path)
(printf "parsing file: ~a... " path)
(flush-output)
(let ([start-time (current-inexact-milliseconds)])
(void (parse-bytecode path))
(let ([end-time (current-inexact-milliseconds)])