]> git.donarmstrong.com Git - lilypond.git/blob - scm/backend-library.scm
Merge remote branch 'origin/master' into release/unstable
[lilypond.git] / scm / backend-library.scm
1 ;;;; This file is part of LilyPond, the GNU music typesetter.
2 ;;;;
3 ;;;; Copyright (C) 2005--2015 Jan Nieuwenhuizen <janneke@gnu.org>
4 ;;;; Han-Wen Nienhuys <hanwen@xs4all.nl>
5 ;;;;
6 ;;;; LilyPond is free software: you can redistribute it and/or modify
7 ;;;; it under the terms of the GNU General Public License as published by
8 ;;;; the Free Software Foundation, either version 3 of the License, or
9 ;;;; (at your option) any later version.
10 ;;;;
11 ;;;; LilyPond is distributed in the hope that it will be useful,
12 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;;; GNU General Public License for more details.
15 ;;;;
16 ;;;; You should have received a copy of the GNU General Public License
17 ;;;; along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18
19 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
20 ;; backend helpers.
21
22 (use-modules (scm ps-to-png)
23              (scm paper-system)
24              (ice-9 optargs))
25
26 (define-public (ly:system command)
27   (ly:debug (_ "Invoking `~a'...") (string-join command))
28   (let ((status (apply ly:spawn command)))
29     (if (> status 0)
30         (begin
31           (ly:warning (_ "`~a' failed (~a)\n") command status)
32           ;; hmmm.  what's the best failure option?
33           (throw 'ly-file-failed)))))
34
35 (define-public (sanitize-command-option str)
36   "Kill dubious shell quoting."
37
38   (string-append
39    "\""
40    (regexp-substitute/global #f "[^-_ 0-9,.a-zA-Z'\"\\]" str 'pre 'post)
41    "\""))
42
43 (define-public (search-executable names)
44   (define (helper path lst)
45     (if (null? (cdr lst))
46         (car lst)
47         (if (search-path path (car lst)) (car lst)
48             (helper path (cdr lst)))))
49
50   (let ((path (parse-path (getenv "PATH"))))
51     (helper path names)))
52
53 (define-public (search-gs)
54
55   ;; must be sure that we don't catch stuff from old GUBs.
56   (search-executable '("gs")))
57
58 (define-public (postscript->pdf paper-width paper-height name)
59   (let* ((pdf-name (string-append
60                     (dir-basename name ".ps" ".eps")
61                     ".pdf"))
62          (is-eps (string-match "\\.eps$" name))
63          (*unspecified* (if #f #f))
64          (cmd
65           (remove (lambda (x) (eq? x *unspecified*))
66                   (list
67                    (search-gs)
68                    (if (ly:get-option 'verbose) *unspecified* "-q")
69                    (if (or (ly:get-option 'gs-load-fonts)
70                            (ly:get-option 'gs-load-lily-fonts)
71                            (eq? PLATFORM 'windows))
72                        "-dNOSAFER"
73                        "-dSAFER")
74
75                    (if is-eps
76                        "-dEPSCrop"
77                        (ly:format "-dDEVICEWIDTHPOINTS=~$" paper-width))
78                    (if is-eps
79                        *unspecified*
80                        (ly:format "-dDEVICEHEIGHTPOINTS=~$" paper-height))
81                    "-dCompatibilityLevel=1.4"
82                    "-dNOPAUSE"
83                    "-dBATCH"
84                    "-r1200"
85                    (if (ly:bigpdfs) "-dSubsetFonts=false")
86                    "-sDEVICE=pdfwrite"
87                    (string-append "-sOutputFile="
88                                   (string-join
89                                    (string-split pdf-name #\%)
90                                    "%%"))
91                    "-c.setpdfwrite"
92                    (string-append "-f" name)))))
93
94     (ly:message (_ "Converting to `~a'...\n") pdf-name)
95     (ly:system cmd)))
96
97 (define-public (postscript->png resolution paper-width paper-height name)
98   (let* ((verbose (ly:get-option 'verbose))
99          (rename-page-1 #f))
100
101     ;; Do not try to guess the name of the png file,
102     ;; GS produces PNG files like BASE-page%d.png.
103     (ly:message (_ "Converting to ~a...") "PNG")
104     (make-ps-images name
105                     #:resolution resolution
106                     #:page-width paper-width
107                     #:page-height paper-height
108                     #:rename-page-1 rename-page-1
109                     #:be-verbose verbose
110                     #:anti-alias-factor (ly:get-option 'anti-alias-factor)
111                     #:pixmap-format (ly:get-option 'pixmap-format))
112     (ly:progress "\n")))
113
114 (define-public (postprocess-output paper-book module filename formats)
115   (let* ((completed (completize-formats formats))
116          (base (dir-basename filename ".ps" ".eps"))
117          (intermediate (remove (lambda (x) (member x formats)) completed)))
118     (for-each (lambda (f)
119                 ((eval (string->symbol (format #f "convert-to-~a" f))
120                        module) paper-book filename)) completed)
121     (if (ly:get-option 'delete-intermediate-files)
122         (for-each (lambda (f)
123                     (if (file-exists? f) (delete-file f)))
124                   (map (lambda (x) (string-append base "." x)) intermediate)))))
125
126 (define-public (completize-formats formats)
127   (define new-fmts '())
128   (if (member "png" formats)
129       (set! formats (cons "ps" formats)))
130   (if (member "pdf" formats)
131       (set! formats (cons "ps" formats)))
132   (for-each (lambda (x)
133               (if (member x formats) (set! new-fmts (cons x new-fmts))))
134             '("ps" "pdf" "png"))
135   (uniq-list (reverse new-fmts)))
136
137 (define (header-to-file file-name key value)
138   (set! key (symbol->string key))
139   (if (not (equal? "-" file-name))
140       (set! file-name (string-append file-name "." key)))
141   (ly:message (_ "Writing header field `~a' to `~a'...")
142               key
143               (if (equal? "-" file-name) "<stdout>" file-name))
144   (if (equal? file-name "-")
145       (display value)
146       (let ((port (open-file file-name "w")))
147         (display value port)
148         (close-port port)))
149
150   (ly:progress "\n")
151   "")
152
153 (define-public (output-scopes scopes fields basename)
154   (define (output-scope scope)
155     (string-concatenate
156      (module-map
157       (lambda (sym var)
158         (let ((val (if (variable-bound? var) (variable-ref var) "")))
159           (if (and (memq sym fields) (string? val))
160               (header-to-file basename sym val))
161           ""))
162       scope)))
163   (string-concatenate (map output-scope scopes)))
164
165 (define-public (relevant-book-systems book)
166   (let ((systems (ly:paper-book-systems book)))
167     ;; skip booktitles.
168     (if (and (not (ly:get-option 'include-book-title-preview))
169              (pair? systems)
170              (ly:prob-property (car systems) 'is-book-title #f))
171         (cdr systems)
172         systems)))
173
174 (define-public (relevant-dump-systems systems)
175   (let ((to-dump-systems '()))
176     (for-each
177      (lambda (sys)
178        (if (or (paper-system-title? sys)
179                (not (pair? to-dump-systems))
180                (paper-system-title? (car to-dump-systems)))
181            (set! to-dump-systems (cons sys to-dump-systems))))
182      systems)
183     to-dump-systems))
184
185 (define missing-stencil-list '())
186
187 (define-public (backend-testing output-module)
188   (define (missing-stencil-expression name)
189     (begin
190       (ly:warning (_ "missing stencil expression `~S'") name)
191       ""))
192
193   (for-each (lambda (x)
194               (if (not (module-defined? output-module x))
195                   (begin
196                     (module-define! output-module x
197                                     (lambda* (#:optional y . z)
198                                              (missing-stencil-expression x)))
199                     (set! missing-stencil-list (cons x missing-stencil-list)))))
200             (ly:all-stencil-commands)))
201
202 (define-public (remove-stencil-warnings output-module)
203   (for-each
204    (lambda (x)
205      (module-remove! output-module x))
206    missing-stencil-list))
207
208 (define (filter-out pred? lst)
209   (filter (lambda (x) (not (pred? x))) lst))
210
211 (define-public (font-name-split font-name)
212   "Return @code{(FONT-NAME . DESIGN-SIZE)} from @var{font-name} string
213 or @code{#f}."
214   (let ((match (regexp-exec (make-regexp "(.*)-([0-9]*)") font-name)))
215     (if (regexp-match? match)
216         (cons (match:substring match 1) (match:substring match 2))
217         (cons font-name-designsize #f))))
218
219 ;; Example of a pango-physical-font
220 ;; ("Emmentaler-11" "/home/janneke/vc/lilypond/out/share/lilypond/current/fonts/otf/emmentaler-11.otf" 0)
221 (define-public (pango-pf-font-name pango-pf)
222   "Return the font-name of the pango physical font @var{pango-pf}."
223   (list-ref pango-pf 0))
224 (define-public (pango-pf-file-name pango-pf)
225   "Return the file-name of the pango physical font @var{pango-pf}."
226   (list-ref pango-pf 1))
227 (define-public (pango-pf-fontindex pango-pf)
228   "Return the fontindex of the pango physical font @var{pango-pf}."
229   (list-ref pango-pf 2))
230
231 (define (pango-font-name pango-font)
232   (let ((pf-fonts (ly:pango-font-physical-fonts pango-font)))
233     (if (pair? pf-fonts)
234         (pango-pf-font-name (car pf-fonts))
235         "")))
236
237 (define-public (define-fonts paper define-font define-pango-pf)
238   "Return a string of all fonts used in @var{paper}, invoking the functions
239 @var{define-font} and @var{define-pango-pf} for producing the actual font
240 definition."
241
242   (let* ((font-list (ly:paper-fonts paper))
243          (pango-fonts (filter ly:pango-font? font-list))
244          (other-fonts (filter-out ly:pango-font? font-list))
245          (other-font-names (map ly:font-name other-fonts))
246          (pango-only-fonts
247           (filter-out (lambda (x)
248                         (member (pango-font-name x) other-font-names))
249                       pango-fonts)))
250
251     (define (font-load-command font)
252       (let* ((font-name (ly:font-name font))
253              (designsize (ly:font-design-size font))
254              (magnification (* (ly:font-magnification font)))
255              (ops (ly:output-def-lookup paper 'output-scale))
256              (scaling (* ops magnification designsize)))
257         (if (equal? font-name "unknown")
258             (display (list font font-name)))
259         (define-font font font-name scaling)))
260
261     (define (pango-font-load-command pango-font)
262       (let* ((pf-fonts (ly:pango-font-physical-fonts pango-font))
263              (pango-pf (if (pair? pf-fonts) (car pf-fonts) '("" "" 0)))
264              (font-name (pango-pf-font-name pango-pf))
265              (scaling (ly:output-def-lookup paper 'output-scale)))
266         (if (equal? font-name "unknown")
267             (display (list pango-font font-name)))
268         (define-pango-pf pango-pf font-name scaling)))
269
270     (string-append
271      (string-concatenate (map font-load-command other-fonts))
272      (string-concatenate (map pango-font-load-command pango-only-fonts)))))