]> git.donarmstrong.com Git - lilypond.git/blob - scripts/lilypond-book.py
(find_toplevel_snippets): Python < 2.3
[lilypond.git] / scripts / lilypond-book.py
1 #!@PYTHON@
2
3 '''
4 TODO:
5       ly-options: intertext, quote ?
6       --linewidth?
7       eps in latex?
8       check latex parameters, twocolumn
9       multicolumn?
10       papersizes?
11       ly2dvi/notexidoc?
12       
13 Example usage:
14
15 test:
16      lilypond-book --filter="tr '[a-z]' '[A-Z]'" BOOK
17           
18 convert-ly on book:
19      lilypond-book --filter="convert-ly --no-version --from=1.6.11 -" BOOK
20
21 classic lilypond-book:
22      lilypond-book --process="lilypond-bin" BOOK.tely
23
24    must substitute:
25      @mbinclude foo.itely -> @include foo.itely
26      \mbinput -> \input
27      
28 '''
29
30 import string
31 import __main__
32
33 ################################################################
34 # Users of python modules should include this snippet
35 # and customize variables below.
36
37 # We'll suffer this path init stuff as long as we don't install our
38 # python packages in <prefix>/lib/pythonx.y (and don't kludge around
39 # it as we do with teTeX on Red Hat Linux: set some environment var
40 # (PYTHONPATH) in profile)
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 global _;_=ly._
60 global re;re = ly.re
61
62
63 # lilylib globals
64 program_version = '@TOPLEVEL_VERSION@'
65 program_name = 'lilypond-book'
66 verbose_p = 0
67 pseudo_filter_p = 0
68 original_dir = os.getcwd ()
69
70
71 help_summary = _ ("""Process LilyPond snippets in hybrid HTML, LaTeX or texinfo document.  Example usage:
72
73    lilypond-book --filter="tr '[a-z]' '[A-Z]'" BOOK
74    lilypond-book --filter="convert-ly --no-version --from=2.0.0 -" BOOK
75    lilypond-book --process='lilypond-bin -I include' BOOK
76
77 """)
78
79 copyright = ('Jan Nieuwenhuizen <janneke@gnu.org>>',
80              'Han-Wen Nienhuys <hanwen@cs.uu.nl>')
81
82 option_definitions = [
83         (_ ("EXT"), 'f', 'format', _ ("use output format EXT (texi [default], texi-html, latex, html)")),
84         (_ ("FILTER"), 'F', 'filter', _ ("pipe snippets through FILTER [convert-ly -n -]")),
85         ('', 'h', 'help', _ ("print this help")),
86         (_ ("DIR"), 'I', 'include', _ ("add DIR to include path")),
87         (_ ("COMMAND"), 'P', 'process', _ ("process ly_files using COMMAND FILE...")),
88         (_ ("DIR"), 'o', 'output', _ ("write output to DIR")),
89         ('', 'V', 'verbose', _ ("be verbose")),
90         ('', 'v', 'version', _ ("print version information")),
91         ('', 'w', 'warranty', _ ("show warranty and copyright")),
92         ]
93
94 include_path = [ly.abspath (os.getcwd ())]
95 lilypond_binary = os.path.join ('@bindir@', 'lilypond-bin')
96
97 # only use installed binary  when we're installed too.
98 if '@bindir@' == ('@' + 'bindir@') or not os.path.exists (lilypond_binary):
99         lilypond_binary = 'lilypond-bin'
100
101
102 use_hash_p = 1
103 format = 0
104 output_name = 0
105 latex_filter_cmd = 'latex "\\nonstopmode \input /dev/stdin"'
106 filter_cmd = 0
107 process_cmd = lilypond_binary
108 default_ly_options = { }
109
110 AFTER = 'after'
111 BEFORE = 'before'
112 HTML = 'html'
113 LATEX = 'latex'
114 LINEWIDTH = 'linewidth'
115 NOTES = 'body'
116 OUTPUT = 'output'
117 PAPER = 'paper'
118 PREAMBLE = 'preamble'
119 TEXINFO = 'texinfo'
120 VERBATIM = 'verbatim'
121
122
123 # Recognize special sequences in the input 
124 #
125 # (?P<name>regex) -- assign result of REGEX to NAME
126 # *? -- match non-greedily.
127 # (?m) -- multiline regex: make ^ and $ match at each line
128 # (?s) -- make the dot match all characters including newline
129 no_match = 'a\ba'
130 snippet_res = {
131         HTML: {
132         'include':  no_match,
133         'lilypond' : '(?m)(?P<match><lilypond((?P<options>[^:]*):)(?P<code>.*?)/>)',
134         'lilypond_block': r'''(?ms)(?P<match><lilypond(?P<options>[^>]+)?>(?P<code>.*?)</lilypond>)''',
135         'lilypond_file': r'(?m)(?P<match><lilypondfile(?P<options>[^>]+)?>\s*(?P<filename>[^<]+)\s*</lilypondfile>)',
136         'multiline_comment': r"(?sm)\s*(?!@c\s+)(?P<code><!--\s.*?!-->)\s",
137         'singleline_comment': no_match,
138         'verb': r'''(?P<code><pre>.*?</pre>)''',
139         'verbatim': r'''(?s)(?P<code><pre>\s.*?</pre>\s)''',
140         },
141
142         LATEX: {
143         'include': r'(?m)^[^%\n]*?(?P<match>\\input{(?P<filename>[^}]+)})',
144         'lilypond' : r'(?m)^[^%\n]*?(?P<match>\\lilypond\s*(\[(?P<options>.*?)\])?\s*{(?P<code>.*?)})',
145         'lilypond_block': r"(?sm)^[^%\n]*?(?P<match>\\begin\s*(\[(?P<options>.*?)\])?\s*{lilypond}(?P<code>.*?)\\end{lilypond})",
146         'lilypond_file': r'(?m)^[^%\n]*?(?P<match>\\lilypondfile\s*(\[(?P<options>.*?)\])?\s*\{(?P<filename>.+)})',
147         'multiline_comment': no_match,
148         'singleline_comment': r"(?m)^.*?(?P<match>(?P<code>^%.*$\n+))",
149         'verb': r"(?P<code>\\verb(?P<del>.).*?(?P=del))",
150         'verbatim': r"(?s)(?P<code>\\begin\s*{verbatim}.*?\\end{verbatim})",
151         },
152
153         TEXINFO: {
154         'include':  '(?m)^[^%\n]*?(?P<match>@include\s+(?P<filename>\S*))',
155         'lilypond' : '(?m)^(?P<match>@lilypond(\[(?P<options>[^]]*)\])?{(?P<code>.*?)})',
156         'lilypond_block': r'''(?ms)^(?P<match>@lilypond(\[(?P<options>[^]]*)\])?\s(?P<code>.*?)@end lilypond)\s''',
157         'lilypond_file': '(?m)^(?P<match>@lilypondfile(\[(?P<options>[^]]*)\])?{(?P<filename>[^}]+)})',
158         'multiline_comment': r"(?sm)^\s*(?!@c\s+)(?P<code>@ignore\s.*?@end ignore)\s",
159         'singleline_comment': r"(?m)^.*?(?P<match>(?P<code>@c([ \t][^\n]*|)\n))",
160         'verb': r'''(?P<code>@code{.*?})''',
161         'verbatim': r'''(?s)(?P<code>@example\s.*?@end example\s)''',
162         },
163         }
164
165 format_res = {
166         HTML: {
167         'option-sep' : '\s*',
168         'intertext': r',?\s*intertext=\".*?\"',
169         },
170         LATEX: {
171         'intertext': r',?\s*intertext=\".*?\"',
172         'option-sep' : ',\s*',
173         },
174         TEXINFO: {
175         'intertext': r',?\s*intertext=\".*?\"',
176         'option-sep' : ',\s*',
177         },
178         }
179
180 ly_options = {
181         NOTES: {
182         'relative': r'''\relative c%(relative_quotes)s''',
183         },
184         PAPER: {
185         'indent' : r'''
186     indent = %(indent)s''',
187         'linewidth' : r'''
188     linewidth = %(linewidth)s''',
189         'noindent' : r'''
190     indent = 0.0\mm''',
191         'notime' : r'''
192     \translator {
193         \StaffContext
194         \remove Time_signature_engraver
195     }''',
196         'raggedright' : r'''
197     indent = 0.0\mm
198     raggedright = ##t''',
199         },
200         PREAMBLE: {
201         'staffsize': r'''
202 #(set-global-staff-size %(staffsize)s)''',
203         },
204         }
205
206 output = {
207         HTML : {
208         AFTER: '',
209         BEFORE: '',
210         OUTPUT: r'''<img align="center" valign="center"
211 border="0" src="%(base)s.png" alt="[picture of music]">''',
212         VERBATIM: r'''<pre>
213 %(verb)s</pre>''',
214         },
215         
216         LATEX : {
217         AFTER: '',
218         BEFORE: '',
219         OUTPUT: r'''{\parindent 0pt
220 \catcode`\@=12
221 \ifx\preLilyPondExample\preLilyPondExample\fi
222 \def\lilypondbook{}
223 \input %(base)s.tex
224 \ifx\preLilyPondExample\postLilyPondExample\fi
225 \catcode`\@=0}''',
226         VERBATIM: r'''\begin{verbatim}
227 %(verb)s\end{verbatim}
228 ''',
229         },
230         
231         TEXINFO :       {
232         BEFORE: '',
233         AFTER: '',
234         VERBATIM: r'''@example
235 %(verb)s@end example''',
236         
237         },
238         
239         }
240
241 PREAMBLE_LY = r'''%% Generated by %(program_name)s
242 %% Options: [%(option_string)s]
243 %(preamble_string)s
244 \paper {%(paper_string)s
245 }
246 ''' 
247
248 FRAGMENT_LY = r'''\score{
249     \notes%(notes_string)s{
250         %(code)s    }
251 }'''
252 FULL_LY = '%(code)s'
253
254 def classic_lilypond_book_compatibility (o):
255         if o == 'singleline':
256                 return 'raggedright'
257         m = re.search ('relative\s*([-0-9])', o)
258         if m:
259                 return 'relative=%s' % m.group (1)
260         m = re.match ('([0-9]+)pt', o)
261         if m:
262                 return 'staffsize=%s' % m.group (1)
263         m = re.match ('indent=([-.0-9]+)(cm|in|mm|pt)', o)
264         if m:
265                 f = float (m.group (1))
266                 return 'indent=%f\\%s' % (f, m.group (2))
267         m = re.match ('linewidth=([-.0-9]+)(cm|in|mm|pt)', o)
268         if m:
269                 f = float (m.group (1))
270                 return 'linewidth=%f\\%s' % (f, m.group (2))
271         return None
272
273 def compose_ly (code, option_string):
274         options = []
275         # urg
276         for i in default_ly_options.keys ():
277                 options.append (i)
278                 vars ()[i] = default_ly_options[i]
279
280         if option_string:
281                 options = options + split_options (option_string)
282         
283         m = re.search (r'''\\score''', code)
284         if not m and (not options \
285                       or not 'nofragment' in options \
286                       or 'fragment' in options):
287                 options.append ('raggedright')
288                 body = FRAGMENT_LY
289         else:
290                 body = FULL_LY
291
292         # defaults
293         relative = 0
294         staffsize = '16'
295
296         notes_options = []
297         paper_options = []
298         preamble_options = []
299         for i in options:
300                 c = classic_lilypond_book_compatibility (i)
301                 if c:
302                         ly.warning (_ ("deprecated ly-option used: %s" % i))
303                         ly.warning (_ ("compatibility mode translation: %s" \
304                                        % c))
305                         i = c
306                 
307                 if string.find (i, '=') > 0:
308                         key, value = string.split (i, '=')
309                         # hmm
310                         vars ()[key] = value
311                 else:
312                         key = i
313
314                 if key in ly_options[NOTES].keys ():
315                         notes_options.append (ly_options[NOTES][key])
316                 elif key in ly_options[PREAMBLE].keys ():
317                         preamble_options.append (ly_options[PREAMBLE][key])
318                 elif key in ly_options[PAPER].keys ():
319                         paper_options.append (ly_options[PAPER][key])
320                 elif key not in ('fragment', 'nofragment',
321                                  'relative', 'verbatim'):
322                         ly.warning (_("ignoring unknown ly option: %s") % i)
323
324         relative_quotes = (",,,", ",,", ",", "", "'", "''", "'''")[relative-3]
325         program_name = __main__.program_name
326         notes_string = string.join (notes_options, '\n    ') % vars ()
327         paper_string = string.join (paper_options, '\n    ') % vars ()
328         preamble_string = string.join (preamble_options, '\n    ') % vars ()
329         return (PREAMBLE_LY + body) % vars ()
330
331
332 # BARF
333 # use lilypond-bin for latex (.lytex) books,
334 # and lilypond --preview for html, texinfo books?
335 def to_eps (file):
336         cmd = r'latex "\nonstopmode \input %s"' % file
337         # Ugh.  (La)TeX writes progress and error messages on stdout
338         # Redirect to stderr
339         cmd = '(( %s  >&2 ) >&- )' % cmd
340         ly.system (cmd)
341         ly.system ('dvips -Ppdf -u+lilypond.map -E -o %s.eps %s' \
342                    % (file, file))
343
344 def find_file (name):
345         for i in include_path:
346                 full = os.path.join (i, name)
347                 if os.path.exists (full):
348                         return full
349         ly.error (_ ('file not found: %s\n' % name))
350         ly.exit (1)
351         return ''
352         
353 def verbatim_html (s):
354         return re.sub ('>', '&gt;',
355                        re.sub ('<', '&lt;',
356                                re.sub ('&', '&amp;', s)))
357
358 def verbatim_texinfo (s):
359         return re.sub ('{', '@{',
360                        re.sub ('}', '@}',
361                                re.sub ('@', '@@', s)))
362
363 def split_options (option_string):
364         return re.split (format_res[format]['option-sep'], option_string)
365
366
367 ## make index static of Snippet?
368 index = 0
369
370 class Snippet:
371
372         ## huh? index is redundant? --hwn
373         def __init__ (self, type, source, index, match):
374                 self.type = type
375                 self.source = source
376                 self.index = index
377                 self.match = match
378                 self.hash = 0
379
380         def start (self, s):
381                 return self.index + self.match.start (s)
382
383         def end (self, s):
384                 return self.index + self.match.end (s)
385
386         def substring (self, s):
387                 return self.source[self.start (s):self.end (s)]
388
389         def ly (self):
390                 s = ''
391                 if self.type == 'lilypond_block' or self.type == 'lilypond':
392                         s = self.substring ('code')
393                 elif self.type == 'lilypond_file':
394                         name = self.substring ('filename')
395                         s = open (find_file (name)).read ()
396                 return s
397                 
398         def full_ly (self):
399                 s = self.ly ()
400                 if s:
401                         return compose_ly (s, self.match.group ('options'))
402                 return ''
403         
404         def get_hash (self):
405                 if not self.hash:
406                         self.hash = abs (hash (self.ly ()))
407                 return self.hash
408
409         def basename (self):
410                 if use_hash_p:
411                         return 'lily-%d' % self.get_hash ()
412                 raise 'to be done'
413
414         def write_ly (self):
415                 if self.type == 'lilypond_block' or self.type == 'lilypond'\
416                        or self.type == 'lilypond_file':
417                         h = open (self.basename () + '.ly', 'w')
418                         h.write (self.full_ly ())
419
420         def output_html (self):
421                 base = self.basename ()
422                 option_string = self.match.group ('options')
423                 if option_string and VERBATIM in split_options (option_string)\
424                    and format == HTML:
425                         verb = verbatim_html (self.substring ('code'))
426                         h.write (output[HTML][VERBATIM] % vars ())
427                 h.write (output[HTML][BEFORE])
428                 h.write (output[HTML][OUTPUT] % vars ())
429                 h.write (output[HTML][AFTER])
430                         
431         def output_latex (self):
432                 option_string = self.match.group ('options')
433                 if option_string and VERBATIM in split_options (option_string)\
434                    and format == LATEX:
435                         verb = self.substring ('code')
436                         h.write (output[LATEX][VERBATIM] % vars ())
437                 h.write (output[LATEX][BEFORE])
438                 base = self.basename ()
439                 h.write (output[LATEX][OUTPUT] % vars ())
440                 h.write (output[LATEX][AFTER])
441                         
442         def output_texinfo (self):
443                 option_string = self.match.group ('options')
444                 if option_string and VERBATIM in split_options (option_string):
445                         verb = verbatim_texinfo (self.substring ('code'))
446                         h.write (output[TEXINFO][VERBATIM] % vars ())
447                 h.write ('\n@tex\n')
448                 self.output_latex ()
449                 h.write ('\n@end tex\n')
450                 
451                 h.write ('\n@html\n')
452                 self.output_html ()
453                 h.write ('\n@end html\n')
454                         
455         def outdated_p (self):
456                 if self.type != 'lilypond_block' and self.type != 'lilypond'\
457                        and self.type != 'lilypond_file':
458                         return None
459                 base = self.basename ()
460                 if os.path.exists (base + '.ly') \
461                    and os.path.exists (base + '.tex') \
462                    and (use_hash_p \
463                         or self.ly () == open (base + '.ly').read ()):
464                         # TODO: something smart with target formats
465                         # (ps, png) and m/ctimes
466                         return None
467                 return self
468
469         def filter_code (self):
470                 global index
471                 # Hmm, why is verbatim's group called 'code'; rename to 'verb'?
472                 #if snippet.match.group ('code'):
473                 # urg
474                 if self.type == 'lilypond' or self.type == 'lilypond_block':
475                         h.write (self.source[index:self.start ('code')])
476                         h.write (run_filter (self.substring ('code')))
477                         h.write (self.source[self.end ('code'):self.end (0)])
478                 else:
479                         h.write (self.source[index:self.end (0)])
480                 index = self.end (0)
481
482         def compile_output (self):
483                 global index
484                 # Hmm, why is verbatim's group called 'code'; rename to 'verb'?
485                 # if snippet.match.group ('code'):
486                 # urg
487                 if self.type == 'lilypond' \
488                        or self.type == 'lilypond_block'\
489                        or self.type == 'lilypond_file':
490                         h.write (self.source[index:self.start (0)])
491                         snippet_output = eval ("Snippet.output_" + format)
492                         snippet_output (self)
493                 elif self.type == 'include':
494                         h.write (self.source[index:self.start ('filename')])
495                         base = os.path.splitext (self.substring ('filename'))[0]
496                         h.write (base + format2ext[format])
497                         h.write (self.source[self.end ('filename'):self.end (0)])
498                 else:
499                         h.write (self.source[index:self.end (0)])
500                 index = self.end (0)
501
502
503 # this isn't working - <params> are doubly used.
504 # a solution is to strip P<> from the regexes,
505 # and redo the match with  the original in notice_snippet
506 def other_toplevel_snippets (str, types):
507         res = ['(?P<regex%s>%s)' % (t, snippet_res[format][t])
508                for t in types]
509
510         big_re = re.compile (string.join (res, '|'))
511         snippets = []
512         
513         def notice_snippet (match, snips = snippets, types = types):
514                 snip = None
515                 for t in types:
516                         try:
517                                 key = 'regex' + t
518                                 gr = match.group (key)
519                                 snip =Snippet (t, str, match.start (key), match)
520                                 break
521                         except IndexError:
522                                 pass
523                 if snip:
524                         snips.append (snip)
525                 else:
526                         raise "Huh?"
527                 
528                 return match.group (0)
529
530         str = big_re.sub (notice_snippet, str)
531
532         return snippets
533
534 def simple_toplevel_snippets (str, types):
535         snippets  = []
536         for t in types:
537                 regex = re.compile (snippet_res[format][t])
538
539                 # ugh, this can be done nicer in python 2.x
540                 def notice_snippet (match, snippets = snippets,
541                                     t = t, str = str):
542                         s = Snippet (t, str, 0, match)
543                         snippets.append (s)
544                         return ''
545
546                 regex.sub (notice_snippet, str)
547         return snippets
548
549 def find_toplevel_snippets (s, types):
550         res = {}
551         for i in types:
552                 res[i] = ly.re.compile (snippet_res[format][i])
553
554         snippets = []
555         index = 0
556         #found = {}.fromkeys (types)
557         found = dict (map (lambda x: (x,None), types))
558         while 1:
559                 first = 0
560                 endex = 1 << 30
561                 for i in types:
562                         if not found[i] or found[i].start (0) < index:
563                                 found[i] = 0
564                                 m = res[i].search (s[index:endex])
565                                 if m:
566                                         found[i] = Snippet (i, s, index, m)
567                         if found[i] \
568                                and (not first \
569                                     or found[i].start (0) < found[first].start (0)):
570                                 first = i
571                                 endex = found[first].start (0)
572                 if not first:
573                         break
574                 snippets.append (found[first])
575                 index = found[first].end (0)
576                 
577         return snippets
578
579 def filter_pipe (input, cmd):
580         if verbose_p:
581                 ly.progress (_ ("Opening filter `%s\'") % cmd)
582                 
583         stdin, stdout, stderr = os.popen3 (cmd)
584         stdin.write (input)
585         status = stdin.close ()
586
587         if not status:
588                 status = 0
589                 output = stdout.read ()
590                 status = stdout.close ()
591                 error = stderr.read ()
592                 
593         if not status:
594                 status = 0
595         signal = 0x0f & status
596         if status or (not output and error):
597                 exit_status = status >> 8
598                 ly.error (_ ("`%s\' failed (%d)") % (cmd, exit_status))
599                 ly.error (_ ("The error log is as follows:"))
600                 sys.stderr.write (error)
601                 sys.stderr.write (stderr.read ())
602                 ly.exit (status)
603         
604         if verbose_p:
605                 ly.progress ('\n')
606
607         return output
608         
609 def run_filter (s):
610         return filter_pipe (s, filter_cmd)
611
612 def process_snippets (cmd, snippets):
613         names = filter (lambda x:x, map (Snippet.basename, snippets))
614         if names:
615                 ly.system (string.join ([cmd] + names))
616
617         if format == HTML or format == TEXINFO:
618                 for i in names:
619                         if os.path.exists (i + '.tex'):
620                                 to_eps (i)
621                                 ly.make_ps_images (i + '.eps', resolution=110)
622
623 LATEX_DOCUMENT = r'''
624 %(preamble)s
625 \begin{document}
626 \typeout{textwidth=\the\textwidth}
627 \typeout{columnsep=\the\columnsep}
628 \makeatletter\if@twocolumn\typeout{columns=2}\fi\makeatother
629 \end{document}
630 '''
631 #need anything else besides textwidth?
632 def get_latex_textwidth (source):
633         m = re.search (r'''(?P<preabmle>\\begin\s*{document})''', source)
634         preamble = source[:m.start (0)]
635         latex_document = LATEX_DOCUMENT % vars ()
636         parameter_string = filter_pipe (latex_document, latex_filter_cmd)
637
638         columns = 0
639         m = re.search ('columns=([0-9.]*)', parameter_string)
640         if m:
641                 columns = string.atoi (m.group (1))
642
643         columnsep = 0
644         m = re.search ('columnsep=([0-9.]*)pt', parameter_string)
645         if m:
646                 columnsep = string.atof (m.group (1))
647
648         textwidth = 0
649         m = re.search('textwidth=([0-9.]*)pt', parameter_string)
650         if m:
651                 textwidth = string.atof (m.group (1))
652                 if columns:
653                         textwidth = (textwidth - columnsep) / columns
654
655         return textwidth
656
657
658 ext2format = {
659         '.html' : HTML,
660         '.itely' : TEXINFO,
661         '.lytex' : LATEX,
662         '.tely' : TEXINFO,
663         '.tex': LATEX,
664         '.texi' : TEXINFO,
665         '.texinfo' : TEXINFO,
666         '.xml' : HTML,
667         }
668                                
669 format2ext = {
670         HTML: '.html',
671         #TEXINFO: '.texinfo',
672         TEXINFO: '.texi',
673         LATEX: '.tex',
674         }
675
676 def do_file (input_filename):
677         #ugh
678         global format
679         if not format:
680                 e = os.path.splitext (input_filename)[1]
681                 if e in ext2format.keys ():
682                         #FIXME
683                         format = ext2format[e]
684                 else:
685                         ly.error (_ ("cannot determine format for: %s" \
686                                      % input_filename))
687
688         ly.progress (_ ("Reading %s...") % input_filename)
689         if not input_filename or input_filename == '-':
690                 ih = sys.stdin
691         else:
692                 ih = open (input_filename)
693         source = ih.read ()
694         ly.progress ('\n')
695
696         ly.progress (_ ("Dissecting..."))
697         #snippets = find_toplevel_snippets (source, snippet_res[format].keys ())
698         snippet_types = (
699                 'lilypond_block',
700                 'verb',
701                 'verbatim',
702                 'singleline_comment',
703                 'multiline_comment',
704                 'lilypond_file',
705                 'include',
706                 'lilypond', )
707         
708         snippets = simple_toplevel_snippets (source, snippet_types)
709         ly.progress ('\n')
710
711         global h
712         if output_name == '-' or not output_name:
713                 h = sys.stdout
714                 output_filename = '-'
715         else:
716                 if not os.path.isdir (output_name):
717                         os.mkdir (output_name, 0777)
718                 if input_filename == '-':
719                         input_base = 'stdin'
720                 else:
721                         input_base = os.path.splitext (input_filename)[0]
722                 output_filename = output_name + '/' + input_base \
723                                   + format2ext[format]
724                 h = open (output_filename, 'w')
725                 os.chdir (output_name)
726
727         global default_ly_options
728         textwidth = 0
729         if format == LATEX and LINEWIDTH not in default_ly_options.keys ():
730                 textwidth = get_latex_textwidth (source)
731                 default_ly_options[LINEWIDTH] = '''%.0f\pt''' % textwidth
732
733         global index
734         if filter_cmd:
735                 index = 0
736                 map (Snippet.filter_code, snippets)
737                 h.write (source[index:])
738         elif process_cmd:
739                 outdated = filter (lambda x:x,
740                                    map (Snippet.outdated_p, snippets))
741                 ly.progress (_ ("Writing snippets..."))
742                 map (Snippet.write_ly, snippets)
743                 ly.progress ('\n')
744                 
745                 if outdated:
746                         ly.progress (_ ("Processing..."))
747                         process_snippets (process_cmd, outdated)
748                 else:
749                         ly.progress (_ ("All snippets are up to date..."))
750                 ly.progress ('\n')
751                 
752                 ly.progress (_ ("Compiling %s...") % output_filename)
753                 index = 0
754                 map (Snippet.compile_output, snippets)
755                 h.write (source[index:])
756                 ly.progress ('\n')
757
758         if h != sys.stdout:
759                 h.close ()
760
761         def process_include (snippet):
762                 os.chdir (original_dir)
763                 name = snippet.substring ('filename')
764                 ly.progress (_ ('Processing include: %s') % name)
765                 ly.progress ('\n')
766                 do_file (name)
767
768         map (process_include, filter (lambda x: x.type == 'include', snippets))
769
770 def do_options ():
771         global format, output_name
772         global filter_cmd, process_cmd, verbose_p
773         
774         (sh, long) = ly.getopt_args (option_definitions)
775         try:
776                 (options, files) = getopt.getopt (sys.argv[1:], sh, long)
777         except getopt.error, s:
778                 sys.stderr.write ('\n')
779                 ly.error (_ ("getopt says: `%s\'" % s))
780                 sys.stderr.write ('\n')
781                 ly.help ()
782                 ly.exit (2)
783
784         for opt in options:
785                 o = opt[0]
786                 a = opt[1]
787
788                 if 0:
789                         pass
790                 elif o == '--filter' or o == '-F':
791                         filter_cmd = a
792                         process_cmd = 0
793                 elif o == '--format' or o == '-f':
794                         format = a
795                         if a == 'texi-html' or a == 'texi':
796                                 format = TEXINFO
797                 elif o == '--help' or o == '-h':
798                         ly.help ()
799                         sys.exit (0)
800                 elif o == '--include' or o == '-I':
801                         include_path.append (os.path.join (original_dir,
802                                                            ly.abspath (a)))
803                 elif o == '--output' or o == '-o':
804                         output_name = a
805                 elif o == '--outdir':
806                         output_name = a
807                 elif o == '--process' or o == '-P':
808                         process_cmd = a
809                         filter_cmd = 0
810                 elif o == '--version' or o == '-v':
811                         ly.identify (sys.stdout)
812                         sys.exit (0)
813                 elif o == '--verbose' or o == '-V':
814                         verbose_p = 1
815                 elif o == '--warranty' or o == '-w':
816                         if 1 or status:
817                                 ly.warranty ()
818                         sys.exit (0)
819         return files
820
821 def main ():
822         files = do_options ()
823         ly.identify (sys.stderr)
824         ly.setup_environment ()
825         if files:
826                 do_file (files[0])
827
828 if __name__ == '__main__':
829         main ()