]> git.donarmstrong.com Git - lilypond.git/blob - python/lilylib.py
(First steps): change example
[lilypond.git] / python / lilylib.py
1 ################################################################
2 # lilylib.py -- options and stuff
3
4 # source file of the GNU LilyPond music typesetter
5 #
6 # (c) 1998--2006 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 #                 Jan Nieuwenhuizen <janneke@gnu.org>
8
9 import __main__
10 import glob
11 import os
12 import re
13 import shutil
14 import string
15 import sys
16 import optparse
17 import subprocess
18
19 ## windows mingw cross compile doesn't have selectmodule.so
20 have_fcntl = True
21 try:
22         import fcntl
23 except ImportError:
24         have_fcntl = False
25         
26 ################################################################
27 # Users of python modules should include this snippet
28 # and customize variables below.
29
30 # We'll suffer this path init stuff as long as we don't install our
31 # python packages in <prefix>/lib/pythonx.y (and don't kludge around
32 # it as we do with teTeX on Red Hat Linux: set some environment var
33 # (PYTHONPATH) in profile)
34
35 # If set, LILYPONDPREFIX must take prevalence
36 # if datadir is not set, we're doing a build and LILYPONDPREFIX
37
38 datadir = '@local_lilypond_datadir@'
39 if not os.path.isdir (datadir):
40         datadir = '@lilypond_datadir@'
41 if os.environ.has_key ('LILYPONDPREFIX') :
42         datadir = os.environ['LILYPONDPREFIX']
43         while datadir[-1] == os.sep:
44                 datadir= datadir[:-1]
45
46 sys.path.insert (0, os.path.join (datadir, 'python'))
47
48
49
50
51 localedir = '@localedir@'
52 try:
53         import gettext
54         gettext.bindtextdomain ('lilypond', localedir)
55         gettext.textdomain ('lilypond')
56         _ = gettext.gettext
57 except:
58         def _ (s):
59                 return s
60 underscore = _
61 progress = sys.stderr.write 
62
63
64 def command_name (cmd):
65         # Strip all stuf after command,
66         # deal with "((latex ) >& 1 ) .." too
67         cmd = re.match ('([\(\)]*)([^\\\ ]*)', cmd).group (2)
68         return os.path.basename (cmd)
69
70 def system (cmd,
71               ignore_error=False,
72               progress_p=True,
73               be_verbose=False,
74               log_file=None):
75         
76         show_progress= progress_p 
77         name = command_name (cmd)
78         error_log_file = ''
79
80         if be_verbose:
81                 show_progress = 1
82                 progress (_ ("Invoking `%s\'") % cmd)
83         else:
84                 progress ( _("Running %s...") % name)
85
86
87         stdout_setting = None
88         if not show_progress:
89                 stdout_setting = subprocess.PIPE
90                 
91         proc = subprocess.Popen (cmd,
92                                  shell=True,
93                                  universal_newlines=True,
94                                  stdout=stdout_setting,
95                                  stderr=stdout_setting)
96
97         log = ''
98
99         if show_progress:
100                 retval = proc.wait()
101         else:
102                 log = proc.communicate ()
103                 retval = proc.returncode
104
105
106         if retval:
107                 print >>sys.stderr, 'command failed:', cmd
108                 if retval < 0:
109                     print >>sys.stderr, "Child was terminated by signal", -retval
110                 elif retval > 0:
111                     print >>sys.stderr, "Child returned", retval
112
113                 if ignore_error:
114                         print >>sys.stderr, "Error ignored"
115                 else:
116                         if not show_progress:
117                                 print log[0]
118                                 print log[1]
119                         sys.exit (1)
120
121         return abs (retval)
122
123 def strip_extension (f, ext):
124         (p, e) = os.path.splitext (f)
125         if e == ext:
126                 e = ''
127         return p + e
128
129
130 def search_exe_path (name):
131         p = os.environ['PATH']
132         exe_paths = string.split (p, ':')
133         for e in exe_paths:
134                 full = os.path.join (e, name)
135                 if os.path.exists (full):
136                         return full
137         return None
138
139
140 def print_environment ():
141         for (k,v) in os.environ.items ():
142                 sys.stderr.write ("%s=\"%s\"\n" % (k, v)) 
143
144
145 class NonDentedHeadingFormatter (optparse.IndentedHelpFormatter):
146     def format_heading(self, heading):
147             if heading:
148                     return heading[0].upper() + heading[1:] + ':\n'
149             return ''
150     def format_option_strings(self, option):
151             sep = ' '
152             if option._short_opts and option._long_opts:
153                     sep = ','
154
155             metavar = ''
156             if option.takes_value():
157                     metavar = '=%s' % option.metavar or option.dest.upper()
158
159             return "%3s%s %s%s" % (" ".join (option._short_opts),
160                                    sep,
161                                    " ".join (option._long_opts),
162                                    metavar)
163
164     def format_usage(self, usage):
165         return _("Usage: %s\n") % usage
166     
167     def format_description(self, description):
168             return description
169
170 def get_option_parser (*args, **kwargs): 
171         p = optparse.OptionParser (*args, **kwargs)
172         p.formatter = NonDentedHeadingFormatter () 
173         return p