]> git.donarmstrong.com Git - lilypond.git/blob - scripts/lilypond-book.py
61943d67d45400d984515767dd2b1d978bc32751
[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 PRINTFILENAME = 'printfilename'
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         PRINTFILENAME:'<p><tt><a href="%(base)s.ly">%(filename)s</a></tt></p>',
210         BEFORE: '',
211         OUTPUT: r'''
212 <img align="center" valign="center"
213 border="0" src="%(base)s.png" alt="[picture of music]">''',
214         VERBATIM: r'''<pre>
215 %(verb)s</pre>''',
216         },
217         
218         LATEX : {
219         AFTER: '',
220         PRINTFILENAME: '''\\texttt{%(filename)s}
221
222         ''',
223         BEFORE: '',
224         OUTPUT: r'''{\parindent 0pt
225 \catcode`\@=12
226 \ifx\preLilyPondExample\preLilyPondExample\fi
227 \def\lilypondbook{}
228 \input %(base)s.tex
229 \ifx\preLilyPondExample\postLilyPondExample\fi
230 \catcode`\@=0}''',
231         VERBATIM: r'''\begin{verbatim}
232 %(verb)s\end{verbatim}
233 ''',
234         },
235         
236         TEXINFO :       {
237         BEFORE: '',
238         AFTER: '',
239         VERBATIM: r'''@example
240 %(verb)s@end example
241 ''',
242         
243         },
244         
245         }
246
247 PREAMBLE_LY = r'''%% Generated by %(program_name)s
248 %% Options: [%(option_string)s]
249 %(preamble_string)s
250 \paper {%(paper_string)s
251 }
252 ''' 
253
254 FRAGMENT_LY = r'''\score{
255     \notes%(notes_string)s{
256         %(code)s    }
257 }'''
258 FULL_LY = '%(code)s'
259
260 def classic_lilypond_book_compatibility (o):
261         if o == 'singleline':
262                 return 'raggedright'
263         m = re.search ('relative\s*([-0-9])', o)
264         if m:
265                 return 'relative=%s' % m.group (1)
266         m = re.match ('([0-9]+)pt', o)
267         if m:
268                 return 'staffsize=%s' % m.group (1)
269         m = re.match ('indent=([-.0-9]+)(cm|in|mm|pt)', o)
270         if m:
271                 f = float (m.group (1))
272                 return 'indent=%f\\%s' % (f, m.group (2))
273         m = re.match ('linewidth=([-.0-9]+)(cm|in|mm|pt)', o)
274         if m:
275                 f = float (m.group (1))
276                 return 'linewidth=%f\\%s' % (f, m.group (2))
277         return None
278
279 def compose_ly (code, options):
280         
281         options += default_ly_options.keys ()
282         vars ().update (default_ly_options)
283         
284         m = re.search (r'''\\score''', code)
285         if not m and (not options \
286                       or not 'nofragment' in options \
287                       or 'fragment' in options):
288                 options.append ('raggedright')
289                 body = FRAGMENT_LY
290         else:
291                 body = FULL_LY
292
293         # defaults
294         relative = 0
295         staffsize = '16'
296         option_string = string.join (options, ',')
297         notes_options = []
298         paper_options = []
299         preamble_options = []
300         for i in options:
301                 c = classic_lilypond_book_compatibility (i)
302                 if c:
303                         ly.warning (_ ("deprecated ly-option used: %s" % i))
304                         ly.warning (_ ("compatibility mode translation: %s" \
305                                        % c))
306                         i = c
307                 
308                 if string.find (i, '=') > 0:
309                         key, value = string.split (i, '=')
310                         # hmm
311                         vars ()[key] = value
312                 else:
313                         key = i
314
315                 if key in ly_options[NOTES].keys ():
316                         notes_options.append (ly_options[NOTES][key])
317                 elif key in ly_options[PREAMBLE].keys ():
318                         preamble_options.append (ly_options[PREAMBLE][key])
319                 elif key in ly_options[PAPER].keys ():
320                         paper_options.append (ly_options[PAPER][key])
321                 elif key not in ('fragment', 'nofragment', 'printfilename',
322                                  'relative', 'verbatim'):
323                         ly.warning (_("ignoring unknown ly option: %s") % i)
324
325         relative_quotes = (",,,", ",,", ",", "", "'", "''", "'''")[relative-3]
326         program_name = __main__.program_name
327         notes_string = string.join (notes_options, '\n    ') % vars ()
328         paper_string = string.join (paper_options, '\n    ') % vars ()
329         preamble_string = string.join (preamble_options, '\n    ') % vars ()
330         return (PREAMBLE_LY + body) % vars ()
331
332
333 # BARF
334 # use lilypond-bin for latex (.lytex) books,
335 # and lilypond --preview for html, texinfo books?
336 def to_eps (file):
337         cmd = r'latex "\nonstopmode \input %s"' % file
338         # Ugh.  (La)TeX writes progress and error messages on stdout
339         # Redirect to stderr
340         cmd = '(( %s  >&2 ) >&- )' % cmd
341         ly.system (cmd)
342         ly.system ('dvips -Ppdf -u+lilypond.map -E -o %s.eps %s' \
343                    % (file, file))
344
345 def find_file (name):
346         for i in include_path:
347                 full = os.path.join (i, name)
348                 if os.path.exists (full):
349                         return full
350         ly.error (_ ('file not found: %s\n' % name))
351         ly.exit (1)
352         return ''
353         
354 def verbatim_html (s):
355         return re.sub ('>', '&gt;',
356                        re.sub ('<', '&lt;',
357                                re.sub ('&', '&amp;', s)))
358
359 def verbatim_texinfo (s):
360         return re.sub ('{', '@{',
361                        re.sub ('}', '@}',
362                                re.sub ('@', '@@', s)))
363
364 def split_options (option_string):
365         return re.split (format_res[format]['option-sep'], option_string)
366
367
368 class Snippet:
369         def __init__ (self, type, match):
370                 self.type = type
371                 self.match = match
372                 self.hash = 0
373                 self.options = []
374                 try:
375                         os = match.group ('options')
376                         if os:
377                                 self.options = split_options (os)
378                 except IndexError:
379                         pass
380
381         def start (self, s):
382                 return self.match.start (s)
383
384         def end (self, s):
385                 return self.match.end (s)
386
387         def substring (self, s):
388                 return self.match.group (s)
389
390         def ly (self):
391                 s = ''
392                 if self.type == 'lilypond_block' or self.type == 'lilypond':
393                         s = self.substring ('code')
394                 elif self.type == 'lilypond_file':
395                         name = self.substring ('filename')
396                         s = open (find_file (name)).read ()
397                 return s
398                 
399         def full_ly (self):
400                 s = self.ly ()
401                 if s:
402                         return compose_ly (s, self.options)
403                 return ''
404         
405         def get_hash (self):
406                 if not self.hash:
407                         self.hash = abs (hash (self.ly ()))
408                 return self.hash
409
410         def basename (self):
411                 if use_hash_p:
412                         return 'lily-%d' % self.get_hash ()
413                 raise 'to be done'
414
415         def write_ly (self):
416                 if self.type == 'lilypond_block' or self.type == 'lilypond'\
417                        or self.type == 'lilypond_file':
418                         outf = open (self.basename () + '.ly', 'w')
419                         outf.write (self.full_ly ())
420
421         def replacement_text (self, format):
422                 if self.type in ['lilypond_file',
423                                  'lilypond_block',
424                                  'lilypond']:
425                         
426                         func = Snippet.__dict__ ['output_' + format]
427                         return func (self)
428                 elif self.type == 'include':
429                         s = self.match.group (0)
430                         f = self.substring ('filename')
431                         nf = os.path.splitext (f)[0] + format2ext[format]
432                         
433                         return re.sub (f, nf, s)
434                 else:
435                         return self.match.group (0)
436         
437         def output_html (self):
438                 base = self.basename ()
439                 str = self.output_print_filename (HTML)
440                 if VERBATIM in self.options and format == HTML:
441                         verb = verbatim_html (self.substring ('code'))
442                         str  += write (output[HTML][VERBATIM] % vars ())
443                 return (str + output[HTML][BEFORE] 
444                         + (output[HTML][OUTPUT] % vars ())
445                         + output[HTML][AFTER])
446                         
447         def output_latex (self):
448
449                 str = self.output_print_filename (LATEX)
450                         
451                 base = self.basename ()
452                 str +=  (output[LATEX][BEFORE]
453                          + (output[LATEX][OUTPUT] % vars ())
454                          + output[LATEX][AFTER])
455
456                 
457                 if  VERBATIM in self.options\
458                    and format == LATEX:
459                         verb = self.substring ('code')
460                         str += (output[LATEX][VERBATIM] % vars ())
461
462                 return str
463
464         def output_print_filename (self,format):
465                 str = ''
466                 if  PRINTFILENAME in self.options:
467                         base = self.basename ()
468                         filename = self.substring ('filename')
469                         str += output[format][PRINTFILENAME] % vars ()
470
471                 return str
472         
473         def output_texinfo (self):
474                 str = ''
475
476                 ##  Ugh, this breaks texidoc.
477                 
478                 str += '\n@tex\n'
479                 str += self.output_latex ()
480                 str += ('\n@end tex\n')
481                 
482                 str += ('\n@html\n')
483                 str += self.output_html ()
484                 str += ('\n@end html\n')
485
486                 
487                 if  VERBATIM in self.options:
488                         verb = verbatim_texinfo (self.substring ('code'))
489                         str +=  (output[TEXINFO][VERBATIM] % vars ())
490                 
491                 return str
492                         
493         def outdated_p (self):
494                 if self.type != 'lilypond_block' and self.type != 'lilypond'\
495                        and self.type != 'lilypond_file':
496                         return None
497                 base = self.basename ()
498                 if os.path.exists (base + '.ly') \
499                    and os.path.exists (base + '.tex') \
500                    and (use_hash_p \
501                         or self.ly () == open (base + '.ly').read ()):
502                         # TODO: something smart with target formats
503                         # (ps, png) and m/ctimes
504                         return None
505                 return self
506
507         def filter_code (self):
508                 pass # todo
509         
510
511
512 def simple_find_toplevel_snippets (str, types):
513         "return: (new string, snippets)" 
514         snippets  = []
515         for t in types:
516                 regex = re.compile (snippet_res[format][t])
517
518                 # ugh, this can be done nicer in python 2.x
519                 def notice_snippet (match, snippets = snippets,
520                                     t = t, str = str):
521                         s = Snippet (t, str, match)
522                         snippets.append (s)
523
524                         
525                         return s.replacement_text (format)
526
527                 str = regex.sub (notice_snippet, str)
528         return (str, snippets)
529
530 def find_toplevel_snippets (infile, outfile, types):
531         res = ['(?P<regex%s>%s)' % (t,
532
533                                     re.sub (r"\(\?P<[^>]+>", "(", snippet_res[format][t]))
534                for t in types]
535
536         big_re = re.compile (string.join (res, '|'))
537         str = infile.read ()
538         i = big_re.finditer(str) 
539
540         snips= []
541         last_end = 0
542         for match in i:
543                 outfile.write (str[last_end:match.start (0)])
544                 last_end = match.end (0)
545                 for t in types:
546                         m =re.match (snippet_res[format][t], match.group(0))
547                         if m:
548                                 sn = Snippet (t, m)
549                                 snips.append (sn)
550                                 outfile.write (sn.replacement_text (format))
551                                 break
552         return snips            
553
554
555 def filter_pipe (input, cmd):
556         if verbose_p:
557                 ly.progress (_ ("Opening filter `%s\'") % cmd)
558                 
559         stdin, stdout, stderr = os.popen3 (cmd)
560         stdin.write (input)
561         status = stdin.close ()
562
563         if not status:
564                 status = 0
565                 output = stdout.read ()
566                 status = stdout.close ()
567                 error = stderr.read ()
568                 
569         if not status:
570                 status = 0
571         signal = 0x0f & status
572         if status or (not output and error):
573                 exit_status = status >> 8
574                 ly.error (_ ("`%s\' failed (%d)") % (cmd, exit_status))
575                 ly.error (_ ("The error log is as follows:"))
576                 sys.stderr.write (error)
577                 sys.stderr.write (stderr.read ())
578                 ly.exit (status)
579         
580         if verbose_p:
581                 ly.progress ('\n')
582
583         return output
584         
585 def run_filter (s):
586         return filter_pipe (s, filter_cmd)
587
588 def process_snippets (cmd, snippets):
589         names = filter (lambda x:x, map (Snippet.basename, snippets))
590         if names:
591                 ly.system (string.join ([cmd] + names))
592
593         if format == HTML or format == TEXINFO:
594                 for i in names:
595                         if os.path.exists (i + '.tex'):
596                                 to_eps (i)
597                                 ly.make_ps_images (i + '.eps', resolution=110)
598
599 LATEX_DOCUMENT = r'''
600 %(preamble)s
601 \begin{document}
602 \typeout{textwidth=\the\textwidth}
603 \typeout{columnsep=\the\columnsep}
604 \makeatletter\if@twocolumn\typeout{columns=2}\fi\makeatother
605 \end{document}
606 '''
607 #need anything else besides textwidth?
608 def get_latex_textwidth (source):
609         m = re.search (r'''(?P<preamble>\\begin\s*{document})''', source)
610         preamble = source[:m.start (0)]
611         latex_document = LATEX_DOCUMENT % vars ()
612         parameter_string = filter_pipe (latex_document, latex_filter_cmd)
613
614         columns = 0
615         m = re.search ('columns=([0-9.]*)', parameter_string)
616         if m:
617                 columns = string.atoi (m.group (1))
618
619         columnsep = 0
620         m = re.search ('columnsep=([0-9.]*)pt', parameter_string)
621         if m:
622                 columnsep = string.atof (m.group (1))
623
624         textwidth = 0
625         m = re.search('textwidth=([0-9.]*)pt', parameter_string)
626         if m:
627                 textwidth = string.atof (m.group (1))
628                 if columns:
629                         textwidth = (textwidth - columnsep) / columns
630
631         return textwidth
632
633
634 ext2format = {
635         '.html' : HTML,
636         '.itely' : TEXINFO,
637         '.lytex' : LATEX,
638         '.tely' : TEXINFO,
639         '.tex': LATEX,
640         '.texi' : TEXINFO,
641         '.texinfo' : TEXINFO,
642         '.xml' : HTML,
643         }
644                                
645 format2ext = {
646         HTML: '.html',
647         #TEXINFO: '.texinfo',
648         TEXINFO: '.texi',
649         LATEX: '.tex',
650         }
651
652 def do_file (input_filename):
653         #ugh
654         global format
655         if not format:
656                 e = os.path.splitext (input_filename)[1]
657                 if e in ext2format.keys ():
658                         #FIXME
659                         format = ext2format[e]
660                 else:
661                         ly.error (_ ("cannot determine format for: %s" \
662                                      % input_filename))
663
664         ly.progress (_ ("Reading %s...") % input_filename)
665         if not input_filename or input_filename == '-':
666                 ih = sys.stdin
667         else:
668                 ih = open (input_filename)
669
670         ly.progress ('\n')
671
672         ly.progress (_ ("Dissecting..."))
673         #snippets = find_toplevel_snippets (source, snippet_res[format].keys ())
674         snippet_types = (
675                 'lilypond_block',
676                 'verb',
677                 'verbatim',
678                 'singleline_comment',
679                 'multiline_comment',
680                 'lilypond_file',
681                 'include',
682                 'lilypond', )
683         
684         output_file = None
685         if output_name == '-' or not output_name:
686                 output_file = sys.stdout
687                 output_filename = '-'
688         else:
689                 if not os.path.isdir (output_name):
690                         os.mkdir (output_name, 0777)
691                 if input_filename == '-':
692                         input_base = 'stdin'
693                 else:
694                         input_base = os.path.splitext (input_filename)[0]
695                         input_base = os.path.basename (input_base)
696                         
697                 output_filename = output_name + '/' + input_base \
698                                   + format2ext[format]
699                 output_file = open (output_filename, 'w')
700                 os.chdir (output_name)
701
702                 
703         snippets = find_toplevel_snippets (ih, output_file, snippet_types)
704         ly.progress ('\n')
705
706
707         global default_ly_options
708         textwidth = 0
709         if format == LATEX and LINEWIDTH not in default_ly_options.keys ():
710                 textwidth = get_latex_textwidth (source)
711                 default_ly_options[LINEWIDTH] = '''%.0f\pt''' % textwidth
712
713         if filter_cmd:
714                 pass # todo
715         elif process_cmd:
716                 outdated = filter (lambda x:x,
717                                    map (Snippet.outdated_p, snippets))
718                 ly.progress (_ ("Writing snippets..."))
719                 map (Snippet.write_ly, snippets)
720                 ly.progress ('\n')
721                 
722                 if outdated:
723                         ly.progress (_ ("Processing..."))
724                         process_snippets (process_cmd, outdated)
725                 else:
726                         ly.progress (_ ("All snippets are up to date..."))
727                 ly.progress ('\n')
728                 
729                 ly.progress (_ ("Compiling %s...") % output_filename)
730                 ly.progress ('\n')
731
732         def process_include (snippet):
733                 os.chdir (original_dir)
734                 name = snippet.substring ('filename')
735                 ly.progress (_ ('Processing include: %s') % name)
736                 ly.progress ('\n')
737                 do_file (name)
738
739         map (process_include, filter (lambda x: x.type == 'include', snippets))
740
741 def do_options ():
742         global format, output_name
743         global filter_cmd, process_cmd, verbose_p
744         
745         (sh, long) = ly.getopt_args (option_definitions)
746         try:
747                 (options, files) = getopt.getopt (sys.argv[1:], sh, long)
748         except getopt.error, s:
749                 sys.stderr.write ('\n')
750                 ly.error (_ ("getopt says: `%s\'" % s))
751                 sys.stderr.write ('\n')
752                 ly.help ()
753                 ly.exit (2)
754
755         for opt in options:
756                 o = opt[0]
757                 a = opt[1]
758
759                 if 0:
760                         pass
761                 elif o == '--filter' or o == '-F':
762                         filter_cmd = a
763                         process_cmd = 0
764                 elif o == '--format' or o == '-f':
765                         format = a
766                         if a == 'texi-html' or a == 'texi':
767                                 format = TEXINFO
768                 elif o == '--help' or o == '-h':
769                         ly.help ()
770                         sys.exit (0)
771                 elif o == '--include' or o == '-I':
772                         include_path.append (os.path.join (original_dir,
773                                                            ly.abspath (a)))
774                 elif o == '--output' or o == '-o':
775                         output_name = a
776                 elif o == '--outdir':
777                         output_name = a
778                 elif o == '--process' or o == '-P':
779                         process_cmd = a
780                         filter_cmd = 0
781                 elif o == '--version' or o == '-v':
782                         ly.identify (sys.stdout)
783                         sys.exit (0)
784                 elif o == '--verbose' or o == '-V':
785                         verbose_p = 1
786                 elif o == '--warranty' or o == '-w':
787                         if 1 or status:
788                                 ly.warranty ()
789                         sys.exit (0)
790         return files
791
792 def main ():
793
794         files = do_options ()
795         global process_cmd
796         if process_cmd:
797                 process_cmd += string.join ([(' -I %s' % p)
798                                              for p in include_path])
799
800         ly.identify (sys.stderr)
801         ly.setup_environment ()
802         if files:
803                 do_file (files[0])
804
805 if __name__ == '__main__':
806         main ()