]> git.donarmstrong.com Git - lilypond.git/blob - python/lilylib.py
Loglevels in our python scripts (lilypond-book, musicxml2ly, convert-ly)
[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     s = ' "'
154     for c in x:
155         if c in '\\$"`':
156             s = s + '\\'
157         s = s + c
158     s = s + '"'
159     return s
160
161 def command_name (cmd):
162     # Strip all stuf after command,
163     # deal with "((latex ) >& 1 ) .." too
164     cmd = re.match ('([\(\)]*)([^\\\ ]*)', cmd).group (2)
165     return os.path.basename (cmd)
166
167 def subprocess_system (cmd,
168                        ignore_error=False,
169                        progress_p=True,
170                        be_verbose=False,
171                        redirect_output=False,
172                        log_file=None):
173     import subprocess
174
175     show_progress= progress_p
176     name = command_name (cmd)
177     error_log_file = ''
178
179     if redirect_output:
180         progress (_ ("Processing %s.ly") % log_file)
181     else:
182         if be_verbose:
183             show_progress = 1
184             progress (_ ("Invoking `%s\'") % cmd)
185         else:
186             progress ( _("Running %s...") % name)
187
188     stdout_setting = None
189     stderr_setting = None
190     if not show_progress:
191         stdout_setting = subprocess.PIPE
192
193     if redirect_output:
194         stdout_filename = ' '.join([log_file, '.log'])
195         stderr_filename = ' '.join([log_file, '.err.log'])
196         stdout_setting = open(stdout_filename, 'w')
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(1)
210         retval = proc.returncode
211         stdout_setting.close()
212         stderr_setting.close()
213     else:
214         if show_progress:
215             retval = proc.wait()
216         else:
217             log = proc.communicate ()
218             retval = proc.returncode
219
220     if retval:
221         print >>sys.stderr, 'command failed:', cmd
222         if retval < 0:
223             print >>sys.stderr, "Child was terminated by signal", -retval
224         elif retval > 0:
225             print >>sys.stderr, "Child returned", retval
226
227         if ignore_error:
228             print >>sys.stderr, "Error ignored"
229         else:
230             if not show_progress:
231                 print log[0]
232                 print log[1]
233             sys.exit (1)
234
235     return abs (retval)
236
237 def ossystem_system (cmd,
238                      ignore_error=False,
239                      progress_p=True,
240                      be_verbose=False,
241                      redirect_output=False,
242                      log_file=None):
243
244
245     name = command_name (cmd)
246     if be_verbose:
247         show_progress = 1
248         progress (_ ("Invoking `%s\'") % cmd)
249     else:
250         progress ( _("Running %s...") % name)
251
252     retval = os.system (cmd)
253     if retval:
254         print >>sys.stderr, 'command failed:', cmd
255         if retval < 0:
256             print >>sys.stderr, "Child was terminated by signal", -retval
257         elif retval > 0:
258             print >>sys.stderr, "Child returned", retval
259
260         if ignore_error:
261             print >>sys.stderr, "Error ignored"
262         else:
263             sys.exit (1)
264
265     return abs (retval)
266
267
268 system = subprocess_system
269 if sys.platform == 'mingw32':
270
271     ## subprocess x-compile doesn't work.
272     system = ossystem_system
273
274 def strip_extension (f, ext):
275     (p, e) = os.path.splitext (f)
276     if e == ext:
277         e = ''
278     return p + e
279
280
281 def search_exe_path (name):
282     p = os.environ['PATH']
283     exe_paths = p.split (':')
284     for e in exe_paths:
285         full = os.path.join (e, name)
286         if os.path.exists (full):
287             return full
288     return None
289
290
291 def print_environment ():
292     for (k,v) in os.environ.items ():
293         sys.stderr.write ("%s=\"%s\"\n" % (k, v))
294
295 class NonDentedHeadingFormatter (optparse.IndentedHelpFormatter):
296     def format_heading(self, heading):
297         if heading:
298             return heading[0].upper() + heading[1:] + ':\n'
299         return ''
300     def format_option_strings(self, option):
301         sep = ' '
302         if option._short_opts and option._long_opts:
303             sep = ','
304
305         metavar = ''
306         if option.takes_value():
307             metavar = '=%s' % option.metavar or option.dest.upper()
308
309         return "%3s%s %s%s" % (" ".join (option._short_opts),
310                                sep,
311                                " ".join (option._long_opts),
312                                metavar)
313
314     # Only use one level of indentation (even for groups and nested groups),
315     # since we don't indent the headeings, either
316     def indent(self):
317         self.current_indent = self.indent_increment
318         self.level += 1
319     def dedent(self):
320         self.level -= 1
321         if self.level <= 0:
322             self.current_indent = ''
323             self.level = 0;
324
325     def format_usage(self, usage):
326         return _("Usage: %s") % usage + '\n'
327
328     def format_description(self, description):
329         return description
330
331 def get_option_parser (*args, **kwargs):
332     p = optparse.OptionParser (*args, **kwargs)
333     p.formatter = NonDentedHeadingFormatter ()
334     p.formatter.set_parser (p)
335     return p