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/quadwriter/render.rkt

183 lines
8.1 KiB
Racket

5 years ago
#lang debug racket/base
5 years ago
(require (for-syntax racket/base racket/syntax)
racket/match
5 years ago
txexpr/base
racket/contract
racket/file
pitfall
quad
5 years ago
hyphenate
5 years ago
sugar/coerce
sugar/debug
"attrs.rkt"
"param.rkt"
"font.rkt"
5 years ago
"layout.rkt"
"log.rkt")
5 years ago
(provide (all-defined-out))
(define default-page-size "letter")
(define default-page-orientation "tall")
(define (setup-pdf-path pdf-path-arg)
(define fallback-path (build-path (find-system-path 'temp-dir) "quadwriter-temp.pdf"))
(path->complete-path (simplify-path (expand-user-path (->path (or pdf-path-arg fallback-path))))))
5 years ago
(define-syntax (define-break-types stx)
(syntax-case stx ()
[(_ ALL-BREAKS-ID . TYPES)
(with-syntax ([((TYPE-BREAK TYPE-STR Q:TYPE-BREAK) ...)
(for/list ([type (in-list (syntax->list #'TYPES))])
(list
(format-id #'TYPES "~a-break" type)
(symbol->string (syntax->datum type))
(format-id #'TYPES "q:~a-break" type)))])
5 years ago
#'(begin
(define TYPE-BREAK '(q ((break TYPE-STR)))) ...
(define ALL-BREAKS-ID (list (cons TYPE-BREAK Q:TYPE-BREAK) ...))))]))
(define-break-types all-breaks para line page column hr)
5 years ago
(define (replace-breaks x)
(map-elements (λ (el)
5 years ago
(cond
[(assoc el all-breaks) => cdr]
[else el])) x))
5 years ago
5 years ago
(define (handle-hyphenate qs)
;; find quads that want hyphenation and split them into smaller pieces
;; do this before ->string-quad so that it can handle the sizing promises
(apply append
(for/list ([q (in-list qs)])
(match (quad-ref q :hyphenate)
[#true #:when (and (pair? (quad-elems q))
(andmap string? (quad-elems q)))
(for*/list ([str (in-list (quad-elems q))]
[hyphen-char (in-value #\u00AD)]
[hstr (in-value (hyphenate str hyphen-char
#:min-left-length 3
#:min-right-length 3))]
[substr (in-list (regexp-match* (regexp (string hyphen-char)) hstr #:gap-select? #t))])
(struct-copy quad q [elems (list substr)]))]
[_ (list q)]))))
5 years ago
(define (handle-cascading-attrs attrs)
(resolve-font-path attrs)
(resolve-font-size attrs))
5 years ago
(define default-line-height-multiplier 1.42)
(define (setup-qs qx-arg pdf-path)
[define qexpr (replace-breaks qx-arg)]
[define the-quad
5 years ago
(qexpr->quad (list 'q (list->attrs
:font-family default-font-family
:font-size (number->string default-font-size)
:line-height (number->string (floor (* default-line-height-multiplier default-font-size)))) qexpr))]
5 years ago
(setup-font-path-table! pdf-path)
[define atomized-qs
5 years ago
(time-log atomize (atomize the-quad
5 years ago
#:attrs-proc handle-cascading-attrs
#:missing-glyph-action 'fallback
#:fallback "fallback"
#:emoji "fallback-emoji"
#:math "fallback-math"
5 years ago
#:font-path-resolver resolve-font-path))]
5 years ago
[define hyphenated-qs (time-log hyphenate (handle-hyphenate atomized-qs))]
[define typed-quads (map generic->typed-quad hyphenated-qs)]
[define indented-qs (insert-first-line-indents typed-quads)]
5 years ago
indented-qs)
5 years ago
(define (setup-pdf qs pdf-path compress?)
5 years ago
;; page size can be specified by name, or measurements.
;; explicit measurements from page-height and page-width supersede those from page-size.
5 years ago
(match-define (list page-width page-height) (for/list ([k (list :page-width :page-height)])
(match (quad-ref (car qs) k)
[#false #false]
[val (parse-dimension val 'round)])))
5 years ago
;; `make-pdf` will sort out conflicts among page dimensions
5 years ago
(make-pdf #:compress compress?
5 years ago
#:auto-first-page #false
#:output-path pdf-path
#:width (or (debug-page-width) page-width)
#:height (or (debug-page-height) page-height)
5 years ago
#:size (quad-ref (car qs) :page-size default-page-size)
#:orientation (quad-ref (car qs) :page-orientation default-page-orientation)))
5 years ago
(define (setup-margins qs pdf)
(define default-side-margin (min (* 72 1.5) (floor (* .20 (pdf-width pdf)))))
(define default-top-margin (min 72 (floor (* .10 (pdf-height pdf)))))
;; if only left or right margin is provided, copy other value in preference to default margin
(define left
(or (debug-x-margin)
5 years ago
(quad-ref (car qs) :page-margin-left
(λ () (quad-ref (car qs) :page-margin-right default-side-margin)))))
5 years ago
(define right
(or (debug-x-margin)
5 years ago
(quad-ref (car qs) :page-margin-right
(λ () (quad-ref (car qs) :page-margin-left default-side-margin)))))
5 years ago
(define top
(or (debug-y-margin)
5 years ago
(quad-ref (car qs) :page-margin-top
(λ () (quad-ref (car qs) :page-margin-bottom default-top-margin)))))
5 years ago
(define vert-optical-adjustment 10)
(define bottom
(or (debug-y-margin)
5 years ago
(quad-ref (car qs) :page-margin-bottom
(λ () (+ vert-optical-adjustment (quad-ref (car qs) :page-margin-top (* default-top-margin 1.4)))))))
5 years ago
(list left top right bottom))
(define default-column-count 1)
(define (setup-column-count qs)
5 years ago
(define cc (or (debug-column-count) (quad-ref (car qs) :column-count default-column-count)))
5 years ago
(unless (exact-nonnegative-integer? cc)
(raise-argument-error 'render-pdf "positive integer" cc))
cc)
(define default-column-gap 36)
(define (setup-column-gap qs)
5 years ago
(or (debug-column-gap) (quad-ref (car qs) :column-gap default-column-gap)))
5 years ago
5 years ago
(define/contract (render-pdf qx-arg pdf-path-arg
#:replace [replace? #t]
#:compress [compress? #t])
((qexpr? (or/c #false path? path-string?)) (#:replace any/c
#:compress any/c) . ->* . (or/c void? bytes?))
5 years ago
(define pdf-path (setup-pdf-path pdf-path-arg))
(when (and (not replace?) (file-exists? pdf-path))
(raise-argument-error 'render-pdf "path that doesn't exist" pdf-path))
(define qs (setup-qs qx-arg pdf-path))
5 years ago
(parameterize ([current-pdf (setup-pdf qs pdf-path compress?)]
5 years ago
[verbose-quad-printing? #false])
(match-define (list left-margin top-margin right-margin bottom-margin) (setup-margins qs (current-pdf)))
(define printable-width (- (pdf-width (current-pdf)) left-margin right-margin))
(define printable-height (- (pdf-height (current-pdf)) top-margin bottom-margin))
(define column-count (setup-column-count qs))
(define column-gap (setup-column-gap qs))
(define line-wrap-size (/ (- printable-width (* (sub1 column-count) column-gap)) column-count))
5 years ago
(define line-qs (time-log line-wrap (apply-keeps (line-wrap qs line-wrap-size))))
5 years ago
(define col-quad-prototype (struct-copy quad q:column
[size (pt line-wrap-size printable-height)]))
5 years ago
(define column-qs (time-log column-wrap (column-wrap line-qs printable-height column-gap col-quad-prototype)))
5 years ago
(define page-quad-prototype (struct-copy quad q:page
[shift (pt left-margin top-margin)]
[size (pt line-wrap-size printable-height)]))
5 years ago
(define page-qs (time-log page-wrap (page-wrap column-qs printable-width page-quad-prototype)))
5 years ago
5 years ago
(define positioned-qs (time-log position (position (struct-copy quad q:doc [elems page-qs]))))
(time-log draw (draw positioned-qs (current-pdf))))
5 years ago
(if pdf-path-arg
5 years ago
(log-quadwriter-info (format "wrote PDF to ~a" pdf-path))
5 years ago
(begin0
(file->bytes pdf-path)
(delete-file pdf-path))))