You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/quad/utils-typed.rkt

285 lines
13 KiB
Racket

10 years ago
#lang typed/racket/base
(require/typed hyphenate [hyphenate (String #:min-length Nonnegative-Integer #:min-left-length Nonnegative-Integer #:min-right-length Nonnegative-Integer -> String)])
(require (for-syntax racket/syntax racket/base) racket/string racket/list typed/sugar/debug typed/sugar/define racket/bool racket/function math/flonum)
(require "quads-typed.rkt" "world-typed.rkt" "measure-typed.rkt" "core-types.rkt")
10 years ago
10 years ago
(define/typed+provide (quad-map proc q)
((QuadListItem -> QuadListItem) Quad -> Quad)
(quad (quad-name q) (quad-attrs q) (map proc (quad-list q))))
10 years ago
;; predicate for use below
(define/typed (list-of-mergeable-attrs? xs)
(Any -> Boolean)
10 years ago
(and (list? xs) (andmap (λ(x) (or (quad? x) (quad-attrs? x) (HashableList? x))) xs)))
10 years ago
;; faster than (listof pair?
(define/typed (pairs? x)
(Any -> Boolean)
(and (list? x) (andmap pair? x)))
10 years ago
;; push together multiple attr sources into one list of pairs.
;; mostly a helper function for the two attr functions below.
;; does not resolve duplicates (see merge-attrs for that)
10 years ago
(define/typed+provide (join-attrs quads-or-attrs-or-lists)
((Listof JoinableType) -> QuadAttrs)
(append-map (λ([x : JoinableType])
10 years ago
(cond
[(quad? x) (quad-attrs x)]
[(quad-attrs? x) x]
[else (make-quadattrs x)])) quads-or-attrs-or-lists))
10 years ago
10 years ago
;; merge uses join-attrs to concatenate attributes,
;; but then resolves duplicates, with later ones overriding earlier.
(define/typed+provide (merge-attrs . quads-or-attrs-or-lists)
(JoinableType * -> QuadAttrs)
(define all-attrs (join-attrs quads-or-attrs-or-lists))
(hash->list (make-hash all-attrs)))
10 years ago
;; flatten merges attributes, but applies special logic suitable to flattening
;; for instance, resolving x and y coordinates.
10 years ago
(define-type QuadAttrFloatPair (Pairof QuadAttrKey Float))
(define/typed+provide (flatten-attrs . joinable-items)
(JoinableType * -> QuadAttrs)
(define all-attrs (join-attrs joinable-items))
10 years ago
(define-values (x-attrs y-attrs other-attrs-reversed)
10 years ago
(for/fold ([xas : (Listof QuadAttrFloatPair) null]
[yas : (Listof QuadAttrFloatPair) null]
10 years ago
[oas : (Listof QuadAttr) null])
10 years ago
([attr (in-list all-attrs)])
(cond
10 years ago
[(and (equal? (car attr) world:x-position-key) (flonum? (cdr attr))) (values (cons attr xas) yas oas)]
[(and (equal? (car attr) world:y-position-key) (flonum? (cdr attr))) (values xas (cons attr yas) oas)]
10 years ago
[else (values xas yas (cons attr oas))])))
(: make-cartesian-attr (QuadAttrKey (Listof QuadAttrFloatPair) -> (Listof QuadAttrFloatPair)))
10 years ago
(define (make-cartesian-attr key attrs)
(if (empty? attrs)
empty
10 years ago
(list (cons (ann key QuadAttrKey) (foldl fl+ 0.0 ((inst map Float QuadAttrFloatPair) cdr attrs))))))
10 years ago
(define x-attr (make-cartesian-attr world:x-position-key x-attrs))
(define y-attr (make-cartesian-attr world:y-position-key y-attrs))
;; use hash to resolve duplicate entries by giving priority to later ones
;; then stuff x & y at the front (they will not have duplicates because they were already resolved)
(append x-attr y-attr (hash->list ((inst make-hash QuadAttrKey QuadAttrValue) (reverse other-attrs-reversed)))))
;; ordinary flatten won't work because a quad is a bare list,
;; and flatten will go too far.
;; this version adds a check for quadness to the flattener.
10 years ago
(define/typed+provide (flatten-quadtree quad-tree)
((Treeof Quad) -> (Listof Quad))
(let loop ([sexp quad-tree][acc : (Listof Quad) null])
(cond [(null? sexp) acc]
[(quad? sexp) (cons sexp acc)]
[else (loop (car sexp) (loop (cdr sexp) acc))])))
;; starting with a single nested quad,
10 years ago
;; pushes attributes down from parent quads to children,
;; resulting in a flat list of quads.
10 years ago
(define/typed+provide (flatten-quad q)
(Quad -> (Listof Quad))
(flatten-quadtree
10 years ago
(let loop : (Treeof Quad)
([x : QuadListItem q][parent : Quad (quad 'null '() '())])
(cond
10 years ago
[(quad? x)
(let ([x-with-parent-attrs (quad (quad-name x)
(flatten-attrs parent x) ; child positioned last so it overrides parent attributes
(quad-list x))])
10 years ago
(if (empty? (quad-list x))
x-with-parent-attrs ; no subelements, so stop here
((inst map (Treeof Quad) QuadListItem) (λ(xi) (loop xi x-with-parent-attrs)) (quad-list x))))] ; replace quad with its elements
[else ;; it's a string
(quad (quad-name parent) (quad-attrs parent) (list x))]))))
10 years ago
;; flatten quad as above,
;; then dissolve it into individual character quads while copying attributes
;; input is often large, so macro allows us to avoid allocation
10 years ago
(define/typed+provide (split-quad q)
(Quad -> (Listof Quad))
10 years ago
(: do-explode ((QuadListItem) (Quad) . ->* . (Treeof Quad)))
(define (do-explode x [parent (box)])
(cond
[(quad? x)
(if (empty? (quad-list x))
x ; no subelements, so stop here
((inst map (Treeof Quad) QuadListItem) (λ(xi) (do-explode xi x)) (quad-list x)))] ; replace quad with its elements, exploded
[else ;; it's a string
((inst map (Treeof Quad) QuadListItem) (λ(xc) (quad world:split-quad-key (quad-attrs parent) (list xc))) (regexp-match* #px"." x))]))
(flatten-quadtree (map do-explode (flatten-quad q))))
10 years ago
10 years ago
;; merge chars into words (and boxes), leave the rest
;; if two quads are mergeable types, and have the same attributes,
;; they get merged.
;; input is often large, so macro allows us to avoid allocation
10 years ago
(define/typed+provide (join-quads qs-in)
((Listof Quad) -> (Listof Quad))
10 years ago
(let ([make-matcher (λ ([base-q : Quad])
(λ([q : Quad])
(and (member (quad-name q) world:mergeable-quad-types)
(not (whitespace/nbsp? q))
;; if key doesn't exist, it is compared against the default value.
;; this way, a nonexistent value will test true against a default value.
10 years ago
(andmap (λ([key : QuadAttrKey] [default : QuadAttrValue]) (equal? (quad-attr-ref base-q key default) (quad-attr-ref q key default)))
10 years ago
(ann (list world:font-name-key
world:font-size-key
world:font-weight-key
world:font-style-key) (Listof QuadAttrKey))
10 years ago
(ann (list (world:font-name-default)
(world:font-size-default)
(world:font-weight-default)
(world:font-style-default)) (Listof QuadAttrValue))))))])
10 years ago
(let loop ([qs : (Listof Quad) qs-in][acc : (Listof Quad) null])
10 years ago
(if (null? qs)
10 years ago
(reverse acc)
10 years ago
(let* ([base-q (first qs)]
[mergeable-and-matches-base? (make-matcher base-q)]) ; make a new predicate function for this quad
(cond
[(mergeable-and-matches-base? base-q)
;; take as many quads that match, using the predicate function
(define-values (matching-qs other-qs) (splitf-at (cdr qs) mergeable-and-matches-base?))
10 years ago
(define new-word-strings (append-map quad-list (cons base-q matching-qs)))
(define new-word
(if (andmap string? new-word-strings)
10 years ago
(word (quad-attrs base-q) (string-append* new-word-strings))
(error 'join-quads "expected string")))
10 years ago
(loop other-qs (cons new-word acc))]
;; otherwise move on to the next in line
[else (loop (cdr qs) (cons base-q acc))]))))))
;; propagate x and y adjustments throughout the tree,
;; using parent x and y to adjust children, and so on.
10 years ago
(define/typed+provide (compute-absolute-positions qli)
(Quad -> Quad)
(define result
(let loop : QuadListItem ([qli : QuadListItem qli][parent-x : Float 0.0][parent-y : Float 0.0])
10 years ago
(cond
[(quad? qli)
10 years ago
(define adjusted-x (round-float (+ (assert (quad-attr-ref qli world:x-position-key 0.0) flonum?) parent-x)))
(define adjusted-y (round-float (+ (assert (quad-attr-ref qli world:y-position-key 0.0) flonum?) parent-y)))
(quad (quad-name qli) (merge-attrs qli (list world:x-position-key adjusted-x world:y-position-key adjusted-y)) (map (λ([qlii : QuadListItem]) (loop qlii adjusted-x adjusted-y)) (quad-list qli)))]
10 years ago
[else ;; it's a string
qli])))
(if (string? result)
(error 'compute-absolute-positions "got string as result: ~v" result)
result))
10 years ago
;; these helper functions isolate the generic functionality.
;; problem with quad-attr-set and other Quad->Quad functions
;; is that they strip out type.
;; whereas these "surgical" alternatives can be used when preserving type is essential
(define/typed+provide (attr-change qas kvs)
(QuadAttrs HashableList -> QuadAttrs)
10 years ago
(merge-attrs qas kvs))
(define/typed+provide (attr-delete qas . ks)
(QuadAttrs QuadAttrKey * -> QuadAttrs)
10 years ago
(filter (λ([qa : QuadAttr]) (not (ormap (λ(k) (equal? (car qa) k)) ks))) qas))
;; functionally update a quad attr. Similar to hash-set
10 years ago
(define/typed+provide (quad-attr-set q k v)
10 years ago
(case->
(GroupQuad QuadAttrKey QuadAttrValue -> GroupQuad)
(Quad QuadAttrKey QuadAttrValue -> Quad))
(quad-attr-set* q (list k v)))
;; functionally update multiple quad attrs. Similar to hash-set*
(define/typed+provide (quad-attr-set* q kvs)
10 years ago
(case->
(GroupQuad HashableList -> GroupQuad)
(Quad HashableList -> Quad))
10 years ago
(quad (quad-name q) (attr-change (quad-attrs q) kvs) (quad-list q)))
;; functionally remove multiple quad attrs. Similar to hash-remove*
10 years ago
(define/typed+provide (quad-attr-remove* q . ks)
10 years ago
(case->
(GroupQuad QuadAttrKey * -> GroupQuad)
(Quad QuadAttrKey * -> Quad))
(if (not (empty? (quad-attrs q)))
;; test all ks as a set so that iteration through attrs only happens once
10 years ago
(quad (quad-name q) (apply attr-delete (quad-attrs q) ks) (quad-list q))
q))
;; functionally remove a quad attr. Similar to hash-remove
(provide quad-attr-remove)
(define quad-attr-remove quad-attr-remove*)
;; the last char of a quad
10 years ago
(define/typed+provide (quad-last-char q)
(Quad -> (Option String))
(define split-qs (split-quad q)) ; split makes it simple, but is it too expensive?
(if (or (empty? split-qs) (empty? (quad-list (last split-qs))))
#f
(let ([result((inst car QuadListItem QuadListItem) (quad-list (last split-qs)))])
(if (quad? result)
(error 'quad-last-char "last element is not a string: ~v" result)
result))))
;; the first char of a quad
10 years ago
(define/typed+provide (quad-first-char q)
(Quad -> (Option String))
(define split-qs (split-quad q)) ; explosion makes it simple, but is it too expensive?
(if (or (empty? split-qs) (empty? (quad-list (first split-qs))))
#f
(let ([result((inst car QuadListItem QuadListItem) (quad-list (first split-qs)))])
(if (quad? result)
(error 'quad-first-char "first element is not a string: ~v" result)
10 years ago
result))))
10 years ago
;; todo: how to guarantee line has leading key?
(define/typed+provide (compute-line-height line)
(Quad -> Quad)
10 years ago
(quad-attr-set line world:height-key (quad-attr-ref/parameter line world:leading-key)))
(define/typed (fixed-height? q)
(Quad -> Boolean)
10 years ago
(quad-has-attr? q world:height-key))
(define/typed+provide (quad-height q)
(Quad -> Float)
(display 'foom)
10 years ago
(assert (quad-attr-ref q world:height-key 0.0) flonum?))
10 years ago
;; use heights to compute vertical positions
(define/typed+provide (add-vert-positions starting-quad)
(GroupQuad -> GroupQuad)
10 years ago
(define-values (new-quads final-height)
10 years ago
(for/fold ([new-quads : (Listof Quad) empty][height-so-far : Float 0.0])
([q (in-list (quad-list starting-quad))])
10 years ago
(values (cons (quad-attr-set q world:y-position-key height-so-far) new-quads)
(round-float (+ height-so-far (quad-height q))))))
(quad (quad-name starting-quad) (quad-attrs starting-quad) (reverse new-quads)))
;; recursively hyphenate strings in a quad
10 years ago
(define/typed+provide (hyphenate-quad x)
(QuadListItem -> QuadListItem)
(cond
[(quad? x) (quad-map hyphenate-quad x)]
[(string? x) (hyphenate x
#:min-length 6
#:min-left-length 3
#:min-right-length 3)]
[else x]))
;; just because it comes up a lot
10 years ago
(define/typed+provide (split-last xs)
(All (A) ((Listof A) -> (values (Listof A) A)))
(let-values ([(first-list last-list) ((inst split-at-right A) xs 1)])
10 years ago
(values first-list (car last-list))))
10 years ago
;; like cons, but joins a list to an atom
(provide snoc)
(define-syntax-rule (snoc xs x)
(append xs (list x)))