1 ###############################################################
2 # lilylib.py -- options and stuff
4 # source file of the GNU LilyPond music typesetter
6 # (c) 1998--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 # Jan Nieuwenhuizen <janneke@gnu.org>
18 ################################################################
19 # Users of python modules should include this snippet
20 # and customize variables below.
22 # We'll suffer this path init stuff as long as we don't install our
23 # python packages in <prefix>/lib/pythonx.y (and don't kludge around
24 # it as we do with teTeX on Red Hat Linux: set some environment var
25 # (PYTHONPATH) in profile)
27 # If set, LILYPOND_DATADIR must take prevalence
28 # if datadir is not set, we're doing a build and LILYPOND_DATADIR
30 datadir = '@local_lilypond_datadir@'
31 if not os.path.isdir (datadir):
32 datadir = '@lilypond_datadir@'
33 if os.environ.has_key ('LILYPOND_DATADIR') :
34 datadir = os.environ['LILYPOND_DATADIR']
35 while datadir[-1] == os.sep:
38 sys.path.insert (0, os.path.join (datadir, 'python'))
43 localedir = '@localedir@'
46 gettext.bindtextdomain ('lilypond', localedir)
47 gettext.textdomain ('lilypond')
53 progress = sys.stderr.write
55 # Modified version of the commands.mkarg(x), which always uses
56 # double quotes (since Windows can't handle the single quotes:
66 def command_name (cmd):
67 # Strip all stuf after command,
68 # deal with "((latex ) >& 1 ) .." too
69 cmd = re.match ('([\(\)]*)([^\\\ ]*)', cmd).group (2)
70 return os.path.basename (cmd)
72 def subprocess_system (cmd,
79 show_progress= progress_p
80 name = command_name (cmd)
85 progress (_ ("Invoking `%s\'") % cmd)
87 progress ( _("Running %s...") % name)
92 stdout_setting = subprocess.PIPE
94 proc = subprocess.Popen (cmd,
96 universal_newlines=True,
97 stdout=stdout_setting,
98 stderr=stdout_setting)
105 log = proc.communicate ()
106 retval = proc.returncode
110 print >>sys.stderr, 'command failed:', cmd
112 print >>sys.stderr, "Child was terminated by signal", -retval
114 print >>sys.stderr, "Child returned", retval
117 print >>sys.stderr, "Error ignored"
119 if not show_progress:
126 def ossystem_system (cmd,
133 name = command_name (cmd)
136 progress (_ ("Invoking `%s\'") % cmd)
138 progress ( _("Running %s...") % name)
140 retval = os.system (cmd)
142 print >>sys.stderr, 'command failed:', cmd
144 print >>sys.stderr, "Child was terminated by signal", -retval
146 print >>sys.stderr, "Child returned", retval
149 print >>sys.stderr, "Error ignored"
156 system = subprocess_system
157 if sys.platform == 'mingw32':
159 ## subprocess x-compile doesn't work.
160 system = ossystem_system
162 def strip_extension (f, ext):
163 (p, e) = os.path.splitext (f)
169 def search_exe_path (name):
170 p = os.environ['PATH']
171 exe_paths = string.split (p, ':')
173 full = os.path.join (e, name)
174 if os.path.exists (full):
179 def print_environment ():
180 for (k,v) in os.environ.items ():
181 sys.stderr.write ("%s=\"%s\"\n" % (k, v))
183 class NonDentedHeadingFormatter (optparse.IndentedHelpFormatter):
184 def format_heading(self, heading):
186 return heading[0].upper() + heading[1:] + ':\n'
188 def format_option_strings(self, option):
190 if option._short_opts and option._long_opts:
194 if option.takes_value():
195 metavar = '=%s' % option.metavar or option.dest.upper()
197 return "%3s%s %s%s" % (" ".join (option._short_opts),
199 " ".join (option._long_opts),
202 def format_usage(self, usage):
203 return _("Usage: %s") % usage + '\n'
205 def format_description(self, description):
208 def get_option_parser (*args, **kwargs):
209 p = optparse.OptionParser (*args, **kwargs)
210 p.formatter = NonDentedHeadingFormatter ()