racket/collects/compiler/private/windlldir.ss
Eli Barzilay 4bf87ba029 set eol-style
svn: r2757
2006-04-24 01:56:27 +00:00

40 lines
1.3 KiB
Scheme

(module windlldir mzscheme
(require (lib "port.ss"))
(provide update-dll-dir
get-current-dll-dir)
(define label "dLl dIRECTORy:")
(define max-dir-len 512)
(define (update-dll-dir dest path)
(let ([path-bytes (if (eq? path #t)
#"<system>"
(if (path? path)
(path->bytes path)
(string->bytes/locale path)))])
(unless ((bytes-length path-bytes) . <= . max-dir-len)
(error 'update-dll-dir "path too long: ~e" path))
(let ([m (with-input-from-file dest
(lambda ()
(regexp-match-positions label (current-input-port))))])
(unless m
(error 'update-ddl-dir "cannot find DLL path in file: ~e" dest))
(with-output-to-file dest
(lambda ()
(file-position (current-output-port) (cdar m))
(write-bytes path-bytes)
(write-byte 0))
'update))))
(define (get-current-dll-dir dest)
(with-input-from-file dest
(lambda ()
(unless (regexp-match label (current-input-port))
(error 'get-current-dll-dir "cannot find DLL path in file: ~e" dest))
(let ([p (make-limited-input-port (current-input-port) max-dir-len)])
(let ([m (regexp-match #rx#"[^\0]*" p)])
(bytes->path (car m))))))))