original commit: 6ba6c5d7a55c8c289e75daa2fa4dd7c35b25b68b
This commit is contained in:
Robby Findler 2004-04-22 01:34:37 +00:00
parent 36c485ab40
commit a3a1b03cda

View File

@ -21,7 +21,7 @@
(-> any) (-> any)
(string? any? . -> . void?) (string? any? . -> . void?)
(string? any? . -> . void?) (string? any? . -> . void?)
(string? string? string? path? (union string? false?) any? . -> . void?) (string? string? string? path? (union string? number? false?) any? . -> . void?)
. -> . . -> .
(union string? false?))] (union string? false?))]
@ -100,22 +100,15 @@
"\\&") "\\&")
"") "")
"")) ""))
; One lock for all hash table operations is good enough
(define ht-lock (make-semaphore 1))
(define (with-hash-table ht key compute) (define (with-hash-table ht key compute)
(dynamic-wind (hash-table-get
(lambda () (semaphore-wait ht-lock)) ht
key
(lambda () (lambda ()
(hash-table-get (let ([v (compute)])
ht (hash-table-put! ht key v)
key v))))
(lambda ()
(let ([v (compute)])
(hash-table-put! ht key v)
v))))
(lambda () (semaphore-post ht-lock))))
(define html-keywords (make-hash-table 'equal)) (define html-keywords (make-hash-table 'equal))
(define (load-html-keywords doc) (define (load-html-keywords doc)
@ -171,12 +164,12 @@
(match l (match l
[`(,(? string? keyword) [`(,(? string? keyword)
,(? string? result) ,(? string? result)
,(? bytes? file) ,(? path-string? file)
,(? string? label) ,(? string? label)
,(? string? title)) ,(? string? title))
(list keyword (list keyword
result result
(bytes->path file) (string->path file)
label label
title)] title)]
[else (fail)])) [else (fail)]))
@ -402,6 +395,7 @@
(build-path doc file)))) (build-path doc file))))
(list-ref v 3) ; label (list-ref v 3) ; label
ckey)))]) ckey)))])
(unless regexp? (unless regexp?
(for-each (for-each
(lambda (v) (lambda (v)