add fetch-blueboxes-method-tags and improve the sanitization of the blueboxes data

This commit is contained in:
Robby Findler 2015-04-15 03:39:48 -05:00
parent 39e0f6aecd
commit e6630f0e97

View File

@ -2,16 +2,20 @@
(require setup/dirs (require setup/dirs
racket/serialize racket/serialize
racket/contract racket/contract
scribble/core) racket/match
scribble/core
scribble/tag)
(provide (provide
(contract-out (contract-out
[fetch-blueboxes-strs (->* (tag?) (#:blueboxes-cache blueboxes-cache?) [fetch-blueboxes-strs (->* (tag?) (#:blueboxes-cache blueboxes-cache?)
(or/c #f (non-empty-listof string?)))] (or/c #f (non-empty-listof string?)))]
[make-blueboxes-cache (->* (boolean?) (#:blueboxes-dirs (listof path?)) blueboxes-cache?)] [make-blueboxes-cache (->* (boolean?) (#:blueboxes-dirs (listof path?)) blueboxes-cache?)]
[blueboxes-cache? (-> any/c boolean?)])) [blueboxes-cache? (-> any/c boolean?)]
[fetch-blueboxes-method-tags (->* (symbol?) (#:blueboxes-cache blueboxes-cache?)
(listof method-tag?))]))
(struct blueboxes-cache (info-or-paths) #:mutable) (struct blueboxes-cache (info-or-paths method->tags) #:mutable)
(define (make-blueboxes-cache (define (make-blueboxes-cache
populate? populate?
#:blueboxes-dirs #:blueboxes-dirs
@ -20,26 +24,23 @@
(directory-list d) (directory-list d)
'()))]) '()))])
(build-path d c))]) (build-path d c))])
(define cache (blueboxes-cache blueboxes-dirs)) (define cache (blueboxes-cache blueboxes-dirs #f))
(when populate? (populate-cache! cache)) (when populate? (populate-cache! cache))
cache) cache)
(define (fetch-blueboxes-strs tag #:blueboxes-cache [cache (make-blueboxes-cache #f)]) (define (fetch-blueboxes-strs tag #:blueboxes-cache [cache (make-blueboxes-cache #f)])
(define plain-strs (fetch-strs-for-single-tag tag cache)) (define plain-strs (fetch-strs-for-single-tag tag cache))
(cond (cond
[(and plain-strs [(and plain-strs (definition-tag? tag))
(pair? tag)
(eq? (car tag) 'def))
(define constructor-strs (define constructor-strs
(fetch-strs-for-single-tag (cons 'constructor (cdr tag)) cache)) (fetch-strs-for-single-tag
(if constructor-strs (class/interface-tag->constructor-tag
(definition-tag->class/interface-tag tag))
cache))
(append plain-strs (append plain-strs
'("") (if constructor-strs '("") '())
;; cdr drops the "white label" line (constructor, presumably) (if constructor-strs (cdr constructor-strs) '()))]
(cdr constructor-strs)) [else plain-strs]))
plain-strs)]
[else
plain-strs]))
(define (fetch-strs-for-single-tag tag cache) (define (fetch-strs-for-single-tag tag cache)
(populate-cache! cache) (populate-cache! cache)
@ -47,6 +48,7 @@
(define offset+lens (hash-ref (list-ref ent 2) tag #f)) (define offset+lens (hash-ref (list-ref ent 2) tag #f))
(cond (cond
[offset+lens [offset+lens
(define lines
(apply (apply
append append
(for/list ([offset+len (in-list offset+lens)]) (for/list ([offset+len (in-list offset+lens)])
@ -57,15 +59,35 @@
(port-count-lines! port) (port-count-lines! port)
(file-position port (+ (car offset+len) offset)) (file-position port (+ (car offset+len) offset))
(for/list ([i (in-range (cdr offset+len))]) (for/list ([i (in-range (cdr offset+len))])
(read-line port))))))] (read-line port)))))))
(cond
[(ormap eof-object? lines) #f]
[else lines])]
[else #f]))) [else #f])))
(define (fetch-blueboxes-method-tags sym #:blueboxes-cache [cache (make-blueboxes-cache #f)])
(populate-cache! cache)
(hash-ref (blueboxes-cache-method->tags cache) sym '()))
(define (populate-cache! cache) (define (populate-cache! cache)
(define cache-content (blueboxes-cache-info-or-paths cache)) (define cache-content (blueboxes-cache-info-or-paths cache))
(when ((listof path?) cache-content) (when ((listof path?) cache-content)
(set-blueboxes-cache-info-or-paths! cache (build-blueboxes-cache cache-content)))) (set-blueboxes-cache-info-or-paths! cache (build-blueboxes-cache cache-content))
(define mtd-table (compute-methods-table (blueboxes-cache-info-or-paths cache)))
(set-blueboxes-cache-method->tags! cache mtd-table)))
;; build-blueboxes-cache : (listof (list file-path int hash[tag -o> (cons int int)])) (define (compute-methods-table lst)
(define meth-ht (make-hash))
(for ([three-tuple (in-list lst)])
(match three-tuple
[`(,file-path ,i ,tag-ht)
(for ([(tag val) (in-hash tag-ht)])
(when (method-tag? tag)
(define-values (class/intf meth) (get-class/interface-and-method tag))
(hash-set! meth-ht meth (cons tag (hash-ref meth-ht meth '())))))]))
meth-ht)
;; build-blueboxes-cache : ... -> (listof (list file-path int valid-blueboxes-info?))
(define (build-blueboxes-cache blueboxes-dirs) (define (build-blueboxes-cache blueboxes-dirs)
(filter (filter
values values
@ -83,8 +105,23 @@
x x
(exn-message x)) (exn-message x))
#f)]) #f)])
(deserialize (read port)))) (define candidate (deserialize (read port)))
(unless (valid-blueboxes-info? candidate)
(error 'build-blueboxes-cache
"blueboxes info didn't have the right shape: ~s"
candidate))
candidate))
(and desed (and desed
(list blueboxes.rktd (list blueboxes.rktd
(+ (string->number first-line) pos) (+ (string->number first-line) pos)
desed)))))))) desed))))))))
(define valid-blueboxes-info?
(hash/c
tag?
(listof (cons/dc [hd exact-nonnegative-integer?]
[tl (hd) (and/c exact-nonnegative-integer?
(>/c hd))]
#:flat))
#:flat? #t))