]> git.donarmstrong.com Git - lilypond.git/blob - scm/backend-library.scm
aa432017db6301e658dd77d65822f229333d6a8b
[lilypond.git] / scm / backend-library.scm
1 ;;;; backend-library.scm -- helpers for the backends.
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;; 
5 ;;;; (c) 2005--2006 Jan Nieuwenhuizen <janneke@gnu.org>
6 ;;;; Han-Wen Nienhuys <hanwen@xs4all.nl>
7
8 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 
9 ;; backend helpers.
10
11 (define-public (ly:system command)
12   (let* ((status 0)
13          (dev-null "/dev/null")
14          (silenced (if (or (ly:get-option 'verbose)
15                            (not (access? dev-null W_OK)))
16                        command
17                        (format #f "~a > ~a 2>&1 " command dev-null))))
18     (if (ly:get-option 'verbose)
19         (ly:message (_ "Invoking `~a'...") command))
20     
21     (set! status (system silenced))
22     (if (> status 0)
23         (begin
24           (ly:message (_ "`~a' failed (~a)") command status)
25           (ly:progress "\n")
26           ;; hmmm.  what's the best failure option? 
27           (throw 'ly-file-failed)))))
28
29 (define-public (sanitize-command-option str)
30   "Kill dubious shell quoting"
31   
32   (string-append
33    "\""
34    (regexp-substitute/global #f "[^-_ 0-9,.a-zA-Z'\"\\]" str 'pre 'post)
35    "\""))
36
37 (define-public (search-executable names)
38   (define (helper path lst)
39     (if (null? (cdr lst))
40         (car lst)
41         (if (search-path path (car lst)) (car lst)
42             (helper path (cdr lst)))))
43
44   (let ((path (parse-path (getenv "PATH"))))
45     (helper path names)))
46
47 (define-public (search-gs)
48   
49   ;; must be sure that we don't catch stuff from old GUBs.
50   (search-executable '("gs")))
51   
52 (define-public (postscript->pdf paper-width paper-height name)
53   (let* ((pdf-name (string-append
54                     (basename (basename name ".ps") ".eps")
55                     ".pdf"))
56          (is-eps (string-match "\\.eps$" name))
57          (paper-size-string (if is-eps
58                                 " -dEPSCrop "
59                                 (format "-dDEVICEWIDTHPOINTS=~,2f \
60 -dDEVICEHEIGHTPOINTS=~,2f "
61                                         paper-width paper-height )))
62
63          (cmd (format #f
64                       "~a\
65  ~a\
66  ~a\
67  ~a\
68  -dCompatibilityLevel=1.4 \
69  -dNOPAUSE\
70  -dBATCH\
71  -r1200 \
72  -sDEVICE=pdfwrite\
73  -sOutputFile=~S\
74  -c .setpdfwrite\
75  -f ~S\
76 "
77                       (search-gs)
78                       (if (ly:get-option 'verbose) "" "-q")
79                       (if (ly:get-option 'gs-load-fonts)
80                           " -dNOSAFER "
81                           " -dSAFER ")
82                       paper-size-string
83                       pdf-name
84                       name)))
85     ;; The wrapper on windows cannot handle `=' signs,
86     ;; gs has a workaround with #.
87     (if (eq? PLATFORM 'windows)
88         (begin
89           (set! cmd (string-regexp-substitute "=" "#" cmd))
90           (set! cmd (string-regexp-substitute "-dSAFER " "" cmd))))
91
92     (if (access? pdf-name W_OK)
93         (delete-file pdf-name))
94
95     (ly:message (_ "Converting to `~a'...") pdf-name)
96     (ly:progress "\n")
97     (ly:system cmd)
98     ))
99
100 (use-modules (scm ps-to-png))
101
102 (define-public (postscript->png resolution paper-width paper-height name)
103     ;; Do not try to guess the name of the png file,
104     ;; GS produces PNG files like BASE-page%d.png.
105     ;;(ly:message (_ "Converting to `~a'...")
106     ;;      (string-append (basename name ".ps") "-page1.png" )))
107   (let ((verbose (ly:get-option 'verbose))
108         (rename-page-1 #f))
109
110     (ly:message (_ "Converting to ~a...") "PNG")
111     (make-ps-images name resolution paper-width paper-height rename-page-1 verbose
112                     (ly:get-option 'anti-alias-factor))
113     (ly:progress "\n")))
114
115 (define-public (postprocess-output paper-book module filename formats)
116   (let*
117       ((completed (completize-formats formats))
118        (base (string-regexp-substitute "\\.[a-z]+$" "" filename))
119        (intermediate (remove
120                       (lambda (x)
121                         (member x formats)) 
122                       completed)))
123
124     (for-each
125      (lambda (f)
126        ((eval (string->symbol (format "convert-to-~a" f)) module)
127         paper-book filename))
128      completed)
129
130     (if (ly:get-option 'delete-intermediate-files)
131         (for-each
132          (lambda (f)
133            (delete-file (string-append base "." f)))
134          intermediate))
135     ))
136
137 (define-public (completize-formats formats)
138   (define new-fmts '())
139
140   (if (member "png" formats)
141       (set! formats (cons "ps" formats)))
142   (if (member "pdf" formats)
143       (set! formats (cons "ps" formats)))
144
145   (for-each
146    (lambda (x)
147      (if (member x formats) (set! new-fmts (cons x new-fmts))))
148    '("tex" "dvi" "ps" "pdf" "png"))
149
150   (uniq-list (reverse new-fmts)))
151
152 (define (header-to-file file-name key value)
153   (set! key (symbol->string key))
154   (if (not (equal? "-" file-name))
155       (set! file-name (string-append file-name "." key)))
156   (ly:message (_ "Writing header field `~a' to `~a'...")
157               key
158               (if (equal? "-" file-name) "<stdout>" file-name))
159   (if (equal? file-name "-")
160       (display value)
161       (display value (open-file file-name "w")))
162   (ly:progress "\n")
163   "")
164
165 (define-public (output-scopes scopes fields basename)
166   (define (output-scope scope)
167     (apply
168      string-append
169      (module-map
170       (lambda (sym var)
171         (let ((val (if (variable-bound? var) (variable-ref var) "")))
172           (if (and (memq sym fields) (string? val))
173               (header-to-file basename sym val))
174           ""))
175       scope)))
176   (apply string-append (map output-scope scopes)))
177