]> git.donarmstrong.com Git - lilypond.git/blob - scripts/lilypond-book.py
This commit was manufactured by cvs2svn to create tag 'lilypond_2_5_32'.
[lilypond.git] / scripts / lilypond-book.py
1 #!@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     *  --linewidth?
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 __main__
32 import glob
33 import stat
34 import string
35
36 # Users of python modules should include this snippet
37 # and customize variables below.
38
39 # We'll suffer this path initialization stuff as long as we don't install
40 # our python packages in <prefix>/lib/pythonX.Y
41
42 # If set, LILYPONDPREFIX must take prevalence.
43 # if datadir is not set, we're doing a build and LILYPONDPREFIX.
44 import getopt, os, sys
45 datadir = '@local_lilypond_datadir@'
46 if not os.path.isdir (datadir):
47         datadir = '@lilypond_datadir@'
48 if os.environ.has_key ('LILYPONDPREFIX'):
49         datadir = os.environ['LILYPONDPREFIX']
50         while datadir[-1] == os.sep:
51                 datadir= datadir[:-1]
52
53 sys.path.insert (0, os.path.join (datadir, 'python'))
54
55 # Customize these.
56 #if __name__ == '__main__':
57
58 import lilylib as ly
59 import fontextract
60 global _;_=ly._
61 global re;re = ly.re
62
63 # Lilylib globals.
64 program_version = '@TOPLEVEL_VERSION@'
65 program_name = os.path.basename (sys.argv[0])
66 verbose_p = 0
67 pseudo_filter_p = 0
68 original_dir = os.getcwd ()
69 backend = 'ps'
70
71 help_summary = _ (
72 '''Process LilyPond snippets in hybrid HTML, LaTeX, or texinfo document.
73 Example usage:
74
75    lilypond-book --filter="tr '[a-z]' '[A-Z]'" BOOK
76    lilypond-book --filter="convert-ly --no-version --from=2.0.0 -" BOOK
77    lilypond-book --process='lilypond -I include' BOOK
78 ''')
79
80 copyright = ('Jan Nieuwenhuizen <janneke@gnu.org>',
81              'Han-Wen Nienhuys <hanwen@cs.uu.nl>')
82
83 option_definitions = [
84         (_ ("FMT"), 'f', 'format',
85           _ ('''use output format FMT (texi [default], texi-html,
86                 latex, html)''')),
87         (_ ("FILTER"), 'F', 'filter',
88           _ ("pipe snippets through FILTER [convert-ly -n -]")),
89         ('', 'h', 'help',
90           _ ("print this help")),
91         (_ ("DIR"), 'I', 'include',
92           _ ("add DIR to include path")),
93         (_ ("DIR"), 'o', 'output',
94           _ ("write output to DIR")),
95         (_ ("COMMAND"), 'P', 'process',
96           _ ("process ly_files using COMMAND FILE...")),
97         (_(''), '', 'psfonts',
98          _ ('''extract all PostScript fonts into INPUT.psfonts for LaTeX
99          must use this with dvips -h INPUT.psfonts''')),
100         ('', 'V', 'verbose',
101           _ ("be verbose")),
102         ('', 'v', 'version',
103           _ ("print version information")),
104         ('', 'w', 'warranty',
105           _ ("show warranty and copyright")),
106 ]
107
108 include_path = [ly.abspath (os.getcwd ())]
109 lilypond_binary = os.path.join ('@bindir@', 'lilypond')
110
111 # Only use installed binary when we are installed too.
112 if '@bindir@' == ('@' + 'bindir@') or not os.path.exists (lilypond_binary):
113         lilypond_binary = 'lilypond'
114
115 psfonts_p = 0
116 use_hash_p = 1
117 format = 0
118 output_name = ''
119 latex_filter_cmd = 'latex "\\nonstopmode \input /dev/stdin"'
120 filter_cmd = 0
121 process_cmd = ''
122 default_ly_options = { 'alt': "[image of music]" }
123
124 #
125 # Is this pythonic?  Personally, I find this rather #define-nesque. --hwn
126 #
127 AFTER = 'after'
128 BEFORE = 'before'
129 EXAMPLEINDENT = 'exampleindent'
130 FILTER = 'filter'
131 FRAGMENT = 'fragment'
132 HTML = 'html'
133 INDENT = 'indent'
134 LATEX = 'latex'
135 LAYOUT = 'layout'
136 LINEWIDTH = 'linewidth'
137 NOFRAGMENT = 'nofragment'
138 NOINDENT = 'noindent'
139 NOQUOTE = 'noquote'
140 NOTES = 'body'
141 NOTIME = 'notime'
142 OUTPUT = 'output'
143 OUTPUTIMAGE = 'outputimage'
144 PACKED = 'packed'
145 PAPER = 'paper'
146 PREAMBLE = 'preamble'
147 PRINTFILENAME = 'printfilename'
148 QUOTE = 'quote'
149 RAGGEDRIGHT = 'raggedright'
150 RELATIVE = 'relative'
151 STAFFSIZE = 'staffsize'
152 TEXIDOC = 'texidoc'
153 TEXINFO = 'texinfo'
154 VERBATIM = 'verbatim'
155 FONTLOAD = 'fontload'
156 FILENAME = 'filename'
157 ALT = 'alt'
158
159
160 # NOTIME has no opposite so it isn't part of this dictionary.
161 # NOQUOTE is used internally only.
162 no_options = {
163         NOFRAGMENT: FRAGMENT,
164         NOINDENT: INDENT,
165 }
166
167
168 # Recognize special sequences in the input.
169 #
170 #   (?P<name>regex) -- Assign result of REGEX to NAME.
171 #   *? -- Match non-greedily.
172 #   (?m) -- Multiline regex: Make ^ and $ match at each line.
173 #   (?s) -- Make the dot match all characters including newline.
174 #   (?x) -- Ignore whitespace in patterns.
175 no_match = 'a\ba'
176 snippet_res = {
177         ##
178         HTML: {
179                 'include':
180                   no_match,
181
182                 'lilypond':
183                   r'''(?mx)
184                     (?P<match>
185                     <lilypond
186                       (\s*(?P<options>.*?)\s*:)?\s*
187                       (?P<code>.*?)
188                     />)''',
189
190                 'lilypond_block':
191                   r'''(?msx)
192                     (?P<match>
193                     <lilypond
194                       \s*(?P<options>.*?)\s*
195                     >
196                     (?P<code>.*?)
197                     </lilypond>)''',
198
199                 'lilypond_file':
200                   r'''(?mx)
201                     (?P<match>
202                     <lilypondfile
203                       \s*(?P<options>.*?)\s*
204                     >
205                     \s*(?P<filename>.*?)\s*
206                     </lilypondfile>)''',
207
208                 'multiline_comment':
209                   r'''(?smx)
210                     (?P<match>
211                     \s*(?!@c\s+)
212                     (?P<code><!--\s.*?!-->)
213                     \s)''',
214
215                 'singleline_comment':
216                   no_match,
217
218                 'verb':
219                   r'''(?x)
220                     (?P<match>
221                       (?P<code><pre>.*?</pre>))''',
222
223                 'verbatim':
224                   r'''(?x)
225                     (?s)
226                     (?P<match>
227                       (?P<code><pre>\s.*?</pre>\s))''',
228         },
229
230         ##
231         LATEX: {
232                 'include':
233                   r'''(?smx)
234                     ^[^%\n]*?
235                     (?P<match>
236                     \\input\s*{
237                       (?P<filename>\S+?)
238                     })''',
239
240                 'lilypond':
241                   r'''(?smx)
242                     ^[^%\n]*?
243                     (?P<match>
244                     \\lilypond\s*(
245                     \[
246                       \s*(?P<options>.*?)\s*
247                     \])?\s*{
248                       (?P<code>.*?)
249                     })''',
250
251                 'lilypond_block':
252                   r'''(?smx)
253                     ^[^%\n]*?
254                     (?P<match>
255                     \\begin\s*(
256                     \[
257                       \s*(?P<options>.*?)\s*
258                     \])?\s*{lilypond}
259                       (?P<code>.*?)
260                     ^[^%\n]*?
261                     \\end\s*{lilypond})''',
262
263                 'lilypond_file':
264                   r'''(?smx)
265                     ^[^%\n]*?
266                     (?P<match>
267                     \\lilypondfile\s*(
268                     \[
269                       \s*(?P<options>.*?)\s*
270                     \])?\s*\{
271                       (?P<filename>\S+?)
272                     })''',
273
274                 'multiline_comment':
275                   no_match,
276
277                 'singleline_comment':
278                   r'''(?mx)
279                     ^.*?
280                     (?P<match>
281                       (?P<code>
282                       %.*$\n+))''',
283
284                 'verb':
285                   r'''(?mx)
286                     ^[^%\n]*?
287                     (?P<match>
288                       (?P<code>
289                       \\verb(?P<del>.)
290                         .*?
291                       (?P=del)))''',
292
293                 'verbatim':
294                   r'''(?msx)
295                     ^[^%\n]*?
296                     (?P<match>
297                       (?P<code>
298                       \\begin\s*{verbatim}
299                         .*?
300                       \\end\s*{verbatim}))''',
301         },
302
303         ##
304         TEXINFO: {
305                 'include':
306                   r'''(?mx)
307                     ^(?P<match>
308                     @include\s+
309                       (?P<filename>\S+))''',
310
311                 'lilypond':
312                   r'''(?smx)
313                     ^[^\n]*?(?!@c\s+)[^\n]*?
314                     (?P<match>
315                     @lilypond\s*(
316                     \[
317                       \s*(?P<options>.*?)\s*
318                     \])?\s*{
319                       (?P<code>.*?)
320                     })''',
321
322                 'lilypond_block':
323                   r'''(?msx)
324                     ^(?P<match>
325                     @lilypond\s*(
326                     \[
327                       \s*(?P<options>.*?)\s*
328                     \])?\s+?
329                     ^(?P<code>.*?)
330                     ^@end\s+lilypond)\s''',
331
332                 'lilypond_file':
333                   r'''(?mx)
334                     ^(?P<match>
335                     @lilypondfile\s*(
336                     \[
337                       \s*(?P<options>.*?)\s*
338                     \])?\s*{
339                       (?P<filename>\S+)
340                     })''',
341
342                 'multiline_comment':
343                   r'''(?smx)
344                     ^(?P<match>
345                       (?P<code>
346                       @ignore\s
347                         .*?
348                       @end\s+ignore))\s''',
349
350                 'singleline_comment':
351                   r'''(?mx)
352                     ^.*
353                     (?P<match>
354                       (?P<code>
355                       @c([ \t][^\n]*|)\n))''',
356
357         # Don't do this: It interferes with @code{@{}.
358         #       'verb': r'''(?P<code>@code{.*?})''',
359
360                 'verbatim':
361                   r'''(?sx)
362                     (?P<match>
363                       (?P<code>
364                       @example
365                         \s.*?
366                       @end\s+example\s))''',
367         },
368 }
369
370 format_res = {
371         HTML: {
372                 'intertext': r',?\s*intertext=\".*?\"',
373                 'option_sep': '\s*',
374         },
375
376         LATEX: {
377                 'intertext': r',?\s*intertext=\".*?\"',
378                 'option_sep': '\s*,\s*',
379         },
380
381         TEXINFO: {
382                 'intertext': r',?\s*intertext=\".*?\"',
383                 'option_sep': '\s*,\s*',
384         },
385 }
386
387 # Options without a pattern in ly_options.
388 simple_options = [
389         EXAMPLEINDENT,
390         FRAGMENT,
391         NOFRAGMENT,
392         NOINDENT,
393         PRINTFILENAME,
394         TEXIDOC,
395         VERBATIM,
396         FONTLOAD,
397         FILENAME,
398         ALT
399 ]
400
401 ly_options = {
402         ##
403         NOTES: {
404                 RELATIVE: r'''\relative c%(relative_quotes)s''',
405         },
406
407         ##
408         PAPER: {
409                 INDENT: r'''indent = %(indent)s''',
410
411                 LINEWIDTH: r'''linewidth = %(linewidth)s''',
412
413                 QUOTE: r'''linewidth = %(linewidth)s - 2.0 * %(exampleindent)s''',
414
415                 RAGGEDRIGHT: r'''raggedright = ##t''',
416
417                 PACKED: r'''packed = ##t''',
418         },
419
420         ##
421         LAYOUT: {
422                 NOTIME: r'''
423   \context {
424     \Score
425     timing = ##f
426   }
427   \context {
428     \Staff
429     \remove Time_signature_engraver
430   }''',
431         },
432
433         ##
434         PREAMBLE: {
435                 STAFFSIZE: r'''#(set-global-staff-size %(staffsize)s)''',
436         },
437 }
438
439 output = {
440         ##
441         HTML: {
442                 FILTER: r'''<lilypond %(options)s>
443 %(code)s
444 </lilypond>
445 ''',
446
447                 AFTER: r'''
448   </a>
449 </p>''',
450
451                 BEFORE: r'''<p>
452   <a href="%(base)s.ly">''',
453
454                 OUTPUT: r'''
455     <img align="center" valign="center"
456          border="0" src="%(image)s" alt="%(alt)s">''',
457
458                 PRINTFILENAME: '<p><tt><a href="%(base)s.ly">%(filename)s</a></tt></p>',
459
460                 QUOTE: r'''<blockquote>
461 %(str)s
462 </blockquote>
463 ''',
464
465                 VERBATIM: r'''<pre>
466 %(verb)s</pre>''',
467         },
468
469         ##
470         LATEX: {
471                 OUTPUT: r'''{%%
472 \parindent 0pt
473 \catcode`\@=12
474 \ifx\preLilyPondExample \undefined
475   \relax
476 \else
477   \preLilyPondExample
478 \fi
479 \def\lilypondbook{}%%
480 \input %(base)s-systems.tex
481 \ifx\postLilyPondExample \undefined
482   \relax
483 \else
484   \postLilyPondExample
485 \fi
486 }''',
487
488                 PRINTFILENAME: '''\\texttt{%(filename)s}
489         ''',
490
491                 QUOTE: r'''\begin{quotation}
492 %(str)s
493 \end{quotation}
494 ''',
495
496                 VERBATIM: r'''\noindent
497 \begin{verbatim}
498 %(verb)s\end{verbatim}
499 ''',
500
501                 FILTER: r'''\begin{lilypond}[%(options)s]
502 %(code)s
503 \end{lilypond}''',
504         },
505
506         ##
507         TEXINFO: {
508                 FILTER: r'''@lilypond[%(options)s]
509 %(code)s
510 @lilypond''',
511
512                 OUTPUT: r'''
513 @iftex
514 @include %(base)s-systems.texi
515 @end iftex
516 ''',
517
518                 OUTPUTIMAGE: r'''@noindent
519 @ifinfo
520 @image{%(base)s,,,%(alt)s,%(ext)s}
521 @end ifinfo
522 @html
523 <p>
524   <a href="%(base)s.ly">
525     <img align="center" valign="center"
526          border="0" src="%(image)s" alt="%(alt)s">
527   </a>
528 </p>
529 @end html
530 ''',
531
532                 PRINTFILENAME: '''@file{%(filename)s}
533         ''',
534
535                 QUOTE: r'''@quotation
536 %(str)s@end quotation
537 ''',
538
539                 NOQUOTE: r'''@format
540 %(str)s@end format
541 ''',
542
543                 VERBATIM: r'''@exampleindent 0
544 @example
545 %(verb)s@end example
546 ''',
547         },
548 }
549
550 PREAMBLE_LY = r'''%%%% Generated by %(program_name)s
551 %%%% Options: [%(option_string)s]
552
553 #(set! toplevel-score-handler ly:parser-print-score)
554 #(set! toplevel-music-handler (lambda (p m)
555                                (ly:parser-print-score
556                                 p (ly:music-scorify m p))))
557
558 #(ly:set-option (quote no-point-and-click))
559
560 #(define version-seen? #t)
561 %(preamble_string)s
562
563
564 %% ********************************
565 %% Start cut-&-pastable-section 
566 %% ********************************
567
568 \paper {
569   #(define dump-extents #t)
570   %(font_dump_setting)s
571   %(paper_string)s
572 }
573
574 \layout {
575   %(layout_string)s
576 }
577 '''
578
579 FRAGMENT_LY = r'''
580 %(notes_string)s
581 {
582 %% ly snippet contents follows:
583 %(code)s
584 %% end ly snippet
585 }
586 '''
587
588 FULL_LY = '''
589 %% ly snippet:
590 %(code)s
591 %% end ly snippet
592 '''
593
594 texinfo_linewidths = {
595         '@afourpaper': '160\\mm',
596         '@afourwide': '6.5\\in',
597         '@afourlatex': '150\\mm',
598         '@smallbook': '5\\in',
599         '@letterpaper': '6\\in',
600 }
601
602 def classic_lilypond_book_compatibility (key, value):
603         if key == 'singleline' and value == None:
604                 return (RAGGEDRIGHT, None)
605
606         m = re.search ('relative\s*([-0-9])', key)
607         if m:
608                 return ('relative', m.group (1))
609
610         m = re.match ('([0-9]+)pt', key)
611         if m:
612                 return ('staffsize', m.group (1))
613
614         if key == 'indent' or key == 'linewidth':
615                 m = re.match ('([-.0-9]+)(cm|in|mm|pt|staffspace)', value)
616                 if m:
617                         f = float (m.group (1))
618                         return (key, '%f\\%s' % (f, m.group (2)))
619
620         return (None, None)
621
622 def find_file (name):
623         for i in include_path:
624                 full = os.path.join (i, name)
625                 if os.path.exists (full):
626                         return full
627         ly.error (_ ("file not found: %s") % name + '\n')
628         ly.exit (1)
629         return ''
630
631 def verbatim_html (s):
632         return re.sub ('>', '&gt;',
633                        re.sub ('<', '&lt;',
634                                re.sub ('&', '&amp;', s)))
635
636 def verbatim_texinfo (s):
637         return re.sub ('{', '@{',
638                        re.sub ('}', '@}',
639                                re.sub ('@', '@@', s)))
640
641 def split_options (option_string):
642         if option_string:
643                 if format == HTML:
644                         options = re.findall('[\w\.-:]+(?:\s*=\s*(?:"[^"]*"|\'[^\']*\'|\S+))?',option_string)
645                         for i in range(len(options)):
646                                 options[i] = re.sub('^([^=]+=\s*)(?P<q>["\'])(.*)(?P=q)','\g<1>\g<3>',options[i])
647                         return options
648                 else:
649                         return re.split (format_res[format]['option_sep'],
650                                          option_string)
651         return []
652
653 def invokes_lilypond ():
654         return re.search ('^[\'\"0-9A-Za-z/]*lilypond', process_cmd)
655
656 def set_default_options (source):
657         global default_ly_options
658         if not default_ly_options.has_key (LINEWIDTH):
659                 if format == LATEX:
660                         textwidth = get_latex_textwidth (source)
661                         default_ly_options[LINEWIDTH] = \
662                           '''%.0f\\pt''' % textwidth
663                 elif format == TEXINFO:
664                         for (k, v) in texinfo_linewidths.items ():
665                                 # FIXME: @layout is usually not in
666                                 # chunk #0:
667                                 #
668                                 #  \input texinfo @c -*-texinfo-*-
669                                 #
670                                 # Bluntly search first K items of
671                                 # source.
672                                 # s = chunks[0].replacement_text ()
673                                 if re.search (k, source[:1024]):
674                                         default_ly_options[LINEWIDTH] = v
675                                         break
676
677 class Chunk:
678         def replacement_text (self):
679                 return ''
680
681         def filter_text (self):
682                 return self.replacement_text ()
683
684         def ly_is_outdated (self):
685                 return 0
686
687         def png_is_outdated (self):
688                 return 0
689
690 class Substring (Chunk):
691         def __init__ (self, source, start, end, line_number):
692                 self.source = source
693                 self.start = start
694                 self.end = end
695                 self.line_number = line_number
696
697         def replacement_text (self):
698                 return self.source[self.start:self.end]
699
700 class Snippet (Chunk):
701         def __init__ (self, type, match, format, line_number):
702                 self.type = type
703                 self.match = match
704                 self.hash = 0
705                 self.option_dict = {}
706                 self.format = format
707                 self.line_number = line_number
708
709         def replacement_text (self):
710                 return self.match.group ('match')
711
712         def substring (self, s):
713                 return self.match.group (s)
714
715         def __repr__ (self):
716                 return `self.__class__` + ' type = ' + self.type
717
718 class Include_snippet (Snippet):
719         def processed_filename (self):
720                 f = self.substring ('filename')
721                 return os.path.splitext (f)[0] + format2ext[format]
722
723         def replacement_text (self):
724                 s = self.match.group ('match')
725                 f = self.substring ('filename')
726
727                 return re.sub (f, self.processed_filename (), s)
728
729 class Lilypond_snippet (Snippet):
730         def __init__ (self, type, match, format, line_number):
731                 Snippet.__init__ (self, type, match, format, line_number)
732                 os = match.group ('options')
733                 self.do_options (os, self.type)
734
735         def ly (self):
736                 return self.substring ('code')
737
738         def full_ly (self):
739                 s = self.ly ()
740                 if s:
741                         return self.compose_ly (s)
742                 return ''
743
744         def do_options (self, option_string, type):
745                 self.option_dict = {}
746
747                 options = split_options (option_string)
748
749                 for i in options:
750                         if string.find (i, '=') > 0:
751                                 (key, value) = re.split ('\s*=\s*', i)
752                                 self.option_dict[key] = value
753                         else:
754                                 if i in no_options.keys ():
755                                         if no_options[i] in self.option_dict.keys ():
756                                                 del self.option_dict[no_options[i]]
757                                 else:
758                                         self.option_dict[i] = None
759
760                 has_linewidth = self.option_dict.has_key (LINEWIDTH)
761                 no_linewidth_value = 0
762
763                 # If LINEWIDTH is used without parameter, set it to default.
764                 if has_linewidth and self.option_dict[LINEWIDTH] == None:
765                         no_linewidth_value = 1
766                         del self.option_dict[LINEWIDTH]
767
768                 for i in default_ly_options.keys ():
769                         if i not in self.option_dict.keys ():
770                                 self.option_dict[i] = default_ly_options[i]
771
772                 if not has_linewidth:
773                         if type == 'lilypond' or FRAGMENT in self.option_dict.keys ():
774                                 self.option_dict[RAGGEDRIGHT] = None
775
776                         if type == 'lilypond':
777                                 if LINEWIDTH in self.option_dict.keys ():
778                                         del self.option_dict[LINEWIDTH]
779                         else:
780                                 if RAGGEDRIGHT in self.option_dict.keys ():
781                                         if LINEWIDTH in self.option_dict.keys ():
782                                                 del self.option_dict[LINEWIDTH]
783
784                         if QUOTE in self.option_dict.keys () or type == 'lilypond':
785                                 if LINEWIDTH in self.option_dict.keys ():
786                                         del self.option_dict[LINEWIDTH]
787
788                 if not INDENT in self.option_dict.keys ():
789                         self.option_dict[INDENT] = '0\\mm'
790
791                 # The QUOTE pattern from ly_options only emits the `linewidth'
792                 # keyword.
793                 if has_linewidth and QUOTE in self.option_dict.keys ():
794                         if no_linewidth_value:
795                                 del self.option_dict[LINEWIDTH]
796                         else:
797                                 del self.option_dict[QUOTE]
798
799         def compose_ly (self, code):
800                 if FRAGMENT in self.option_dict.keys ():
801                         body = FRAGMENT_LY
802                 else:
803                         body = FULL_LY
804
805                 # Defaults.
806                 relative = 1
807                 override = {}
808                 # The original concept of the `exampleindent' option is broken.
809                 # It is not possible to get a sane value for @exampleindent at all
810                 # without processing the document itself.  Saying
811                 #
812                 #   @exampleindent 0
813                 #   @example
814                 #   ...
815                 #   @end example
816                 #   @exampleindent 5
817                 #
818                 # causes ugly results with the DVI backend of texinfo since the
819                 # default value for @exampleindent isn't 5em but 0.4in (or a smaller
820                 # value).  Executing the above code changes the environment
821                 # indentation to an unknown value because we don't know the amount
822                 # of 1em in advance since it is font-dependent.  Modifying
823                 # @exampleindent in the middle of a document is simply not
824                 # supported within texinfo.
825                 #
826                 # As a consequence, the only function of @exampleindent is now to
827                 # specify the amount of indentation for the `quote' option.
828                 #
829                 # To set @exampleindent locally to zero, we use the @format
830                 # environment for non-quoted snippets.
831                 override[EXAMPLEINDENT] = r'0.4\in'
832                 override[LINEWIDTH] = texinfo_linewidths['@smallbook']
833                 override.update (default_ly_options)
834
835                 option_list = []
836                 for (key, value) in self.option_dict.items ():
837                         if value == None:
838                                 option_list.append (key)
839                         else:
840                                 option_list.append (key + '=' + value)
841                 option_string = string.join (option_list, ',')
842
843                 compose_dict = {}
844                 compose_types = [NOTES, PREAMBLE, LAYOUT, PAPER]
845                 for a in compose_types:
846                         compose_dict[a] = []
847
848                 for (key, value) in self.option_dict.items ():
849                         (c_key, c_value) = \
850                           classic_lilypond_book_compatibility (key, value)
851                         if c_key:
852                                 if c_value:
853                                         ly.warning \
854                                           (_ ("deprecated ly-option used: %s=%s" \
855                                             % (key, value)))
856                                         ly.warning \
857                                           (_ ("compatibility mode translation: %s=%s" \
858                                             % (c_key, c_value)))
859                                 else:
860                                         ly.warning \
861                                           (_ ("deprecated ly-option used: %s" \
862                                             % key))
863                                         ly.warning \
864                                           (_ ("compatibility mode translation: %s" \
865                                             % c_key))
866
867                                 (key, value) = (c_key, c_value)
868
869                         if value:
870                                 override[key] = value
871                         else:
872                                 if not override.has_key (key):
873                                         override[key] = None
874
875                         found = 0
876                         for type in compose_types:
877                                 if ly_options[type].has_key (key):
878                                         compose_dict[type].append (ly_options[type][key])
879                                         found = 1
880                                         break
881
882                         if not found and key not in simple_options:
883                                 ly.warning (_ ("ignoring unknown ly option: %s") % key)
884
885                 # URGS
886                 if RELATIVE in override.keys () and override[RELATIVE]:
887                         relative = string.atoi (override[RELATIVE])
888
889                 relative_quotes = ''
890
891                 # 1 = central C
892                 if relative < 0:
893                         relative_quotes += ',' * (- relative)
894                 elif relative > 0:
895                         relative_quotes += "'" * relative
896
897                 program_name = __main__.program_name
898
899                 paper_string = string.join (compose_dict[PAPER],
900                                             '\n  ') % override
901                 layout_string = string.join (compose_dict[LAYOUT],
902                                              '\n  ') % override
903                 notes_string = string.join (compose_dict[NOTES],
904                                             '\n  ') % vars ()
905                 preamble_string = string.join (compose_dict[PREAMBLE],
906                                                '\n  ') % override
907
908                 font_dump_setting = ''
909                 if FONTLOAD in self.option_dict:
910                         font_dump_setting = '#(define-public force-eps-font-include #t)\n'
911
912                 return (PREAMBLE_LY + body) % vars ()
913
914         # TODO: Use md5?
915         def get_hash (self):
916                 if not self.hash:
917                         self.hash = abs (hash (self.full_ly ()))
918                 return self.hash
919
920         def basename (self):
921                 if FILENAME in self.option_dict:
922                         return self.option_dict[FILENAME]
923                 if use_hash_p:
924                         return 'lily-%d' % self.get_hash ()
925                 raise 'to be done'
926
927         def write_ly (self):
928                 outf = open (self.basename () + '.ly', 'w')
929                 outf.write (self.full_ly ())
930
931                 open (self.basename () + '.txt', 'w').write ('image of music')
932
933         def ly_is_outdated (self):
934                 base = self.basename ()
935
936                 tex_file = '%s.tex' % base
937                 eps_file = '%s.eps' % base
938                 system_file = '%s-systems.tex' % base
939                 ly_file = '%s.ly' % base
940                 ok = os.path.exists (ly_file) \
941                      and os.path.exists (system_file)\
942                      and os.stat (system_file)[stat.ST_SIZE] \
943                      and re.match ('% eof', open (system_file).readlines ()[-1])
944                 if ok and (not use_hash_p or FILENAME in self.option_dict):
945                         ok = (self.full_ly () == open (ly_file).read ())
946                 if ok:
947                         # TODO: Do something smart with target formats
948                         #       (ps, png) and m/ctimes.
949                         return None
950                 return self
951
952         def png_is_outdated (self):
953                 base = self.basename ()
954                 ok = self.ly_is_outdated ()
955                 if format == HTML or format == TEXINFO:
956                         ok = ok and (os.path.exists (base + '.png')
957                                      or glob.glob (base + '-page*.png'))
958                 return not ok
959         def texstr_is_outdated (self):
960                 if backend == 'ps':
961                         return 0
962
963                 base = self.basename ()
964                 ok = self.ly_is_outdated ()
965                 ok = ok and (os.path.exists (base + '.texstr'))
966                 return not ok
967
968         def filter_text (self):
969                 code = self.substring ('code')
970                 s = run_filter (code)
971                 d = {
972                         'code': s,
973                         'options': self.match.group ('options')
974                 }
975                 # TODO
976                 return output[self.format][FILTER] % d
977
978         def replacement_text (self):
979                 func = Lilypond_snippet.__dict__['output_' + self.format]
980                 return func (self)
981
982         def get_images (self):
983                 base = self.basename ()
984                 # URGUGHUGHUGUGH
985                 single = '%(base)s.png' % vars ()
986                 multiple = '%(base)s-page1.png' % vars ()
987                 images = (single,)
988                 if os.path.exists (multiple) \
989                    and (not os.path.exists (single) \
990                         or (os.stat (multiple)[stat.ST_MTIME] \
991                             > os.stat (single)[stat.ST_MTIME])):
992                         images = glob.glob ('%(base)s-page*.png' % vars ())
993                 return images
994
995         def output_html (self):
996                 str = ''
997                 base = self.basename ()
998                 if format == HTML:
999                         str += self.output_print_filename (HTML)
1000                         if VERBATIM in self.option_dict:
1001                                 verb = verbatim_html (self.substring ('code'))
1002                                 str += write (output[HTML][VERBATIM] % vars ())
1003                         if QUOTE in self.option_dict:
1004                                 str = output[HTML][QUOTE] % vars ()
1005
1006                 str += output[HTML][BEFORE] % vars ()
1007                 for image in self.get_images ():
1008                         (base, ext) = os.path.splitext (image)
1009                         alt = self.option_dict[ALT]
1010                         str += output[HTML][OUTPUT] % vars ()
1011                 str += output[HTML][AFTER] % vars ()
1012                 return str
1013
1014         def output_info (self):
1015                 str = ''
1016                 for image in self.get_images ():
1017                         (base, ext) = os.path.splitext (image)
1018
1019                         # URG, makeinfo implicitly prepends dot to extension.
1020                         # Specifying no extension is most robust.
1021                         ext = ''
1022                         alt = self.option_dict[ALT]
1023                         str += output[TEXINFO][OUTPUTIMAGE] % vars ()
1024
1025                 base = self.basename ()
1026                 str += output[format][OUTPUT] % vars ()
1027                 return str
1028
1029         def output_latex (self):
1030                 str = ''
1031                 base = self.basename ()
1032                 if format == LATEX:
1033                         str += self.output_print_filename (LATEX)
1034                         if VERBATIM in self.option_dict:
1035                                 verb = self.substring ('code')
1036                                 str += (output[LATEX][VERBATIM] % vars ())
1037                         if QUOTE in self.option_dict:
1038                                 str = output[LATEX][QUOTE] % vars ()
1039
1040                 str += (output[LATEX][OUTPUT] % vars ())
1041                 return str
1042
1043         def output_print_filename (self, format):
1044                 str = ''
1045                 if PRINTFILENAME in self.option_dict:
1046                         base = self.basename ()
1047                         filename = self.substring ('filename')
1048                         str = output[format][PRINTFILENAME] % vars ()
1049
1050                 return str
1051
1052         def output_texinfo (self):
1053                 str = ''
1054                 if self.output_print_filename (TEXINFO):
1055                         str += ('@html\n'
1056                                 + self.output_print_filename (HTML)
1057                                 + '\n@end html\n')
1058                         str += ('@tex\n'
1059                                 + self.output_print_filename (LATEX)
1060                                 + '\n@end tex\n')
1061                 base = self.basename ()
1062                 if TEXIDOC in self.option_dict:
1063                         texidoc = base + '.texidoc'
1064                         if os.path.exists (texidoc):
1065                                 str += '@include %(texidoc)s\n\n' % vars ()
1066
1067                 if VERBATIM in self.option_dict:
1068                         verb = verbatim_texinfo (self.substring ('code'))
1069                         str += (output[TEXINFO][VERBATIM] % vars ())
1070                         if not QUOTE in self.option_dict:
1071                                 str = output[TEXINFO][NOQUOTE] % vars ()
1072
1073                 str += self.output_info ()
1074
1075 #               str += ('@ifinfo\n' + self.output_info () + '\n@end ifinfo\n')
1076 #               str += ('@tex\n' + self.output_latex () + '\n@end tex\n')
1077 #               str += ('@html\n' + self.output_html () + '\n@end html\n')
1078
1079                 if QUOTE in self.option_dict:
1080                         str = output[TEXINFO][QUOTE] % vars ()
1081
1082                 # need par after image
1083                 str += '\n'
1084
1085                 return str
1086
1087 class Lilypond_file_snippet (Lilypond_snippet):
1088         def ly (self):
1089                 name = self.substring ('filename')
1090                 return '\\renameinput \"%s\"\n%s' \
1091                          % (name, open (find_file (name)).read ())
1092
1093 snippet_type_to_class = {
1094         'lilypond_file': Lilypond_file_snippet,
1095         'lilypond_block': Lilypond_snippet,
1096         'lilypond': Lilypond_snippet,
1097         'include': Include_snippet,
1098 }
1099
1100 def find_linestarts (s):
1101         nls = [0]
1102         start = 0
1103         end = len (s)
1104         while 1:
1105                 i = s.find ('\n', start)
1106                 if i < 0:
1107                         break
1108
1109                 i = i + 1
1110                 nls.append (i)
1111                 start = i
1112
1113         nls.append (len (s))
1114         return nls
1115
1116 def find_toplevel_snippets (s, types):
1117         res = {}
1118         for i in types:
1119                 res[i] = ly.re.compile (snippet_res[format][i])
1120
1121         snippets = []
1122         index = 0
1123         ## found = dict (map (lambda x: (x, None),
1124         ##                    types))
1125         ## urg python2.1
1126         found = {}
1127         map (lambda x, f = found: f.setdefault (x, None),
1128              types)
1129
1130         line_starts = find_linestarts (s)
1131         line_start_idx = 0
1132         # We want to search for multiple regexes, without searching
1133         # the string multiple times for one regex.
1134         # Hence, we use earlier results to limit the string portion
1135         # where we search.
1136         # Since every part of the string is traversed at most once for
1137         # every type of snippet, this is linear.
1138
1139         while 1:
1140                 first = None
1141                 endex = 1 << 30
1142                 for type in types:
1143                         if not found[type] or found[type][0] < index:
1144                                 found[type] = None
1145                                 m = res[type].search (s[index:endex])
1146                                 if not m:
1147                                         continue
1148
1149                                 cl = Snippet
1150                                 if snippet_type_to_class.has_key (type):
1151                                         cl = snippet_type_to_class[type]
1152
1153
1154                                 start = index + m.start ('match')
1155                                 line_number = line_start_idx
1156                                 while (line_starts[line_number] < start):
1157                                         line_number += 1
1158
1159                                 line_number += 1
1160                                 snip = cl (type, m, format, line_number)
1161                                 found[type] = (start, snip)
1162
1163                         if found[type] \
1164                            and (not first \
1165                                 or found[type][0] < found[first][0]):
1166                                 first = type
1167
1168                                 # FIXME.
1169
1170                                 # Limiting the search space is a cute
1171                                 # idea, but this *requires* to search
1172                                 # for possible containing blocks
1173                                 # first, at least as long as we do not
1174                                 # search for the start of blocks, but
1175                                 # always/directly for the entire
1176                                 # @block ... @end block.
1177
1178                                 endex = found[first][0]
1179
1180                 if not first:
1181                         snippets.append (Substring (s, index, len (s), line_start_idx))
1182                         break
1183
1184                 while (start > line_starts[line_start_idx+1]):
1185                         line_start_idx += 1
1186
1187                 (start, snip) = found[first]
1188                 snippets.append (Substring (s, index, start, line_start_idx + 1))
1189                 snippets.append (snip)
1190                 found[first] = None
1191                 index = start + len (snip.match.group ('match'))
1192
1193         return snippets
1194
1195 def filter_pipe (input, cmd):
1196         if verbose_p:
1197                 ly.progress (_ ("Opening filter `%s'") % cmd)
1198
1199         (stdin, stdout, stderr) = os.popen3 (cmd)
1200         stdin.write (input)
1201         status = stdin.close ()
1202
1203         if not status:
1204                 status = 0
1205                 output = stdout.read ()
1206                 status = stdout.close ()
1207                 error = stderr.read ()
1208
1209         if not status:
1210                 status = 0
1211         signal = 0x0f & status
1212         if status or (not output and error):
1213                 exit_status = status >> 8
1214                 ly.error (_ ("`%s' failed (%d)") % (cmd, exit_status))
1215                 ly.error (_ ("The error log is as follows:"))
1216                 sys.stderr.write (error)
1217                 sys.stderr.write (stderr.read ())
1218                 ly.exit (status)
1219
1220         if verbose_p:
1221                 ly.progress ('\n')
1222
1223         return output
1224
1225 def run_filter (s):
1226         return filter_pipe (s, filter_cmd)
1227
1228 def is_derived_class (cl, baseclass):
1229         if cl == baseclass:
1230                 return 1
1231         for b in cl.__bases__:
1232                 if is_derived_class (b, baseclass):
1233                         return 1
1234         return 0
1235
1236 def process_snippets (cmd, ly_snippets, texstr_snippets, png_snippets):
1237         ly_names = filter (lambda x: x,
1238                            map (Lilypond_snippet.basename, ly_snippets))
1239         texstr_names = filter (lambda x: x,
1240                            map (Lilypond_snippet.basename, texstr_snippets))
1241         png_names = filter (lambda x: x,
1242                             map (Lilypond_snippet.basename, png_snippets))
1243
1244         status = 0
1245         def my_system (cmd):
1246                 status = ly.system (cmd,
1247                                     ignore_error = 1, progress_p = 1)
1248
1249                 if status:
1250                         ly.error ('Process %s exited unsuccessfully.' % cmd)
1251                         raise Compile_error
1252
1253         # UGH
1254         # the --process=CMD switch is a bad idea
1255         # it is too generic for lilypond-book.
1256         if texstr_names and invokes_lilypond:
1257                 my_system (string.join ([cmd, '--backend texstr',
1258                                          'snippet-map.ly'] + texstr_names))
1259                 for l in texstr_names:
1260                         my_system ('latex %s.texstr' % l)
1261
1262         if ly_names:
1263                 my_system (string.join ([cmd, 'snippet-map.ly'] + ly_names))
1264
1265 LATEX_DOCUMENT = r'''
1266 %(preamble)s
1267 \begin{document}
1268 \typeout{textwidth=\the\textwidth}
1269 \typeout{columnsep=\the\columnsep}
1270 \makeatletter\if@twocolumn\typeout{columns=2}\fi\makeatother
1271 \end{document}
1272 '''
1273
1274 # Do we need anything else besides `textwidth'?
1275 def get_latex_textwidth (source):
1276         m = re.search (r'''(?P<preamble>\\begin\s*{document})''', source)
1277         preamble = source[:m.start (0)]
1278         latex_document = LATEX_DOCUMENT % vars ()
1279         parameter_string = filter_pipe (latex_document, latex_filter_cmd)
1280
1281         columns = 0
1282         m = re.search ('columns=([0-9.]*)', parameter_string)
1283         if m:
1284                 columns = string.atoi (m.group (1))
1285
1286         columnsep = 0
1287         m = re.search ('columnsep=([0-9.]*)pt', parameter_string)
1288         if m:
1289                 columnsep = string.atof (m.group (1))
1290
1291         textwidth = 0
1292         m = re.search ('textwidth=([0-9.]*)pt', parameter_string)
1293         if m:
1294                 textwidth = string.atof (m.group (1))
1295                 if columns:
1296                         textwidth = (textwidth - columnsep) / columns
1297
1298         return textwidth
1299
1300 ext2format = {
1301         '.html': HTML,
1302         '.itely': TEXINFO,
1303         '.latex': LATEX,
1304         '.lytex': LATEX,
1305         '.tely': TEXINFO,
1306         '.tex': LATEX,
1307         '.texi': TEXINFO,
1308         '.texinfo': TEXINFO,
1309         '.xml': HTML,
1310 }
1311
1312 format2ext = {
1313         HTML: '.html',
1314         # TEXINFO: '.texinfo',
1315         TEXINFO: '.texi',
1316         LATEX: '.tex',
1317 }
1318
1319 class Compile_error:
1320         pass
1321
1322 def write_file_map (lys, name):
1323         snippet_map = open ('snippet-map.ly', 'w')
1324         snippet_map.write ("""
1325 #(define version-seen? #t)
1326 #(ly:add-file-name-alist '(
1327 """)
1328         for ly in lys:
1329                 snippet_map.write ('("%s.ly" . "%s:%d (%s.ly)")\n'
1330                                    % (ly.basename (),
1331                                       name,
1332                                       ly.line_number,
1333                                       ly.basename ()))
1334
1335         snippet_map.write ('))\n')
1336
1337 def do_process_cmd (chunks, input_name):
1338         all_lys = filter (lambda x: is_derived_class (x.__class__,
1339                                                       Lilypond_snippet),
1340                           chunks)
1341
1342         write_file_map (all_lys, input_name)
1343         ly_outdated = \
1344           filter (lambda x: is_derived_class (x.__class__,
1345                                               Lilypond_snippet)
1346                             and x.ly_is_outdated (),
1347                   chunks)
1348         texstr_outdated = \
1349           filter (lambda x: is_derived_class (x.__class__,
1350                                               Lilypond_snippet)
1351                             and x.texstr_is_outdated (),
1352                   chunks)
1353         png_outdated = \
1354           filter (lambda x: is_derived_class (x.__class__,
1355                                               Lilypond_snippet)
1356                             and x.png_is_outdated (),
1357                   chunks)
1358
1359         ly.progress (_ ("Writing snippets..."))
1360         map (Lilypond_snippet.write_ly, ly_outdated)
1361         ly.progress ('\n')
1362
1363         if ly_outdated:
1364                 ly.progress (_ ("Processing..."))
1365                 ly.progress ('\n')
1366                 process_snippets (process_cmd, ly_outdated, texstr_outdated, png_outdated)
1367         else:
1368                 ly.progress (_ ("All snippets are up to date..."))
1369         ly.progress ('\n')
1370
1371 def guess_format (input_filename):
1372         format = None
1373         e = os.path.splitext (input_filename)[1]
1374         if e in ext2format.keys ():
1375                 # FIXME
1376                 format = ext2format[e]
1377         else:
1378                 ly.error (_ ("can't determine format for: %s" \
1379                              % input_filename))
1380                 ly.exit (1)
1381         return format
1382
1383 def write_if_updated (file_name, lines):
1384         try:
1385                 f = open (file_name)
1386                 oldstr = f.read ()
1387                 new_str = string.join (lines, '')
1388                 if oldstr == new_str:
1389                         ly.progress (_ ("%s is up to date.") % file_name)
1390                         ly.progress ('\n')
1391                         return
1392         except:
1393                 pass
1394
1395         ly.progress (_ ("Writing `%s'...") % file_name)
1396         open (file_name, 'w').writelines (lines)
1397         ly.progress ('\n')
1398
1399 def do_file (input_filename):
1400         # Ugh.
1401         if not input_filename or input_filename == '-':
1402                 in_handle = sys.stdin
1403                 input_fullname = '<stdin>'
1404         else:
1405                 if os.path.exists (input_filename):
1406                         input_fullname = input_filename
1407                 elif format == LATEX:
1408                         # urg python interface to libkpathsea?
1409                         input_fullname = ly.read_pipe ('kpsewhich '
1410                                                        + input_filename)[:-1]
1411                 else:
1412                         input_fullname = find_file (input_filename)
1413                 in_handle = open (input_fullname)
1414
1415         if input_filename == '-':
1416                 input_base = 'stdin'
1417         else:
1418                 input_base = os.path.basename \
1419                              (os.path.splitext (input_filename)[0])
1420
1421         # Only default to stdout when filtering.
1422         if output_name == '-' or (not output_name and filter_cmd):
1423                 output_filename = '-'
1424                 output_file = sys.stdout
1425         else:
1426                 if output_name:
1427                         if not os.path.isdir (output_name):
1428                                 os.mkdir (output_name, 0777)
1429                         os.chdir (output_name)
1430
1431                 output_filename = input_base + format2ext[format]
1432                 if os.path.exists (input_filename) \
1433                    and os.path.exists (output_filename) \
1434                    and os.path.samefile (output_filename, input_fullname):
1435                         ly.error (
1436                           _ ("Output would overwrite input file; use --output."))
1437                         ly.exit (2)
1438
1439         try:
1440                 ly.progress (_ ("Reading %s...") % input_fullname)
1441                 source = in_handle.read ()
1442                 ly.progress ('\n')
1443
1444                 set_default_options (source)
1445
1446
1447                 # FIXME: Containing blocks must be first, see
1448                 #        find_toplevel_snippets.
1449                 snippet_types = (
1450                         'multiline_comment',
1451                         'verbatim',
1452                         'lilypond_block',
1453         #               'verb',
1454                         'singleline_comment',
1455                         'lilypond_file',
1456                         'include',
1457                         'lilypond',
1458                 )
1459                 ly.progress (_ ("Dissecting..."))
1460                 chunks = find_toplevel_snippets (source, snippet_types)
1461                 ly.progress ('\n')
1462
1463                 if filter_cmd:
1464                         write_if_updated (output_filename,
1465                                           [c.filter_text () for c in chunks])
1466                 elif process_cmd:
1467                         do_process_cmd (chunks, input_fullname)
1468                         ly.progress (_ ("Compiling %s...") % output_filename)
1469                         ly.progress ('\n')
1470                         write_if_updated (output_filename,
1471                                           [s.replacement_text ()
1472                                            for s in chunks])
1473                 
1474                 def process_include (snippet):
1475                         os.chdir (original_dir)
1476                         name = snippet.substring ('filename')
1477                         ly.progress (_ ("Processing include: %s") % name)
1478                         ly.progress ('\n')
1479                         return do_file (name)
1480
1481                 include_chunks = map (process_include,
1482                                       filter (lambda x: is_derived_class (x.__class__,
1483                                                                           Include_snippet),
1484                                               chunks))
1485
1486
1487                 return chunks + reduce (lambda x,y: x + y, include_chunks, [])
1488                 
1489         except Compile_error:
1490                 os.chdir (original_dir)
1491                 ly.progress (_ ("Removing `%s'") % output_filename)
1492                 ly.progress ('\n')
1493                 raise Compile_error
1494
1495 def do_options ():
1496         global format, output_name, psfonts_p
1497         global filter_cmd, process_cmd, verbose_p
1498
1499         (sh, long) = ly.getopt_args (option_definitions)
1500         try:
1501                 (options, files) = getopt.getopt (sys.argv[1:], sh, long)
1502         except getopt.error, s:
1503                 sys.stderr.write ('\n')
1504                 ly.error (_ ("getopt says: `%s'" % s))
1505                 sys.stderr.write ('\n')
1506                 ly.help ()
1507                 ly.exit (2)
1508
1509         for opt in options:
1510                 o = opt[0]
1511                 a = opt[1]
1512
1513                 if 0:
1514                         pass
1515                 elif o == '--filter' or o == '-F':
1516                         filter_cmd = a
1517                         process_cmd = 0
1518                 elif o == '--format' or o == '-f':
1519                         format = a
1520                         if a == 'texi-html' or a == 'texi':
1521                                 format = TEXINFO
1522                 elif o == '--tex-backend ':
1523                         backend = 'tex'
1524                 elif o == '--help' or o == '-h':
1525                         ly.help ()
1526                         sys.exit (0)
1527                 elif o == '--include' or o == '-I':
1528                         include_path.append (os.path.join (original_dir,
1529                                                            ly.abspath (a)))
1530                 elif o == '--output' or o == '-o':
1531                         output_name = a
1532                 elif o == '--process' or o == '-P':
1533                         process_cmd = a
1534                         filter_cmd = 0
1535                 elif o == '--version' or o == '-v':
1536                         ly.identify (sys.stdout)
1537                         sys.exit (0)
1538                 elif o == '--verbose' or o == '-V':
1539                         verbose_p = 1
1540                 elif o == '--psfonts':
1541                         psfonts_p = 1 
1542                 elif o == '--warranty' or o == '-w':
1543                         if 1 or status:
1544                                 ly.warranty ()
1545                         sys.exit (0)
1546         return files
1547
1548 def main ():
1549         files = do_options ()
1550         if not files or len (files) > 1:
1551                 ly.help ()
1552                 ly.exit (2)
1553
1554         file = files[0]
1555
1556         basename = os.path.splitext (file)[0]
1557         basename = os.path.split (basename)[1]
1558         
1559         global process_cmd, format
1560         if not format:
1561                 format = guess_format (files[0])
1562
1563         formats = 'ps'
1564         if format == TEXINFO or format == HTML:
1565                 formats += ',png'
1566         if process_cmd == '':
1567                 process_cmd = lilypond_binary \
1568                               + ' --formats=%s --backend eps ' % formats
1569
1570         if process_cmd:
1571                 process_cmd += string.join ([(' -I %s' % p)
1572                                              for p in include_path])
1573
1574         ly.identify (sys.stderr)
1575         ly.setup_environment ()
1576
1577         try:
1578                 chunks = do_file (file)
1579                 if psfonts_p and invokes_lilypond ():
1580                         fontextract.verbose = verbose_p
1581                         snippet_chunks = filter (lambda x: is_derived_class (x.__class__,
1582                                                                               Lilypond_snippet),
1583                                                  chunks)
1584
1585                         psfonts_file = basename + '.psfonts' 
1586                         if not verbose_p:
1587                                 ly.progress (_ ("Writing fonts to %s...") % psfonts_file)
1588                         fontextract.extract_fonts (psfonts_file,
1589                                                    [x.basename() + '.eps'
1590                                                     for x in snippet_chunks])
1591                         if not verbose_p:
1592                                 ly.progress ('\n')
1593                         
1594         except Compile_error:
1595                 ly.exit (1)
1596
1597         if format == TEXINFO or format == LATEX:
1598                 if not psfonts_p:
1599                         ly.warning (_ ("option --psfonts not used"))
1600                         ly.warning (_ ("processing with dvips will have no fonts"))
1601
1602                 psfonts_file = os.path.join (output_name, basename + '.psfonts')
1603                 output = os.path.join (output_name, basename +  '.dvi' )
1604                 
1605                 ly.progress ('\n')
1606                 ly.progress (_ ("DVIPS usage:"))
1607                 ly.progress ('\n')
1608                 ly.progress ("    dvips -h %(psfonts_file)s %(output)s" % vars ())
1609                 ly.progress ('\n')
1610
1611 if __name__ == '__main__':
1612         main ()