]> git.donarmstrong.com Git - lilypond.git/blob - scm/framework-ps.scm
Merge remote branch 'origin/master' into release/unstable
[lilypond.git] / scm / framework-ps.scm
1 ;;;; This file is part of LilyPond, the GNU music typesetter.
2 ;;;;
3 ;;;; Copyright (C) 2004--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
4 ;;;;
5 ;;;; LilyPond is free software: you can redistribute it and/or modify
6 ;;;; it under the terms of the GNU General Public License as published by
7 ;;;; the Free Software Foundation, either version 3 of the License, or
8 ;;;; (at your option) any later version.
9 ;;;;
10 ;;;; LilyPond is distributed in the hope that it will be useful,
11 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 ;;;; GNU General Public License for more details.
14 ;;;;
15 ;;;; You should have received a copy of the GNU General Public License
16 ;;;; along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
17
18 (define-module (scm framework-ps))
19
20 ;;; this is still too big a mess.
21
22 (use-modules (ice-9 string-fun)
23              (guile)
24              (scm page)
25              (scm paper-system)
26              (srfi srfi-1)
27              (srfi srfi-13)
28              (scm clip-region)
29              (lily))
30
31 (define format ergonomic-simple-format)
32
33 (define framework-ps-module (current-module))
34
35 ;;(define pdebug stderr)
36 (define (pdebug . rest) #f)
37
38 (define-public (ps-font-command font)
39   (let* ((name (ly:font-file-name font))
40          (magnify (ly:font-magnification font)))
41     (string-append
42      "magfont"
43      (ly:string-substitute
44       " " "_"
45       (ly:string-substitute
46        "/" "_"
47        (ly:string-substitute
48         "%" "_" name)))
49      "m" (string-encode-integer (inexact->exact (round (* 1000 magnify)))))))
50
51 (define (ps-define-pango-pf pango-pf font-name scaling)
52   "")
53
54 (define (ps-define-font font font-name scaling)
55   (if (ly:bigpdfs)
56       (string-append
57        "/" (ps-font-command font) "-N"
58        " { /" font-name "-N"
59        " " (ly:number->string scaling) " output-scale div selectfont }"
60        " bind def\n"
61        "/" (ps-font-command font) "-S"
62        " { /" font-name "-S"
63        " " (ly:number->string scaling) " output-scale div selectfont }"
64        " bind def\n"
65        "/" (ps-font-command font) "-O"
66        " { /" font-name "-O"
67        " " (ly:number->string scaling) " output-scale div selectfont }"
68        " bind def\n"
69        "/help" font-name " {\n  gsave\n  1 setgray\n  /"
70        font-name "-N"
71        " 0.001 selectfont 0 0 moveto <01> show\n  /"
72        font-name "-S"
73        " 0.001 selectfont 0 0 moveto <01> show\n  /"
74        font-name "-O"
75        " 0.001 selectfont 0 0 moveto <01> show\n  grestore\n} def\n")
76       (string-append
77        "/" (ps-font-command font)
78        " { /" font-name
79        " " (ly:number->string scaling) " output-scale div selectfont }"
80        " bind def\n")))
81
82 ;; FIXME: duplicated in other output backends
83 ;; FIXME: silly interface name
84 (define (output-variables layout)
85   ;; FIXME: duplicates output-layout's scope-entry->string, mostly
86   (define (value->string val)
87     (cond
88      ((string? val) (string-append "(" val ")"))
89      ((symbol? val) (symbol->string val))
90      ((number? val) (number->string val))
91      (else "")))
92
93   (define (output-entry ps-key ly-key)
94     (string-append
95      "/" ps-key " "
96      (value->string (ly:output-def-lookup layout ly-key)) " def\n"))
97
98   (string-append
99    "/lily-output-units "
100    (number->string (/ (ly:bp 1))) " def %% millimeter\n"
101    (output-entry "staff-line-thickness" 'line-thickness)
102    (output-entry "line-width" 'line-width)
103    (output-entry "paper-size" 'papersizename)
104    (output-entry "staff-height" 'staff-height)  ;junkme.
105    "/output-scale "
106    (number->string (ly:output-def-lookup layout 'output-scale)) " def\n"
107    (output-entry "page-height" 'paper-height)
108    (output-entry "page-width" 'paper-width)
109    (if (ly:get-option 'strokeadjust) "true setstrokeadjust\n" "")
110    ))
111
112 (define (dump-page outputter page page-number page-count landscape?)
113   (ly:outputter-dump-string
114    outputter
115    (string-append
116     (format #f "%%Page: ~a ~a\n" page-number page-number)
117     "%%BeginPageSetup\n"
118     (if landscape?
119         "page-width output-scale lily-output-units mul mul 0 translate 90 rotate\n"
120         "")
121     "%%EndPageSetup\n"
122     "\n"
123     "gsave 0 paper-height translate set-ps-scale-to-lily-scale\n"
124     "/helpEmmentaler-Brace where {pop helpEmmentaler-Brace} if\n"
125     "/helpEmmentaler-11 where {pop helpEmmentaler-11} if\n"
126     "/helpEmmentaler-13 where {pop helpEmmentaler-13} if\n"
127     "/helpEmmentaler-14 where {pop helpEmmentaler-14} if\n"
128     "/helpEmmentaler-16 where {pop helpEmmentaler-16} if\n"
129     "/helpEmmentaler-18 where {pop helpEmmentaler-18} if\n"
130     "/helpEmmentaler-20 where {pop helpEmmentaler-20} if\n"
131     "/helpEmmentaler-23 where {pop helpEmmentaler-23} if\n"
132     "/helpEmmentaler-26 where {pop helpEmmentaler-26} if\n"))
133   (ly:outputter-dump-stencil outputter page)
134   (ly:outputter-dump-string outputter "stroke grestore\nshowpage\n"))
135
136 (define (supplies-or-needs paper load-fonts?)
137   (define (extract-names font)
138     (if (ly:pango-font? font)
139         (map car (ly:pango-font-physical-fonts font))
140         (list (ly:font-name font))))
141
142   (let* ((fonts (ly:paper-fonts paper))
143          (names (append-map extract-names fonts)))
144     (string-concatenate
145      (map (lambda (f)
146             (format #f
147                     (if load-fonts?
148                         "%%DocumentSuppliedResources: font ~a\n"
149                         "%%DocumentNeededResources: font ~a\n")
150                     f))
151           (uniq-list (sort names string<?))))))
152
153 (define (eps-header paper bbox load-fonts?)
154   (string-append "%!PS-Adobe-2.0 EPSF-2.0\n"
155                  "%%Creator: LilyPond " (lilypond-version) "\n"
156                  "%%BoundingBox: "
157                  (string-join (map ly:number->string bbox) " ") "\n"
158                  "%%Orientation: "
159                  (if (eq? (ly:output-def-lookup paper 'landscape) #t)
160                      "Landscape\n"
161                      "Portrait\n")
162                  (supplies-or-needs paper load-fonts?)
163                  "%%EndComments\n"))
164
165 (define (ps-document-media paper)
166   (let* ((w (/ (*
167                 (ly:output-def-lookup paper 'output-scale)
168                 (ly:output-def-lookup paper 'paper-width)) (ly:bp 1)))
169          (h (/ (*
170                 (ly:output-def-lookup paper 'paper-height)
171                 (ly:output-def-lookup paper 'output-scale))
172                (ly:bp 1)))
173          (landscape? (eq? (ly:output-def-lookup paper 'landscape) #t)))
174     (ly:format "%%DocumentMedia: ~a ~2f ~2f ~a ~a ~a\n"
175                (ly:output-def-lookup paper 'papersizename)
176                (if landscape? h w)
177                (if landscape? w h)
178                80   ;; weight
179                "()" ;; color
180                "()" ;; type
181                )))
182
183 (define (file-header paper page-count load-fonts?)
184   (string-append "%!PS-Adobe-3.0\n"
185                  "%%Creator: LilyPond " (lilypond-version) "\n"
186                  "%%Pages: " (number->string page-count) "\n"
187                  "%%PageOrder: Ascend\n"
188                  "%%Orientation: "
189                  (if (eq? (ly:output-def-lookup paper 'landscape) #t)
190                      "Landscape\n"
191                      "Portrait\n")
192                  (ps-document-media paper)
193                  (supplies-or-needs paper load-fonts?)
194                  "%%EndComments\n"))
195
196 (define (procset file-name)
197   (format #f
198           "%%BeginResource: procset (~a) 1 0
199 ~a
200 %%EndResource
201 "
202           file-name (cached-file-contents file-name)))
203
204 (define (embed-document file-name)
205   (format #f "%%BeginDocument: ~a
206 ~a
207 %%EndDocument
208 "
209           file-name (cached-file-contents file-name)))
210
211 (define (setup-variables paper)
212   (string-append
213    "\n"
214    (define-fonts paper ps-define-font ps-define-pango-pf)
215    (output-variables paper)))
216
217 (define (cff-font? font)
218   (let* ((cff-string (ly:otf-font-table-data font "CFF ")))
219     (> (string-length cff-string) 0)))
220
221 (define-public (ps-embed-cff body font-set-name version)
222   (let* ((binary-data
223           (string-append
224            (format #f "/~a ~s StartData " font-set-name (string-length body))
225            body))
226          (header
227           (format #f
228                   "%%BeginResource: font ~a
229 %!PS-Adobe-3.0 Resource-FontSet
230 %%DocumentNeededResources: ProcSet (FontSetInit)
231 %%Title: (FontSet/~a)
232 %%Version: ~s
233 %%EndComments
234 %%IncludeResource: ProcSet (FontSetInit)
235 %%BeginResource: FontSet (~a)
236 /FontSetInit /ProcSet findresource begin
237 %%BeginData: ~s Binary Bytes
238 "
239                   font-set-name font-set-name version font-set-name
240                   (string-length binary-data)))
241          (footer "\n%%EndData
242 %%EndResource
243 %%EndResource\n"))
244     (string-append header
245                    binary-data
246                    footer)))
247
248 (define (write-preamble paper load-fonts? port)
249   (define (internal-font? file-name)
250     (or (string-startswith file-name "Emmentaler")
251         (string-startswith file-name "emmentaler")
252         ))
253
254   (define (load-font-via-GS font-name-filename)
255     (define (ps-load-file file-name)
256       (if (string? file-name)
257           (if (string-contains file-name (ly:get-option 'datadir))
258               (begin
259                 (set! file-name (ly:string-substitute (ly:get-option 'datadir)
260                                                       "" file-name))
261                 (format #f
262                         "lilypond-datadir (~a) concatstrings (r) file .loadfont\n"
263                         file-name))
264               (format #f "(~a) (r) file .loadfont\n" file-name))
265           (format #f "% cannot find font file: ~a\n" file-name)))
266
267     (let* ((font (car font-name-filename))
268            (name (cadr font-name-filename))
269            (file-name (caddr font-name-filename))
270            (bare-file-name (ly:find-file file-name)))
271       (cons name
272             (if (mac-font? bare-file-name)
273                 (handle-mac-font name bare-file-name)
274                 (cond
275                  ((internal-font? file-name)
276                   (ps-load-file (ly:find-file
277                                  (format #f "~a.otf" file-name))))
278                  ((string? bare-file-name)
279                   (ps-load-file file-name))
280                  (else
281                   (ly:warning (_ "cannot embed ~S=~S") name file-name)
282                   ""))))))
283
284   (define (dir-join a b)
285     (if (equal? a "")
286         b
287         (string-append a "/" b)))
288
289   (define (dir-listing dir-name)
290     (define (dir-helper dir lst)
291       (let ((e (readdir dir)))
292         (if (eof-object? e)
293             lst
294             (dir-helper dir (cons e lst)))))
295     (reverse (dir-helper (opendir dir-name) '())))
296
297   (define (handle-mac-font name file-name)
298     (let* ((dir-name (tmpnam))
299            (files '())
300            (status 0)
301            (embed #f)
302            (cwd (getcwd)))
303       (mkdir dir-name #o700)
304       (chdir dir-name)
305       (set! status (ly:system (list "fondu" "-force" file-name)))
306       (chdir cwd)
307       (set! files (dir-listing dir-name))
308       (for-each
309        (lambda (f)
310          (let* ((full-name (dir-join dir-name f)))
311            (if (and (not embed)
312                     (equal? 'regular (stat:type (stat full-name)))
313                     (equal? name (ly:ttf-ps-name full-name)))
314                (set! embed (font-file-as-ps-string name full-name 0)))
315            (if (or (equal? "." f)
316                    (equal? ".." f))
317                #t
318                (delete-file full-name))))
319        files)
320       (rmdir dir-name)
321       (if (not embed)
322           (begin
323             (set! embed "% failed\n")
324             (ly:warning (_ "cannot extract file matching ~a from ~a")
325                         name file-name)))
326       embed))
327
328   (define (font-file-as-ps-string name file-name font-index)
329     (let* ((downcase-file-name (string-downcase file-name)))
330       (cond
331        ((and file-name (string-endswith downcase-file-name ".pfa"))
332         (embed-document file-name))
333        ((and file-name (string-endswith downcase-file-name ".pfb"))
334         (ly:pfb->pfa file-name))
335        ((and file-name (string-endswith downcase-file-name ".ttf"))
336         (ly:ttf->pfa file-name))
337        ((and file-name (string-endswith downcase-file-name ".ttc"))
338         (ly:ttf->pfa file-name font-index))
339        ((and file-name (string-endswith downcase-file-name ".otf"))
340         (ps-embed-cff (ly:otf->cff file-name) name 0))
341        (else
342         (ly:warning (_ "do not know how to embed ~S=~S") name file-name)
343         ""))))
344
345   (define (mac-font? bare-file-name)
346     (and (eq? PLATFORM 'darwin)
347          bare-file-name
348          (or (string-endswith bare-file-name ".dfont")
349              (= (stat:size (stat bare-file-name)) 0))))
350
351   (define (load-font font-psname-filename-fontindex)
352     (let* ((font (list-ref font-psname-filename-fontindex 0))
353            (name (list-ref font-psname-filename-fontindex 1))
354            (file-name (list-ref font-psname-filename-fontindex 2))
355            (font-index (list-ref font-psname-filename-fontindex 3))
356            (bare-file-name (ly:find-file file-name)))
357       (cons name
358             (cond ((mac-font? bare-file-name)
359                    (handle-mac-font name bare-file-name))
360                   ((and font (cff-font? font))
361                    (ps-embed-cff (ly:otf-font-table-data font "CFF ")
362                                  name
363                                  0))
364                   (bare-file-name (font-file-as-ps-string
365                                    name bare-file-name font-index))
366                   (else
367                    (ly:warning (_ "do not know how to embed font ~s ~s ~s")
368                                name file-name font))))))
369
370   (define (load-fonts paper)
371     (let* ((fonts (ly:paper-fonts paper))
372
373            ;; todo - doc format of list.
374            (all-font-names
375             (map
376              (lambda (font)
377                (cond ((string? (ly:font-file-name font))
378                       (list (list font
379                                   (ly:font-name font)
380                                   (ly:font-file-name font)
381                                   #f)))
382                      ((ly:pango-font? font)
383                       (map (lambda (psname-filename-fontindex)
384                              (list #f
385                                    (list-ref psname-filename-fontindex 0)
386                                    (list-ref psname-filename-fontindex 1)
387                                    (list-ref psname-filename-fontindex 2)))
388                            (ly:pango-font-physical-fonts font)))
389                      (else
390                       (ly:font-sub-fonts font))))
391              fonts))
392            (font-names (uniq-list
393                         (sort (concatenate all-font-names)
394                               (lambda (x y) (string<? (cadr x) (cadr y))))))
395
396            ;; slightly spaghetti-ish: deciding what to load where
397            ;; is smeared out.
398            (font-loader
399             (lambda (name)
400               (cond ((ly:get-option 'gs-load-fonts)
401                      (load-font-via-GS name))
402                     ((ly:get-option 'gs-load-lily-fonts)
403                      (if (or (string-contains (caddr name)
404                                               (ly:get-option 'datadir))
405                              (internal-font? (caddr name)))
406                          (load-font-via-GS name)
407                          (load-font name)))
408                     (else
409                      (load-font name)))))
410            (pfas (map font-loader font-names)))
411       pfas))
412
413
414   (display "%%BeginProlog\n" port)
415   (format
416    port
417    "/lilypond-datadir where {pop} {userdict /lilypond-datadir (~a) put } ifelse"
418    (ly:get-option 'datadir))
419   (if load-fonts?
420       (for-each (lambda (f)
421                   (format port "\n%%BeginFont: ~a\n" (car f))
422                   (display (cdr f) port)
423                   (display "%%EndFont\n" port))
424                 (load-fonts paper)))
425   (if (ly:bigpdfs)
426       (display (procset "encodingdefs.ps") port))
427   (display (setup-variables paper) port)
428
429   ;; adobe note 5002: should initialize variables before loading routines.
430   (display (procset "music-drawing-routines.ps") port)
431   (display (procset "lilyponddefs.ps") port)
432   (display "%%EndProlog\n" port)
433   (display "%%BeginSetup\ninit-lilypond-parameters\n%%EndSetup\n\n" port))
434
435 (define (ps-quote str)
436   (fold
437    (lambda (replacement-list result)
438      (string-join
439       (string-split
440        result
441        (car replacement-list))
442       (cadr replacement-list)))
443    str
444    '((#\\ "\\\\") (#\( "\\(") (#\) "\\)"))))
445
446 ;;; Create DOCINFO pdfmark containing metadata
447 ;;; header fields with pdf prefix override those without the prefix
448 (define (handle-metadata header port)
449   (define (metadata-encode val)
450     ;; First, call ly:encode-string-for-pdf to encode the string (latin1 or
451     ;; utf-16be), then escape all parentheses and backslashes
452     ;; FIXME guile-2.0: use (string->utf16 str 'big) instead
453
454     (ps-quote (ly:encode-string-for-pdf val)))
455   (define (metadata-lookup-output overridevar fallbackvar field)
456     (let* ((overrideval (ly:modules-lookup (list header) overridevar))
457            (fallbackval (ly:modules-lookup (list header) fallbackvar))
458            (val (if overrideval overrideval fallbackval)))
459       (if val
460           (format port "/~a (~a)\n" field (metadata-encode (markup->string val (list header)))))))
461   (display "[ " port)
462   (metadata-lookup-output 'pdfcomposer 'composer "Author")
463   (format port "/Creator (LilyPond ~a)\n" (lilypond-version))
464   (metadata-lookup-output 'pdftitle 'title "Title")
465   (metadata-lookup-output 'pdfsubject 'subject "Subject")
466   (metadata-lookup-output 'pdfkeywords 'keywords "Keywords")
467   (metadata-lookup-output 'pdfmodDate 'modDate "ModDate")
468   (metadata-lookup-output 'pdfsubtitle 'subtitle "Subtitle")
469   (metadata-lookup-output 'pdfcomposer 'composer "Composer")
470   (metadata-lookup-output 'pdfarranger 'arranger "Arranger")
471   (metadata-lookup-output 'pdfpoet 'poet "Poet")
472   (metadata-lookup-output 'pdfcopyright 'copyright "Copyright")
473   (display "/DOCINFO pdfmark\n\n" port))
474
475
476 (define-public (output-framework basename book scopes fields)
477   (let* ((filename (format #f "~a.ps" basename))
478          (outputter (ly:make-paper-outputter
479                      ;; FIXME: better wrap open/open-file,
480                      ;; content-mangling is always bad.
481                      ;; MINGW hack: need to have "b"inary for embedding CFFs
482                      (open-file filename "wb")
483                      'ps))
484          (paper (ly:paper-book-paper book))
485          (header (ly:paper-book-header book))
486          (systems (ly:paper-book-systems book))
487          (page-stencils (map page-stencil (ly:paper-book-pages book)))
488          (landscape? (eq? (ly:output-def-lookup paper 'landscape) #t))
489          (page-number (1- (ly:output-def-lookup paper 'first-page-number)))
490          (page-count (length page-stencils))
491          (port (ly:outputter-port outputter)))
492     (if (ly:get-option 'clip-systems)
493         (clip-system-EPSes basename book))
494     (if (ly:get-option 'dump-signatures)
495         (write-system-signatures basename (ly:paper-book-systems book) 1))
496     (output-scopes scopes fields basename)
497     (display (file-header paper page-count #t) port)
498     ;; don't do BeginDefaults PageMedia: A4
499     ;; not necessary and wrong
500     (write-preamble paper #t port)
501     (if (module? header)
502         (handle-metadata header port))
503     (for-each
504      (lambda (page)
505        (set! page-number (1+ page-number))
506        (dump-page outputter page page-number page-count landscape?))
507      page-stencils)
508     (display "%%Trailer\n%%EOF\n" port)
509     (ly:outputter-close outputter)
510     (postprocess-output book framework-ps-module filename
511                         (ly:output-formats))))
512
513 (define-public (dump-stencil-as-EPS paper dump-me filename
514                                     load-fonts)
515   (let* ((xext (ly:stencil-extent dump-me X))
516          (yext (ly:stencil-extent dump-me Y))
517          (padding (ly:get-option 'eps-box-padding))
518          (left-overshoot (if (number? padding)
519                              (* -1 padding (ly:output-def-lookup paper 'mm))
520                              #f))
521          (bbox
522           (map
523            (lambda (x)
524              (if (or (nan? x) (inf? x)
525                      ;; FIXME: huh?
526                      (equal? (format #f "~S" x) "+#.#")
527                      (equal? (format #f "~S" x) "-#.#"))
528                  0.0 x))
529
530            ;; the left-overshoot is to make sure that
531            ;; bar numbers stick out of margin uniformly.
532            ;;
533            (list
534             (if (number? left-overshoot)
535                 (min left-overshoot (car xext))
536                 (car xext))
537             (car yext) (cdr xext) (cdr yext)))))
538     (dump-stencil-as-EPS-with-bbox paper dump-me filename load-fonts bbox)))
539
540 (define-public (dump-stencil-as-EPS-with-bbox paper dump-me filename
541                                               load-fonts
542                                               bbox)
543   "Create an EPS file from stencil @var{dump-me} to @var{filename}.
544 @var{bbox} has format @code{(left-x, lower-y, right-x, upper-y)}.  If
545 @var{load-fonts} set, include fonts inline."
546   (define (to-rounded-bp-box box)
547     "Convert box to 1/72 inch with rounding to enlarge the box."
548     (let* ((scale (ly:output-def-lookup paper 'output-scale))
549            (strip-non-number (lambda (x)
550                                (if (or (nan? x)
551                                        (inf? x))
552                                    0.0
553                                    x)))
554            (directed-round (lambda (x rounder)
555                              (inexact->exact
556                               (rounder (/ (* (strip-non-number x) scale)
557                                           (ly:bp 1)))))))
558       (list (directed-round (car box) floor)
559             (directed-round (cadr box) floor)
560             (directed-round (max (1+ (car box)) (caddr box)) ceiling)
561             (directed-round (max (1+ (cadr box)) (cadddr box)) ceiling))))
562
563   (let* ((outputter (ly:make-paper-outputter
564                      ;; FIXME: better wrap open/open-file,
565                      ;; content-mangling is always bad.
566                      ;; MINGW hack: need to have "b"inary for embedding CFFs
567                      (open-file (format #f "~a.eps" filename) "wb")
568                      'ps))
569          (port (ly:outputter-port outputter))
570          (rounded-bbox (to-rounded-bp-box bbox))
571          (port (ly:outputter-port outputter))
572          (header (eps-header paper rounded-bbox load-fonts)))
573     (display header port)
574     (write-preamble paper load-fonts port)
575     (display "/mark_page_link { pop pop pop pop pop } bind def\n" port)
576     (display "gsave set-ps-scale-to-lily-scale\n" port)
577     (display "/helpEmmentaler-Brace where {pop helpEmmentaler-Brace} if\n" port)
578     (display "/helpEmmentaler-11 where {pop helpEmmentaler-11} if\n" port)
579     (display "/helpEmmentaler-13 where {pop helpEmmentaler-13} if\n" port)
580     (display "/helpEmmentaler-14 where {pop helpEmmentaler-14} if\n" port)
581     (display "/helpEmmentaler-16 where {pop helpEmmentaler-16} if\n" port)
582     (display "/helpEmmentaler-18 where {pop helpEmmentaler-18} if\n" port)
583     (display "/helpEmmentaler-20 where {pop helpEmmentaler-20} if\n" port)
584     (display "/helpEmmentaler-23 where {pop helpEmmentaler-23} if\n" port)
585     (display "/helpEmmentaler-26 where {pop helpEmmentaler-26} if\n" port)
586     (ly:outputter-dump-stencil outputter dump-me)
587     (display "stroke grestore\n%%Trailer\n%%EOF\n" port)
588     (ly:outputter-close outputter)))
589
590 (define (clip-systems-to-region basename paper systems region do-pdf do-png)
591   (let* ((extents-system-pairs
592           (filtered-map (lambda (paper-system)
593                           (let* ((x-ext (system-clipped-x-extent
594                                          (paper-system-system-grob paper-system)
595                                          region)))
596                             (if x-ext
597                                 (cons x-ext paper-system)
598                                 #f)))
599                         systems))
600          (count 0))
601     (for-each
602      (lambda (ext-system-pair)
603        (let* ((xext (car ext-system-pair))
604               (paper-system (cdr ext-system-pair))
605               (yext (paper-system-extent paper-system Y))
606               (bbox (list (car xext) (car yext)
607                           (cdr xext) (cdr yext)))
608               (filename (if (< 0 count)
609                             (format #f "~a-~a" basename count)
610                             basename)))
611          (set! count (1+ count))
612          (dump-stencil-as-EPS-with-bbox paper
613                                         (paper-system-stencil paper-system)
614                                         filename
615                                         (ly:get-option 'include-eps-fonts)
616                                         bbox)
617          (if do-pdf
618              (postscript->pdf 0 0 (format #f "~a.eps" filename)))
619          (if do-png
620              (postscript->png (ly:get-option 'resolution) 0 0
621                               (format #f "~a.eps" filename)))))
622      extents-system-pairs)))
623
624 (define-public (clip-system-EPSes basename paper-book)
625   (define do-pdf
626     (member "pdf" (ly:output-formats)))
627   (define do-png
628     (member "png" (ly:output-formats)))
629
630   (define (clip-score-systems basename systems)
631     (let* ((layout (ly:grob-layout (paper-system-system-grob (car systems))))
632            (regions (ly:output-def-lookup layout 'clip-regions)))
633       (for-each
634        (lambda (region)
635          (clip-systems-to-region
636           (format #f "~a-from-~a-to-~a-clip"
637                   basename
638                   (rhythmic-location->file-string (car region))
639                   (rhythmic-location->file-string (cdr region)))
640           layout systems region
641           do-pdf do-png))
642        regions)))
643
644   ;; partition in system lists sharing their layout blocks
645   (let* ((systems (ly:paper-book-systems paper-book))
646          (count 0)
647          (score-system-list '()))
648     (fold
649      (lambda (system last-system)
650        (if (not (and last-system
651                      (equal? (paper-system-layout last-system)
652                              (paper-system-layout system))))
653            (set! score-system-list (cons '() score-system-list)))
654        (if (paper-system-layout system)
655            (set-car! score-system-list (cons system (car score-system-list))))
656        ;; pass value.
657        system)
658      #f
659      systems)
660     (for-each (lambda (system-list)
661                 ;; filter out headers and top-level markup
662                 (if (pair? system-list)
663                     (clip-score-systems
664                      (if (> count 0)
665                          (format #f "~a-~a" basename count)
666                          basename)
667                      system-list)))
668               score-system-list)))
669
670 (define-public (output-preview-framework basename book scopes fields)
671   (let* ((paper (ly:paper-book-paper book))
672          (systems (relevant-book-systems book))
673          (to-dump-systems (relevant-dump-systems systems)))
674     (dump-stencil-as-EPS paper
675                          (stack-stencils Y DOWN 0.0
676                                          (map paper-system-stencil
677                                               (reverse to-dump-systems)))
678                          (format #f "~a.preview" basename)
679                          #t)
680     (postprocess-output book framework-ps-module
681                         (format #f "~a.preview.eps" basename)
682                         (cons "png" (ly:output-formats)))))
683
684 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
685
686 (define (output-width-height defs)
687   (let* ((landscape (ly:output-def-lookup defs 'landscape))
688          (output-scale (ly:output-def-lookup defs 'output-scale))
689          (convert (lambda (x)
690                     (* x output-scale (/ (ly:bp 1)))))
691          (paper-width (convert (ly:output-def-lookup defs 'paper-width)))
692          (paper-height (convert (ly:output-def-lookup defs 'paper-height)))
693          (w (if landscape paper-height paper-width))
694          (h (if landscape paper-width paper-height)))
695     (cons w h)))
696
697 (define (output-resolution defs)
698   (let ((defs-resolution (ly:output-def-lookup defs 'pngresolution)))
699     (if (number? defs-resolution)
700         defs-resolution
701         (ly:get-option 'resolution))))
702
703 (define (output-filename name)
704   (if (equal? (basename name ".ps") "-")
705       (string-append "./" name)
706       name))
707
708 (define-public (convert-to-pdf book name)
709   (let* ((defs (ly:paper-book-paper book))
710          (width-height (output-width-height defs))
711          (width (car width-height))
712          (height (cdr width-height))
713          (filename (output-filename name)))
714     (postscript->pdf width height filename)))
715
716 (define-public (convert-to-png book name)
717   (let* ((defs (ly:paper-book-paper book))
718          (resolution (output-resolution defs))
719          (width-height (output-width-height defs))
720          (width (car width-height))
721          (height (cdr width-height))
722          (filename (output-filename name)))
723     (postscript->png resolution width height filename)))
724
725 (define-public (convert-to-ps book name)
726   #t)
727
728 (define-public (output-classic-framework basename book scopes fields)
729   (ly:error (_ "\nThe PostScript backend does not support the
730 system-by-system output.  For that, use the EPS backend instead,
731
732   lilypond -dbackend=eps FILE
733
734 If have cut & pasted a lilypond fragment from a webpage, be sure
735 to only remove anything before
736
737   %% ****************************************************************
738   %% Start cut-&-pastable-section
739   %% ****************************************************************
740 ")))