]> git.donarmstrong.com Git - lilypond.git/blob - python/lilylib.py
Merge branch 'lilypond/translation' into staging
[lilypond.git] / python / lilylib.py
1 # This file is part of LilyPond, the GNU music typesetter.
2 #
3 # Copyright (C) 1998--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
4 #                Jan Nieuwenhuizen <janneke@gnu.org>
5 #
6 # LilyPond is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # LilyPond is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18
19 import __main__
20 import glob
21 import os
22 import re
23 import shutil
24 import sys
25 import optparse
26 import time
27
28 ################################################################
29 # Users of python modules should include this snippet
30 # and customize variables below.
31
32
33 # Python 2.5 only accepts strings with proper Python internal encoding
34 # (i.e. ASCII or Unicode) when writing to stdout/stderr, so we must
35 # use ugettext iso gettext, and encode the string when writing to
36 # stdout/stderr
37
38 localedir = '@localedir@'
39 try:
40     import gettext
41     t = gettext.translation ('lilypond', localedir)
42     _ = t.ugettext
43 except:
44     def _ (s):
45         return s
46 underscore = _
47
48 # Urg, Python 2.4 does not define stderr/stdout encoding
49 # Maybe guess encoding from LANG/LC_ALL/LC_CTYPE?
50
51 reload (sys)
52 sys.setdefaultencoding ('utf-8')
53 import codecs
54 sys.stdout = codecs.getwriter ('utf8') (sys.stdout)
55 sys.stderr = codecs.getwriter ('utf8') (sys.stderr)
56
57 def encoded_write(f, s):
58     f.write (s.encode (f.encoding or 'utf-8', 'replace'))
59
60 # ugh, Python 2.5 optparse requires Unicode strings in some argument
61 # functions, and refuse them in some other places
62 def display_encode (s):
63     return s.encode (sys.stderr.encoding or 'utf-8', 'replace')
64
65 # Lilylib globals.
66 program_version = '@TOPLEVEL_VERSION@'
67 program_name = os.path.basename (sys.argv[0])
68
69
70 # Check if program_version contains @ characters. This will be the case if
71 # the .py file is called directly while building the lilypond documentation.
72 # If so, try to check for the env var LILYPOND_VERSION, which is set by our
73 # makefiles and use its value.
74 at_re = re.compile (r'@')
75 if at_re.match (program_version):
76     if os.environ.has_key('LILYPOND_VERSION'):
77         program_version = os.environ['LILYPOND_VERSION']
78     else:
79         program_version = "unknown"
80
81
82 # Logging framework: We have the following output functions:
83 #    error
84 #    warning
85 #    progress
86 #    debug
87
88 loglevels = {"NONE":0, "ERROR":1, "WARN":2, "BASIC":3, "PROGRESS":4, "INFO":5, "DEBUG":6}
89
90 loglevel = loglevels["PROGRESS"]
91
92 def set_loglevel (l):
93     global loglevel
94     newlevel = loglevels.get (l, -1)
95     if newlevel > 0:
96         debug_output (_ ("Setting loglevel to %s") % l)
97         loglevel = newlevel
98     else:
99         error (_ ("Unknown or invalid loglevel '%s'") % l)
100
101
102 def handle_loglevel_option (option, opt_str, value, parser, *args):
103     if value:
104         set_loglevel (value);
105     elif args:
106         set_loglevel (args[0]);
107
108 def is_loglevel (l):
109     global loglevel
110     return loglevel >= loglevels[l];
111
112 def is_verbose ():
113     return is_loglevel ("DEBUG")
114
115 def stderr_write (s):
116     encoded_write (sys.stderr, s)
117
118 def print_logmessage (level, s, fullmessage = True):
119     if (is_loglevel (level)):
120         if fullmessage:
121             stderr_write (program_name + ": " + s + '\n')
122         else:
123             stderr_write (s)
124
125 def error (s):
126     print_logmessage ("ERROR", _ ("error: %s") % s);
127
128 def warning (s):
129     print_logmessage ("WARN", _ ("warning: %s") % s);
130
131 def basic_progress (s):
132     print_logmessage ("BASIC", s);
133
134 def progress (s, fullmessage = False):
135     print_logmessage ("PROGRESS", s, fullmessage);
136
137 def debug_output (s, fullmessage = False):
138     print_logmessage ("DEBUG", s, fullmessage);
139
140
141
142 def require_python_version ():
143     if sys.hexversion < 0x02040000:
144         error ("Python 2.4 or newer is required to run this program.\n\
145 Please upgrade Python from http://python.org/download/, and if you use MacOS X,\n\
146 please read 'Setup for MacOS X' in Application Usage.")
147         os.system ("open http://python.org/download/")
148         sys.exit (2)
149
150 # Modified version of the commands.mkarg(x), which always uses
151 # double quotes (since Windows can't handle the single quotes:
152 def mkarg(x):
153     if os.name == 'nt':
154         return x
155     s = ' "'
156     for c in x:
157         if c in '\\$"`':
158             s = s + '\\'
159         s = s + c
160     s = s + '"'
161     return s
162
163 def command_name (cmd):
164     # Strip all stuf after command,
165     # deal with "((latex ) >& 1 ) .." too
166     cmd = re.match ('([\(\)]*)([^\\\ ]*)', cmd).group (2)
167     return os.path.basename (cmd)
168
169 def subprocess_system (cmd,
170                        ignore_error=False,
171                        progress_p=True,
172                        be_verbose=False,
173                        redirect_output=False,
174                        log_file=None):
175     import subprocess
176
177     show_progress= progress_p
178     name = command_name (cmd)
179     error_log_file = ''
180
181     if redirect_output:
182         progress (_ ("Processing %s.ly \n") % log_file)
183     else:
184         if be_verbose:
185             show_progress = 1
186             progress (_ ("Invoking `%s\'") % cmd)
187         else:
188             progress ( _("Running %s...") % name)
189
190     stdout_setting = None
191     stderr_setting = None
192     if not show_progress:
193         stdout_setting = subprocess.PIPE
194
195     if redirect_output:
196         stderr_filename = log_file + '.log'
197         stderr_setting = open(stderr_filename, 'w')
198
199     proc = subprocess.Popen (cmd,
200                              shell=True,
201                              universal_newlines=True,
202                              stdout=stdout_setting,
203                              stderr=stderr_setting)
204
205     log = ''
206
207     if redirect_output:
208         while proc.poll()==None:
209             time.sleep(0.01)
210         retval = proc.returncode
211         stderr_setting.close()
212     else:
213         if show_progress:
214             retval = proc.wait()
215         else:
216             log = proc.communicate ()
217             retval = proc.returncode
218
219     if retval:
220         print >>sys.stderr, 'command failed:', cmd
221         if retval < 0:
222             print >>sys.stderr, "Child was terminated by signal", -retval
223         elif retval > 0:
224             print >>sys.stderr, "Child returned", retval
225
226         if ignore_error:
227             print >>sys.stderr, "Error ignored by lilylib"
228         else:
229             if not show_progress:
230                 print log[0]
231                 print log[1]
232             sys.exit (1)
233
234     return abs (retval)
235
236 def ossystem_system (cmd,
237                      ignore_error=False,
238                      progress_p=True,
239                      be_verbose=False,
240                      redirect_output=False,
241                      log_file=None):
242
243
244     name = command_name (cmd)
245     if be_verbose:
246         show_progress = 1
247         progress (_ ("Invoking `%s\'") % cmd)
248     else:
249         progress ( _("Running %s...") % name)
250
251     retval = os.system (cmd)
252     if retval:
253         print >>sys.stderr, 'command failed:', cmd
254         if retval < 0:
255             print >>sys.stderr, "Child was terminated by signal", -retval
256         elif retval > 0:
257             print >>sys.stderr, "Child returned", retval
258
259         if ignore_error:
260             print >>sys.stderr, "Error ignored"
261         else:
262             sys.exit (1)
263
264     return abs (retval)
265
266
267 system = subprocess_system
268 if sys.platform == 'mingw32':
269
270     ## subprocess x-compile doesn't work.
271     system = ossystem_system
272
273 def strip_extension (f, ext):
274     (p, e) = os.path.splitext (f)
275     if e == ext:
276         e = ''
277     return p + e
278
279
280 def search_exe_path (name):
281     p = os.environ['PATH']
282     exe_paths = p.split (':')
283     for e in exe_paths:
284         full = os.path.join (e, name)
285         if os.path.exists (full):
286             return full
287     return None
288
289
290 def print_environment ():
291     for (k,v) in os.environ.items ():
292         sys.stderr.write ("%s=\"%s\"\n" % (k, v))
293
294 class NonDentedHeadingFormatter (optparse.IndentedHelpFormatter):
295     def format_heading(self, heading):
296         if heading:
297             return heading[0].upper() + heading[1:] + ':\n'
298         return ''
299     def format_option_strings(self, option):
300         sep = ' '
301         if option._short_opts and option._long_opts:
302             sep = ','
303
304         metavar = ''
305         if option.takes_value():
306             metavar = '=%s' % option.metavar or option.dest.upper()
307
308         return "%3s%s %s%s" % (" ".join (option._short_opts),
309                                sep,
310                                " ".join (option._long_opts),
311                                metavar)
312
313     # Only use one level of indentation (even for groups and nested groups),
314     # since we don't indent the headeings, either
315     def indent(self):
316         self.current_indent = self.indent_increment
317         self.level += 1
318     def dedent(self):
319         self.level -= 1
320         if self.level <= 0:
321             self.current_indent = ''
322             self.level = 0;
323
324     def format_usage(self, usage):
325         return _("Usage: %s") % usage + '\n'
326
327     def format_description(self, description):
328         return description
329
330 def get_option_parser (*args, **kwargs):
331     p = optparse.OptionParser (*args, **kwargs)
332     p.formatter = NonDentedHeadingFormatter ()
333     p.formatter.set_parser (p)
334     return p