1 ;;;; lily.scm -- toplevel Scheme stuff
3 ;;;; source file of the GNU LilyPond music typesetter
5 ;;;; (c) 1998--2007 Jan Nieuwenhuizen <janneke@gnu.org>
6 ;;;; Han-Wen Nienhuys <hanwen@xs4all.nl>
8 ;; Internationalisation: (_i "to be translated") gets an entry in the
9 ;; POT file (gettext ) must be invoked explicitely to do the actual
11 ;;(define-macro (_i x) x)
12 ;;(define-macro-public _i (x) x)
13 ;;(define-public-macro _i (x) x)
15 (defmacro-public _i (x) x)
17 (read-enable 'positions)
20 (define scheme-options-definitions
25 ;; - [subject-]object-object-verb +"ing"
26 ;; - [subject-]-verb-object-object
28 (anti-alias-factor 1 "render at higher resolution and scale down result\nto prevent jaggies in PNG")
29 (backend ps "which backend to use by default; Options: eps, ps [default], scm, svg, tex, texstr)")
30 (check-internal-types #f "check every property assignment for types")
31 (clip-systems #f "Generate cut-out snippets of a score")
32 (datadir #f "LilyPond prefix for data files (Readonly).")
33 (debug-gc #f "dump memory debugging statistics")
34 (debug-gc-assert-parsed-dead #f "for memory debugging:
35 ensure that all refs to parsed objects are dead. This is an internal option, and is switched on automatically for -ddebug-gc.")
36 (debug-lexer #f "debug the flex lexer")
37 (debug-page-breaking-scoring #f "dump scores for many different page breaking configurations")
38 (debug-parser #f "debug the bison parser")
39 (debug-property-callbacks #f "debug cyclic callback chains")
40 (debug-skylines #f "debug skylines")
41 (delete-intermediate-files #f
42 "delete unusable PostScript files")
43 (dump-profile #f "dump memory and time information for each file")
44 (dump-cpu-profile #f "dump timing information (system-dependent)")
45 (dump-signatures #f "dump output signatures of each system. Used for regression testing.")
47 (eps-box-padding #f "Pad EPS bounding box left edge. Guarantee alignment between systems in LaTeX.")
49 "load fonts via Ghostscript.")
50 (gs-load-lily-fonts #f
51 "load only lilypond fonts via Ghostscript.")
52 (gui #f "running from gui; redirect stderr to log file")
53 (help #f "show this help.")
54 (include-book-title-preview #t "include book-titles in preview images.")
55 (include-eps-fonts #t "Include fonts in separate-system EPS files.")
56 (job-count #f "Process in parallel")
57 (log-file #f "redirect output to log FILE.log")
60 "relative for simultaneous music works
61 similar to chord syntax")
62 (point-and-click #t "use point & click")
63 (paper-size "a4" "the default paper size")
64 (pixmap-format "png16m" "GS format to use for pixel images")
65 (preview #f "make a incipit image. ")
66 (print-pages #t "print pages normally. ")
67 (protected-scheme-parsing #t "continue when finding errors in inline
68 scheme are caught in the parser. If off, halt
69 on errors, and print a stack trace.")
70 (profile-property-accesses #f "keep statistics of get_property() calls.")
72 (resolution 101 "resolution for generating PNG bitmaps")
73 (read-file-list #f "Read files to be processed from command line arguments")
75 (safe #f "Run safely")
76 (strict-infinity-checking #f "If yes, crash on encountering Inf/NaN.")
77 (strip-output-dir #t "If yes, strip directories from input files.")
78 (separate-log-files #f "Output to FILE.log per file.")
79 (trace-memory-frequency #f "Record Scheme cell usage this many times per second, and dump to file.")
80 (trace-scheme-coverage #f "Record coverage of Scheme files")
82 "how much verbosity for TTF font embedding?")
83 (show-available-fonts #f
84 "List font names available.")
85 (verbose ,(ly:command-line-verbose?) "value for the --verbose flag")
88 ;; need to do this in the beginning. Other parts of the
89 ;; Scheme init depend on these options.
93 (ly:add-option (car x) (cadr x) (caddr x)))
94 scheme-options-definitions)
98 (ly:set-option (car x) (cdr x)))
99 (eval-string (ly:command-line-options)))
103 (if (defined? 'set-debug-cell-accesses!)
104 (set-debug-cell-accesses! #f))
106 ;(set-debug-cell-accesses! 1000)
108 (use-modules (ice-9 regex)
121 (define-public fancy-format format)
122 (define-public (ergonomic-simple-format dest . rest)
123 "Like ice-9 format, but without the memory consumption."
126 (apply simple-format (cons #f (cons dest rest)))
127 (apply simple-format (cons dest rest))))
129 (define format ergonomic-simple-format)
132 (define-public (myd k v) (display k) (display ": ") (display v) (display ", ")
135 (define-public (print . args)
136 (apply format (cons (current-output-port) args)))
140 ;;; debugging evaluator is slower. This should
141 ;;; have a more sensible default.
143 (if (or (ly:get-option 'verbose)
144 (ly:get-option 'trace-memory-frequencency)
145 (ly:get-option 'trace-scheme-coverage)
148 (ly:set-option 'protected-scheme-parsing #f)
149 (debug-enable 'debug)
150 (debug-enable 'backtrace)
151 (read-enable 'positions)))
154 (if (ly:get-option 'trace-scheme-coverage)
157 (define-public tex-backend?
158 (member (ly:get-option 'backend) '(texstr tex)))
160 (define-public parser #f)
163 ;; TeX C++ code actually hooks into TEX_STRING_HASHLIMIT
164 (define-public TEX_STRING_HASHLIMIT 10000000)
168 ;; gettext wrapper for guile < 1.7.2
169 (if (defined? 'gettext)
170 (define-public _ gettext)
171 (define-public _ ly:gettext))
173 (define-public (ly:load x)
174 (let* ((file-name (%search-load-path x)))
175 (if (ly:get-option 'verbose)
176 (ly:progress "[~A" file-name))
178 (ly:error (_ "cannot find: ~A") x))
179 (primitive-load file-name)
180 (if (ly:get-option 'verbose)
184 ;; #(CYGWIN_NT-5.1 Hostname 1.5.12(0.116/4/2) 2004-11-10 08:34 i686)
187 ;; #(Linux hostname 2.4.27-1-686 #1 Fri Sep 3 06:28:00 UTC 2004 i686)
190 ;; #(Windows XP HOSTNAME build 2600 5.01 Service Pack 1 i686)
194 (define-public PLATFORM
197 (car (string-tokenize (vector-ref (uname) 0) char-set:letter)))))
200 (let ((platform (string-tokenize
201 (vector-ref (uname) 0) char-set:letter+digit)))
202 (if (null? (cdr platform)) #f
203 (member (string-downcase (cadr platform)) '("95" "98" "me")))))
207 (define native-getcwd getcwd)
209 (if (string-index x #\\)
211 (string-regexp-substitute
213 (string-regexp-substitute "\\\\" "/" x))))
214 ;; FIXME: this prints a warning.
215 (define-public (ly-getcwd)
216 (slashify (native-getcwd))))
217 (else (define-public ly-getcwd getcwd)))
219 (define-public (is-absolute? file-name)
220 (let ((file-name-length (string-length file-name)))
221 (if (= file-name-length 0)
223 (or (eq? (string-ref file-name 0) #\/)
224 (and (eq? PLATFORM 'windows)
225 (> file-name-length 2)
226 (eq? (string-ref file-name 1) #\:)
227 (eq? (string-ref file-name 2) #\/))))))
229 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
231 (define (type-check-list location signature arguments)
232 "Typecheck a list of arguments against a list of type
233 predicates. Print a message at LOCATION if any predicate failed."
235 (define (recursion-helper signature arguments count)
236 (define (helper pred? arg count)
237 (if (not (pred? arg))
243 #f (_ "wrong type for argument ~a. Expecting ~a, found ~s")
244 count (type-name pred?) arg))
248 (if (null? signature)
250 (and (helper (car signature) (car arguments) count)
251 (recursion-helper (cdr signature) (cdr arguments) (1+ count)))))
253 (recursion-helper signature arguments 1))
255 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
259 ;;(define-public (output-framework) (write "hello\n"))
261 (define output-tex-module
262 (make-module 1021 (list (resolve-interface '(scm output-tex)))))
263 (define output-ps-module
264 (make-module 1021 (list (resolve-interface '(scm output-ps)))))
266 (define-public (ps-output-expression expr port)
267 (display (eval expr output-ps-module) port))
269 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
270 ;; Safe definitions utility
271 (define safe-objects (list))
273 (define-macro (define-safe-public arglist . body)
274 "Define a variable, export it, and mark it as safe, ie usable in LilyPond safe mode.
275 The syntax is the same as `define*-public'."
276 (define (get-symbol arg)
278 (get-symbol (car arg))
280 (let ((safe-symbol (get-symbol arglist)))
282 (define*-public ,arglist
284 (set! safe-objects (cons (cons ',safe-symbol ,safe-symbol)
288 (define-safe-public (lilypond-version)
290 (map (lambda (x) (if (symbol? x)
296 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
299 (ly:set-default-scale (ly:make-scale #(0 1 2 5/2 7/2 9/2 11/2)))
303 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
311 "define-event-classes.scm"
312 "define-music-types.scm"
315 "chord-ignatzek-names.scm"
317 "chord-generic-names.scm"
320 "music-functions.scm"
323 "define-music-properties.scm"
327 "parser-ly-from-scheme.scm"
328 "ly-syntax-constructors.scm"
330 "define-context-properties.scm"
331 "translation-functions.scm"
341 "define-markup-commands.scm"
342 "define-grob-properties.scm"
344 "define-grob-interfaces.scm"
345 "define-stencil-commands.scm"
349 "backend-library.scm"
352 ;; must be after everything has been defined
356 (for-each ly:load init-scheme-files)
359 (set! type-p-name-alist
361 (,boolean-or-symbol? . "boolean or symbol")
362 (,boolean? . "boolean")
364 (,grob-list? . "list of grobs")
365 (,hash-table? . "hash table")
366 (,input-port? . "input port")
367 (,integer? . "integer")
369 (,ly:context? . "context")
370 (,ly:dimension? . "dimension, in staff space")
371 (,ly:dir? . "direction")
372 (,ly:duration? . "duration")
373 (,ly:grob? . "layout object")
374 (,ly:input-location? . "input location")
375 (,ly:moment? . "moment")
376 (,ly:music? . "music")
377 (,ly:pitch? . "pitch")
378 (,ly:translator? . "translator")
379 (,ly:font-metric? . "font metric")
380 (,ly:simple-closure? . "simple closure")
381 (,markup-list? . "list of markups")
382 (,markup? . "markup")
383 (,ly:music-list? . "list of music")
384 (,number-or-grob? . "number or grob")
385 (,number-or-string? . "number or string")
386 (,number-pair? . "pair of numbers")
387 (,number? . "number")
388 (,output-port? . "output port")
390 (,procedure? . "procedure")
391 (,rhythmic-location? . "rhythmic location")
392 (,scheme? . "any type")
393 (,string? . "string")
394 (,symbol? . "symbol")
395 (,vector? . "vector")))
397 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
400 (define (profile-measurements)
407 (ly:assoc-get 'gc-time-taken stats))
409 (ly:assoc-get 'total-cells-allocated stats 0)
412 (define (dump-profile base last this)
414 ((outname (format "~a.profile" (dir-basename base ".ly")))
415 (diff (map (lambda (y) (apply - y)) (zip this last))))
417 (ly:progress "\nWriting timing to ~a..." outname)
418 (format (open-file outname "w")
419 "time: ~a\ncells: ~a\n"
420 (if (ly:get-option 'dump-cpu-profile)
427 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
430 (define gc-dumping #f)
431 (define gc-protect-stat-count 0)
433 (define-public (dump-live-object-stats outfile)
436 (format outfile "~a: ~a\n" (car x) (cdr x)))
437 (sort (gc-live-object-stats)
439 (string<? (car x) (car y))))))
441 (define-public (dump-gc-protects)
442 (set! gc-protect-stat-count (1+ gc-protect-stat-count))
443 (let* ((protects (sort
444 (hash-table->alist (ly:protects))
446 (< (object-address (car a))
447 (object-address (car b))))))
449 (out-file-name (string-append
450 "gcstat-" (number->string gc-protect-stat-count)
452 (outfile (open-file out-file-name "w")))
455 (display (format "Dumping GC statistics ~a...\n" out-file-name))
461 (format "~a (~a) = ~a\n" (object-address x) c x)
465 (not (symbol? (car x))))
469 (format outfile "\nprotected symbols: ~a\n"
470 (apply + (map (lambda (obj-count) (if (symbol? (car obj-count))
475 ;; (display (ly:smob-protects))
477 (if (defined? 'gc-live-object-stats)
479 (display "Live object statistics: GC'ing\n")
483 (display "Asserting dead objects\n")
484 (ly:set-option 'debug-gc-assert-parsed-dead #t)
486 (ly:set-option 'debug-gc-assert-parsed-dead #f)
488 (set! stats (gc-live-object-stats))
489 (display "Dumping live object statistics.\n")
490 (dump-live-object-stats outfile)))
500 gc-protect-stat-count
502 (let ((sym-stat (assoc sym stats)))
507 '(protected-objects bytes-malloced cell-heap-size
517 (define (check-memory)
518 "read /proc/self to check up on memory use."
519 (define (gulp-file name)
520 (let* ((file (open-input-file name))
521 (text (read-delimited "" file)))
525 ((stat (gulp-file "/proc/self/status"))
526 (lines (string-split stat #\newline))
527 (interesting (filter identity
530 (string-match "^VmData:[ \t]*([0-9]*) kB" l))
532 (mem (string->number (match:substring (car interesting) 1)))
536 (display (format "VMDATA: ~a\n" mem))
545 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
548 (define (multi-fork count)
549 (define (helper count acc)
552 ((pid (primitive-fork)))
555 (helper (1- count) (cons pid acc))))
560 (define-public (lilypond-main files)
561 "Entry point for LilyPond."
563 (eval-string (ly:command-line-code))
565 (if (ly:get-option 'help)
570 (if (ly:get-option 'show-available-fonts)
572 (ly:font-config-display-fonts)
577 (if (ly:get-option 'gui)
585 (if (ly:get-option 'read-file-list)
588 (> (string-length s) 0))
590 (map (lambda (f) (string-split (ly:gulp-file f) #\nl))
594 (if (and (number? (ly:get-option 'job-count))
595 (>= (length files) (ly:get-option 'job-count)))
598 ((count (ly:get-option 'job-count))
599 (split-todo (split-list files count))
600 (joblist (multi-fork count))
603 (if (not (string-or-symbol? (ly:get-option 'log-file)))
604 (ly:set-option 'log-file "lilypond-multi-run"))
606 (if (number? joblist)
608 (ly:set-option 'log-file (format "~a-~a"
609 (ly:get-option 'log-file) joblist))
610 (set! files (vector-ref split-todo joblist)))
613 (ly:progress "\nForking into jobs: ~a\n" joblist)
616 (let* ((stat (cdr (waitpid pid))))
619 (set! errors (acons (list-element-index joblist pid) stat errors)))))
626 (logfile (format "~a-~a.log"
627 (ly:get-option 'log-file) job))
628 (log (ly:gulp-file logfile))
629 (len (string-length log))
630 (tail (substring log (max 0 (- len 1024)))))
632 (if (status:term-sig state)
633 (ly:message "\n\n~a\n"
634 (format (_ "job ~a terminated with signal: ~a")
636 (status:term-sig state)))
637 (ly:message (_ "logfile ~a (exit ~a):\n~a") logfile (status:exit-val state) tail))))
642 (ly:error "Children ~a exited with errors." (map car errors)))
644 ;; must overwrite individual entries
645 (if (ly:get-option 'dump-profile)
646 (dump-profile "lily-run-total" '(0 0) (profile-measurements)))
648 (exit (if (null? errors) 0 1))))))
651 (if (string-or-symbol? (ly:get-option 'log-file))
652 (ly:stderr-redirect (format "~a.log" (ly:get-option 'log-file)) "w"))
655 (let ((failed (lilypond-all files)))
656 (if (ly:get-option 'trace-scheme-coverage)
658 (coverage:show-all (lambda (f) (string-contains f "lilypond"))
664 (ly:error (_ "failed files: ~S") (string-join failed))
667 ;; HACK: be sure to exit with single newline
671 (define-public (lilypond-all files)
673 (separate-logs (ly:get-option 'separate-log-files))
674 (do-measurements (ly:get-option 'dump-profile))
675 (handler (lambda (key failed-file)
676 (set! failed (append (list failed-file) failed)))))
682 ((start-measurements (if do-measurements
683 (profile-measurements)
685 (base (dir-basename x ".ly"))
686 (all-settings (ly:all-options)))
689 (ly:stderr-redirect (format "~a.log" base) "w"))
690 (if (ly:get-option 'trace-memory-frequency)
691 (mtrace:start-trace (ly:get-option 'trace-memory-frequency)))
693 (lilypond-file handler x)
694 (if start-measurements
695 (dump-profile x start-measurements (profile-measurements)))
697 (if (ly:get-option 'trace-memory-frequency)
700 (mtrace:dump-results base)))
704 (ly:set-option (car s) (cdr s)))
707 (ly:clear-anonymous-modules)
708 (ly:set-option 'debug-gc-assert-parsed-dead #t)
710 (ly:set-option 'debug-gc-assert-parsed-dead #f)
713 (if (ly:get-option 'debug-gc)
715 (if (= (random 40) 1)
716 (ly:reset-all-fonts)))))
720 ;; we want the failed-files notice in the aggregrate logfile.
721 (if (ly:get-option 'separate-logs)
723 (if (string-or-symbol? (ly:get-option 'log-file))
724 (format "~a.log" (ly:get-option 'log-file))
727 (if (ly:get-option 'dump-profile)
728 (dump-profile "lily-run-total" '(0 0) (profile-measurements)))
732 (define (lilypond-file handler file-name)
733 (catch 'ly-file-failed
734 (lambda () (ly:parse-file file-name))
735 (lambda (x . args) (handler x file-name))))
737 (use-modules (scm editor))
739 (define-public (gui-main files)
741 (gui-no-files-handler))
743 (if (not (string? (ly:get-option 'log-file)))
744 (let* ((base (dir-basename (car files) ".ly"))
745 (log-name (string-append base ".log")))
746 (if (not (ly:get-option 'gui))
747 (ly:message (_ "Redirecting output to ~a...") log-name))
748 (ly:stderr-redirect log-name "w")
749 (ly:message "# -*-compilation-*-"))
751 (let ((failed (lilypond-all files)))
755 (ly:stderr-redirect "foo" "r")
756 (system (get-editor-command log-name 0 0 0))
757 (ly:error (_ "failed files: ~S") (string-join failed))
762 (define (gui-no-files-handler)
763 (let* ((ly (string-append (ly:effective-prefix) "/ly/"))
764 ;; FIXME: soft-code, localize
765 (welcome-ly (string-append ly "Welcome_to_LilyPond.ly"))
766 (cmd (get-editor-command welcome-ly 0 0 0)))
767 (ly:message (_ "Invoking `~a'...") cmd)