]> git.donarmstrong.com Git - lilypond.git/blob - scm/backend-library.scm
Issue 4374 / 3: Add copy-binary-file procedure
[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 (copy-binary-file from-name to-name)
115   (if (eq? PLATFORM 'windows)
116       ;; MINGW hack: MinGW Guile's copy-file is broken.
117       ;; It opens files by the text mode instead of the binary mode.
118       ;; (It is fixed from Guile 2.0.9.)
119       ;; By the text mode, copied binary files are broken.
120       ;; So, we open files by the binary mode and copy by ourselves.
121       (let ((port-from (open-file from-name "rb"))
122             (port-to (open-file to-name "wb")))
123         (let loop((c (read-char port-from)))
124           (if (eof-object? c)
125               (begin (close port-from)
126                      (close port-to))
127               (begin (write-char c port-to)
128                      (loop (read-char port-from))))))
129       ;; Cygwin and other platforms:
130       ;; Pass through to copy-file
131       (copy-file from-name to-name)))
132
133 (define-public (make-tmpfile)
134   (let* ((tmpl
135           (string-append (cond
136                           ;; MINGW hack: TMP / TEMP may include
137                           ;; unusable characters (Unicode etc.).
138                           ((eq? PLATFORM 'windows) "./tmp-")
139                           ;; Cygwin can handle any characters
140                           ;; including Unicode.
141                           ((eq? PLATFORM 'cygwin) (string-append
142                                                    (or (getenv "TMP")
143                                                        (getenv "TEMP"))
144                                                    "/"))
145                           ;; Other platforms (POSIX platforms)
146                           ;; use TMPDIR or /tmp.
147                           (else (string-append
148                                  (or (getenv "TMPDIR")
149                                      "/tmp")
150                                  "/")))
151                           "lilypond-XXXXXX"))
152          (port-tmp (mkstemp! tmpl)))
153     (if (eq? PLATFORM 'windows)
154         ;; MINGW hack: MinGW Guile's mkstemp! is broken.
155         ;; It creates a file by the text mode instead of the binary mode.
156         ;; (It is fixed from Guile 2.0.9.)
157         ;; We need the binary mode for embeddings CFFs.
158         ;; So, we re-open the same file by the binary mode.
159         (let* ((filename (port-filename port-tmp))
160                (port (open-file filename "r+b")))
161           (close port-tmp)
162           port)
163         ;; Cygwin and other platforms:
164         ;; Pass through the return value of mkstemp!
165         port-tmp)))
166
167 (define-public (postprocess-output paper-book module filename formats)
168   (let* ((completed (completize-formats formats))
169          (base (dir-basename filename ".ps" ".eps"))
170          (intermediate (remove (lambda (x) (member x formats)) completed)))
171     (for-each (lambda (f)
172                 ((eval (string->symbol (format #f "convert-to-~a" f))
173                        module) paper-book filename)) completed)
174     (if (ly:get-option 'delete-intermediate-files)
175         (for-each (lambda (f)
176                     (if (file-exists? f) (delete-file f)))
177                   (map (lambda (x) (string-append base "." x)) intermediate)))))
178
179 (define-public (completize-formats formats)
180   (define new-fmts '())
181   (if (member "png" formats)
182       (set! formats (cons "ps" formats)))
183   (if (member "pdf" formats)
184       (set! formats (cons "ps" formats)))
185   (for-each (lambda (x)
186               (if (member x formats) (set! new-fmts (cons x new-fmts))))
187             '("ps" "pdf" "png"))
188   (uniq-list (reverse new-fmts)))
189
190 (define (header-to-file file-name key value)
191   (set! key (symbol->string key))
192   (if (not (equal? "-" file-name))
193       (set! file-name (string-append file-name "." key)))
194   (ly:message (_ "Writing header field `~a' to `~a'...")
195               key
196               (if (equal? "-" file-name) "<stdout>" file-name))
197   (if (equal? file-name "-")
198       (display value)
199       (let ((port (open-file file-name "w")))
200         (display value port)
201         (close-port port)))
202
203   (ly:progress "\n")
204   "")
205
206 (define-public (output-scopes scopes fields basename)
207   (define (output-scope scope)
208     (string-concatenate
209      (module-map
210       (lambda (sym var)
211         (let ((val (if (variable-bound? var) (variable-ref var) "")))
212           (if (and (memq sym fields) (string? val))
213               (header-to-file basename sym val))
214           ""))
215       scope)))
216   (string-concatenate (map output-scope scopes)))
217
218 (define-public (relevant-book-systems book)
219   (let ((systems (ly:paper-book-systems book)))
220     ;; skip booktitles.
221     (if (and (not (ly:get-option 'include-book-title-preview))
222              (pair? systems)
223              (ly:prob-property (car systems) 'is-book-title #f))
224         (cdr systems)
225         systems)))
226
227 (define-public (relevant-dump-systems systems)
228   (let ((to-dump-systems '()))
229     (for-each
230      (lambda (sys)
231        (if (or (paper-system-title? sys)
232                (not (pair? to-dump-systems))
233                (paper-system-title? (car to-dump-systems)))
234            (set! to-dump-systems (cons sys to-dump-systems))))
235      systems)
236     to-dump-systems))
237
238 (define missing-stencil-list '())
239
240 (define-public (backend-testing output-module)
241   (define (missing-stencil-expression name)
242     (begin
243       (ly:warning (_ "missing stencil expression `~S'") name)
244       ""))
245
246   (for-each (lambda (x)
247               (if (not (module-defined? output-module x))
248                   (begin
249                     (module-define! output-module x
250                                     (lambda* (#:optional y . z)
251                                              (missing-stencil-expression x)))
252                     (set! missing-stencil-list (cons x missing-stencil-list)))))
253             (ly:all-stencil-commands)))
254
255 (define-public (remove-stencil-warnings output-module)
256   (for-each
257    (lambda (x)
258      (module-remove! output-module x))
259    missing-stencil-list))
260
261 (define (filter-out pred? lst)
262   (filter (lambda (x) (not (pred? x))) lst))
263
264 (define-public (font-name-split font-name)
265   "Return @code{(FONT-NAME . DESIGN-SIZE)} from @var{font-name} string
266 or @code{#f}."
267   (let ((match (regexp-exec (make-regexp "(.*)-([0-9]*)") font-name)))
268     (if (regexp-match? match)
269         (cons (match:substring match 1) (match:substring match 2))
270         (cons font-name-designsize #f))))
271
272 ;; Example of a pango-physical-font
273 ;; ("Emmentaler-11" "/home/janneke/vc/lilypond/out/share/lilypond/current/fonts/otf/emmentaler-11.otf" 0)
274 (define-public (pango-pf-font-name pango-pf)
275   "Return the font-name of the pango physical font @var{pango-pf}."
276   (list-ref pango-pf 0))
277 (define-public (pango-pf-file-name pango-pf)
278   "Return the file-name of the pango physical font @var{pango-pf}."
279   (list-ref pango-pf 1))
280 (define-public (pango-pf-fontindex pango-pf)
281   "Return the fontindex of the pango physical font @var{pango-pf}."
282   (list-ref pango-pf 2))
283
284 (define (pango-font-name pango-font)
285   (let ((pf-fonts (ly:pango-font-physical-fonts pango-font)))
286     (if (pair? pf-fonts)
287         (pango-pf-font-name (car pf-fonts))
288         "")))
289
290 (define-public (define-fonts paper define-font define-pango-pf)
291   "Return a string of all fonts used in @var{paper}, invoking the functions
292 @var{define-font} and @var{define-pango-pf} for producing the actual font
293 definition."
294
295   (let* ((font-list (ly:paper-fonts paper))
296          (pango-fonts (filter ly:pango-font? font-list))
297          (other-fonts (filter-out ly:pango-font? font-list))
298          (other-font-names (map ly:font-name other-fonts))
299          (pango-only-fonts
300           (filter-out (lambda (x)
301                         (member (pango-font-name x) other-font-names))
302                       pango-fonts)))
303
304     (define (font-load-command font)
305       (let* ((font-name (ly:font-name font))
306              (designsize (ly:font-design-size font))
307              (magnification (* (ly:font-magnification font)))
308              (ops (ly:output-def-lookup paper 'output-scale))
309              (scaling (* ops magnification designsize)))
310         (if (equal? font-name "unknown")
311             (display (list font font-name)))
312         (define-font font font-name scaling)))
313
314     (define (pango-font-load-command pango-font)
315       (let* ((pf-fonts (ly:pango-font-physical-fonts pango-font))
316              (pango-pf (if (pair? pf-fonts) (car pf-fonts) '("" "" 0)))
317              (font-name (pango-pf-font-name pango-pf))
318              (scaling (ly:output-def-lookup paper 'output-scale)))
319         (if (equal? font-name "unknown")
320             (display (list pango-font font-name)))
321         (define-pango-pf pango-pf font-name scaling)))
322
323     (string-append
324      (string-concatenate (map font-load-command other-fonts))
325      (string-concatenate (map pango-font-load-command pango-only-fonts)))))