]> git.donarmstrong.com Git - lilypond.git/blob - scripts/lilypond-book.py
Require .signature and .profile files if options are in process_cmd.
[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             if 'ddump-signature' in global_options.process_cmd:
1243                 require_file (systemfile + '.signature')
1244              
1245        
1246         return (result, missing)
1247     
1248     def is_outdated (self, output_dir, current_files):
1249         found, missing = self.all_output_files (output_dir, current_files)
1250         return missing
1251     
1252     def filter_text (self):
1253         """Run snippet bodies through a command (say: convert-ly).
1254
1255         This functionality is rarely used, and this code must have bitrot.
1256         """
1257         code = self.substring ('code')
1258         s = filter_pipe (code, global_options.filter_cmd)
1259         d = {
1260             'code': s,
1261             'options': self.match.group ('options')
1262         }
1263         # TODO
1264         return output[self.format][FILTER] % d
1265
1266     def replacement_text (self):
1267         func = LilypondSnippet.__dict__['output_' + self.format]
1268         return func (self)
1269
1270     def get_images (self):
1271         base = self.basename ()
1272
1273         single = '%(base)s.png' % vars ()
1274         multiple = '%(base)s-page1.png' % vars ()
1275         images = (single,)
1276         if (os.path.exists (multiple) 
1277             and (not os.path.exists (single)
1278                  or (os.stat (multiple)[stat.ST_MTIME]
1279                      > os.stat (single)[stat.ST_MTIME]))):
1280             count = ps_page_count ('%(base)s.eps' % vars ())
1281             images = ['%s-page%d.png' % (base, page) for page in range (1, count+1)]
1282             images = tuple (images)
1283             
1284         return images
1285
1286     def output_docbook (self):
1287         str = ''
1288         base = self.basename ()
1289         for image in self.get_images ():
1290             (base, ext) = os.path.splitext (image)
1291             str += output[DOCBOOK][OUTPUT] % vars ()
1292             str += self.output_print_filename (DOCBOOK)
1293             if (self.substring('inline') == 'inline'): 
1294                 str = '<inlinemediaobject>' + str + '</inlinemediaobject>'
1295             else:
1296                 str = '<mediaobject>' + str + '</mediaobject>'
1297         if VERBATIM in self.option_dict:
1298                 verb = verbatim_html (self.verb_ly ())
1299                 str = output[DOCBOOK][VERBATIM] % vars () + str
1300         return str
1301         
1302     def output_html (self):
1303         str = ''
1304         base = self.basename ()
1305         if self.format == HTML:
1306             str += self.output_print_filename (HTML)
1307             if VERBATIM in self.option_dict:
1308                 verb = verbatim_html (self.verb_ly ())
1309                 str += output[HTML][VERBATIM] % vars ()
1310             if QUOTE in self.option_dict:
1311                 str = output[HTML][QUOTE] % vars ()
1312
1313         str += output[HTML][BEFORE] % vars ()
1314         for image in self.get_images ():
1315             (base, ext) = os.path.splitext (image)
1316             alt = self.option_dict[ALT]
1317             str += output[HTML][OUTPUT] % vars ()
1318         str += output[HTML][AFTER] % vars ()
1319         return str
1320
1321     def output_info (self):
1322         str = ''
1323         for image in self.get_images ():
1324             (base, ext) = os.path.splitext (image)
1325
1326             # URG, makeinfo implicitly prepends dot to extension.
1327             # Specifying no extension is most robust.
1328             ext = ''
1329             alt = self.option_dict[ALT]
1330             info_image_path = os.path.join (global_options.info_images_dir, base)
1331             str += output[TEXINFO][OUTPUTIMAGE] % vars ()
1332
1333         base = self.basename ()
1334         str += output[self.format][OUTPUT] % vars ()
1335         return str
1336
1337     def output_latex (self):
1338         str = ''
1339         base = self.basename ()
1340         if self.format == LATEX:
1341             str += self.output_print_filename (LATEX)
1342             if VERBATIM in self.option_dict:
1343                 verb = self.verb_ly ()
1344                 str += (output[LATEX][VERBATIM] % vars ())
1345
1346         str += (output[LATEX][OUTPUT] % vars ())
1347
1348         ## todo: maintain breaks
1349         if 0:
1350             breaks = self.ly ().count ("\n")
1351             str += "".ljust (breaks, "\n").replace ("\n","%\n")
1352         
1353         if QUOTE in self.option_dict:
1354             str = output[LATEX][QUOTE] % vars ()
1355         return str
1356
1357     def output_print_filename (self, format):
1358         str = ''
1359         if PRINTFILENAME in self.option_dict:
1360             base = self.basename ()
1361             filename = os.path.basename (self.substring ('filename'))
1362             str = output[format][PRINTFILENAME] % vars ()
1363
1364         return str
1365
1366     def output_texinfo (self):
1367         str = self.output_print_filename (TEXINFO)
1368         base = self.basename ()
1369         if DOCTITLE in self.option_dict:
1370             doctitle = base + '.doctitle'
1371             translated_doctitle = doctitle + document_language
1372             if os.path.exists (translated_doctitle):
1373                 str += '@lydoctitle %s\n' % open (translated_doctitle).read ()
1374             elif os.path.exists (doctitle):
1375                 str += '@lydoctitle %s\n' % open (doctitle).read ()
1376         if TEXIDOC in self.option_dict:
1377             texidoc = base + '.texidoc'
1378             translated_texidoc = texidoc + document_language
1379             if os.path.exists (translated_texidoc):
1380                 str += '@include %(translated_texidoc)s\n\n' % vars ()
1381             elif os.path.exists (texidoc):
1382                 str += '@include %(texidoc)s\n\n' % vars ()
1383
1384         substr = ''
1385         if VERBATIM in self.option_dict:
1386             version = ''
1387             if ADDVERSION in self.option_dict:
1388                 version = output[TEXINFO][ADDVERSION]
1389             verb = self.verb_ly ()
1390             substr = output[TEXINFO][VERBATIM] % vars ()
1391         substr += self.output_info ()
1392         if LILYQUOTE in self.option_dict:
1393             substr = output[TEXINFO][QUOTE] % {'str':substr}
1394         str += substr
1395
1396 #                str += ('@ifinfo\n' + self.output_info () + '\n@end ifinfo\n')
1397 #                str += ('@tex\n' + self.output_latex () + '\n@end tex\n')
1398 #                str += ('@html\n' + self.output_html () + '\n@end html\n')
1399
1400         if QUOTE in self.option_dict:
1401             str = output[TEXINFO][QUOTE] % vars ()
1402
1403         # need par after image
1404         str += '\n'
1405
1406         return str
1407
1408 re_begin_verbatim = re.compile (r'\s+%.*?begin verbatim.*\n*', re.M)
1409 re_end_verbatim = re.compile (r'\s+%.*?end verbatim.*$', re.M)
1410
1411 class LilypondFileSnippet (LilypondSnippet):
1412     def __init__ (self, type, match, format, line_number):
1413         LilypondSnippet.__init__ (self, type, match, format, line_number)
1414         self.contents = file (find_file (self.substring ('filename'))).read ()
1415
1416     def verb_ly (self):
1417         s = self.contents
1418         s = re_begin_verbatim.split (s)[-1]
1419         s = re_end_verbatim.split (s)[0]
1420         return verb_ly_gettext (s)
1421
1422     def ly (self):
1423         name = self.substring ('filename')
1424         return ('\\sourcefilename \"%s\"\n\\sourcefileline 0\n%s'
1425                 % (name, self.contents))
1426
1427
1428 snippet_type_to_class = {
1429     'lilypond_file': LilypondFileSnippet,
1430     'lilypond_block': LilypondSnippet,
1431     'lilypond': LilypondSnippet,
1432     'include': IncludeSnippet,
1433 }
1434
1435 def find_linestarts (s):
1436     nls = [0]
1437     start = 0
1438     end = len (s)
1439     while 1:
1440         i = s.find ('\n', start)
1441         if i < 0:
1442             break
1443
1444         i = i + 1
1445         nls.append (i)
1446         start = i
1447
1448     nls.append (len (s))
1449     return nls
1450
1451 def find_toplevel_snippets (input_string, format, types):
1452     res = {}
1453     for t in types:
1454         res[t] = re.compile (snippet_res[format][t])
1455
1456     snippets = []
1457     index = 0
1458     found = dict ([(t, None) for t in types])
1459
1460     line_starts = find_linestarts (input_string)
1461     line_start_idx = 0
1462     # We want to search for multiple regexes, without searching
1463     # the string multiple times for one regex.
1464     # Hence, we use earlier results to limit the string portion
1465     # where we search.
1466     # Since every part of the string is traversed at most once for
1467     # every type of snippet, this is linear.
1468
1469     while 1:
1470         first = None
1471         endex = 1 << 30
1472         for type in types:
1473             if not found[type] or found[type][0] < index:
1474                 found[type] = None
1475                 
1476                 m = res[type].search (input_string[index:endex])
1477                 if not m:
1478                     continue
1479
1480                 klass = Snippet
1481                 if type in snippet_type_to_class:
1482                     klass = snippet_type_to_class[type]
1483
1484                 start = index + m.start ('match')
1485                 line_number = line_start_idx
1486                 while (line_starts[line_number] < start):
1487                     line_number += 1
1488
1489                 line_number += 1
1490                 snip = klass (type, m, format, line_number)
1491
1492                 found[type] = (start, snip)
1493
1494             if (found[type] 
1495                 and (not first 
1496                      or found[type][0] < found[first][0])):
1497                 first = type
1498
1499                 # FIXME.
1500
1501                 # Limiting the search space is a cute
1502                 # idea, but this *requires* to search
1503                 # for possible containing blocks
1504                 # first, at least as long as we do not
1505                 # search for the start of blocks, but
1506                 # always/directly for the entire
1507                 # @block ... @end block.
1508
1509                 endex = found[first][0]
1510
1511         if not first:
1512             snippets.append (Substring (input_string, index, len (input_string), line_start_idx))
1513             break
1514
1515         while (start > line_starts[line_start_idx+1]):
1516             line_start_idx += 1
1517
1518         (start, snip) = found[first]
1519         snippets.append (Substring (input_string, index, start, line_start_idx + 1))
1520         snippets.append (snip)
1521         found[first] = None
1522         index = start + len (snip.match.group ('match'))
1523
1524     return snippets
1525
1526 def filter_pipe (input, cmd):
1527     """Pass input through cmd, and return the result."""
1528     
1529     if global_options.verbose:
1530         progress (_ ("Opening filter `%s'") % cmd)
1531
1532     (stdin, stdout, stderr) = os.popen3 (cmd)
1533     stdin.write (input)
1534     status = stdin.close ()
1535
1536     if not status:
1537         status = 0
1538         output = stdout.read ()
1539         status = stdout.close ()
1540         error = stderr.read ()
1541
1542     if not status:
1543         status = 0
1544     signal = 0x0f & status
1545     if status or (not output and error):
1546         exit_status = status >> 8
1547         error (_ ("`%s' failed (%d)") % (cmd, exit_status))
1548         error (_ ("The error log is as follows:"))
1549         ly.stderr_write (error)
1550         ly.stderr_write (stderr.read ())
1551         exit (status)
1552
1553     if global_options.verbose:
1554         progress ('\n')
1555
1556     return output
1557
1558 def system_in_directory (cmd, directory):
1559     """Execute a command in a different directory.
1560
1561     Because of win32 compatibility, we can't simply use subprocess.
1562     """
1563     
1564     current = os.getcwd()
1565     os.chdir (directory)
1566     ly.system(cmd, be_verbose=global_options.verbose, 
1567               progress_p=1)
1568     os.chdir (current)
1569     
1570
1571 def process_snippets (cmd, snippets,
1572                       format, lily_output_dir):
1573     """Run cmd on all of the .ly files from snippets."""
1574
1575     if not snippets:
1576         return
1577     
1578     if format in (HTML, TEXINFO) and '--formats' not in cmd:
1579         cmd += ' --formats=png '
1580     elif format in (DOCBOOK) and '--formats' not in cmd:
1581         cmd += ' --formats=png,pdf '
1582
1583     checksum = snippet_list_checksum (snippets)
1584     contents = '\n'.join (['snippet-map-%d.ly' % checksum] 
1585                           + [snip.basename() + '.ly' for snip in snippets])
1586     name = os.path.join (lily_output_dir,
1587                          'snippet-names-%d.ly' % checksum)
1588     file (name, 'wb').write (contents)
1589
1590     system_in_directory (' '.join ([cmd, name]),
1591                          lily_output_dir)
1592             
1593         
1594 ###
1595 # Retrieve dimensions from LaTeX
1596 LATEX_INSPECTION_DOCUMENT = r'''
1597 \nonstopmode
1598 %(preamble)s
1599 \begin{document}
1600 \typeout{textwidth=\the\textwidth}
1601 \typeout{columnsep=\the\columnsep}
1602 \makeatletter\if@twocolumn\typeout{columns=2}\fi\makeatother
1603 \end{document}
1604 '''
1605
1606 # Do we need anything else besides `textwidth'?
1607 def get_latex_textwidth (source):
1608     m = re.search (r'''(?P<preamble>\\begin\s*{document})''', source)
1609     if m == None:
1610         warning (_ ("cannot find \\begin{document} in LaTeX document"))
1611         
1612         ## what's a sensible default?
1613         return 550.0
1614     
1615     preamble = source[:m.start (0)]
1616     latex_document = LATEX_INSPECTION_DOCUMENT % vars ()
1617     
1618     (handle, tmpfile) = tempfile.mkstemp('.tex')
1619     logfile = os.path.splitext (tmpfile)[0] + '.log'
1620     logfile = os.path.split (logfile)[1]
1621
1622     tmp_handle = os.fdopen (handle,'w')
1623     tmp_handle.write (latex_document)
1624     tmp_handle.close ()
1625     
1626     ly.system ('%s %s' % (global_options.latex_program, tmpfile),
1627                be_verbose=global_options.verbose)
1628     parameter_string = file (logfile).read()
1629     
1630     os.unlink (tmpfile)
1631     os.unlink (logfile)
1632
1633     columns = 0
1634     m = re.search ('columns=([0-9.]*)', parameter_string)
1635     if m:
1636         columns = int (m.group (1))
1637
1638     columnsep = 0
1639     m = re.search ('columnsep=([0-9.]*)pt', parameter_string)
1640     if m:
1641         columnsep = float (m.group (1))
1642
1643     textwidth = 0
1644     m = re.search ('textwidth=([0-9.]*)pt', parameter_string)
1645     if m:
1646         textwidth = float (m.group (1))
1647         if columns:
1648             textwidth = (textwidth - columnsep) / columns
1649
1650     return textwidth
1651
1652 def modify_preamble (chunk):
1653     str = chunk.replacement_text ()
1654     if (re.search (r"\\begin *{document}", str)
1655       and not re.search ("{graphic[sx]", str)):
1656         str = re.sub (r"\\begin{document}",
1657                r"\\usepackage{graphics}" + '\n'
1658                + r"\\begin{document}",
1659                str)
1660         chunk.override_text = str 
1661
1662
1663 format2ext = {
1664     HTML: '.html',
1665     # TEXINFO: '.texinfo',
1666     TEXINFO: '.texi',
1667     LATEX: '.tex',
1668     DOCBOOK: '.xml'
1669 }
1670
1671 class CompileError(Exception):
1672     pass
1673
1674 def snippet_list_checksum (snippets):
1675     return hash (' '.join([l.basename() for l in snippets]))
1676
1677 def write_file_map (lys, name):
1678     snippet_map = file (os.path.join (
1679         global_options.lily_output_dir,
1680         'snippet-map-%d.ly' % snippet_list_checksum (lys)), 'w')
1681
1682     snippet_map.write ("""
1683 #(define version-seen #t)
1684 #(define output-empty-score-list #f)
1685 #(ly:add-file-name-alist '(%s
1686     ))\n
1687 """ % '\n'.join(['("%s.ly" . "%s")\n' % (ly.basename (), name)
1688                  for ly in lys]))
1689
1690 def split_output_files(directory):
1691     """Returns directory entries in DIRECTORY/XX/ , where XX are hex digits.
1692
1693     Return value is a set of strings.
1694     """
1695     files = []
1696     for subdir in glob.glob (os.path.join (directory, '[a-f0-9][a-f0-9]')):
1697         base_subdir = os.path.split (subdir)[1]
1698         sub_files = [os.path.join (base_subdir, name)
1699                      for name in os.listdir (subdir)]
1700         files += sub_files
1701     return set (files)
1702
1703 def do_process_cmd (chunks, input_name, options):
1704     snippets = [c for c in chunks if isinstance (c, LilypondSnippet)]
1705
1706     output_files = split_output_files (options.lily_output_dir)
1707     outdated = [c for c in snippets if c.is_outdated (options.lily_output_dir, output_files)]
1708     
1709     write_file_map (outdated, input_name)    
1710     progress (_ ("Writing snippets..."))
1711     for snippet in outdated:
1712         snippet.write_ly()
1713     progress ('\n')
1714
1715     if outdated:
1716         progress (_ ("Processing..."))
1717         progress ('\n')
1718         process_snippets (options.process_cmd, outdated,
1719                           options.format, options.lily_output_dir)
1720
1721     else:
1722         progress (_ ("All snippets are up to date..."))
1723
1724     if options.lily_output_dir != options.output_dir:
1725         output_files = split_output_files (options.lily_output_dir)
1726         for snippet in snippets:
1727             snippet.link_all_output_files (options.lily_output_dir,
1728                                            output_files,
1729                                            options.output_dir)
1730
1731     progress ('\n')
1732
1733
1734 ###
1735 # Format guessing data
1736 ext2format = {
1737     '.html': HTML,
1738     '.itely': TEXINFO,
1739     '.latex': LATEX,
1740     '.lytex': LATEX,
1741     '.tely': TEXINFO,
1742     '.tex': LATEX,
1743     '.texi': TEXINFO,
1744     '.texinfo': TEXINFO,
1745     '.xml': HTML,
1746     '.lyxml': DOCBOOK
1747 }
1748
1749 def guess_format (input_filename):
1750     format = None
1751     e = os.path.splitext (input_filename)[1]
1752     if e in ext2format:
1753         # FIXME
1754         format = ext2format[e]
1755     else:
1756         error (_ ("cannot determine format for: %s"
1757                   % input_filename))
1758         exit (1)
1759     return format
1760
1761 def write_if_updated (file_name, lines):
1762     try:
1763         f = file (file_name)
1764         oldstr = f.read ()
1765         new_str = ''.join (lines)
1766         if oldstr == new_str:
1767             progress (_ ("%s is up to date.") % file_name)
1768             progress ('\n')
1769
1770             # this prevents make from always rerunning lilypond-book:
1771             # output file must be touched in order to be up to date
1772             os.utime (file_name, None)
1773             return
1774     except:
1775         pass
1776
1777     output_dir = os.path.dirname (file_name)
1778     if not os.path.exists (output_dir):
1779         os.makedirs (output_dir)
1780
1781     progress (_ ("Writing `%s'...") % file_name)
1782     file (file_name, 'w').writelines (lines)
1783     progress ('\n')
1784
1785
1786 def note_input_file (name, inputs=[]):
1787     ## hack: inputs is mutable!
1788     inputs.append (name)
1789     return inputs
1790
1791 def samefile (f1, f2):
1792     try:
1793         return os.path.samefile (f1, f2)
1794     except AttributeError:                # Windoze
1795         f1 = re.sub ("//*", "/", f1)
1796         f2 = re.sub ("//*", "/", f2)
1797         return f1 == f2
1798
1799 def do_file (input_filename, included=False):
1800     # Ugh.
1801     if not input_filename or input_filename == '-':
1802         in_handle = sys.stdin
1803         input_fullname = '<stdin>'
1804     else:
1805         if os.path.exists (input_filename):
1806             input_fullname = input_filename
1807         elif global_options.format == LATEX and ly.search_exe_path ('kpsewhich'):
1808             input_fullname = os.popen ('kpsewhich ' + input_filename).read()[:-1]
1809         else:
1810             input_fullname = find_file (input_filename)
1811
1812         note_input_file (input_fullname)
1813         in_handle = file (input_fullname)
1814
1815     if input_filename == '-':
1816         input_base = 'stdin'
1817     elif included:
1818         input_base = os.path.splitext (input_filename)[0]
1819     else:
1820         input_base = os.path.basename (
1821             os.path.splitext (input_filename)[0])
1822
1823     # don't complain when global_options.output_dir is existing
1824     if not global_options.output_dir:
1825         global_options.output_dir = os.getcwd()
1826     else:
1827         global_options.output_dir = os.path.abspath(global_options.output_dir)
1828         
1829         if not os.path.isdir (global_options.output_dir):
1830             os.mkdir (global_options.output_dir, 0777)
1831         os.chdir (global_options.output_dir)
1832
1833     output_filename = os.path.join(global_options.output_dir,
1834                                    input_base + format2ext[global_options.format])
1835     if (os.path.exists (input_filename) 
1836         and os.path.exists (output_filename) 
1837         and samefile (output_filename, input_fullname)):
1838      error (
1839      _ ("Output would overwrite input file; use --output."))
1840      exit (2)
1841
1842     try:
1843         progress (_ ("Reading %s...") % input_fullname)
1844         source = in_handle.read ()
1845         progress ('\n')
1846
1847         set_default_options (source, default_ly_options, global_options.format)
1848
1849
1850         # FIXME: Containing blocks must be first, see
1851         #        find_toplevel_snippets.
1852         snippet_types = (
1853             'multiline_comment',
1854             'verbatim',
1855             'lilypond_block',
1856     #                'verb',
1857             'singleline_comment',
1858             'lilypond_file',
1859             'include',
1860             'lilypond',
1861         )
1862         progress (_ ("Dissecting..."))
1863         chunks = find_toplevel_snippets (source, global_options.format, snippet_types)
1864
1865         if global_options.format == LATEX:
1866             for c in chunks:
1867                 if (c.is_plain () and
1868                   re.search (r"\\begin *{document}", c.replacement_text())):
1869                     modify_preamble (c)
1870                     break
1871         progress ('\n')
1872
1873         if global_options.filter_cmd:
1874             write_if_updated (output_filename,
1875                      [c.filter_text () for c in chunks])
1876         elif global_options.process_cmd:
1877             do_process_cmd (chunks, input_fullname, global_options)
1878             progress (_ ("Compiling %s...") % output_filename)
1879             progress ('\n')
1880             write_if_updated (output_filename,
1881                      [s.replacement_text ()
1882                      for s in chunks])
1883         
1884         def process_include (snippet):
1885             os.chdir (original_dir)
1886             name = snippet.substring ('filename')
1887             progress (_ ("Processing include: %s") % name)
1888             progress ('\n')
1889             return do_file (name, included=True)
1890
1891         include_chunks = map (process_include,
1892                               filter (lambda x: isinstance (x, IncludeSnippet),
1893                                       chunks))
1894
1895         return chunks + reduce (lambda x, y: x + y, include_chunks, [])
1896         
1897     except CompileError:
1898         os.chdir (original_dir)
1899         progress (_ ("Removing `%s'") % output_filename)
1900         progress ('\n')
1901         raise CompileError
1902
1903 def do_options ():
1904     global global_options
1905
1906     opt_parser = get_option_parser()
1907     (global_options, args) = opt_parser.parse_args ()
1908     if global_options.format in ('texi-html', 'texi'):
1909         global_options.format = TEXINFO
1910
1911     global_options.include_path =  map (os.path.abspath, global_options.include_path)
1912     
1913     if global_options.warranty:
1914         warranty ()
1915         exit (0)
1916     if not args or len (args) > 1:
1917         opt_parser.print_help ()
1918         exit (2)
1919         
1920     return args
1921
1922 def main ():
1923     # FIXME: 85 lines of `main' macramee??
1924     files = do_options ()
1925
1926     basename = os.path.splitext (files[0])[0]
1927     basename = os.path.split (basename)[1]
1928     
1929     if not global_options.format:
1930         global_options.format = guess_format (files[0])
1931
1932     formats = 'ps'
1933     if global_options.format in (TEXINFO, HTML, DOCBOOK):
1934         formats += ',png'
1935
1936     if global_options.process_cmd == '':
1937         global_options.process_cmd = (lilypond_binary 
1938                                       + ' --formats=%s -dbackend=eps ' % formats)
1939
1940     if global_options.process_cmd:
1941         includes = global_options.include_path
1942         if global_options.lily_output_dir:
1943             # This must be first, so lilypond prefers to read .ly
1944             # files in the other lybookdb dir.
1945             includes = [os.path.abspath(global_options.lily_output_dir)] + includes
1946         global_options.process_cmd += ' '.join ([' -I %s' % ly.mkarg (p)
1947                                                  for p in includes])
1948
1949     if global_options.format in (TEXINFO, LATEX):
1950         ## prevent PDF from being switched on by default.
1951         global_options.process_cmd += ' --formats=eps '
1952         if global_options.create_pdf:
1953             global_options.process_cmd += "--pdf -dinclude-eps-fonts -dgs-load-fonts "
1954     
1955     if global_options.verbose:
1956         global_options.process_cmd += " --verbose "
1957
1958     if global_options.padding_mm:
1959         global_options.process_cmd += " -deps-box-padding=%f " % global_options.padding_mm
1960         
1961     global_options.process_cmd += " -dread-file-list -dno-strip-output-dir"
1962
1963     if global_options.lily_output_dir:
1964         global_options.lily_output_dir = os.path.abspath(global_options.lily_output_dir)
1965         if not os.path.isdir (global_options.lily_output_dir):
1966             os.makedirs (global_options.lily_output_dir)
1967     else:
1968         global_options.lily_output_dir = os.path.abspath(global_options.output_dir)
1969         
1970
1971     identify ()
1972     try:
1973         chunks = do_file (files[0])
1974     except CompileError:
1975         exit (1)
1976
1977     inputs = note_input_file ('')
1978     inputs.pop ()
1979
1980     base_file_name = os.path.splitext (os.path.basename (files[0]))[0]
1981     dep_file = os.path.join (global_options.output_dir, base_file_name + '.dep')
1982     final_output_file = os.path.join (global_options.output_dir,
1983                      base_file_name
1984                      + '.%s' % global_options.format)
1985     
1986     os.chdir (original_dir)
1987     file (dep_file, 'w').write ('%s: %s'
1988                                 % (final_output_file, ' '.join (inputs)))
1989
1990 if __name__ == '__main__':
1991     main ()