]> git.donarmstrong.com Git - lilypond.git/blob - python/lilylib.py
* buildscripts/lilypond-profile.sh: error message if script is not
[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--2003  Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 #                 Jan Nieuwenhuizen <janneke@gnu.org>
8
9 ###  subst:\(^\|[^._a-z]\)\(abspath\|identify\|warranty\|progress\|warning\|error\|exit\|getopt_args\|option_help_str\|options_help_str\|help\|setup_temp\|read_pipe\|system\|cleanup_temp\|strip_extension\|cp_to_dir\|mkdir_p\|init\) *(
10 ###  replace:\1ly.\2 (
11
12 ### subst: \(help_summary\|keep_temp_dir_p\|option_definitions\|original_dir\|program_name\|pseudo_filter_p\|temp_dir\|verbose_p\)
13
14 import __main__
15 import shutil
16 import string
17 import sys
18 import tempfile
19 import glob
20
21 ################################################################
22 # Users of python modules should include this snippet
23 # and customize variables below.
24
25 # We'll suffer this path init stuff as long as we don't install our
26 # python packages in <prefix>/lib/pythonx.y (and don't kludge around
27 # it as we do with teTeX on Red Hat Linux: set some environment var
28 # (PYTHONPATH) in profile)
29
30 # If set, LILYPONDPREFIX must take prevalence
31 # if datadir is not set, we're doing a build and LILYPONDPREFIX
32
33 import getopt, os, sys
34 datadir = '@local_lilypond_datadir@'
35 if not os.path.isdir (datadir):
36         datadir = '@lilypond_datadir@'
37 if os.environ.has_key ('LILYPONDPREFIX') :
38         datadir = os.environ['LILYPONDPREFIX']
39         while datadir[-1] == os.sep:
40                 datadir= datadir[:-1]
41
42 sys.path.insert (0, os.path.join (datadir, 'python'))
43
44
45
46 # Customize these
47 if __name__ == '__main__':
48         import lilylib as ly
49         global _;_=ly._
50         global re;re = ly.re
51
52         # lilylib globals
53         program_name = 'unset'
54         pseudo_filter_p = 0
55         original_dir = os.getcwd ()
56         temp_dir = os.path.join (original_dir,  '%s.dir' % program_name)
57         keep_temp_dir_p = 0
58         verbose_p = 0
59
60         help_summary = _ ("lilylib module")
61
62         option_definitions = [
63                 ('', 'h', 'help', _ ("this help")),
64                 ]
65
66         from lilylib import *
67 ################################################################
68
69 # Handle bug in Python 1.6-2.1
70 #
71 # there are recursion limits for some patterns in Python 1.6 til 2.1. 
72 # fix this by importing pre instead. Fix by Mats.
73
74 if float (sys.version[0:3]) <= 2.1:
75         try:
76                 import pre
77                 re = pre
78                 del pre
79         except ImportError:
80                 import re
81 else:
82         import re
83         
84 # Attempt to fix problems with limited stack size set by Python!
85 # Sets unlimited stack size. Note that the resource module only
86 # is available on UNIX.
87 try:
88        import resource
89        resource.setrlimit (resource.RLIMIT_STACK, (-1, -1))
90 except:
91        pass
92
93 localedir = '@localedir@'
94 try:
95         import gettext
96         gettext.bindtextdomain ('lilypond', localedir)
97         gettext.textdomain ('lilypond')
98         _ = gettext.gettext
99 except:
100         def _ (s):
101                 return s
102 underscore = _
103
104 def identify (port):
105         port.write ('%s (GNU LilyPond) %s\n' % (__main__.program_name, __main__.program_version))
106
107 def warranty ():
108         identify (sys.stdout)
109         sys.stdout.write ('\n')
110         sys.stdout.write (_ ('Copyright (c) %s by' % ' 1998--2003'))
111         sys.stdout.write ('\n')
112         map (lambda x: sys.stdout.write ('  %s\n' % x), __main__.copyright)
113         sys.stdout.write ('\n')
114         sys.stdout.write (_ ("Distributed under terms of the GNU General Public License."))
115         sys.stdout.write ('\n')
116         sys.stdout.write (_ ("It comes with NO WARRANTY."))
117         sys.stdout.write ('\n')
118
119 def progress (s):
120         sys.stderr.write (s)
121
122 def warning (s):
123         sys.stderr.write (__main__.program_name + ": " + _ ("warning: ") + s + '\n')
124
125 def error (s):
126         sys.stderr.write (__main__.program_name + ": " + _ ("error: ") + s + '\n')
127         
128 def exit (i):
129         if __main__.verbose_p:
130                 raise _ ('Exiting (%d)...') % i
131         else:
132                 sys.exit (1)
133                 
134 def getopt_args (opts):
135         '''Construct arguments (LONG, SHORT) for getopt from  list of options.'''
136         short = ''
137         long = []
138         for o in opts:
139                 if o[1]:
140                         short = short + o[1]
141                         if o[0]:
142                                 short = short + ':'
143                 if o[2]:
144                         l = o[2]
145                         if o[0]:
146                                 l = l + '='
147                         long.append (l)
148         return (short, long)
149
150 def option_help_str (o):
151         '''Transform one option description (4-tuple ) into neatly formatted string'''
152         sh = '  '       
153         if o[1]:
154                 sh = '-%s' % o[1]
155
156         sep = ' '
157         if o[1] and o[2]:
158                 sep = ','
159                 
160         long = ''
161         if o[2]:
162                 long= '--%s' % o[2]
163
164         arg = ''
165         if o[0]:
166                 if o[2]:
167                         arg = '='
168                 arg = arg + o[0]
169         return '  ' + sh + sep + long + arg
170
171
172 def options_help_str (opts):
173         '''Convert a list of options into a neatly formatted string'''
174         w = 0
175         strs =[]
176         helps = []
177
178         for o in opts:
179                 s = option_help_str (o)
180                 strs.append ((s, o[3]))
181                 if len (s) > w:
182                         w = len (s)
183
184         str = ''
185         for s in strs:
186                 str = str + '%s%s%s\n' % (s[0], ' ' * (w - len(s[0])  + 3), s[1])
187         return str
188
189 def help ():
190         ls = [(_ ("Usage: %s [OPTION]... FILE") % __main__.program_name),
191               ('\n\n'),
192               (__main__.help_summary),
193               ('\n\n'),
194               (_ ("Options:")),
195               ('\n'),
196               (options_help_str (__main__.option_definitions)),
197               ('\n\n'),
198               (_ ("Report bugs to %s") % 'bug-lilypond@gnu.org'),
199               ('\n')]
200         map (sys.stdout.write, ls)
201
202 def lilypond_version (binary):
203         p = read_pipe ('%s --version ' % binary)
204         x = []
205         def catch_version (match):
206                 x.append (match.group (1))
207         re.sub ('GNU LilyPond ([^\n]+)\n', catch_version, p)
208         x.append ('not found')
209         
210         return x[0]
211         
212 def lilypond_version_check (binary, req):
213         if req[0] <> '@' :
214                 v = lilypond_version (binary)
215                 if v <> req:
216                         error (_("Binary %s has version %s, looking for version %s") % \
217                                (binary, v, req))
218                         sys.exit (1)
219         
220         
221 def setup_temp ():
222         
223         ''' Create a temporary directory, and return its name. '''
224         
225         if not __main__.keep_temp_dir_p:
226                 __main__.temp_dir = tempfile.mktemp (__main__.program_name)
227         try:
228                 os.mkdir (__main__.temp_dir, 0700)
229         except OSError:
230                 pass
231
232         return __main__.temp_dir
233
234 def command_name (cmd):
235         return re.match ('^[ \t]*([^ \t]*)', cmd).group (1)
236
237 def error_log (name):
238         return tempfile.mktemp ('%s.errorlog' % name)
239
240 def read_pipe (cmd, mode = 'r'):
241         redirect = ''
242         if __main__.verbose_p:
243                 progress (_ ("Opening pipe `%s\'") % cmd)
244                 redirect = ' 2>%s' % error_log (command_name (cmd))
245         pipe = os.popen (cmd + redirect, mode)
246         output = pipe.read ()
247         status = pipe.close ()
248         # successful pipe close returns 'None'
249         if not status:
250                 status = 0
251         signal = 0x0f & status
252         exit_status = status >> 8
253
254         if status:
255                 error (_ ("`%s\' failed (%d)") % (cmd, exit_status))
256                 if not __main__.verbose_p:
257                         error (_ ("The error log is as follows:"))
258                         sys.stderr.write (open (error_log (command_name (cmd)).read ()))
259                 exit (status)
260         if __main__.verbose_p:
261                 progress ('\n')
262         return output
263
264 def system (cmd, ignore_error = 0, progress_p = 0):
265         
266         '''System CMD.  If IGNORE_ERROR, do not complain when CMD
267 returns non zero.  If PROGRESS_P, always show progress.
268
269 RETURN VALUE
270
271 Exit status of CMD '''
272
273         name = command_name (cmd)
274
275         if __main__.verbose_p:
276                 progress_p = 1
277                 progress (_ ("Invoking `%s\'") % cmd)
278         else:
279                 progress ( _("Running %s...") % name)
280
281         redirect = ''
282         if not progress_p:
283                 redirect = ' 1>/dev/null 2>' + error_log (name)
284         elif __main__.pseudo_filter_p:
285                 redirect = ' 1>/dev/null'
286                         
287         status = os.system (cmd + redirect)
288         signal = 0x0f & status
289         exit_status = status >> 8
290         
291         if status:
292                 
293                 exit_type =  'status %d' % exit_status
294                 if signal:
295                         exit_type = 'signal %d' % signal 
296                 
297                 msg = _ ("`%s\' failed (%s)") % (name, exit_type)
298                 if ignore_error:
299                         if __main__.verbose_p:
300                                 warning (msg + ' ' + _ ("(ignored)"))
301                 else:
302                         error (msg)
303                         if not progress_p:
304                                 error (_ ("The error log is as follows:"))
305                                 sys.stderr.write (open (error_log (name)).read ())
306                         exit (status)
307
308         progress ('\n')
309         return status
310
311 def cleanup_temp ():
312         if not __main__.keep_temp_dir_p:
313                 if __main__.verbose_p:
314                         progress (_ ("Cleaning %s...") % __main__.temp_dir)
315                 shutil.rmtree (__main__.temp_dir)
316                 if __main__.verbose_p:
317                         progress ('\n')
318
319
320 def strip_extension (f, ext):
321         (p, e) = os.path.splitext (f)
322         if e == ext:
323                 e = ''
324         return p + e
325
326
327 def cp_to_dir (pattern, dir):
328         "Copy files matching re PATTERN from cwd to DIR"
329         
330         # Duh.  Python style portable: cp *.EXT OUTDIR
331         # system ('cp *.%s %s' % (ext, outdir), 1)
332
333         files = filter (lambda x, p=pattern: re.match (p, x), os.listdir ('.'))
334         map (lambda x, d=dir: shutil.copy2 (x, os.path.join (d, x)), files)
335
336
337 # Python < 1.5.2 compatibility
338 #
339 # On most platforms, this is equivalent to
340 #`normpath(join(os.getcwd()), PATH)'.  *Added in Python version 1.5.2*
341
342 if os.path.__dict__.has_key ('abspath'):
343         abspath = os.path.abspath
344 else:
345         def abspath (path):
346                 return os.path.normpath (os.path.join (os.getcwd (), path))
347
348 if os.__dict__.has_key ('makedirs'):
349         makedirs = os.makedirs
350 else:
351         def makedirs (dir, mode=0777):
352                 system ('mkdir -p %s' % dir)
353
354
355 def mkdir_p (dir, mode=0777):
356         if not os.path.isdir (dir):
357                 makedirs (dir, mode)
358
359
360 environment = {}
361
362 # tex needs lots of memory, more than it gets by default on Debian
363 non_path_environment = {
364         'extra_mem_top' : '1000000',
365         'extra_mem_bottom' : '1000000',
366         'pool_size' : '250000',
367 }
368
369 def setup_environment ():
370         global environment
371
372         kpse = read_pipe ('kpsexpand \$TEXMF')
373         texmf = re.sub ('[ \t\n]+$','', kpse)
374         type1_paths = read_pipe ('kpsewhich -expand-path=\$T1FONTS')
375         
376         environment = {
377                 # TODO: * prevent multiple addition.
378                 #       * clean TEXINPUTS, MFINPUTS, TFMFONTS,
379                 #         as these take prevalence over $TEXMF
380                 #         and thus may break tex run?
381                 
382                 'TEXMF' : "{%s,%s}" % (datadir, texmf) ,
383                 'GS_FONTPATH' : type1_paths,
384                 'GS_LIB' : datadir + '/ps',
385                 }
386         
387         # $TEXMF is special, previous value is already taken care of
388         if os.environ.has_key ('TEXMF'):
389                 del os.environ['TEXMF']
390  
391         for key in environment.keys ():
392                 val = environment[key]
393                 if os.environ.has_key (key):
394                         val = os.environ[key] + os.pathsep + val 
395                 os.environ[key] = val
396
397         for key in non_path_environment.keys ():
398                 val = non_path_environment[key]
399                 os.environ[key] = val
400
401 def print_environment ():
402         for (k,v) in os.environ.items ():
403                 sys.stderr.write ("%s=\"%s\"\n" % (k, v)) 
404
405 def get_bbox (filename):
406         bbox = filename + '.bbox'
407         ## -sOutputFile does not work with bbox?
408         cmd = 'gs -sDEVICE=bbox -q -dNOPAUSE %s -c quit 2>%s' % \
409               (filename, bbox)
410         system (cmd, progress_p = 1)
411         box = open (bbox).read ()
412         m = re.match ('^%%BoundingBox: ([0-9]+) ([0-9]+) ([0-9]+) ([0-9]+)',
413                       box)
414         gr = []
415         if m:
416                 gr = map (string.atoi, m.groups ())
417         
418         return gr
419
420
421 def make_ps_images (ps_name, resolution = 90):
422         ## todo:
423         ## have better algorithm for deciding when to crop page,
424         ## and when to show full page
425         base = re.sub (r'\.e?ps', '', ps_name)
426         
427         header = open (ps_name).read (1024)
428         multi_page = re.search ('\n%%Pages: ', header)
429         cmd = ''
430
431         if multi_page == None:
432                 bbox = get_bbox (ps_name)
433                 trans_ps = ps_name + '.trans.ps'
434                 output_file = re.sub (r'\.e?ps', '.png', ps_name)
435         
436
437                 margin = 0
438                 fo = open (trans_ps, 'w')
439                 fo.write ('%d %d translate\n' % (-bbox[0] + margin,
440                                                  -bbox[1] + margin))
441                 fo.close ()
442
443                 x = (2* margin + bbox[2] - bbox[0]) \
444                     * resolution / 72.0
445                 y = (2* margin + bbox[3] - bbox[1]) \
446                     * resolution / 72.0
447                 if x == 0:
448                         x = 1
449                 if y == 0:
450                         y = 1
451
452                 cmd = r'''gs -g%dx%d -sDEVICE=pnggray  -dTextAlphaBits=4 -dGraphicsAlphaBits=4  -q -sOutputFile=%s -r%d -dNOPAUSE %s %s -c quit ''' % \
453                       (x, y, output_file, resolution, trans_ps, ps_name)
454
455                 rms = glob.glob (base + '-page*.png')
456                 map (os.unlink, rms)
457         else:
458                 output_file = re.sub (r'\.e?ps', '-page%d.png', ps_name)
459                 rmfile = base + '.png'
460                 if os.path.isfile (rmfile):
461                         os.unlink (rmfile)
462                 
463                 cmd = r'''gs -s  -sDEVICE=pnggray  -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -q -sOutputFile=%s -dNOPAUSE -r%d %s -c quit''' % (output_file,
464                                                                                                                                       resolution, ps_name)
465         
466         status = system (cmd)
467         signal = 0xf & status
468         exit_status = status >> 8
469
470         
471         if status:
472                 os.unlink (png)
473                 error (_ ("Removing output file"))
474                 exit (1)