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