]> git.donarmstrong.com Git - lilypond.git/blob - scripts/ly2dvi.py
* scripts/lilypond-book.py (option_definitions): typo
[lilypond.git] / scripts / ly2dvi.py
1 #!@PYTHON@
2 #
3 # ly2dvi.py -- Run LilyPond, add titles to bare score, generate printable
4 #              document
5 #              Invokes: lilypond, latex (or pdflatex), dvips, ps2pdf, gs
6
7 # source file of the GNU LilyPond music typesetter
8
9 # (c)  1998--2003  Han-Wen Nienhuys <hanwen@cs.uu.nl>
10 #                 Jan Nieuwenhuizen <janneke@gnu.org>
11
12 # This is the third incarnation of ly2dvi.
13 #
14 # Earlier incarnations of ly2dvi were written by
15 # Jeffrey B. Reed<daboys@austin.rr.com> (Python version)
16 # Jan Arne Fagertun <Jan.A.Fagertun@@energy.sintef.no> (Bourne shell script)
17 #
18
19 # Note: gettext work best if we use ' for docstrings and "
20 #       for gettextable strings.
21 #       --> DO NOT USE ''' for docstrings.
22
23
24 '''
25 TODO:
26
27   * figure out which set of command line options should make ly2dvi:
28
29       na: create tex only?  
30       na: create latex only? 
31       na: create tex and latex
32       default: create dvi only
33       na: create tex, latex and dvi
34       -P: create dvi and ps
35       -p: create pdf
36       na: * create ps only
37
38      etc.
39
40   * for foo.ly, rename ly2dvi.dir to out-ly2dvi, foo.ly2dvi, foo.dir ?
41      
42   * move versatile taglines, 
43   
44      \header {
45         beginfooter=\mutopiaPD
46         endfooter=\tagline  -> 'lily was here <version>'
47      }
48
49      lilytagline (->lily was here), usertagline, copyright, lily-version
50      etc.
51
52   * head/header tagline/endfooter
53
54   * dvi from lilypond .tex output?  This is hairy, because we create dvi
55     from lilypond .tex *and* header output.
56
57   * multiple \score blocks?
58
59   * Introduce verbosity levels
60   
61      0  = QUIET: mute all command output, no ly2dvi progress
62      1  = BRIEF: mute all command output, only ly2dvi progress
63      2a = NORMAL: show only LilyPond command output, show ly2dvi progress
64      2b = NORMAL: show command output, show ly2dvi progress
65      3  = VERBOSE: show command output, run lilypond --verbose
66      4  = DEBUGGING: show all command output, run lilypond --verbose, print
67                    environment and all kinds of client side debugging stuff
68
69      Currently, we only have 1 and 4, but we kludge to have 2a and 4.
70 '''
71
72 import operator
73 import stat
74 import string
75 import traceback
76 import glob
77
78 ################################################################
79 # Users of python modules should include this snippet
80 # and customize variables below.
81
82 # We'll suffer this path init stuff as long as we don't install our
83 # python packages in <prefix>/lib/pythonx.y (and don't kludge around
84 # it as we do with teTeX on Red Hat Linux: set some environment var
85 # (PYTHONPATH) in profile)
86
87 # If set, LILYPONDPREFIX must take prevalence
88 # if datadir is not set, we're doing a build and LILYPONDPREFIX
89 import getopt, os, sys
90 datadir = '@local_lilypond_datadir@'
91 if not os.path.isdir (datadir):
92         datadir = '@lilypond_datadir@'
93 if os.environ.has_key ('LILYPONDPREFIX') :
94         datadir = os.environ['LILYPONDPREFIX']
95         while datadir[-1] == os.sep:
96                 datadir= datadir[:-1]
97
98 sys.path.insert (0, os.path.join (datadir, 'python'))
99
100 # Customize these
101 #if __name__ == '__main__':
102
103 import lilylib as ly
104 global _;_=ly._
105 global re;re = ly.re
106
107 # lilylib globals
108 program_name = 'ly2dvi'
109 verbose_p = 0
110 pseudo_filter_p = 0
111 original_dir = os.getcwd ()
112 temp_dir = os.path.join (original_dir,  '%s.dir' % program_name)
113 keep_temp_dir_p = 0
114 preview_resolution = 90
115 debug_p = 0
116
117 ## FIXME
118 ## ly2dvi: silly name?
119 ## do -P or -p by default?
120 ##help_summary = _ ("Run LilyPond using LaTeX for titling")
121 help_summary = _ ("Run LilyPond, add titles, generate printable document")
122 copyright = ('Han-Wen Nienhuys <hanwen@cs.uu.nl',
123              'Jan Nieuwenhuizen <janneke@gnu.org')
124
125 option_definitions = [
126         ('', 'd', 'dependencies',
127          _ ("write Makefile dependencies for every input file")),
128         ('', 'h', 'help', _ ("this help")),
129         ('', '', 'debug', _ ("print even more output")),
130         (_ ("DIR"), 'I', 'include', _ ("add DIR to LilyPond's search path")),
131         ('', 'k', 'keep',
132          _ ("keep all output, output to directory %s.dir") % program_name),
133         ('', '', 'no-lily', _ ("don't run LilyPond")),
134         ('', 'm', 'no-paper', _ ("produce MIDI output only")),
135         (_ ("FILE"), 'o', 'output', _ ("write ouput to FILE")),
136         (_ ("FILE"), 'f', 'find-pfa', _ ("find pfa fonts used in FILE")),
137         (_ ('RES'), '', 'preview-resolution',
138          _ ("set the resolution of the preview to RES")),
139         ('', 'P', 'postscript', _ ("generate PostScript output")),
140         ('', '', 'png', _("generate PNG page images")),
141         ('', '', 'psgz', _("generate PS.GZ")), 
142         ('', 'p', 'pdf', _ ("generate PDF output")),
143         ('', '', 'pdftex', _ ("use pdflatex to generate a PDF output")),
144         # FIXME: preview, picture; to indicate creation of a PNG?
145         ('', '', 'preview', _ ("make a picture of the first system")),
146         ('','', 'html', _("make HTML file with links to all output")),
147         (_ ("KEY=VAL"), 's', 'set', _ ("change global setting KEY to VAL")),
148         ('', 'V', 'verbose', _ ("verbose")),
149         ('', 'v', 'version', _ ("print version number")),
150         ('', 'w', 'warranty', _ ("show warranty and copyright")),
151         ]
152
153 # other globals
154 preview_p = 0
155 page_images_p = 0
156 lilypond_error_p = 0
157 html_p = 0
158
159 # Pdftex support
160 pdftex_p = 0
161 latex_cmd = 'latex'
162
163
164 tex_extension = '.tex'  ## yuk.
165
166 #lilypond_binary = 'valgrind --suppressions=%(home)s/usr/src/guile-1.6.supp --num-callers=10 %(home)s/usr/src/lilypond/lily/out/lilypond '% { 'home' : '/home/hanwen' }
167
168 lilypond_binary = os.path.join ('@bindir@', 'lilypond')
169
170 # only use installed binary  when we're installed too.
171 if '@bindir@' == ('@' + 'bindir@') or not os.path.exists (lilypond_binary):
172         lilypond_binary = 'lilypond'
173
174
175 layout_fields = ['dedication', 'title', 'subtitle', 'subsubtitle',
176           'footer', 'head', 'composer', 'arranger', 'instrument',
177           'opus', 'piece', 'metre', 'meter', 'poet', 'texttranslator']
178
179
180 # init to empty; values here take precedence over values in the file
181
182 ## TODO: change name.
183 extra_init = {
184         'language' : [],
185         'latexheaders' : [],
186         'latexpackages' :  ['geometry'],
187
188         # for geometry v3
189         'latexoptions' : ['compat2'],
190         
191         'papersize' : [],
192         'pagenumber' : [1],
193         'textheight' : [], 
194         'linewidth' : [],
195         'orientation' : [],
196         'unit' : ['pt'],
197 }
198
199 extra_fields = extra_init.keys ()
200 fields = layout_fields + extra_fields
201
202 include_path = ['.']
203 lily_p = 1
204 paper_p = 1
205
206 output_name = ''
207
208 # Output formats that ly2dvi should create
209 targets = ['DVI', 'LATEX', 'MIDI', 'TEX']
210
211 track_dependencies_p = 0
212 dependency_files = []
213
214 #what a name.
215 def set_setting (dict, key, val):
216         try:
217                 val = string.atoi (val)
218         except ValueError:
219                 #ly.warning (_ ("invalid value: %s") % `val`)
220                 pass
221
222         if type(val) == type ('hoi'):
223                 try:
224                         val = string.atof (val)
225                 except ValueError:
226                         #ly.warning (_ ("invalid value: %s") % `val`)
227                         pass
228
229         try:
230                 dict[key].append (val)
231         except KeyError:
232                 ly.warning (_ ("no such setting: `%s'") % `key`)
233                 dict[key] = [val]
234
235
236 def run_lilypond (files, dep_prefix):
237
238         opts = ''
239         opts = opts + ' ' + string.join (map (lambda x : '-I ' + x,
240                                               include_path))
241         if pseudo_filter_p:
242                 opts = opts + ' --output=lelie'
243         if paper_p:
244                 opts = opts + ' ' + string.join (map (lambda x : '-H ' + x,
245                                                       fields))
246         else:
247                 opts = opts + ' --no-paper'
248
249         if pdftex_p:
250                 opts = opts + ' -f pdftex'              
251
252         if track_dependencies_p:
253                 opts = opts + " --dependencies"
254                 if dep_prefix:
255                         opts = opts + ' --dep-prefix=%s' % dep_prefix
256
257         fs = string.join (files)
258
259         global verbose_p
260         if verbose_p:
261                 opts = opts + ' --verbose'
262
263         if debug_p:
264                 ly.print_environment ()
265
266         cmd = string.join ((lilypond_binary, opts, fs))
267         status = ly.system (cmd, ignore_error = 1, progress_p = 1)
268         signal = 0x0f & status
269         exit_status = status >> 8
270
271         # 2 == user interrupt.
272         if signal and signal != 2:
273                 sys.stderr.write ('\n\n')
274                 ly.error (_ ("LilyPond crashed (signal %d).") % signal)
275                 ly.error (_ ("Please submit a bug report to bug-lilypond@gnu.org"))
276                 ly.exit (status)
277                         
278         if status:
279                 sys.stderr.write ('\n')
280                 if len (files) == 1:
281                         ly.error (_ ("LilyPond failed on input file %s (exit status %d)") % (files[0], exit_status))
282                         ly.exit (status)
283                 else:
284                         ly.error (_ ("LilyPond failed on an input file (exit status %d)") % exit_status)
285                         ly.error (_ ("Continuing..."))
286                         global lilypond_error_p
287                         lilypond_error_p = 1
288                 
289
290 def analyse_lilypond_output (filename, extra):
291         
292         # urg
293         '''Grep FILENAME for interesting stuff, and
294         put relevant info into EXTRA.'''
295         filename = filename + tex_extension
296         ly.progress (_ ("Analyzing %s...") % filename)
297         s = open (filename).read ()
298
299         # search only the first 10k
300         s = s[:10240]
301         for x in extra_fields:
302                 m = re.search (r'\\def\\lilypondpaper%s{([^}]*)}'%x, s)
303                 if m:
304                         set_setting (extra, x, m.group (1))
305         ly.progress ('\n')
306
307 def find_tex_files_for_base (base, extra):
308         '''
309         Find the \header fields dumped from BASE.
310         '''
311         
312         headerfiles = {}
313         for f in layout_fields:
314                 fn = base + '.' + f
315                 if os.path.exists (fn):
316                         headerfiles[f] = fn
317
318         if os.path.exists (base  +'.dep'):
319                 dependency_files.append (base + '.dep')
320
321         for f in extra_fields:
322                 fn =base + '.' + f
323                 if os.path.exists (fn):
324                         extra[f].append (open (fn).read ())
325         
326         return (base + tex_extension, headerfiles)
327          
328
329 def find_tex_files (files, extra):
330         '''
331         Find all .tex files whose prefixes start with some name in FILES. 
332
333         '''
334         
335         tfiles = []
336         
337         for f in files:
338                 x = 0
339                 while 1:
340                         fname = os.path.basename (f)
341                         fname = ly.strip_extension (fname, '.ly')
342                         if x:
343                                 fname = fname + '-%d' % x
344
345                         if os.path.exists (fname + tex_extension):
346                                 tfiles.append (find_tex_files_for_base (fname, extra))
347                                 analyse_lilypond_output (fname, extra)
348                         else:
349                                 break
350
351                         x = x + 1
352         if not x:
353                 fstr = string.join (files, ', ')
354                 ly.warning (_ ("no LilyPond output found for `%s'") % fstr)
355         return tfiles
356
357 def one_latex_definition (defn, first):
358         s = '\n'
359         for (k,v) in defn[1].items ():
360                 val = open (v).read ()
361                 if (string.strip (val)):
362                         s = s + r'''\def\lilypond%s{%s}''' % (k, val)
363                 else:
364                         s = s + r'''\let\lilypond%s\relax''' % k
365                 s = s + '\n'
366
367         if first:
368                 s = s + '\\def\\mustmakelilypondtitle{}\n'
369         else:
370                 s = s + '\\def\\mustmakelilypondpiecetitle{}\n'
371                 
372         s = s + '\\input %s\n' % defn[0] # The final \n seems important here. It ensures that the footers and taglines end up on the right page.
373         return s
374
375
376 ly_paper_to_latexpaper =  {
377         'letter' : 'letterpaper', 
378         'a3' : 'a3paper',
379         'a4' : 'a4paper',
380         'a5' : 'a5paper',
381         'a6' : 'a6paper',
382 }
383
384 #TODO: should set textheight (enlarge) depending on papersize. 
385 def global_latex_preamble (extra):
386         '''construct preamble from EXTRA,'''
387         s = ""
388         s = s + '% generation tag\n'
389
390         options = ''
391
392
393         if extra['papersize']:
394                 try:
395                         options = ly_paper_to_latexpaper[extra['papersize'][0]]
396                 except KeyError:
397                         ly.warning (_ ("invalid value: `%s'") % `extra['papersize'][0]`)
398                         pass
399
400         if extra['latexoptions']:
401                 options = options + ',' + extra['latexoptions'][-1]
402
403         s = s + '\\documentclass[%s]{article}\n' % options
404
405         if extra['language']:
406                 s = s + r'\usepackage[%s]{babel}' % extra['language'][-1] + '\n'
407
408
409         s = s + '\\usepackage{%s}\n' \
410                 % string.join (extra['latexpackages'], ',')
411
412         if extra['latexheaders']:
413                 s = s + '\\include{%s}\n' \
414                         % string.join (extra['latexheaders'], '}\n\\include{')
415
416         unit = extra['unit'][-1]
417
418         textheight = ''
419         if extra['textheight']:
420                 textheight = ',textheight=%f%s' % (extra['textheight'][0], unit)
421
422         orientation = 'portrait'
423         if extra['orientation']:
424                 orientation = extra['orientation'][0]
425
426         # set sane geometry width (a4-width) for linewidth = -1.
427         maxlw = max (extra['linewidth'] + [-1])
428         if maxlw < 0:
429                 # who the hell is 597 ?
430                 linewidth = '597pt'
431         else:
432                 linewidth = '%d%s' % (maxlw, unit)
433         s = s + '\geometry{width=%s%s,headheight=2mm,footskip=2mm,%s}\n' % (linewidth, textheight, orientation)
434
435         if extra['latexoptions']:
436                 s = s + '\geometry{twosideshift=4mm}\n'
437
438         s = s + r'''
439 \usepackage[latin1]{inputenc}
440 \input{titledefs}
441 '''
442         
443         if extra['pagenumber'] and extra['pagenumber'][-1] and extra['pagenumber'][-1] != 'no':
444                 s = s + '\setcounter{page}{%d}\n' % (extra['pagenumber'][-1])
445                 s = s + '\\pagestyle{plain}\n'
446         else:
447                 s = s + '\\pagestyle{empty}\n'
448
449
450         return s
451
452         
453 def global_latex_definition (tfiles, extra):
454         '''construct preamble from EXTRA, dump Latex stuff for each
455 lily output file in TFILES after that, and return the Latex file constructed.  '''
456
457         
458         s = global_latex_preamble (extra) + '\\begin{document}\n'
459         s = s + '\\parindent 0pt\n'
460         s = s + '\\thispagestyle{firstpage}\n'
461
462         first = 1
463         for t in tfiles:
464                 s = s + one_latex_definition (t, first)
465                 first = 0
466
467
468         s = s + '\\thispagestyle{lastpage}\n'
469         s = s + '\\end{document}'
470
471         return s
472
473 def run_latex (files, outbase, extra):
474
475         '''Construct latex file, for FILES and EXTRA, dump it into
476 OUTBASE.latex. Run LaTeX on it.
477
478 RETURN VALUE
479
480 None
481         '''
482
483         latex_fn = outbase + '.latex'
484         
485         wfs = find_tex_files (files, extra)
486         s = global_latex_definition (wfs, extra)
487
488         f = open (latex_fn, 'w')
489         f.write (s)
490         f.close ()
491
492         cmd = latex_cmd + ' \\\\nonstopmode \\\\input %s' % latex_fn
493         # Ugh.  (La)TeX writes progress and error messages on stdout
494         # Redirect to stderr
495         cmd += ' 1>/dev/stderr'
496         status = ly.system (cmd, ignore_error = 1)
497         signal = 0xf & status
498         exit_status = status >> 8
499
500         if exit_status:
501
502                 logstr = ''
503                 try:
504                         logstr = open (outbase + '.log').read ()
505                         m = re.search ("\n!", logstr)
506                         start = m.start (0)
507                         logstr = logstr[start:start+200]
508                 except:
509                         pass
510                         
511                 ly.error (_ ("LaTeX failed on the output file."))
512                 ly.error (_ ("The error log is as follows:"))
513                 sys.stderr.write (logstr + '\n')
514                 ly.exit (1)
515         
516         if preview_p:
517                 # make a preview by rendering only the 1st line
518                 # of each score
519                 for score in find_tex_files (files, extra):
520                         preview_base = ly.strip_extension (score[0], '.tex')
521                         preview_fn = preview_base + '.preview.tex'
522                         s = global_latex_definition ((score,), extra)
523                         s = re.sub ('thispagestyle{firstpage}',
524                                     r'''thispagestyle{empty}%
525                                     \\def\\interscoreline{\\endinput}''', s)
526                         s = re.sub ('thispagestyle{lastpage}',
527                                     r'''thispagestyle{empty}%
528                                     \\def\\interscoreline{\\endinput}''', s)
529                         f = open (preview_fn, 'w')
530                         f.write (s)
531                         f.close ()
532                         cmd = '%s \\\\nonstopmode \\\\input %s' \
533                               % (latex_cmd, preview_fn)
534                         ly.system (cmd)
535
536
537 def run_dvips (outbase, extra):
538
539
540         '''Run dvips using the correct options taken from EXTRA,
541 leaving a PS file in OUTBASE.ps
542
543 RETURN VALUE
544
545 None.
546 '''
547         opts = ''
548         if extra['papersize']:
549                 opts = opts + ' -t%s' % extra['papersize'][0]
550
551         if extra['orientation'] and extra['orientation'][0] == 'landscape':
552                 opts = opts + ' -tlandscape'
553
554
555         if 'PDF' in targets:
556                 where = ly.read_pipe ('kpsewhich feta20.pfa').strip()
557
558                 pfa_file  = None
559                 if where:
560                         try: 
561                                 pfa_file = open (where, 'r')
562                         except IOError:
563                                 pass
564
565                 if pfa_file:
566                         opts = opts + ' -Ppdf -G0 -u +lilypond.map'
567                 else:
568                         ly.warning (_ ('''Trying create PDF, but no PFA fonts found.
569 Using bitmap fonts instead. This will look bad.'''))
570
571         cmd = 'dvips %s -o%s %s' % (opts, outbase + '.ps', outbase + '.dvi')
572         ly.system (cmd)
573
574         if preview_p:
575                 for score in find_tex_files (files, extra):
576                         preview_base = ly.strip_extension (score[0], '.tex')
577                         cmd = 'dvips -E -o%s %s' \
578                               % (preview_base + '.preview.ps',
579                                  preview_base + '.preview.dvi')
580                         ly.system (cmd)
581
582         if 'PDF' in targets:
583                 cmd = 'ps2pdf %s.ps %s.pdf' % (outbase , outbase)
584                 ly.system (cmd)
585                 
586 def generate_dependency_file (depfile, outname):
587         df = open (depfile, 'w')
588         df.write (outname + ':' )
589         
590         for d in dependency_files:
591                 s = open (d).read ()
592                 s = re.sub ('#[^\n]*\n', '', s)
593                 s = re.sub (r'\\\n', ' ', s)
594                 m = re.search ('.*:(.*)\n', s)
595
596                 # ugh. Different targets?
597                 if m:
598                         df.write ( m.group (1)  + ' ' )
599
600         df.write ('\n')
601         df.close ();
602
603 def find_file_in_path (path, name):
604         for d in string.split (path, os.pathsep):
605                 if name in os.listdir (d):
606                         return os.path.join (d, name)
607
608 # Added as functionality to ly2dvi, because ly2dvi may well need to do this
609 # in future too.
610 PS = '%!PS-Adobe'
611 def find_pfa_fonts (name):
612         s = open (name).read ()
613         if s[:len (PS)] != PS:
614                 # no ps header?
615                 ly.error (_ ("not a PostScript file: `%s\'" % name))
616                 ly.exit (1)
617         here = 0
618         m = re.match ('.*?/(feta[-a-z0-9]+) +findfont', s[here:], re.DOTALL)
619         pfa = []
620         while m:
621                 here = m.end (1)
622                 pfa.append (m.group (1))
623                 m = re.match ('.*?/(feta[-a-z0-9]+) +findfont', s[here:], re.DOTALL)
624         return pfa
625
626
627 def make_html_menu_file (html_file, files_found):
628         exts = {
629                 'pdf' : "Print (PDF, %s)",
630                 'ps.gz' : "Print (gzipped PostScript, %s)",
631                 'png' : "View (PNG, %s)",
632                 'midi' : "Listen (MIDI, %s)",
633                 'ly' : "View source code (%s)", 
634                 }
635         html_str = ''
636
637         pages = filter (lambda x : re.search ('page[0-9]+.png',  x),
638                         files_found)
639         rest =  filter (lambda x : not re.search ('page[0-9]+.png',  x),
640                         files_found)
641
642         preview = filter (lambda x: re.search ('.png$', x), rest)
643         if preview:
644                 html_str = '<img src="%s">' % preview[0]
645
646         for p in pages:
647                 page = re.sub ('.*page([0-9])+.*', 'View page \\1 (PNG picture, %s)\n', p)
648                 page = page % 'unknown size'
649                 
650                 html_str += '<li><a href="%s">%s</a>' % (p, page)
651                 
652                 
653         for e in ['pdf', 'ps.gz', 'midi', 'ly']:
654                 fs = filter (lambda x: re.search ('.%s$' % e, x), rest)
655                 for f in fs:
656                         entry = exts[e] % 'unknown size' # todo
657                         html_str += '<li><a href="%s">%s</a>\n\n' % (f, entry)
658
659         html_str += "\n\n</li>"
660         ly.progress (_("Writing HTML menu `%s'") % html_file)
661         ly.progress ('\n')
662         open (html_file, 'w').write (html_str)
663         
664 ################################################################
665 ## MAIN
666 ################################################################
667
668 (sh, long) = ly.getopt_args (option_definitions)
669 try:
670         (options, files) = getopt.getopt (sys.argv[1:], sh, long)
671 except getopt.error, s:
672         sys.stderr.write ('\n')
673         ly.error (_ ("getopt says: `%s\'" % s))
674         sys.stderr.write ('\n')
675         ly.help ()
676         ly.exit (2)
677         
678 for opt in options:
679         o = opt[0]
680         a = opt[1]
681
682         if 0:
683                 pass
684         elif o == '--help' or o == '-h':
685                 ly.help ()
686                 sys.exit (0)
687         elif o == '--find-pfa' or o == '-f':
688                 fonts = map (lambda x: x + '.pfa', find_pfa_fonts (a))
689                 files = map (lambda x:
690                              find_file_in_path (os.environ['GS_FONTPATH'], x),
691                              fonts)
692                 print string.join (files, ' ')
693                 sys.exit (0)
694         elif o == '--include' or o == '-I':
695                 include_path.append (a)
696         elif o == '--postscript' or o == '-P':
697                 targets.append ('PS')
698         elif o == '--pdf' or o == '-p':
699                 targets.append ('PS')
700                 targets.append ('PDF')
701         elif o == '--keep' or o == '-k':
702                 keep_temp_dir_p = 1
703         elif o == '--debug':
704                 verbose_p = 1
705                 debug_p = 1 
706         elif o == '--no-lily':
707                 lily_p = 0
708         elif o == '--preview':
709                 preview_p = 1
710                 if 'PNG' not in targets:
711                         targets.append ('PNG')
712         elif o == '--preview-resolution':
713                 preview_resolution = string.atoi (a)
714         elif o == '--no-paper' or o == '-m':
715                 targets = ['MIDI'] 
716                 paper_p = 0
717         elif o == '--output' or o == '-o':
718                 output_name = a
719         elif o == '--set' or o == '-s':
720                 ss = string.split (a, '=')
721                 set_setting (extra_init, ss[0], ss[1])
722         elif o == '--dependencies' or o == '-d':
723                 track_dependencies_p = 1
724         elif o == '--verbose' or o == '-V':
725                 verbose_p = 1
726         elif o == '--version' or o == '-v':
727                 ly.identify (sys.stdout)
728                 sys.exit (0)
729         elif o == '--pdftex':
730                 latex_cmd = 'pdflatex'
731                 targets.remove('DVI')
732                 targets.append('PDFTEX')
733                 pdftex_p = 1
734                 tex_extension = '.pdftex'
735         elif o == '--warranty' or o == '-w':
736                 status = os.system ('%s -w' % lilypond_binary)
737                 if status:
738                         ly.warranty ()
739                 sys.exit (0)
740         elif o == '--html':
741                 html_p = 1
742         elif o == '--png':
743                 page_images_p = 1
744                 if 'PNG' not in targets:
745                         targets.append ('PNG')
746         elif o == '--psgz':
747                 targets.append ('PS.GZ')
748         else:
749                 unimplemented_option () # signal programming error
750
751 # Don't convert input files to abspath, rather prepend '.' to include
752 # path.
753 include_path.insert (0, '.')
754
755 # As a neat trick, add directory part of first input file
756 # to include path.  That way you can do without the clumsy -I in:
757
758 #    ly2dvi -I foe/bar/baz foo/bar/baz/baz.ly
759 if files and files[0] != '-' and os.path.dirname (files[0]) != '.':
760         include_path.append (os.path.dirname (files[0]))
761         
762 include_path = map (ly.abspath, include_path)
763
764 if files and (files[0] == '-' or output_name == '-'):
765         if len (files) == 1:
766                 pseudo_filter_p = 1
767                 output_name = 'lelie'
768                 if verbose_p:
769                         ly.progress (_ ("pseudo filter") + '\n')
770         else:
771                 ly.help ()
772                 ly.error (_ ("pseudo filter only for single input file"))
773                 ly.exit (2)
774                 
775 if not files:
776         ly.help ()
777         ly.error (_ ("no files specified on command line"))
778         ly.exit (2)
779
780 if 1:
781         ly.identify (sys.stderr)
782         original_output = output_name
783         
784         # Ugh, maybe make a setup () function
785         files = map (lambda x: ly.strip_extension (x, '.ly'), files)
786
787         # hmmm. Wish I'd 've written comments when I wrote this.
788         # now it looks complicated.
789         
790         (outdir, outbase) = ('','')
791         if not output_name:
792                 outbase = os.path.basename (files[0])
793                 outdir = ly.abspath ('.')
794         elif output_name[-1] == os.sep:
795                 outdir = ly.abspath (output_name)
796                 outbase = os.path.basename (files[0])
797         else:
798                 (outdir, outbase) = os.path.split (ly.abspath (output_name))
799
800         for i in ('.dvi', '.latex', '.ly', '.ps', '.tex', '.pdftex'):
801                 output_name = ly.strip_extension (output_name, i)
802                 outbase = ly.strip_extension (outbase, i)
803
804         for i in files[:] + [output_name]:
805                 if string.find (i, ' ') >= 0:
806                         ly.error (_ ("filename should not contain spaces: `%s'") %
807                                i)
808                         ly.exit (1)
809                         
810         if os.path.dirname (output_name) != '.':
811                 dep_prefix = os.path.dirname (output_name)
812         else:
813                 dep_prefix = 0
814
815         reldir = os.path.dirname (output_name)
816         if outdir != '.' and (track_dependencies_p or targets):
817                 ly.mkdir_p (outdir, 0777)
818
819         tmpdir = ly.setup_temp ()
820         ly.setup_environment ()
821
822         # to be sure, add tmpdir *in front* of inclusion path.
823         #os.environ['TEXINPUTS'] =  tmpdir + ':' + os.environ['TEXINPUTS']
824         os.chdir (tmpdir)
825
826         # We catch all exceptions, because we need to do stuff at exit:
827         #   * copy any successfully generated stuff from tempdir and
828         #     notify user of that
829         #   * cleanout tempdir
830         if lily_p:
831                 try:
832                         run_lilypond (files, dep_prefix)
833                 except:
834                         ### ARGH. This also catches python programming errors.
835                         ### this should only catch lilypond nonzero exit  status
836                         ### --hwn
837
838                         
839                         # TODO: friendly message about LilyPond setup/failing?
840                         #
841                         targets = []
842                         if verbose_p:
843                                 traceback.print_exc ()
844                         else:
845                                 ly.warning (_("Running LilyPond failed. Rerun with --verbose for a trace."))
846                                 
847         # Our LilyPond pseudo filter always outputs to 'lelie'
848         # have subsequent stages and use 'lelie' output.
849         if pseudo_filter_p:
850                 files[0] = 'lelie'
851
852         if 'PS.GZ'  in targets:
853                 targets.append ('PS')
854                 
855         if 'PNG' in targets and 'PS' not in targets:
856                 targets.append ('PS')
857         if 'PS' in targets and 'DVI' not in targets:
858                 targets.append('DVI')
859
860         if 'DVI' in targets:
861                 try:
862                         run_latex (files, outbase, extra_init)
863                         # unless: add --tex, or --latex?
864                         targets.remove ('TEX')
865                         targets.remove('LATEX')
866                 except:
867                         # TODO: friendly message about TeX/LaTeX setup,
868                         # trying to run tex/latex by hand
869                         if 'DVI' in targets:
870                                 targets.remove ('DVI')
871                         if 'PS' in targets:
872                                 targets.remove ('PS')
873                         if verbose_p:
874                                 traceback.print_exc ()
875
876         if 'PS' in targets:
877                 try:
878                         run_dvips (outbase, extra_init)
879                         
880                 except: 
881                         if 'PS' in targets:
882                                 targets.remove ('PS')
883                         if verbose_p:
884                                 traceback.print_exc ()
885                         else:
886                                 ly.warning (_("Failed to make PS file. Rerun with --verbose for a trace."))
887
888         if preview_p:
889                 for score in find_tex_files (files, extra_init):
890                         preview_base = ly.strip_extension (score[0], '.tex')
891                         ly.make_ps_images (preview_base + '.preview.ps',
892                                            resolution=preview_resolution
893                                            )
894
895         if 'PDFTEX' in targets:
896                 try:
897                         run_latex (files, outbase, extra_init)
898                         # unless: add --tex, or --latex?
899                         targets.remove ('TEX')
900                         targets.remove ('LATEX')
901                         targets.remove ('PDFTEX')
902                         if 'PDF' not in targets:
903                                 targets.append('PDF')
904                 except:
905                         # TODO: friendly message about TeX/LaTeX setup,
906                         # trying to run tex/latex by hand
907                         if 'PDFTEX' in targets:
908                                 targets.remove ('PDFTEX')
909                         if 'PDF' in targets:
910                                 targets.remove ('PDF')
911                         if 'PS' in targets:
912                                 targets.remove ('PS')
913                         if verbose_p:
914                                 traceback.print_exc ()
915                         else:
916                                 ly.warning (_("Running LaTeX failed. Rerun with --verbose for a trace."))
917                                 
918         if page_images_p:
919                 ly.make_ps_images (outbase + '.ps' )
920
921         # add DEP to targets?
922         if track_dependencies_p:
923                 depfile = os.path.join (outdir, outbase + '.dep')
924                 generate_dependency_file (depfile, depfile)
925                 if os.path.isfile (depfile):
926                         ly.progress (_ ("dependencies output to `%s'...") %
927                                      depfile)
928                         ly.progress ('\n')
929
930         if pseudo_filter_p:
931                 main_target = 0
932                 for i in 'PDF', 'PS', 'PNG', 'DVI', 'LATEX':
933                         if i in targets:
934                                 main_target = i
935                                 break
936
937                 ly.progress (_ ("%s output to <stdout>...") % i)
938                 outname = outbase + '.' + string.lower (main_target)
939                 if os.path.isfile (outname):
940                         sys.stdout.write (open (outname).read ())
941                 elif verbose_p:
942                         ly.warning (_ ("can't find file: `%s'") % outname)
943                 targets = []
944                 ly.progress ('\n')
945                 
946         if 'PS.GZ' in targets:
947                 ly.system ("gzip *.ps") 
948                 targets.remove ('PS')
949
950         # Hmm, if this were a function, we could call it the except: clauses
951         files_found = []
952         for i in targets:
953                 ext = string.lower (i)
954
955                 pattern = '%s.%s' % (outbase, ext)
956                 if i == 'PNG':
957                         pattern  = '*.png' 
958                 ls = glob.glob (pattern)
959                 files_found += ls 
960                 ly.cp_to_dir ('.*\.%s$' % ext, outdir)
961
962
963                 if ls:
964                         names = string.join (map (lambda x: "`%s'" % x, ls))
965                         ly.progress (_ ("%s output to %s...") % (i, names))
966                         ly.progress ('\n')
967                 elif verbose_p:
968                         ly.warning (_ ("can't find file: `%s'") % outname)
969
970         if html_p:
971                 make_html_menu_file (os.path.join (outdir, outbase + ".html"),
972                                      files_found)
973
974         os.chdir (original_dir)
975         ly.cleanup_temp ()
976
977         sys.exit (lilypond_error_p)