]> git.donarmstrong.com Git - lilypond.git/blob - scm/lily.scm
* input/sakura-sakura.ly: document how to override font.
[lilypond.git] / scm / lily.scm
1 ;;;; lily.scm -- toplevel Scheme stuff
2 ;;;;
3 ;;;;  source file of the GNU LilyPond music typesetter
4 ;;;; 
5 ;;;; (c) 1998--2006 Jan Nieuwenhuizen <janneke@gnu.org>
6 ;;;; Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8
9 (define (define-scheme-options)
10   (for-each (lambda (x)
11               (ly:add-option (car x) (cadr x) (caddr x)))
12           
13             `((point-and-click #t "use point & click")
14               (paper-size "a4" "the default paper size")
15               (midi-debug #f "generate human readable MIDI")
16               (internal-type-checking #f "check every property assignment for types")
17               (parse-protect #t    "continue when finding errors in inline
18 scheme are caught in the parser. If off, halt 
19 on errors, and print a stack trace.")
20               (profile-property-accesses #f "keep statistics of get_property() calls.")
21               (old-relative #f
22                             "relative for simultaneous music works
23 similar to chord syntax")
24               (object-keys #f
25                            "experimental mechanism for remembering tweaks")
26               (resolution 101 "resolution for generating bitmaps")
27               (anti-alias-factor 1 "render at higher resolution and scale down result\nto prevent jaggies in PNG")
28               (book-title-preview #t "include book-titles in preview images.")
29               (eps-font-include #f "Include fonts in separate-system EPS files.")
30               (gs-font-load #f
31                             "load fonts via Ghostscript.")
32               (gui #f "running from gui; redirect stderr to log file")
33               (delete-intermediate-files #f
34                                          "delete unusable PostScript files")
35               (safe #f "Run safely")
36               (verbose ,(ly:command-line-verbose?) "value for the --verbose flag")
37               (ttf-verbosity 0
38                            "how much verbosity for TTF font embedding?")
39               (debug-gc #f
40                         "dump GC protection info")
41               (show-available-fonts #f
42                                     "List  font names available.")
43               )
44             ))
45
46 ;; FIXME: stray statement
47 (define-scheme-options)
48
49 (if (defined? 'set-debug-cell-accesses!)
50     (set-debug-cell-accesses! #f))
51
52 ;(set-debug-cell-accesses! 1000)
53
54 (use-modules (ice-9 regex)
55              (ice-9 safe)
56              (ice-9 optargs)
57              (oop goops)
58              (srfi srfi-1)
59              (srfi srfi-13)
60              (srfi srfi-14))
61
62
63 ;; my display
64 (define-public (myd k v) (display k) (display ": ") (display v) (display ", "))
65
66 (define-public (print . args)
67   (apply format (cons (current-output-port) args)))
68
69
70 ;;; General settings
71 ;;; debugging evaluator is slower.  This should
72 ;;; have a more sensible default.
73
74 (if (ly:get-option 'verbose)
75     (begin
76       (debug-enable 'debug)
77       (debug-enable 'backtrace)
78       (read-enable 'positions)))
79
80 (define-public tex-backend?
81   (member (ly:output-backend) '("texstr" "tex")))
82
83 (define-public parser #f)
84
85 (define-public (lilypond-version)
86   (string-join
87    (map (lambda (x) (if (symbol? x)
88                         (symbol->string x)
89                         (number->string x)))
90         (ly:version))
91    "."))
92
93
94
95
96 ;; gettext wrapper for guile < 1.7.2
97 (if (defined? 'gettext)
98     (define-public _ gettext)
99     (define-public _ ly:gettext))
100
101 (define-public (ly:load x)
102   (let* ((file-name (%search-load-path x)))
103     (if (ly:get-option 'verbose)
104         (ly:progress "[~A" file-name))
105     (primitive-load file-name)
106     (if (ly:get-option 'verbose)
107         (ly:progress "]"))))
108
109 ;; Cygwin
110 ;; #(CYGWIN_NT-5.1 Hostname 1.5.12(0.116/4/2) 2004-11-10 08:34 i686)
111 ;;
112 ;; Debian
113 ;; #(Linux hostname 2.4.27-1-686 #1 Fri Sep 3 06:28:00 UTC 2004 i686)
114 ;;
115 ;; Mingw
116 ;; #(Windows XP HOSTNAME build 2600 5.01 Service Pack 1 i686)
117 ;;
118
119 ;; ugh, code dup.
120 (define-public PLATFORM
121   (string->symbol
122    (string-downcase
123     (car (string-tokenize (vector-ref (uname) 0) char-set:letter)))))
124
125 (define-public DOS
126   (let ((platform (string-tokenize
127                    (vector-ref (uname) 0) char-set:letter+digit)))
128     (if (null? (cdr platform)) #f
129         (member (string-downcase (cadr platform)) '("95" "98" "me")))))
130
131 (case PLATFORM
132   ((windows)
133    (define native-getcwd getcwd)
134    (define (slashify x)
135      (if (string-index x #\\)
136          x
137          (string-regexp-substitute
138           "//*" "/"
139           (string-regexp-substitute "\\\\" "/" x))))
140    ;; FIXME: this prints a warning.
141   (define-public (ly-getcwd)
142      (slashify (native-getcwd))))
143   (else (define-public ly-getcwd getcwd)))
144
145 (define-public (is-absolute? file-name)
146   (let ((file-name-length (string-length file-name)))
147     (if (= file-name-length 0)
148         #f
149         (or (eq? (string-ref file-name 0) #\/)
150             (and (eq? PLATFORM 'windows)
151                  (> file-name-length 2)
152                  (eq? (string-ref file-name 1) #\:)
153                  (eq? (string-ref file-name 2) #\/))))))
154
155 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
156
157 (define (type-check-list location signature arguments)
158   "Typecheck a list of arguments against a list of type
159 predicates. Print a message at LOCATION if any predicate failed."
160   (define (recursion-helper signature arguments count) 
161     (define (helper pred? arg count) 
162       (if (not (pred? arg))
163
164           (begin
165             (ly:input-message
166              location
167              (format
168               #f (_ "wrong type for argument ~a.  Expecting ~a, found ~s")
169               count (type-name pred?) arg))
170             #f)
171           #t))
172
173     (if (null? signature)
174         #t
175         (and (helper (car signature) (car arguments) count)
176              (recursion-helper (cdr signature) (cdr arguments) (1+ count)))))
177   (recursion-helper signature arguments 1))
178
179 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
180 ;;  output
181
182
183 ;;(define-public (output-framework) (write "hello\n"))
184
185 (define output-tex-module
186   (make-module 1021 (list (resolve-interface '(scm output-tex)))))
187 (define output-ps-module
188   (make-module 1021 (list (resolve-interface '(scm output-ps)))))
189
190 (define-public (ps-output-expression expr port)
191   (display (eval expr output-ps-module) port))
192
193 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
194 ;; Safe definitions utility
195 (define safe-objects (list))
196
197 (define-macro (define-safe-public arglist . body)
198   "Define a variable, export it, and mark it as safe, ie usable in LilyPond safe mode.
199 The syntax is the same as `define*-public'."
200   (define (get-symbol arg)
201     (if (pair? arg)
202         (get-symbol (car arg))
203         arg))
204   (let ((safe-symbol (get-symbol arglist)))
205     `(begin
206        (define*-public ,arglist
207          ,@body)
208        (set! safe-objects (cons (cons ',safe-symbol ,safe-symbol)
209                                 safe-objects))
210        ,safe-symbol)))
211
212
213 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
214 ;; other files.
215
216 (for-each ly:load
217           ;; load-from-path
218           '("lily-library.scm"
219             "file-cache.scm"
220             "define-music-types.scm"
221             "output-lib.scm"
222             "c++.scm"
223             "chord-ignatzek-names.scm"
224             "chord-entry.scm"
225             "chord-generic-names.scm"
226             "stencil.scm"
227             "markup.scm"
228             "music-functions.scm"
229             "part-combiner.scm"
230             "autochange.scm"
231             "define-music-properties.scm"
232             "auto-beam.scm"
233             "chord-name.scm"
234
235             "parser-ly-from-scheme.scm"
236             
237             "define-context-properties.scm"
238             "translation-functions.scm"
239             "script.scm"
240             "midi.scm"
241             "layout-beam.scm"
242             "parser-clef.scm"
243             "layout-slur.scm"
244             "font.scm"
245             "encoding.scm"
246             
247             "fret-diagrams.scm"
248             "define-markup-commands.scm"
249             "define-grob-properties.scm"
250             "define-grobs.scm"
251             "define-grob-interfaces.scm"
252             "define-stencil-commands.scm"
253             "layout-page-layout.scm"
254             "titling.scm"
255             
256             "paper.scm"
257             "backend-library.scm"
258             "x11-color.scm"
259
260             ;; must be after everything has been defined
261             "safe-lily.scm"))
262
263
264 (set! type-p-name-alist
265       `(
266         (,boolean-or-symbol? . "boolean or symbol")
267         (,boolean? . "boolean")
268         (,char? . "char")
269         (,grob-list? . "list of grobs")
270         (,hash-table? . "hash table")
271         (,input-port? . "input port")
272         (,integer? . "integer")
273         (,list? . "list")
274         (,ly:context? . "context")
275         (,ly:dimension? . "dimension, in staff space")
276         (,ly:dir? . "direction")
277         (,ly:duration? . "duration")
278         (,ly:grob? . "layout object")
279         (,ly:input-location? . "input location")
280         (,ly:moment? . "moment")
281         (,ly:music? . "music")
282         (,ly:pitch? . "pitch")
283         (,ly:translator? . "translator")
284         (,ly:font-metric? . "font metric")
285         (,ly:simple-closure? . "simple closure")
286         (,markup-list? . "list of markups")
287         (,markup? . "markup")
288         (,ly:music-list? . "list of music")
289         (,number-or-grob? . "number or grob")
290         (,number-or-string? . "number or string")
291         (,number-pair? . "pair of numbers")
292         (,number? . "number")
293         (,output-port? . "output port")   
294         (,pair? . "pair")
295         (,procedure? . "procedure") 
296         (,scheme? . "any type")
297         (,string? . "string")
298         (,symbol? . "symbol")
299         (,vector? . "vector")))
300
301
302 ;; debug mem leaks
303
304 (define gc-protect-stat-count 0)
305 (define-public (dump-gc-protects)
306   (set! gc-protect-stat-count (1+ gc-protect-stat-count))
307   (let* ((protects (sort
308                     (hash-table->alist (ly:protects))
309                     (lambda (a b)
310                       (< (object-address (car a))
311                          (object-address (car b))))))
312
313          (out-file-name (string-append
314                          "gcstat-" (number->string gc-protect-stat-count)
315                          ".scm"))
316          (outfile    (open-file  out-file-name  "w")))
317
318     (display (format "Dumping gc protected objs to ~a...\n" out-file-name))
319     (display
320      (map (lambda (y)
321             (let ((x (car y))
322                   (c (cdr y)))
323               
324               (string-append
325                (string-join
326                 (map object->string (list (object-address x) c x))
327                 " ")
328                "\n")))
329
330           (filter
331            (lambda (x)
332              (not (symbol? (car x))))
333            protects))
334      outfile)
335
336 ;    (display (ly:smob-protects))
337     (newline outfile)
338     (if (defined? 'gc-live-object-stats)
339         (let* ((stats #f))
340           (display "Live object statistics: GC'ing\n")
341           (gc)
342           (gc)
343           
344           (set! stats (gc-live-object-stats))
345           (display "Dumping live object statistics.\n")
346           
347           (for-each
348            (lambda (x)
349              (format outfile "~a: ~a\n" (car x) (cdr x)))
350            (sort (gc-live-object-stats)
351                  (lambda (x y)
352                    (string<? (car x) (car y)))))))))
353
354 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
355
356
357 (define-public (lilypond-main files)
358   "Entry point for LilyPond."
359   
360   (define (no-files-handler)
361     (ly:usage)
362     (exit 2))
363
364   (if (ly:get-option 'gui)
365       (gui-main files))
366
367   (if (null? files)
368       (no-files-handler))
369
370   (let ((failed (lilypond-all files)))
371     (if (pair? failed)
372         (begin
373           (ly:error (_ "failed files: ~S") (string-join failed))
374           (exit 1))
375         (begin
376           ;; HACK: be sure to exit with single newline
377           (ly:message "")
378           (exit 0)))))
379
380 (define-public (lilypond-all files)
381
382   (if (ly:get-option 'show-available-fonts)
383       (begin
384         (ly:font-config-display-fonts)
385         (exit 0)
386         ))
387   
388   (let* ((failed '())
389          (handler (lambda (key failed-file)
390                     (set! failed (append (list failed-file) failed)))))
391
392     (for-each
393      (lambda (x)
394        (lilypond-file handler x)
395        (ly:clear-anonymous-modules)
396        (if (ly:get-option 'debug-gc)
397            (dump-gc-protects)))
398      
399      files)
400     failed))
401
402 (define (lilypond-file handler file-name)
403   (catch 'ly-file-failed
404          (lambda () (ly:parse-file file-name))
405          (lambda (x . args) (handler x file-name))))
406
407 (use-modules (scm editor))
408
409 (define-public (gui-main files)
410   (if (null? files)
411       (gui-no-files-handler))
412   (let* ((base (basename (car files) ".ly"))
413          (log-name (string-append base ".log")))
414     (if (not (ly:get-option 'gui))
415         (ly:message (_ "Redirecting output to ~a...") log-name))
416     (ly:stderr-redirect log-name "w")
417     (ly:message "# -*-compilation-*-")
418     
419     (let ((failed (lilypond-all files)))
420       (if (pair? failed)
421           (begin
422             ;; ugh
423             (ly:stderr-redirect "foo" "r")
424             (system (get-editor-command log-name 0 0 0))
425             (ly:error (_ "failed files: ~S") (string-join failed))
426             ;; not reached?
427             (exit 1))
428           (exit 0)))))
429
430 (define (gui-no-files-handler)
431   (let* ((ly (string-append (ly:effective-prefix) "/ly/"))
432          ;; FIXME: soft-code, localize
433          (welcome-ly (string-append ly "Welcome_to_LilyPond.ly"))
434          (cmd (get-editor-command welcome-ly 0 0 0)))
435     (ly:message (_ "Invoking `~a'...") cmd)
436     (system cmd)
437     (exit 1)))