]> git.donarmstrong.com Git - lilypond.git/blob - scripts/lilypond-book.py
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / scripts / lilypond-book.py
1 #!@TARGET_PYTHON@
2
3 '''
4 Example usage:
5
6 test:
7   lilypond-book --filter="tr '[a-z]' '[A-Z]'" BOOK
8
9 convert-ly on book:
10   lilypond-book --filter="convert-ly --no-version --from=1.6.11 -" BOOK
11
12 classic lilypond-book:
13   lilypond-book --process="lilypond" BOOK.tely
14
15 TODO:
16
17   *  this script is too complex. Modularize.
18   
19   *  ly-options: intertext?
20   *  --line-width?
21   *  eps in latex / eps by lilypond -b ps?
22   *  check latex parameters, twocolumn, multicolumn?
23   *  use --png --ps --pdf for making images?
24
25   *  Converting from lilypond-book source, substitute:
26    @mbinclude foo.itely -> @include foo.itely
27    \mbinput -> \input
28
29 '''
30
31 import glob
32 import md5
33 import os
34 import re
35 import stat
36 import sys
37 import tempfile
38
39 """
40 @relocate-preamble@
41 """
42
43 import lilylib as ly
44 import fontextract
45 import langdefs
46 global _;_=ly._
47
48
49 # Lilylib globals.
50 program_version = '@TOPLEVEL_VERSION@'
51 program_name = os.path.basename (sys.argv[0])
52
53 original_dir = os.getcwd ()
54 backend = 'ps'
55
56 help_summary = (
57 _ ("Process LilyPond snippets in hybrid HTML, LaTeX, texinfo or DocBook document.")
58 + '\n\n'
59 + _ ("Examples:")
60 + '''
61  lilypond-book --filter="tr '[a-z]' '[A-Z]'" %(BOOK)s
62  lilypond-book --filter="convert-ly --no-version --from=2.0.0 -" %(BOOK)s
63  lilypond-book --process='lilypond -I include' %(BOOK)s
64 ''' % {'BOOK': _ ("BOOK")})
65
66 authors = ('Jan Nieuwenhuizen <janneke@gnu.org>',
67            'Han-Wen Nienhuys <hanwen@xs4all.nl>')
68
69 ################################################################
70 def exit (i):
71     if global_options.verbose:
72         raise Exception (_ ('Exiting (%d)...') % i)
73     else:
74         sys.exit (i)
75
76 def identify ():
77     ly.encoded_write (sys.stdout, '%s (GNU LilyPond) %s\n' % (program_name, program_version))
78
79 progress = ly.progress
80
81 def warning (s):
82     ly.stderr_write (program_name + ": " + _ ("warning: %s") % s + '\n')
83
84 def error (s):
85     ly.stderr_write (program_name + ": " + _ ("error: %s") % s + '\n')
86
87 def ps_page_count (ps_name):
88     header = file (ps_name).read (1024)
89     m = re.search ('\n%%Pages: ([0-9]+)', header)
90     if m:
91         return int (m.group (1))
92     return 0
93
94 def warranty ():
95     identify ()
96     ly.encoded_write (sys.stdout, '''
97 %s
98
99 %s
100
101 %s
102 %s
103 ''' % ( _ ('Copyright (c) %s by') % '2001--2007',
104         ' '.join (authors),
105         _ ("Distributed under terms of the GNU General Public License."),
106         _ ("It comes with NO WARRANTY.")))
107
108 def get_option_parser ():
109     p = ly.get_option_parser (usage=_ ("%s [OPTION]... FILE") % 'lilypond-book',
110                               description=help_summary,
111                               add_help_option=False)
112
113     p.add_option ('-F', '--filter', metavar=_ ("FILTER"),
114                   action="store",
115                   dest="filter_cmd",
116                   help=_ ("pipe snippets through FILTER [convert-ly -n -]"),
117                   default=None)
118
119     p.add_option ('-f', '--format',
120                   help=_ ("use output format FORMAT (texi [default], texi-html, latex, html, docbook)"),
121                   action='store')
122
123     p.add_option("-h", "--help",
124                  action="help",
125                  help=_ ("show this help and exit"))
126
127     p.add_option ("-I", '--include', help=_ ("add DIR to include path"),
128                   metavar=_ ("DIR"),
129                   action='append', dest='include_path',
130                   default=[os.path.abspath (os.getcwd ())])
131
132     p.add_option ('--info-images-dir',
133                   help=_ ("format Texinfo output so that Info will "
134                           "look for images of music in DIR"),
135                   metavar=_ ("DIR"),
136                   action='store', dest='info_images_dir',
137                   default='')
138
139     p.add_option ('--latex-program',
140                   help=_ ("run executable PROG instead of latex"),
141                   metavar=_ ("PROG"),
142                   action='store', dest='latex_program',
143                   default='latex')
144
145     p.add_option ('--left-padding', 
146                   metavar=_ ("PAD"),
147                   dest="padding_mm",
148                   help=_ ("pad left side of music to align music inspite of uneven bar numbers (in mm)"),
149                   type="float",
150                   default=3.0)
151     
152     p.add_option ("-o", '--output', help=_ ("write output to DIR"),
153                   metavar=_ ("DIR"),
154                   action='store', dest='output_dir',
155                   default='')
156     
157     p.add_option ('--skip-lily-check',
158                   help=_ ("do not fail if no lilypond output is found."),
159                   metavar=_ ("DIR"),
160                   action='store_true', dest='skip_lilypond_run',
161                   default=False)
162
163     p.add_option ('--skip-png-check',
164                   help=_ ("do not fail if no PNG images are found for EPS files"),
165                   metavar=_ ("DIR"),
166                   action='store_true', dest='skip_png_check',
167                   default=False)
168     
169     p.add_option ('--lily-output-dir',
170                   help=_ ("write lily-XXX files to DIR, link into --output dir."),
171                   metavar=_ ("DIR"),
172                   action='store', dest='lily_output_dir',
173                   default=None)
174     
175     p.add_option ('-P', '--process', metavar=_ ("COMMAND"),
176                   help = _ ("process ly_files using COMMAND FILE..."),
177                   action='store', 
178                   dest='process_cmd', default='')
179
180     p.add_option ('--pdf',
181                   action="store_true",
182                   dest="create_pdf",
183                   help=_ ("create PDF files for use with PDFTeX"),
184                   default=False)
185
186     p.add_option ('-V', '--verbose', help=_ ("be verbose"),
187                   action="store_true",
188                   default=False,
189                   dest="verbose")
190
191     p.version = "@TOPLEVEL_VERSION@"
192     p.add_option("--version",
193                  action="version",
194                  help=_ ("show version number and exit"))
195
196     p.add_option ('-w', '--warranty',
197                   help=_ ("show warranty and copyright"),
198                   action='store_true')
199     p.add_option_group (ly.display_encode (_ ('Bugs')),
200                         description=(
201         _ ("Report bugs via")
202         + ' http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs\n'))
203     return p
204
205 lilypond_binary = os.path.join ('@bindir@', 'lilypond')
206
207 # Only use installed binary when we are installed too.
208 if '@bindir@' == ('@' + 'bindir@') or not os.path.exists (lilypond_binary):
209     lilypond_binary = 'lilypond'
210
211 global_options = None
212
213
214 default_ly_options = { 'alt': "[image of music]" }
215
216 document_language = ''
217
218 #
219 # Is this pythonic?  Personally, I find this rather #define-nesque. --hwn
220 #
221 ADDVERSION = 'addversion'
222 AFTER = 'after'
223 BEFORE = 'before'
224 DOCBOOK = 'docbook'
225 EXAMPLEINDENT = 'exampleindent'
226 FILTER = 'filter'
227 FRAGMENT = 'fragment'
228 HTML = 'html'
229 INDENT = 'indent'
230 LANG = 'lang'
231 LATEX = 'latex'
232 LAYOUT = 'layout'
233 LINE_WIDTH = 'line-width'
234 LILYQUOTE = 'lilyquote'
235 NOFRAGMENT = 'nofragment'
236 NOINDENT = 'noindent'
237 NOQUOTE = 'noquote'
238 NOTES = 'body'
239 NOTIME = 'notime'
240 OUTPUT = 'output'
241 OUTPUTIMAGE = 'outputimage'
242 PACKED = 'packed'
243 PAPER = 'paper'
244 PREAMBLE = 'preamble'
245 PRINTFILENAME = 'printfilename'
246 QUOTE = 'quote'
247 RAGGED_RIGHT = 'ragged-right'
248 RELATIVE = 'relative'
249 STAFFSIZE = 'staffsize'
250 DOCTITLE = 'doctitle'
251 TEXIDOC = 'texidoc'
252 TEXINFO = 'texinfo'
253 VERBATIM = 'verbatim'
254 FONTLOAD = 'fontload'
255 FILENAME = 'filename'
256 ALT = 'alt'
257
258
259 # NOTIME has no opposite so it isn't part of this dictionary.
260 # NOQUOTE is used internally only.
261 no_options = {
262     NOFRAGMENT: FRAGMENT,
263     NOINDENT: INDENT,
264 }
265
266
267 # Recognize special sequences in the input.
268 #
269 #   (?P<name>regex) -- Assign result of REGEX to NAME.
270 #   *? -- Match non-greedily.
271 #   (?m) -- Multiline regex: Make ^ and $ match at each line.
272 #   (?s) -- Make the dot match all characters including newline.
273 #   (?x) -- Ignore whitespace in patterns.
274 no_match = 'a\ba'
275 snippet_res = {
276  ##
277     DOCBOOK: {
278         'include':
279          no_match,
280
281         'lilypond':
282          r'''(?smx)
283           (?P<match>
284           <(?P<inline>(inline)?)mediaobject>\s*<textobject.*?>\s*<programlisting\s+language="lilypond".*?(role="(?P<options>.*?)")?>(?P<code>.*?)</programlisting\s*>\s*</textobject\s*>\s*</(inline)?mediaobject>)''',
285
286         'lilypond_block':
287          r'''(?smx)
288           (?P<match>
289           <(?P<inline>(inline)?)mediaobject>\s*<textobject.*?>\s*<programlisting\s+language="lilypond".*?(role="(?P<options>.*?)")?>(?P<code>.*?)</programlisting\s*>\s*</textobject\s*>\s*</(inline)?mediaobject>)''',
290
291         'lilypond_file':
292          r'''(?smx)
293           (?P<match>
294           <(?P<inline>(inline)?)mediaobject>\s*<imageobject.*?>\s*<imagedata\s+fileref="(?P<filename>.*?\.ly)"\s*(role="(?P<options>.*?)")?\s*(/>|>\s*</imagedata>)\s*</imageobject>\s*</(inline)?mediaobject>)''',
295
296         'multiline_comment':
297          r'''(?smx)
298           (?P<match>
299           \s*(?!@c\s+)
300           (?P<code><!--\s.*?!-->)
301           \s)''',
302
303         'singleline_comment':
304          no_match,
305
306         'verb':
307          no_match,
308
309         'verbatim':
310         no_match,
311         
312     }, 
313     ##
314     HTML: {
315         'include':
316          no_match,
317
318         'lilypond':
319          r'''(?mx)
320           (?P<match>
321           <lilypond
322            (\s*(?P<options>.*?)\s*:)?\s*
323            (?P<code>.*?)
324           />)''',
325
326         'lilypond_block':
327          r'''(?msx)
328           (?P<match>
329           <lilypond
330            \s*(?P<options>.*?)\s*
331           >
332           (?P<code>.*?)
333           </lilypond>)''',
334
335         'lilypond_file':
336          r'''(?mx)
337           (?P<match>
338           <lilypondfile
339            \s*(?P<options>.*?)\s*
340           >
341           \s*(?P<filename>.*?)\s*
342           </lilypondfile>)''',
343
344         'multiline_comment':
345          r'''(?smx)
346           (?P<match>
347           \s*(?!@c\s+)
348           (?P<code><!--\s.*?!-->)
349           \s)''',
350
351         'singleline_comment':
352          no_match,
353
354         'verb':
355          r'''(?x)
356           (?P<match>
357            (?P<code><pre>.*?</pre>))''',
358
359         'verbatim':
360          r'''(?x)
361           (?s)
362           (?P<match>
363            (?P<code><pre>\s.*?</pre>\s))''',
364     },
365
366     ##
367     LATEX: {
368         'include':
369          r'''(?smx)
370           ^[^%\n]*?
371           (?P<match>
372           \\input\s*{
373            (?P<filename>\S+?)
374           })''',
375
376         'lilypond':
377          r'''(?smx)
378           ^[^%\n]*?
379           (?P<match>
380           \\lilypond\s*(
381           \[
382            \s*(?P<options>.*?)\s*
383           \])?\s*{
384            (?P<code>.*?)
385           })''',
386
387         'lilypond_block':
388          r'''(?smx)
389           ^[^%\n]*?
390           (?P<match>
391           \\begin\s*(
392           \[
393            \s*(?P<options>.*?)\s*
394           \])?\s*{lilypond}
395            (?P<code>.*?)
396           ^[^%\n]*?
397           \\end\s*{lilypond})''',
398
399         'lilypond_file':
400          r'''(?smx)
401           ^[^%\n]*?
402           (?P<match>
403           \\lilypondfile\s*(
404           \[
405            \s*(?P<options>.*?)\s*
406           \])?\s*\{
407            (?P<filename>\S+?)
408           })''',
409
410         'multiline_comment':
411          no_match,
412
413         'singleline_comment':
414          r'''(?mx)
415           ^.*?
416           (?P<match>
417            (?P<code>
418            %.*$\n+))''',
419
420         'verb':
421          r'''(?mx)
422           ^[^%\n]*?
423           (?P<match>
424            (?P<code>
425            \\verb(?P<del>.)
426             .*?
427            (?P=del)))''',
428
429         'verbatim':
430          r'''(?msx)
431           ^[^%\n]*?
432           (?P<match>
433            (?P<code>
434            \\begin\s*{verbatim}
435             .*?
436            \\end\s*{verbatim}))''',
437     },
438
439     ##
440     TEXINFO: {
441         'include':
442          r'''(?mx)
443           ^(?P<match>
444           @include\s+
445            (?P<filename>\S+))''',
446
447         'lilypond':
448          r'''(?smx)
449           ^[^\n]*?(?!@c\s+)[^\n]*?
450           (?P<match>
451           @lilypond\s*(
452           \[
453            \s*(?P<options>.*?)\s*
454           \])?\s*{
455            (?P<code>.*?)
456           })''',
457
458         'lilypond_block':
459          r'''(?msx)
460           ^(?P<match>
461           @lilypond\s*(
462           \[
463            \s*(?P<options>.*?)\s*
464           \])?\s+?
465           ^(?P<code>.*?)
466           ^@end\s+lilypond)\s''',
467
468         'lilypond_file':
469          r'''(?mx)
470           ^(?P<match>
471           @lilypondfile\s*(
472           \[
473            \s*(?P<options>.*?)\s*
474           \])?\s*{
475            (?P<filename>\S+)
476           })''',
477
478         'multiline_comment':
479          r'''(?smx)
480           ^(?P<match>
481            (?P<code>
482            @ignore\s
483             .*?
484            @end\s+ignore))\s''',
485
486         'singleline_comment':
487          r'''(?mx)
488           ^.*
489           (?P<match>
490            (?P<code>
491            @c([ \t][^\n]*|)\n))''',
492
493     # Don't do this: It interferes with @code{@{}.
494     #        'verb': r'''(?P<code>@code{.*?})''',
495
496         'verbatim':
497          r'''(?sx)
498           (?P<match>
499            (?P<code>
500            @example
501             \s.*?
502            @end\s+example\s))''',
503     },
504 }
505
506
507
508
509 format_res = {
510     DOCBOOK: {        
511         'intertext': r',?\s*intertext=\".*?\"',
512         'option_sep': '\s*',
513     }, 
514     HTML: {
515         'intertext': r',?\s*intertext=\".*?\"',
516         'option_sep': '\s*',
517     },
518
519     LATEX: {
520         'intertext': r',?\s*intertext=\".*?\"',
521         'option_sep': '\s*,\s*',
522     },
523
524     TEXINFO: {
525         'intertext': r',?\s*intertext=\".*?\"',
526         'option_sep': '\s*,\s*',
527     },
528 }
529
530 # Options without a pattern in ly_options.
531 simple_options = [
532     EXAMPLEINDENT,
533     FRAGMENT,
534     NOFRAGMENT,
535     NOINDENT,
536     PRINTFILENAME,
537     DOCTITLE,
538     TEXIDOC,
539     LANG,
540     VERBATIM,
541     FONTLOAD,
542     FILENAME,
543     ALT,
544     ADDVERSION
545 ]
546
547 ly_options = {
548     ##
549     NOTES: {
550         RELATIVE: r'''\relative c%(relative_quotes)s''',
551     },
552
553     ##
554     PAPER: {
555         INDENT: r'''indent = %(indent)s''',
556
557         LINE_WIDTH: r'''line-width = %(line-width)s''',
558
559         QUOTE: r'''line-width = %(line-width)s - 2.0 * %(exampleindent)s''',
560
561         LILYQUOTE: r'''line-width = %(line-width)s - 2.0 * %(exampleindent)s''',
562
563         RAGGED_RIGHT: r'''ragged-right = ##t''',
564
565         PACKED: r'''packed = ##t''',
566     },
567
568     ##
569     LAYOUT: {
570         NOTIME: r'''
571  \context {
572   \Score
573   timing = ##f
574  }
575  \context {
576   \Staff
577   \remove Time_signature_engraver
578  }''',
579     },
580
581     ##
582     PREAMBLE: {
583         STAFFSIZE: r'''#(set-global-staff-size %(staffsize)s)''',
584     },
585 }
586
587 output = {
588     ##
589     DOCBOOK: {                 
590         FILTER: r'''<mediaobject><textobject><programlisting language="lilypond" role="%(options)s">%(code)s</programlisting></textobject></mediaobject>''', 
591     
592         OUTPUT: r'''
593         <imageobject role="latex">
594                 <imagedata fileref="%(base)s.pdf" format="PDF"/>
595                 </imageobject>
596                 <imageobject role="html">
597                 <imagedata fileref="%(base)s.png" format="PNG"/></imageobject>''',
598     
599         VERBATIM: r'''<programlisting>%(verb)s</programlisting>''',
600     
601         PRINTFILENAME: '<textobject><simpara><ulink url="%(base)s.ly"><filename>%(filename)s</filename></ulink></simpara></textobject>'
602     },
603     ##
604     HTML: {
605         FILTER: r'''<lilypond %(options)s>
606 %(code)s
607 </lilypond>
608 ''',
609
610         AFTER: r'''
611  </a>
612 </p>''',
613
614         BEFORE: r'''<p>
615  <a href="%(base)s.ly">''',
616
617         OUTPUT: r'''
618   <img align="middle" 
619     border="0" src="%(image)s" alt="%(alt)s">''',
620
621         PRINTFILENAME: '<p><tt><a href="%(base)s.ly">%(filename)s</a></tt></p>',
622
623         QUOTE: r'''<blockquote>
624 %(str)s
625 </blockquote>
626 ''',
627
628         VERBATIM: r'''<pre>
629 %(verb)s</pre>''',
630     },
631
632     ##
633     LATEX: {
634         OUTPUT: r'''{%%
635 \parindent 0pt%%
636 \ifx\preLilyPondExample \undefined%%
637  \relax%%
638 \else%%
639  \preLilyPondExample%%
640 \fi%%
641 \def\lilypondbook{}%%
642 \input %(base)s-systems.tex%%
643 \ifx\postLilyPondExample \undefined%%
644  \relax%%
645 \else%%
646  \postLilyPondExample%%
647 \fi%%
648 }''',
649
650         PRINTFILENAME: '''\\texttt{%(filename)s}
651     ''',
652
653         QUOTE: r'''\begin{quotation}%(str)s
654 \end{quotation}''',
655
656         VERBATIM: r'''\noindent
657 \begin{verbatim}%(verb)s\end{verbatim}''',
658
659         FILTER: r'''\begin{lilypond}[%(options)s]
660 %(code)s
661 \end{lilypond}''',
662     },
663
664     ##
665     TEXINFO: {
666         FILTER: r'''@lilypond[%(options)s]
667 %(code)s
668 @lilypond''',
669
670         OUTPUT: r'''
671 @iftex
672 @include %(base)s-systems.texi
673 @end iftex
674 ''',
675
676         OUTPUTIMAGE: r'''@noindent
677 @ifinfo
678 @image{%(info_image_path)s,,,%(alt)s,%(ext)s}
679 @end ifinfo
680 @html
681 <p>
682  <a href="%(base)s.ly">
683   <img align="middle"
684     border="0" src="%(image)s" alt="%(alt)s">
685  </a>
686 </p>
687 @end html
688 ''',
689
690         PRINTFILENAME: '''
691 @html
692 <a href="%(base)s.ly">
693 @end html
694 @file{%(filename)s}
695 @html
696 </a>
697 @end html
698     ''',
699
700         QUOTE: r'''@quotation
701 %(str)s@end quotation
702 ''',
703
704         NOQUOTE: r'''@format
705 %(str)s@end format
706 ''',
707
708         VERBATIM: r'''@exampleindent 0
709 %(version)s@verbatim
710 %(verb)s@end verbatim
711 ''',
712
713         ADDVERSION: r'''@example
714 \version @w{"@version{}"}
715 @end example
716 '''
717     },
718 }
719
720 #
721 # Maintain line numbers.
722 #
723
724 ## TODO
725 if 0:
726     for f in [HTML, LATEX]:
727         for s in (QUOTE, VERBATIM):
728             output[f][s] = output[f][s].replace("\n"," ")
729
730
731 PREAMBLE_LY = '''%%%% Generated by %(program_name)s
732 %%%% Options: [%(option_string)s]
733 \\include "lilypond-book-preamble.ly"
734
735
736 %% ****************************************************************
737 %% Start cut-&-pastable-section 
738 %% ****************************************************************
739
740 %(preamble_string)s
741
742 \paper {
743   #(define dump-extents #t)
744   %(font_dump_setting)s
745   %(paper_string)s
746   force-assignment = #""
747   line-width = #(- line-width (* mm  %(padding_mm)f))
748 }
749
750 \layout {
751   %(layout_string)s
752 }
753 '''
754
755 FRAGMENT_LY = r'''
756 %(notes_string)s
757 {
758
759
760 %% ****************************************************************
761 %% ly snippet contents follows:
762 %% ****************************************************************
763 %(code)s
764
765
766 %% ****************************************************************
767 %% end ly snippet
768 %% ****************************************************************
769 }
770 '''
771
772 FULL_LY = '''
773
774
775 %% ****************************************************************
776 %% ly snippet:
777 %% ****************************************************************
778 %(code)s
779
780
781 %% ****************************************************************
782 %% end ly snippet
783 %% ****************************************************************
784 '''
785
786 texinfo_line_widths = {
787     '@afourpaper': '160\\mm',
788     '@afourwide': '6.5\\in',
789     '@afourlatex': '150\\mm',
790     '@smallbook': '5\\in',
791     '@letterpaper': '6\\in',
792 }
793
794 def classic_lilypond_book_compatibility (key, value):
795     if key == 'singleline' and value == None:
796         return (RAGGED_RIGHT, None)
797
798     m = re.search ('relative\s*([-0-9])', key)
799     if m:
800         return ('relative', m.group (1))
801
802     m = re.match ('([0-9]+)pt', key)
803     if m:
804         return ('staffsize', m.group (1))
805
806     if key == 'indent' or key == 'line-width':
807         m = re.match ('([-.0-9]+)(cm|in|mm|pt|staffspace)', value)
808         if m:
809             f = float (m.group (1))
810             return (key, '%f\\%s' % (f, m.group (2)))
811
812     return (None, None)
813
814 def find_file (name, raise_error=True):
815     for i in global_options.include_path:
816         full = os.path.join (i, name)
817         if os.path.exists (full):
818             return full
819         
820     if raise_error:
821         error (_ ("file not found: %s") % name + '\n')
822         exit (1)
823     return ''
824
825 def verbatim_html (s):
826     return re.sub ('>', '&gt;',
827            re.sub ('<', '&lt;',
828                re.sub ('&', '&amp;', s)))
829
830 ly_var_def_re = re.compile (r'^([a-zA-Z]+)[\t ]*=', re.M)
831 ly_comment_re = re.compile (r'(%+[\t ]*)(.*)$', re.M)
832
833 def ly_comment_gettext (t, m):
834     return m.group (1) + t (m.group (2))
835
836 def verb_ly_gettext (s):
837     if not document_language:
838         return s
839     try:
840         t = langdefs.translation[document_language]
841     except:
842         return s
843
844     s = ly_comment_re.sub (lambda m: ly_comment_gettext (t, m), s)
845     
846     for v in ly_var_def_re.findall (s):
847         s = re.sub (r"(?m)(^|[' \\#])%s([^a-zA-Z])" % v,
848                     "\\1" + t (v) + "\\2",
849                     s)
850     return s
851
852 texinfo_lang_re = re.compile ('(?m)^@documentlanguage (.*?)( |$)')
853 def set_default_options (source, default_ly_options, format):
854     global document_language
855     if LINE_WIDTH not in default_ly_options:
856         if format == LATEX:
857             textwidth = get_latex_textwidth (source)
858             default_ly_options[LINE_WIDTH] = '%.0f\\pt' % textwidth
859         elif format == TEXINFO:
860             m = texinfo_lang_re.search (source)
861             if m and not m.group (1).startswith ('en'):
862                 document_language = m.group (1)
863             else:
864                 document_language = ''
865             for regex in texinfo_line_widths:
866                 # FIXME: @layout is usually not in
867                 # chunk #0:
868                 #
869                 #  \input texinfo @c -*-texinfo-*-
870                 #
871                 # Bluntly search first K items of
872                 # source.
873                 # s = chunks[0].replacement_text ()
874                 if re.search (regex, source[:1024]):
875                     default_ly_options[LINE_WIDTH] = texinfo_line_widths[regex]
876                     break
877
878 class Chunk:
879     def replacement_text (self):
880         return ''
881
882     def filter_text (self):
883         return self.replacement_text ()
884
885     def is_plain (self):
886         return False
887     
888 class Substring (Chunk):
889     """A string that does not require extra memory."""
890     def __init__ (self, source, start, end, line_number):
891         self.source = source
892         self.start = start
893         self.end = end
894         self.line_number = line_number
895         self.override_text = None
896         
897     def is_plain (self):
898         return True
899
900     def replacement_text (self):
901         if self.override_text:
902             return self.override_text
903         else:
904             return self.source[self.start:self.end]
905
906 class Snippet (Chunk):
907     def __init__ (self, type, match, format, line_number):
908         self.type = type
909         self.match = match
910         self.checksum = 0
911         self.option_dict = {}
912         self.format = format
913         self.line_number = line_number
914
915     def replacement_text (self):
916         return self.match.group ('match')
917
918     def substring (self, s):
919         return self.match.group (s)
920
921     def __repr__ (self):
922         return `self.__class__` + ' type = ' + self.type
923
924 class IncludeSnippet (Snippet):
925     def processed_filename (self):
926         f = self.substring ('filename')
927         return os.path.splitext (f)[0] + format2ext[self.format]
928
929     def replacement_text (self):
930         s = self.match.group ('match')
931         f = self.substring ('filename')
932
933         return re.sub (f, self.processed_filename (), s)
934
935 class LilypondSnippet (Snippet):
936     def __init__ (self, type, match, format, line_number):
937         Snippet.__init__ (self, type, match, format, line_number)
938         os = match.group ('options')
939         self.do_options (os, self.type)
940
941     def verb_ly (self):
942         return verb_ly_gettext (self.substring ('code'))
943
944     def ly (self):
945         contents = self.substring ('code')
946         return ('\\sourcefileline %d\n%s'
947                 % (self.line_number - 1, contents))
948
949     def full_ly (self):
950         s = self.ly ()
951         if s:
952             return self.compose_ly (s)
953         return ''
954
955     def split_options (self, option_string):
956         if option_string:
957             if self.format == HTML:
958                 options = re.findall('[\w\.-:]+(?:\s*=\s*(?:"[^"]*"|\'[^\']*\'|\S+))?',
959                                      option_string)
960                 options = [re.sub('^([^=]+=\s*)(?P<q>["\'])(.*)(?P=q)', '\g<1>\g<3>', opt)
961                            for opt in options]
962                 return options
963             else:
964                 return re.split (format_res[self.format]['option_sep'],
965                                  option_string)
966         return []
967
968     def do_options (self, option_string, type):
969         self.option_dict = {}
970
971         options = self.split_options (option_string)
972
973         for option in options:
974             if '=' in option:
975                 (key, value) = re.split ('\s*=\s*', option)
976                 self.option_dict[key] = value
977             else:
978                 if option in no_options:
979                     if no_options[option] in self.option_dict:
980                         del self.option_dict[no_options[option]]
981                 else:
982                     self.option_dict[option] = None
983
984         has_line_width = self.option_dict.has_key (LINE_WIDTH)
985         no_line_width_value = 0
986
987         # If LINE_WIDTH is used without parameter, set it to default.
988         if has_line_width and self.option_dict[LINE_WIDTH] == None:
989             no_line_width_value = 1
990             del self.option_dict[LINE_WIDTH]
991
992         for k in default_ly_options:
993             if k not in self.option_dict:
994                 self.option_dict[k] = default_ly_options[k]
995
996         # RELATIVE does not work without FRAGMENT;
997         # make RELATIVE imply FRAGMENT
998         has_relative = self.option_dict.has_key (RELATIVE)
999         if has_relative and not self.option_dict.has_key (FRAGMENT):
1000             self.option_dict[FRAGMENT] = None
1001
1002         if not has_line_width:
1003             if type == 'lilypond' or FRAGMENT in self.option_dict:
1004                 self.option_dict[RAGGED_RIGHT] = None
1005
1006             if type == 'lilypond':
1007                 if LINE_WIDTH in self.option_dict:
1008                     del self.option_dict[LINE_WIDTH]
1009             else:
1010                 if RAGGED_RIGHT in self.option_dict:
1011                     if LINE_WIDTH in self.option_dict:
1012                         del self.option_dict[LINE_WIDTH]
1013
1014             if QUOTE in self.option_dict or type == 'lilypond':
1015                 if LINE_WIDTH in self.option_dict:
1016                     del self.option_dict[LINE_WIDTH]
1017
1018         if not INDENT in self.option_dict:
1019             self.option_dict[INDENT] = '0\\mm'
1020
1021         # The QUOTE pattern from ly_options only emits the `line-width'
1022         # keyword.
1023         if has_line_width and QUOTE in self.option_dict:
1024             if no_line_width_value:
1025                 del self.option_dict[LINE_WIDTH]
1026             else:
1027                 del self.option_dict[QUOTE]
1028
1029     def compose_ly (self, code):
1030         if FRAGMENT in self.option_dict:
1031             body = FRAGMENT_LY
1032         else:
1033             body = FULL_LY
1034
1035         # Defaults.
1036         relative = 1
1037         override = {}
1038         # The original concept of the `exampleindent' option is broken.
1039         # It is not possible to get a sane value for @exampleindent at all
1040         # without processing the document itself.  Saying
1041         #
1042         #   @exampleindent 0
1043         #   @example
1044         #   ...
1045         #   @end example
1046         #   @exampleindent 5
1047         #
1048         # causes ugly results with the DVI backend of texinfo since the
1049         # default value for @exampleindent isn't 5em but 0.4in (or a smaller
1050         # value).  Executing the above code changes the environment
1051         # indentation to an unknown value because we don't know the amount
1052         # of 1em in advance since it is font-dependent.  Modifying
1053         # @exampleindent in the middle of a document is simply not
1054         # supported within texinfo.
1055         #
1056         # As a consequence, the only function of @exampleindent is now to
1057         # specify the amount of indentation for the `quote' option.
1058         #
1059         # To set @exampleindent locally to zero, we use the @format
1060         # environment for non-quoted snippets.
1061         override[EXAMPLEINDENT] = r'0.4\in'
1062         override[LINE_WIDTH] = texinfo_line_widths['@smallbook']
1063         override.update (default_ly_options)
1064
1065         option_list = []
1066         for (key, value) in self.option_dict.items ():
1067             if value == None:
1068                 option_list.append (key)
1069             else:
1070                 option_list.append (key + '=' + value)
1071         option_string = ','.join (option_list)
1072
1073         compose_dict = {}
1074         compose_types = [NOTES, PREAMBLE, LAYOUT, PAPER]
1075         for a in compose_types:
1076             compose_dict[a] = []
1077
1078         for (key, value) in self.option_dict.items ():
1079             (c_key, c_value) = classic_lilypond_book_compatibility (key, value)
1080             if c_key:
1081                 if c_value:
1082                     warning (
1083                         _ ("deprecated ly-option used: %s=%s") % (key, value))
1084                     warning (
1085                         _ ("compatibility mode translation: %s=%s") % (c_key, c_value))
1086                 else:
1087                     warning (
1088                         _ ("deprecated ly-option used: %s") % key)
1089                     warning (
1090                         _ ("compatibility mode translation: %s") % c_key)
1091
1092                 (key, value) = (c_key, c_value)
1093
1094             if value:
1095                 override[key] = value
1096             else:
1097                 if not override.has_key (key):
1098                     override[key] = None
1099
1100             found = 0
1101             for type in compose_types:
1102                 if ly_options[type].has_key (key):
1103                     compose_dict[type].append (ly_options[type][key])
1104                     found = 1
1105                     break
1106
1107             if not found and key not in simple_options:
1108                 warning (_ ("ignoring unknown ly option: %s") % key)
1109
1110         # URGS
1111         if RELATIVE in override and override[RELATIVE]:
1112             relative = int (override[RELATIVE])
1113
1114         relative_quotes = ''
1115
1116         # 1 = central C
1117         if relative < 0:
1118             relative_quotes += ',' * (- relative)
1119         elif relative > 0:
1120             relative_quotes += "'" * relative
1121
1122         paper_string = '\n  '.join (compose_dict[PAPER]) % override
1123         layout_string = '\n  '.join (compose_dict[LAYOUT]) % override
1124         notes_string = '\n  '.join (compose_dict[NOTES]) % vars ()
1125         preamble_string = '\n  '.join (compose_dict[PREAMBLE]) % override
1126         padding_mm = global_options.padding_mm
1127         font_dump_setting = ''
1128         if FONTLOAD in self.option_dict:
1129             font_dump_setting = '#(define-public force-eps-font-include #t)\n'
1130
1131         d = globals().copy()
1132         d.update (locals())
1133         return (PREAMBLE_LY + body) % d
1134
1135     def get_checksum (self):
1136         if not self.checksum:
1137             hash = md5.md5 (self.relevant_contents (self.full_ly ()))
1138
1139             ## let's not create too long names.
1140             self.checksum = hash.hexdigest ()[:10]
1141             
1142         return self.checksum
1143
1144     def basename (self):
1145         cs = self.get_checksum ()
1146         name = '%s/lily-%s' % (cs[:2], cs[2:10])
1147         return name
1148
1149     def write_ly (self):
1150         base = self.basename ()
1151         path = os.path.join (global_options.lily_output_dir, base)
1152         directory = os.path.split(path)[0]
1153         if not os.path.isdir (directory):
1154             os.makedirs (directory)
1155         out = file (path + '.ly', 'w')
1156         out.write (self.full_ly ())
1157         file (path + '.txt', 'w').write ('image of music')
1158
1159     def relevant_contents (self, ly):
1160         return re.sub (r'\\(version|sourcefileline|sourcefilename)[^\n]*\n', '', ly)
1161
1162     def link_all_output_files (self, output_dir, output_dir_files, destination):
1163         existing, missing = self.all_output_files (output_dir, output_dir_files)
1164         if missing:
1165             print '\nMissing', missing
1166             raise CompileError(self.basename())
1167         for name in existing:
1168             try:
1169                 os.unlink (os.path.join (destination, name))
1170             except OSError:
1171                 pass
1172
1173             src = os.path.join (output_dir, name)
1174             dst = os.path.join (destination, name)
1175             dst_path = os.path.split(dst)[0]
1176             if not os.path.isdir (dst_path):
1177                 os.makedirs (dst_path)
1178             os.link (src, dst)
1179
1180         
1181     def all_output_files (self, output_dir, output_dir_files):
1182         """Return all files generated in lily_output_dir, a set.
1183
1184         output_dir_files is the list of files in the output directory.
1185         """
1186         result = set ()
1187         missing = set ()
1188         base = self.basename()
1189         full = os.path.join (output_dir, base)
1190         def consider_file (name):
1191             if name in output_dir_files:
1192                 result.add (name)
1193              
1194         def require_file (name):
1195             if name in output_dir_files:
1196                 result.add (name)
1197             else:
1198                 missing.add (name)
1199
1200         # UGH - junk global_options
1201         skip_lily = global_options.skip_lilypond_run
1202         for required in [base + '.ly',
1203                          base + '.txt']:
1204             require_file (required)
1205         if not skip_lily:
1206             require_file (base + '-systems.count')
1207
1208         if 'ddump-profile' in global_options.process_cmd:
1209             require_file (base + '.profile')
1210
1211         map (consider_file, [base + '.tex',
1212                              base + '.eps',
1213                              base + '.texidoc',
1214                              base + '.doctitle',
1215                              base + '-systems.texi',
1216                              base + '-systems.tex',
1217                              base + '-systems.pdftexi'])
1218         if document_language:
1219             map (consider_file,
1220                  [base + '.texidoc' + document_language,
1221                   base + '.doctitle' + document_language])
1222
1223         # UGH - junk global_options
1224         if (base + '.eps' in result and self.format in (HTML, TEXINFO)
1225             and not global_options.skip_png_check):
1226             page_count = ps_page_count (full + '.eps')
1227             if page_count <= 1:
1228                 require_file (base + '.png')
1229             else:
1230                 for page in range (1, page_count + 1):
1231                     require_file (base + '-page%d.png' % page)
1232
1233         system_count = 0
1234         if not skip_lily and not missing:
1235             system_count = int(file (full + '-systems.count').read())
1236
1237         for number in range(1, system_count + 1):
1238             systemfile = '%s-%d' % (base, number)
1239             require_file (systemfile + '.eps')
1240             consider_file (systemfile + '.pdf')
1241
1242             # We can't require signatures, since books and toplevel
1243             # markups do not output a signature.
1244             if 'ddump-signature' in global_options.process_cmd:
1245                 consider_file (systemfile + '.signature')
1246              
1247        
1248         return (result, missing)
1249     
1250     def is_outdated (self, output_dir, current_files):
1251         found, missing = self.all_output_files (output_dir, current_files)
1252         return missing
1253     
1254     def filter_text (self):
1255         """Run snippet bodies through a command (say: convert-ly).
1256
1257         This functionality is rarely used, and this code must have bitrot.
1258         """
1259         code = self.substring ('code')
1260         s = filter_pipe (code, global_options.filter_cmd)
1261         d = {
1262             'code': s,
1263             'options': self.match.group ('options')
1264         }
1265         # TODO
1266         return output[self.format][FILTER] % d
1267
1268     def replacement_text (self):
1269         func = LilypondSnippet.__dict__['output_' + self.format]
1270         return func (self)
1271
1272     def get_images (self):
1273         base = self.basename ()
1274
1275         single = '%(base)s.png' % vars ()
1276         multiple = '%(base)s-page1.png' % vars ()
1277         images = (single,)
1278         if (os.path.exists (multiple) 
1279             and (not os.path.exists (single)
1280                  or (os.stat (multiple)[stat.ST_MTIME]
1281                      > os.stat (single)[stat.ST_MTIME]))):
1282             count = ps_page_count ('%(base)s.eps' % vars ())
1283             images = ['%s-page%d.png' % (base, page) for page in range (1, count+1)]
1284             images = tuple (images)
1285             
1286         return images
1287
1288     def output_docbook (self):
1289         str = ''
1290         base = self.basename ()
1291         for image in self.get_images ():
1292             (base, ext) = os.path.splitext (image)
1293             str += output[DOCBOOK][OUTPUT] % vars ()
1294             str += self.output_print_filename (DOCBOOK)
1295             if (self.substring('inline') == 'inline'): 
1296                 str = '<inlinemediaobject>' + str + '</inlinemediaobject>'
1297             else:
1298                 str = '<mediaobject>' + str + '</mediaobject>'
1299         if VERBATIM in self.option_dict:
1300                 verb = verbatim_html (self.verb_ly ())
1301                 str = output[DOCBOOK][VERBATIM] % vars () + str
1302         return str
1303         
1304     def output_html (self):
1305         str = ''
1306         base = self.basename ()
1307         if self.format == HTML:
1308             str += self.output_print_filename (HTML)
1309             if VERBATIM in self.option_dict:
1310                 verb = verbatim_html (self.verb_ly ())
1311                 str += output[HTML][VERBATIM] % vars ()
1312             if QUOTE in self.option_dict:
1313                 str = output[HTML][QUOTE] % vars ()
1314
1315         str += output[HTML][BEFORE] % vars ()
1316         for image in self.get_images ():
1317             (base, ext) = os.path.splitext (image)
1318             alt = self.option_dict[ALT]
1319             str += output[HTML][OUTPUT] % vars ()
1320         str += output[HTML][AFTER] % vars ()
1321         return str
1322
1323     def output_info (self):
1324         str = ''
1325         for image in self.get_images ():
1326             (base, ext) = os.path.splitext (image)
1327
1328             # URG, makeinfo implicitly prepends dot to extension.
1329             # Specifying no extension is most robust.
1330             ext = ''
1331             alt = self.option_dict[ALT]
1332             info_image_path = os.path.join (global_options.info_images_dir, base)
1333             str += output[TEXINFO][OUTPUTIMAGE] % vars ()
1334
1335         base = self.basename ()
1336         str += output[self.format][OUTPUT] % vars ()
1337         return str
1338
1339     def output_latex (self):
1340         str = ''
1341         base = self.basename ()
1342         if self.format == LATEX:
1343             str += self.output_print_filename (LATEX)
1344             if VERBATIM in self.option_dict:
1345                 verb = self.verb_ly ()
1346                 str += (output[LATEX][VERBATIM] % vars ())
1347
1348         str += (output[LATEX][OUTPUT] % vars ())
1349
1350         ## todo: maintain breaks
1351         if 0:
1352             breaks = self.ly ().count ("\n")
1353             str += "".ljust (breaks, "\n").replace ("\n","%\n")
1354         
1355         if QUOTE in self.option_dict:
1356             str = output[LATEX][QUOTE] % vars ()
1357         return str
1358
1359     def output_print_filename (self, format):
1360         str = ''
1361         if PRINTFILENAME in self.option_dict:
1362             base = self.basename ()
1363             filename = os.path.basename (self.substring ('filename'))
1364             str = output[format][PRINTFILENAME] % vars ()
1365
1366         return str
1367
1368     def output_texinfo (self):
1369         str = self.output_print_filename (TEXINFO)
1370         base = self.basename ()
1371         if DOCTITLE in self.option_dict:
1372             doctitle = base + '.doctitle'
1373             translated_doctitle = doctitle + document_language
1374             if os.path.exists (translated_doctitle):
1375                 str += '@lydoctitle %s\n' % open (translated_doctitle).read ()
1376             elif os.path.exists (doctitle):
1377                 str += '@lydoctitle %s\n' % open (doctitle).read ()
1378         if TEXIDOC in self.option_dict:
1379             texidoc = base + '.texidoc'
1380             translated_texidoc = texidoc + document_language
1381             if os.path.exists (translated_texidoc):
1382                 str += '@include %(translated_texidoc)s\n\n' % vars ()
1383             elif os.path.exists (texidoc):
1384                 str += '@include %(texidoc)s\n\n' % vars ()
1385
1386         substr = ''
1387         if VERBATIM in self.option_dict:
1388             version = ''
1389             if ADDVERSION in self.option_dict:
1390                 version = output[TEXINFO][ADDVERSION]
1391             verb = self.verb_ly ()
1392             substr = output[TEXINFO][VERBATIM] % vars ()
1393         substr += self.output_info ()
1394         if LILYQUOTE in self.option_dict:
1395             substr = output[TEXINFO][QUOTE] % {'str':substr}
1396         str += substr
1397
1398 #                str += ('@ifinfo\n' + self.output_info () + '\n@end ifinfo\n')
1399 #                str += ('@tex\n' + self.output_latex () + '\n@end tex\n')
1400 #                str += ('@html\n' + self.output_html () + '\n@end html\n')
1401
1402         if QUOTE in self.option_dict:
1403             str = output[TEXINFO][QUOTE] % vars ()
1404
1405         # need par after image
1406         str += '\n'
1407
1408         return str
1409
1410 re_begin_verbatim = re.compile (r'\s+%.*?begin verbatim.*\n*', re.M)
1411 re_end_verbatim = re.compile (r'\s+%.*?end verbatim.*$', re.M)
1412
1413 class LilypondFileSnippet (LilypondSnippet):
1414     def __init__ (self, type, match, format, line_number):
1415         LilypondSnippet.__init__ (self, type, match, format, line_number)
1416         self.contents = file (find_file (self.substring ('filename'))).read ()
1417
1418     def verb_ly (self):
1419         s = self.contents
1420         s = re_begin_verbatim.split (s)[-1]
1421         s = re_end_verbatim.split (s)[0]
1422         return verb_ly_gettext (s)
1423
1424     def ly (self):
1425         name = self.substring ('filename')
1426         return ('\\sourcefilename \"%s\"\n\\sourcefileline 0\n%s'
1427                 % (name, self.contents))
1428
1429
1430 snippet_type_to_class = {
1431     'lilypond_file': LilypondFileSnippet,
1432     'lilypond_block': LilypondSnippet,
1433     'lilypond': LilypondSnippet,
1434     'include': IncludeSnippet,
1435 }
1436
1437 def find_linestarts (s):
1438     nls = [0]
1439     start = 0
1440     end = len (s)
1441     while 1:
1442         i = s.find ('\n', start)
1443         if i < 0:
1444             break
1445
1446         i = i + 1
1447         nls.append (i)
1448         start = i
1449
1450     nls.append (len (s))
1451     return nls
1452
1453 def find_toplevel_snippets (input_string, format, types):
1454     res = {}
1455     for t in types:
1456         res[t] = re.compile (snippet_res[format][t])
1457
1458     snippets = []
1459     index = 0
1460     found = dict ([(t, None) for t in types])
1461
1462     line_starts = find_linestarts (input_string)
1463     line_start_idx = 0
1464     # We want to search for multiple regexes, without searching
1465     # the string multiple times for one regex.
1466     # Hence, we use earlier results to limit the string portion
1467     # where we search.
1468     # Since every part of the string is traversed at most once for
1469     # every type of snippet, this is linear.
1470
1471     while 1:
1472         first = None
1473         endex = 1 << 30
1474         for type in types:
1475             if not found[type] or found[type][0] < index:
1476                 found[type] = None
1477                 
1478                 m = res[type].search (input_string[index:endex])
1479                 if not m:
1480                     continue
1481
1482                 klass = Snippet
1483                 if type in snippet_type_to_class:
1484                     klass = snippet_type_to_class[type]
1485
1486                 start = index + m.start ('match')
1487                 line_number = line_start_idx
1488                 while (line_starts[line_number] < start):
1489                     line_number += 1
1490
1491                 line_number += 1
1492                 snip = klass (type, m, format, line_number)
1493
1494                 found[type] = (start, snip)
1495
1496             if (found[type] 
1497                 and (not first 
1498                      or found[type][0] < found[first][0])):
1499                 first = type
1500
1501                 # FIXME.
1502
1503                 # Limiting the search space is a cute
1504                 # idea, but this *requires* to search
1505                 # for possible containing blocks
1506                 # first, at least as long as we do not
1507                 # search for the start of blocks, but
1508                 # always/directly for the entire
1509                 # @block ... @end block.
1510
1511                 endex = found[first][0]
1512
1513         if not first:
1514             snippets.append (Substring (input_string, index, len (input_string), line_start_idx))
1515             break
1516
1517         while (start > line_starts[line_start_idx+1]):
1518             line_start_idx += 1
1519
1520         (start, snip) = found[first]
1521         snippets.append (Substring (input_string, index, start, line_start_idx + 1))
1522         snippets.append (snip)
1523         found[first] = None
1524         index = start + len (snip.match.group ('match'))
1525
1526     return snippets
1527
1528 def filter_pipe (input, cmd):
1529     """Pass input through cmd, and return the result."""
1530     
1531     if global_options.verbose:
1532         progress (_ ("Opening filter `%s'") % cmd)
1533
1534     (stdin, stdout, stderr) = os.popen3 (cmd)
1535     stdin.write (input)
1536     status = stdin.close ()
1537
1538     if not status:
1539         status = 0
1540         output = stdout.read ()
1541         status = stdout.close ()
1542         error = stderr.read ()
1543
1544     if not status:
1545         status = 0
1546     signal = 0x0f & status
1547     if status or (not output and error):
1548         exit_status = status >> 8
1549         error (_ ("`%s' failed (%d)") % (cmd, exit_status))
1550         error (_ ("The error log is as follows:"))
1551         ly.stderr_write (error)
1552         ly.stderr_write (stderr.read ())
1553         exit (status)
1554
1555     if global_options.verbose:
1556         progress ('\n')
1557
1558     return output
1559
1560 def system_in_directory (cmd, directory):
1561     """Execute a command in a different directory.
1562
1563     Because of win32 compatibility, we can't simply use subprocess.
1564     """
1565     
1566     current = os.getcwd()
1567     os.chdir (directory)
1568     ly.system(cmd, be_verbose=global_options.verbose, 
1569               progress_p=1)
1570     os.chdir (current)
1571     
1572
1573 def process_snippets (cmd, snippets,
1574                       format, lily_output_dir):
1575     """Run cmd on all of the .ly files from snippets."""
1576
1577     if not snippets:
1578         return
1579     
1580     if format in (HTML, TEXINFO) and '--formats' not in cmd:
1581         cmd += ' --formats=png '
1582     elif format in (DOCBOOK) and '--formats' not in cmd:
1583         cmd += ' --formats=png,pdf '
1584
1585     checksum = snippet_list_checksum (snippets)
1586     contents = '\n'.join (['snippet-map-%d.ly' % checksum] 
1587                           + [snip.basename() + '.ly' for snip in snippets])
1588     name = os.path.join (lily_output_dir,
1589                          'snippet-names-%d.ly' % checksum)
1590     file (name, 'wb').write (contents)
1591
1592     system_in_directory (' '.join ([cmd, name]),
1593                          lily_output_dir)
1594             
1595         
1596 ###
1597 # Retrieve dimensions from LaTeX
1598 LATEX_INSPECTION_DOCUMENT = r'''
1599 \nonstopmode
1600 %(preamble)s
1601 \begin{document}
1602 \typeout{textwidth=\the\textwidth}
1603 \typeout{columnsep=\the\columnsep}
1604 \makeatletter\if@twocolumn\typeout{columns=2}\fi\makeatother
1605 \end{document}
1606 '''
1607
1608 # Do we need anything else besides `textwidth'?
1609 def get_latex_textwidth (source):
1610     m = re.search (r'''(?P<preamble>\\begin\s*{document})''', source)
1611     if m == None:
1612         warning (_ ("cannot find \\begin{document} in LaTeX document"))
1613         
1614         ## what's a sensible default?
1615         return 550.0
1616     
1617     preamble = source[:m.start (0)]
1618     latex_document = LATEX_INSPECTION_DOCUMENT % vars ()
1619     
1620     (handle, tmpfile) = tempfile.mkstemp('.tex')
1621     logfile = os.path.splitext (tmpfile)[0] + '.log'
1622     logfile = os.path.split (logfile)[1]
1623
1624     tmp_handle = os.fdopen (handle,'w')
1625     tmp_handle.write (latex_document)
1626     tmp_handle.close ()
1627     
1628     ly.system ('%s %s' % (global_options.latex_program, tmpfile),
1629                be_verbose=global_options.verbose)
1630     parameter_string = file (logfile).read()
1631     
1632     os.unlink (tmpfile)
1633     os.unlink (logfile)
1634
1635     columns = 0
1636     m = re.search ('columns=([0-9.]*)', parameter_string)
1637     if m:
1638         columns = int (m.group (1))
1639
1640     columnsep = 0
1641     m = re.search ('columnsep=([0-9.]*)pt', parameter_string)
1642     if m:
1643         columnsep = float (m.group (1))
1644
1645     textwidth = 0
1646     m = re.search ('textwidth=([0-9.]*)pt', parameter_string)
1647     if m:
1648         textwidth = float (m.group (1))
1649         if columns:
1650             textwidth = (textwidth - columnsep) / columns
1651
1652     return textwidth
1653
1654 def modify_preamble (chunk):
1655     str = chunk.replacement_text ()
1656     if (re.search (r"\\begin *{document}", str)
1657       and not re.search ("{graphic[sx]", str)):
1658         str = re.sub (r"\\begin{document}",
1659                r"\\usepackage{graphics}" + '\n'
1660                + r"\\begin{document}",
1661                str)
1662         chunk.override_text = str 
1663
1664
1665 format2ext = {
1666     HTML: '.html',
1667     # TEXINFO: '.texinfo',
1668     TEXINFO: '.texi',
1669     LATEX: '.tex',
1670     DOCBOOK: '.xml'
1671 }
1672
1673 class CompileError(Exception):
1674     pass
1675
1676 def snippet_list_checksum (snippets):
1677     return hash (' '.join([l.basename() for l in snippets]))
1678
1679 def write_file_map (lys, name):
1680     snippet_map = file (os.path.join (
1681         global_options.lily_output_dir,
1682         'snippet-map-%d.ly' % snippet_list_checksum (lys)), 'w')
1683
1684     snippet_map.write ("""
1685 #(define version-seen #t)
1686 #(define output-empty-score-list #f)
1687 #(ly:add-file-name-alist '(%s
1688     ))\n
1689 """ % '\n'.join(['("%s.ly" . "%s")\n' % (ly.basename (), name)
1690                  for ly in lys]))
1691
1692 def split_output_files(directory):
1693     """Returns directory entries in DIRECTORY/XX/ , where XX are hex digits.
1694
1695     Return value is a set of strings.
1696     """
1697     files = []
1698     for subdir in glob.glob (os.path.join (directory, '[a-f0-9][a-f0-9]')):
1699         base_subdir = os.path.split (subdir)[1]
1700         sub_files = [os.path.join (base_subdir, name)
1701                      for name in os.listdir (subdir)]
1702         files += sub_files
1703     return set (files)
1704
1705 def do_process_cmd (chunks, input_name, options):
1706     snippets = [c for c in chunks if isinstance (c, LilypondSnippet)]
1707
1708     output_files = split_output_files (options.lily_output_dir)
1709     outdated = [c for c in snippets if c.is_outdated (options.lily_output_dir, output_files)]
1710     
1711     write_file_map (outdated, input_name)    
1712     progress (_ ("Writing snippets..."))
1713     for snippet in outdated:
1714         snippet.write_ly()
1715     progress ('\n')
1716
1717     if outdated:
1718         progress (_ ("Processing..."))
1719         progress ('\n')
1720         process_snippets (options.process_cmd, outdated,
1721                           options.format, options.lily_output_dir)
1722
1723     else:
1724         progress (_ ("All snippets are up to date..."))
1725
1726     if options.lily_output_dir != options.output_dir:
1727         output_files = split_output_files (options.lily_output_dir)
1728         for snippet in snippets:
1729             snippet.link_all_output_files (options.lily_output_dir,
1730                                            output_files,
1731                                            options.output_dir)
1732
1733     progress ('\n')
1734
1735
1736 ###
1737 # Format guessing data
1738 ext2format = {
1739     '.html': HTML,
1740     '.itely': TEXINFO,
1741     '.latex': LATEX,
1742     '.lytex': LATEX,
1743     '.tely': TEXINFO,
1744     '.tex': LATEX,
1745     '.texi': TEXINFO,
1746     '.texinfo': TEXINFO,
1747     '.xml': HTML,
1748     '.lyxml': DOCBOOK
1749 }
1750
1751 def guess_format (input_filename):
1752     format = None
1753     e = os.path.splitext (input_filename)[1]
1754     if e in ext2format:
1755         # FIXME
1756         format = ext2format[e]
1757     else:
1758         error (_ ("cannot determine format for: %s"
1759                   % input_filename))
1760         exit (1)
1761     return format
1762
1763 def write_if_updated (file_name, lines):
1764     try:
1765         f = file (file_name)
1766         oldstr = f.read ()
1767         new_str = ''.join (lines)
1768         if oldstr == new_str:
1769             progress (_ ("%s is up to date.") % file_name)
1770             progress ('\n')
1771
1772             # this prevents make from always rerunning lilypond-book:
1773             # output file must be touched in order to be up to date
1774             os.utime (file_name, None)
1775             return
1776     except:
1777         pass
1778
1779     output_dir = os.path.dirname (file_name)
1780     if not os.path.exists (output_dir):
1781         os.makedirs (output_dir)
1782
1783     progress (_ ("Writing `%s'...") % file_name)
1784     file (file_name, 'w').writelines (lines)
1785     progress ('\n')
1786
1787
1788 def note_input_file (name, inputs=[]):
1789     ## hack: inputs is mutable!
1790     inputs.append (name)
1791     return inputs
1792
1793 def samefile (f1, f2):
1794     try:
1795         return os.path.samefile (f1, f2)
1796     except AttributeError:                # Windoze
1797         f1 = re.sub ("//*", "/", f1)
1798         f2 = re.sub ("//*", "/", f2)
1799         return f1 == f2
1800
1801 def do_file (input_filename, included=False):
1802     # Ugh.
1803     if not input_filename or input_filename == '-':
1804         in_handle = sys.stdin
1805         input_fullname = '<stdin>'
1806     else:
1807         if os.path.exists (input_filename):
1808             input_fullname = input_filename
1809         elif global_options.format == LATEX and ly.search_exe_path ('kpsewhich'):
1810             input_fullname = os.popen ('kpsewhich ' + input_filename).read()[:-1]
1811         else:
1812             input_fullname = find_file (input_filename)
1813
1814         note_input_file (input_fullname)
1815         in_handle = file (input_fullname)
1816
1817     if input_filename == '-':
1818         input_base = 'stdin'
1819     elif included:
1820         input_base = os.path.splitext (input_filename)[0]
1821     else:
1822         input_base = os.path.basename (
1823             os.path.splitext (input_filename)[0])
1824
1825     # don't complain when global_options.output_dir is existing
1826     if not global_options.output_dir:
1827         global_options.output_dir = os.getcwd()
1828     else:
1829         global_options.output_dir = os.path.abspath(global_options.output_dir)
1830         
1831         if not os.path.isdir (global_options.output_dir):
1832             os.mkdir (global_options.output_dir, 0777)
1833         os.chdir (global_options.output_dir)
1834
1835     output_filename = os.path.join(global_options.output_dir,
1836                                    input_base + format2ext[global_options.format])
1837     if (os.path.exists (input_filename) 
1838         and os.path.exists (output_filename) 
1839         and samefile (output_filename, input_fullname)):
1840      error (
1841      _ ("Output would overwrite input file; use --output."))
1842      exit (2)
1843
1844     try:
1845         progress (_ ("Reading %s...") % input_fullname)
1846         source = in_handle.read ()
1847         progress ('\n')
1848
1849         set_default_options (source, default_ly_options, global_options.format)
1850
1851
1852         # FIXME: Containing blocks must be first, see
1853         #        find_toplevel_snippets.
1854         snippet_types = (
1855             'multiline_comment',
1856             'verbatim',
1857             'lilypond_block',
1858     #                'verb',
1859             'singleline_comment',
1860             'lilypond_file',
1861             'include',
1862             'lilypond',
1863         )
1864         progress (_ ("Dissecting..."))
1865         chunks = find_toplevel_snippets (source, global_options.format, snippet_types)
1866
1867         if global_options.format == LATEX:
1868             for c in chunks:
1869                 if (c.is_plain () and
1870                   re.search (r"\\begin *{document}", c.replacement_text())):
1871                     modify_preamble (c)
1872                     break
1873         progress ('\n')
1874
1875         if global_options.filter_cmd:
1876             write_if_updated (output_filename,
1877                      [c.filter_text () for c in chunks])
1878         elif global_options.process_cmd:
1879             do_process_cmd (chunks, input_fullname, global_options)
1880             progress (_ ("Compiling %s...") % output_filename)
1881             progress ('\n')
1882             write_if_updated (output_filename,
1883                      [s.replacement_text ()
1884                      for s in chunks])
1885         
1886         def process_include (snippet):
1887             os.chdir (original_dir)
1888             name = snippet.substring ('filename')
1889             progress (_ ("Processing include: %s") % name)
1890             progress ('\n')
1891             return do_file (name, included=True)
1892
1893         include_chunks = map (process_include,
1894                               filter (lambda x: isinstance (x, IncludeSnippet),
1895                                       chunks))
1896
1897         return chunks + reduce (lambda x, y: x + y, include_chunks, [])
1898         
1899     except CompileError:
1900         os.chdir (original_dir)
1901         progress (_ ("Removing `%s'") % output_filename)
1902         progress ('\n')
1903         raise CompileError
1904
1905 def do_options ():
1906     global global_options
1907
1908     opt_parser = get_option_parser()
1909     (global_options, args) = opt_parser.parse_args ()
1910     if global_options.format in ('texi-html', 'texi'):
1911         global_options.format = TEXINFO
1912
1913     global_options.include_path =  map (os.path.abspath, global_options.include_path)
1914     
1915     if global_options.warranty:
1916         warranty ()
1917         exit (0)
1918     if not args or len (args) > 1:
1919         opt_parser.print_help ()
1920         exit (2)
1921         
1922     return args
1923
1924 def main ():
1925     # FIXME: 85 lines of `main' macramee??
1926     files = do_options ()
1927
1928     basename = os.path.splitext (files[0])[0]
1929     basename = os.path.split (basename)[1]
1930     
1931     if not global_options.format:
1932         global_options.format = guess_format (files[0])
1933
1934     formats = 'ps'
1935     if global_options.format in (TEXINFO, HTML, DOCBOOK):
1936         formats += ',png'
1937
1938     if global_options.process_cmd == '':
1939         global_options.process_cmd = (lilypond_binary 
1940                                       + ' --formats=%s -dbackend=eps ' % formats)
1941
1942     if global_options.process_cmd:
1943         includes = global_options.include_path
1944         if global_options.lily_output_dir:
1945             # This must be first, so lilypond prefers to read .ly
1946             # files in the other lybookdb dir.
1947             includes = [os.path.abspath(global_options.lily_output_dir)] + includes
1948         global_options.process_cmd += ' '.join ([' -I %s' % ly.mkarg (p)
1949                                                  for p in includes])
1950
1951     if global_options.format in (TEXINFO, LATEX):
1952         ## prevent PDF from being switched on by default.
1953         global_options.process_cmd += ' --formats=eps '
1954         if global_options.create_pdf:
1955             global_options.process_cmd += "--pdf -dinclude-eps-fonts -dgs-load-fonts "
1956     
1957     if global_options.verbose:
1958         global_options.process_cmd += " --verbose "
1959
1960     if global_options.padding_mm:
1961         global_options.process_cmd += " -deps-box-padding=%f " % global_options.padding_mm
1962         
1963     global_options.process_cmd += " -dread-file-list -dno-strip-output-dir"
1964
1965     if global_options.lily_output_dir:
1966         global_options.lily_output_dir = os.path.abspath(global_options.lily_output_dir)
1967         if not os.path.isdir (global_options.lily_output_dir):
1968             os.makedirs (global_options.lily_output_dir)
1969     else:
1970         global_options.lily_output_dir = os.path.abspath(global_options.output_dir)
1971         
1972
1973     identify ()
1974     try:
1975         chunks = do_file (files[0])
1976     except CompileError:
1977         exit (1)
1978
1979     inputs = note_input_file ('')
1980     inputs.pop ()
1981
1982     base_file_name = os.path.splitext (os.path.basename (files[0]))[0]
1983     dep_file = os.path.join (global_options.output_dir, base_file_name + '.dep')
1984     final_output_file = os.path.join (global_options.output_dir,
1985                      base_file_name
1986                      + '.%s' % global_options.format)
1987     
1988     os.chdir (original_dir)
1989     file (dep_file, 'w').write ('%s: %s'
1990                                 % (final_output_file, ' '.join (inputs)))
1991
1992 if __name__ == '__main__':
1993     main ()