X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fbackend-library.scm;h=689478f291c4c8c401be20108294e861f8f337ca;hb=69d06539ea9a4a30269ca94547a79c47cf21cc30;hp=5fef767162eaefaba4cbbfe854b4250598e4c765;hpb=0fcd8c283c45644a92d2308f1cd0d82a1e63380b;p=lilypond.git diff --git a/scm/backend-library.scm b/scm/backend-library.scm index 5fef767162..689478f291 100644 --- a/scm/backend-library.scm +++ b/scm/backend-library.scm @@ -2,7 +2,7 @@ ;;;; ;;;; source file of the GNU LilyPond music typesetter ;;;; -;;;; (c) 2005 Jan Nieuwenhuizen +;;;; (c) 2005--2006 Jan Nieuwenhuizen ;;;; Han-Wen Nienhuys ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -27,67 +27,103 @@ (throw 'ly-file-failed))))) (define-public (sanitize-command-option str) + "Kill dubious shell quoting" + (string-append "\"" - (regexp-substitute/global #f "[^- 0-9,.a-zA-Z'\"\\]" str 'pre 'post) + (regexp-substitute/global #f "[^-_ 0-9,.a-zA-Z'\"\\]" str 'pre 'post) "\"")) -(define-public (postscript->pdf papersizename name) - (let* ((pdf-name (string-append (basename name ".ps") ".pdf" )) +(define-public (search-executable names) + (define (helper path lst) + (if (null? (cdr lst)) + (car lst) + (if (search-path path (car lst)) (car lst) + (helper path (cdr lst))))) + + (let ((path (parse-path (getenv "PATH")))) + (helper path names))) + +(define-public (search-gs) + + ;; must be sure that we don't catch stuff from old GUBs. + (search-executable '("gs"))) + +(define-public (postscript->pdf paper-width paper-height name) + (let* ((pdf-name (string-append (basename name ".ps") ".pdf")) (cmd (format #f - "gs\ + "~a\ + ~a\ + ~a\ -dCompatibilityLevel=1.4 \ - -dSAFER\ - -sPAPERSIZE=~a\ - -q\ + -dDEVICEWIDTHPOINTS=~,2f -dDEVICEHEIGHTPOINTS=~,2f\ -dNOPAUSE\ -dBATCH\ + -r1200 \ -sDEVICE=pdfwrite\ -sOutputFile=~S\ -c .setpdfwrite\ -f ~S\ " - (sanitize-command-option papersizename) + (search-gs) + (if (ly:get-option 'verbose) "" "-q") + (if (ly:get-option 'gs-font-load) + " -dNOSAFER " + " -dSAFER ") + paper-width + paper-height pdf-name name))) + ;; The wrapper on windows cannot handle `=' signs, + ;; gs has a workaround with #. + (if (eq? PLATFORM 'windows) + (begin + (set! cmd (string-regexp-substitute "=" "#" cmd)) + (set! cmd (string-regexp-substitute "-dSAFER " "" cmd)))) (if (access? pdf-name W_OK) (delete-file pdf-name)) (ly:message (_ "Converting to `~a'...") pdf-name) (ly:progress "\n") - (ly:system cmd))) + (ly:system cmd) + )) -(define-public (postscript->png resolution papersizename name) - (let* ((prefix (ly:effective-prefix)) +(use-modules (scm ps-to-png)) - ;; run the source, if we are in the build-directory - (ps2png-source (if prefix - (format "~a/scripts/lilypond-ps2png.py" prefix) - "lilypond-ps2png")) - (cmd (format #f - "~a --resolution=~S --papersize=~a~a ~S" - (if (file-exists? ps2png-source) - (format "python ~a" ps2png-source) - "lilypond-ps2png") - resolution - (sanitize-command-option papersizename) - (if (ly:get-option 'verbose) " --verbose " "") - name))) +(define-public (postscript->png resolution paper-width paper-height name) ;; Do not try to guess the name of the png file, ;; GS produces PNG files like BASE-page%d.png. ;;(ly:message (_ "Converting to `~a'...") ;; (string-append (basename name ".ps") "-page1.png" ))) + (let ((verbose (ly:get-option 'verbose)) + (rename-page-1 #f)) + (ly:message (_ "Converting to ~a...") "PNG") - (ly:system cmd) + (make-ps-images name resolution paper-width paper-height rename-page-1 verbose + (ly:get-option 'anti-alias-factor)) (ly:progress "\n"))) (define-public (postprocess-output paper-book module filename formats) - (for-each - (lambda (f) - ((eval (string->symbol (string-append "convert-to-" f)) module) - paper-book filename)) - formats)) + (let* + ((completed (completize-formats formats)) + (base (string-regexp-substitute "\\.[a-z]+$" "" filename)) + (intermediate (remove + (lambda (x) + (member x formats)) + completed))) + (for-each + (lambda (f) + ((eval (string->symbol (string-append "convert-to-" f)) module) + paper-book filename)) + completed) + + (if (ly:get-option 'delete-intermediate-files) + (for-each + (lambda (f) + (delete-file (string-append base "." f))) + intermediate)) + )) (define-public (completize-formats formats) (define new-fmts '())