]> git.lyx.org Git - lyx.git/blob - lib/configure.py
Circumvent odd stmary font metrics (part of #9990).
[lyx.git] / lib / configure.py
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # file configure.py
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7
8 # \author Bo Peng
9 # Full author contact details are available in file CREDITS.
10
11 import glob, logging, os, re, shutil, subprocess, sys, stat
12
13 # set up logging
14 logging.basicConfig(level = logging.DEBUG,
15     format = '%(levelname)s: %(message)s', # ignore application name
16     filename = 'configure.log',
17     filemode = 'w')
18 #
19 # Add a handler to log to console
20 console = logging.StreamHandler()
21 console.setLevel(logging.INFO) # the console only print out general information
22 formatter = logging.Formatter('%(message)s') # only print out the message itself
23 console.setFormatter(formatter)
24 logger = logging.getLogger('LyX')
25 logger.addHandler(console)
26
27 def writeToFile(filename, lines, append = False):
28     " utility function: write or append lines to filename "
29     if append:
30         file = open(filename, 'a')
31     else:
32         file = open(filename, 'w')
33     file.write(lines)
34     file.close()
35
36
37 def addToRC(lines):
38     ''' utility function: shortcut for appending lines to outfile
39         add newline at the end of lines.
40     '''
41     if lines.strip() != '':
42         writeToFile(outfile, lines + '\n', append = True)
43         logger.debug('Add to RC:\n' + lines + '\n\n')
44
45
46 def removeFiles(filenames):
47     '''utility function: 'rm -f'
48         ignore errors when file does not exist, or is a directory.
49     '''
50     for file in filenames:
51         try:
52             os.remove(file)
53             logger.debug('Removing file %s' % file)
54         except:
55             logger.debug('Failed to remove file %s' % file)
56             pass
57
58
59 def cmdOutput(cmd, async = False):
60     '''utility function: run a command and get its output as a string
61         cmd: command to run
62         async: if False, return whole output as a string, otherwise
63                return the stdout handle from which the output can be
64                read (the caller is then responsible for closing it)
65     '''
66     if os.name == 'nt':
67         b = False
68         cmd = 'cmd /d /c pushd ' + shortPath(os.getcwdu()) + '&' + cmd
69     else:
70         b = True
71     pipe = subprocess.Popen(cmd, shell=b, close_fds=b, stdin=subprocess.PIPE, \
72                             stdout=subprocess.PIPE, universal_newlines=True)
73     pipe.stdin.close()
74     if async:
75         return pipe.stdout
76     output = pipe.stdout.read()
77     pipe.stdout.close()
78     return output.strip()
79
80
81 def shortPath(path):
82     ''' On Windows, return the short version of "path" if possible '''
83     if os.name == 'nt':
84         from ctypes import windll, create_unicode_buffer
85         GetShortPathName = windll.kernel32.GetShortPathNameW
86         shortlen = GetShortPathName(path, 0, 0)
87         shortpath = create_unicode_buffer(shortlen)
88         if GetShortPathName(path, shortpath, shortlen):
89             return shortpath.value
90     return path
91
92
93 def setEnviron():
94     ''' I do not really know why this is useful, but we might as well keep it.
95         NLS nuisances.
96         Only set these to C if already set.  These must not be set unconditionally
97         because not all systems understand e.g. LANG=C (notably SCO).
98         Fixing LC_MESSAGES prevents Solaris sh from translating var values in set!
99         Non-C LC_CTYPE values break the ctype check.
100     '''
101     os.environ['LANG'] = os.getenv('LANG', 'C')
102     os.environ['LC'] = os.getenv('LC_ALL', 'C')
103     os.environ['LC_MESSAGE'] = os.getenv('LC_MESSAGE', 'C')
104     os.environ['LC_CTYPE'] = os.getenv('LC_CTYPE', 'C')
105
106
107 def copy_tree(src, dst, preserve_symlinks=False, level=0):
108     ''' Copy an entire directory tree 'src' to a new location 'dst'.
109  
110     Code inspired from distutils.copy_tree.
111          Copying ignores non-regular files and the cache directory.
112     Pipes may be present as leftovers from LyX for lyx-server.
113
114     If 'preserve_symlinks' is true, symlinks will be
115     copied as symlinks (on platforms that support them!); otherwise
116     (the default), the destination of the symlink will be copied.
117     '''
118  
119     if not os.path.isdir(src):
120         raise FileError, \
121               "cannot copy tree '%s': not a directory" % src
122     try:
123         names = os.listdir(src)
124     except os.error, (errno, errstr):
125         raise FileError, \
126               "error listing files in '%s': %s" % (src, errstr)
127  
128     if not os.path.isdir(dst):
129         os.makedirs(dst)
130  
131     outputs = []
132  
133     for name in names:
134         src_name = os.path.join(src, name)
135         dst_name = os.path.join(dst, name)
136         if preserve_symlinks and os.path.islink(src_name):
137             link_dest = os.readlink(src_name)
138             os.symlink(link_dest, dst_name)
139             outputs.append(dst_name)
140         elif level == 0 and name == 'cache':
141             logger.info("Skip cache %s", src_name)
142         elif os.path.isdir(src_name):
143             outputs.extend(
144                 copy_tree(src_name, dst_name, preserve_symlinks, level=(level + 1)))
145         elif stat.S_ISREG(os.stat(src_name).st_mode) or os.path.islink(src_name):
146             shutil.copy2(src_name, dst_name)
147             outputs.append(dst_name)
148         else:
149             logger.info("Ignore non-regular file %s", src_name)
150  
151     return outputs
152
153
154 def checkUpgrade():
155     ''' Check for upgrade from previous version '''
156     cwd = os.getcwd()
157     basename = os.path.basename( cwd )
158     lyxrc = os.path.join(cwd, outfile)
159     if not os.path.isfile( lyxrc ) and basename.endswith( version_suffix ) :
160         logger.info('Checking for upgrade from previous version.')
161         parent = os.path.dirname(cwd)
162         appname = basename[:(-len(version_suffix))]
163         for version in ['-2.1', '-2.0', '-1.6' ]:
164             logger.debug('Checking for upgrade from previous version ' + version)
165             previous = os.path.join(parent, appname + version)
166             logger.debug('previous = ' + previous)
167             if os.path.isdir( previous ):
168                 logger.info('Found directory "%s".', previous)
169                 copy_tree( previous, cwd, True )
170                 logger.info('Content copied to directory "%s".', cwd)
171                 return
172
173
174 def createDirectories():
175     ''' Create the build directories if necessary '''
176     for dir in ['bind', 'clipart', 'doc', 'examples', 'images', 'kbd', \
177         'layouts', 'scripts', 'templates', 'ui' ]:
178         if not os.path.isdir( dir ):
179             try:
180                 os.mkdir( dir)
181                 logger.debug('Create directory %s.' % dir)
182             except:
183                 logger.error('Failed to create directory %s.' % dir)
184                 sys.exit(1)
185
186
187 def checkTeXPaths():
188     ''' Determine the path-style needed by the TeX engine on Win32 (Cygwin) '''
189     windows_style_tex_paths = ''
190     if LATEX == '':
191         return windows_style_tex_paths
192     if os.name == 'nt' or sys.platform == 'cygwin':
193         from tempfile import mkstemp
194         fd, tmpfname = mkstemp(suffix='.ltx')
195         if os.name == 'nt':
196             from locale import getdefaultlocale
197             language, encoding = getdefaultlocale()
198             if encoding == None:
199                 encoding = 'latin1'
200             inpname = shortPath(unicode(tmpfname, encoding)).replace('\\', '/')
201         else:
202             inpname = cmdOutput('cygpath -m ' + tmpfname)
203         logname = os.path.basename(re.sub("(?i).ltx", ".log", inpname))
204         inpname = inpname.replace('~', '\\string~')
205         os.write(fd, r'\relax')
206         os.close(fd)
207         latex_out = cmdOutput(r'latex "\nonstopmode\input{%s}\makeatletter\@@end"' % inpname)
208         if 'Error' in latex_out:
209             latex_out = cmdOutput(r'latex "\nonstopmode\input{\"%s\"}\makeatletter\@@end"' % inpname)
210         if 'Error' in latex_out:
211             logger.warning("configure: TeX engine needs posix-style paths in latex files")
212             windows_style_tex_paths = 'false'
213         else:
214             logger.info("configure: TeX engine needs windows-style paths in latex files")
215             windows_style_tex_paths = 'true'
216         removeFiles([tmpfname, logname, 'texput.log'])
217     return windows_style_tex_paths
218
219
220 ## Searching some useful programs
221 def checkProg(description, progs, rc_entry = [], path = [], not_found = ''):
222     '''
223         This function will search a program in $PATH plus given path
224         If found, return directory and program name (not the options).
225
226         description: description of the program
227
228         progs: check programs, for each prog, the first word is used
229             for searching but the whole string is used to replace
230             %% for a rc_entry. So, feel free to add '$$i' etc for programs.
231
232         path: additional paths (will be prepended to the program name)
233
234         rc_entry: entry to outfile, can be
235             1. emtpy: no rc entry will be added
236             2. one pattern: %% will be replaced by the first found program,
237                 or '' if no program is found.
238             3. several patterns for each prog and not_found. This is used
239                 when different programs have different usages. If you do not
240                 want not_found entry to be added to the RC file, you can specify
241                 an entry for each prog and use '' for the not_found entry.
242
243         not_found: the value that should be used instead of '' if no program
244             was found
245
246     '''
247     # one rc entry for each progs plus not_found entry
248     if len(rc_entry) > 1 and len(rc_entry) != len(progs) + 1:
249         logger.error("rc entry should have one item or item for each prog and not_found.")
250         sys.exit(2)
251     logger.info('checking for ' + description + '...')
252     ## print '(' + ','.join(progs) + ')',
253     additional_path = path
254     path = os.environ["PATH"].split(os.pathsep) + additional_path
255     extlist = ['']
256     if "PATHEXT" in os.environ:
257         extlist = extlist + os.environ["PATHEXT"].split(os.pathsep)
258     global java, perl
259     for idx in range(len(progs)):
260         # ac_prog may have options, ac_word is the command name
261         ac_prog = progs[idx]
262         ac_word = ac_prog.split(' ')[0]
263         if (ac_word.endswith('.class') or ac_word.endswith('.jar')) and java == '':
264             continue
265         if ac_word.endswith('.pl') and perl == '':
266             continue
267         msg = '+checking for "' + ac_word + '"... '
268         for ac_dir in path:
269             if hasattr(os, "access") and not os.access(ac_dir, os.F_OK):
270                 continue
271             for ext in extlist:
272                 if os.path.isfile( os.path.join(ac_dir, ac_word + ext) ):
273                     logger.info(msg + ' yes')
274                     # deal with java and perl
275                     if ac_word.endswith('.class'):
276                         ac_prog = ac_prog.replace(ac_word, r'%s \"%s\"' % (java, os.path.join(ac_dir, ac_word[:-6])))
277                     elif ac_word.endswith('.jar'):
278                         ac_prog = ac_prog.replace(ac_word, r'%s -jar \"%s\"' % (java, os.path.join(ac_dir, ac_word)))
279                     elif ac_word.endswith('.pl'):
280                         ac_prog = ac_prog.replace(ac_word, r'%s -w \"%s\"' % (perl, os.path.join(ac_dir, ac_word)))
281                     elif ac_dir in additional_path:
282                         ac_prog = ac_prog.replace(ac_word, r'\"%s\"' % (os.path.join(ac_dir, ac_word)))
283                     # write rc entries for this command
284                     if len(rc_entry) == 1:
285                         addToRC(rc_entry[0].replace('%%', ac_prog))
286                     elif len(rc_entry) > 1:
287                         addToRC(rc_entry[idx].replace('%%', ac_prog))
288                     return [ac_dir, ac_word]
289         # if not successful
290         logger.info(msg + ' no')
291     # write rc entries for 'not found'
292     if len(rc_entry) > 0:  # the last one.
293         addToRC(rc_entry[-1].replace('%%', not_found))
294     return ['', not_found]
295
296
297 def checkProgAlternatives(description, progs, rc_entry = [], alt_rc_entry = [], path = [], not_found = ''):
298     '''
299         The same as checkProg, but additionally, all found programs will be added
300         as alt_rc_entries
301     '''
302     # one rc entry for each progs plus not_found entry
303     if len(rc_entry) > 1 and len(rc_entry) != len(progs) + 1:
304         logger.error("rc entry should have one item or item for each prog and not_found.")
305         sys.exit(2)
306     logger.info('checking for ' + description + '...')
307     ## print '(' + ','.join(progs) + ')',
308     additional_path = path
309     path = os.environ["PATH"].split(os.pathsep) + additional_path
310     extlist = ['']
311     if "PATHEXT" in os.environ:
312         extlist = extlist + os.environ["PATHEXT"].split(os.pathsep)
313     found_prime = False
314     real_ac_dir = ''
315     real_ac_word = not_found
316     global java, perl
317     for idx in range(len(progs)):
318         # ac_prog may have options, ac_word is the command name
319         ac_prog = progs[idx]
320         ac_word = ac_prog.split(' ')[0]
321         if (ac_word.endswith('.class') or ac_word.endswith('.jar')) and java == '':
322             continue
323         if ac_word.endswith('.pl') and perl == '':
324             continue
325         msg = '+checking for "' + ac_word + '"... '
326         found_alt = False
327         for ac_dir in path:
328             if hasattr(os, "access") and not os.access(ac_dir, os.F_OK):
329                 continue
330             for ext in extlist:
331                 if os.path.isfile( os.path.join(ac_dir, ac_word + ext) ):
332                     logger.info(msg + ' yes')
333                     pr = re.compile(r'(\\\S+)(.*)$')
334                     m = None
335                     # deal with java and perl
336                     if ac_word.endswith('.class'):
337                         ac_prog = ac_prog.replace(ac_word, r'%s \"%s\"' % (java, os.path.join(ac_dir, ac_word[:-6])))
338                     elif ac_word.endswith('.jar'):
339                         ac_prog = ac_prog.replace(ac_word, r'%s -jar \"%s\"' % (java, os.path.join(ac_dir, ac_word)))
340                     elif ac_word.endswith('.pl'):
341                         ac_prog = ac_prog.replace(ac_word, r'%s -w \"%s\"' % (perl, os.path.join(ac_dir, ac_word)))
342                     elif ac_dir in additional_path:
343                         ac_prog = ac_prog.replace(ac_word, r'\"%s\"' % (os.path.join(ac_dir, ac_word)))
344                     # write rc entries for this command
345                     if found_prime == False:
346                         if len(rc_entry) == 1:
347                             addToRC(rc_entry[0].replace('%%', ac_prog))
348                         elif len(rc_entry) > 1:
349                             addToRC(rc_entry[idx].replace('%%', ac_prog))
350                         real_ac_dir = ac_dir
351                         real_ac_word = ac_word
352                         found_prime = True
353                     if len(alt_rc_entry) == 1:
354                         alt_rc = alt_rc_entry[0]
355                         if alt_rc == "":
356                             # if no explicit alt_rc is given, construct one
357                             m = pr.match(rc_entry[0])
358                             if m:
359                                 alt_rc = m.group(1) + "_alternatives" + m.group(2)
360                         addToRC(alt_rc.replace('%%', ac_prog))
361                     elif len(alt_rc_entry) > 1:
362                         alt_rc = alt_rc_entry[idx]
363                         if alt_rc == "":
364                             # if no explicit alt_rc is given, construct one
365                             m = pr.match(rc_entry[idx])
366                             if m:
367                                 alt_rc = m.group(1) + "_alternatives" + m.group(2)
368                         addToRC(alt_rc.replace('%%', ac_prog))
369                     found_alt = True
370                     break
371             if found_alt:
372                 break
373         if found_alt == False:
374             # if not successful
375             logger.info(msg + ' no')
376     if found_prime:
377         return [real_ac_dir, real_ac_word]
378     # write rc entries for 'not found'
379     if len(rc_entry) > 0:  # the last one.
380         addToRC(rc_entry[-1].replace('%%', not_found))
381     return ['', not_found]
382
383
384 def addAlternatives(rcs, alt_type):
385     '''
386         Returns a \\prog_alternatives string to be used as an alternative
387         rc entry.  alt_type can be a string or a list of strings.
388     '''
389     r = re.compile(r'\\Format (\S+).*$')
390     m = None
391     alt = ''
392     alt_token = '\\%s_alternatives '
393     if isinstance(alt_type, str):
394         alt_tokens = [alt_token % alt_type]
395     else:
396         alt_tokens = map(lambda s: alt_token % s, alt_type)
397     for idxx in range(len(rcs)):
398         if len(rcs) == 1:
399             m = r.match(rcs[0])
400             if m:
401                 alt = '\n'.join([s + m.group(1) + ' "%%"' for s in alt_tokens])
402         elif len(rcs) > 1:
403             m = r.match(rcs[idxx])
404             if m:
405                 if idxx > 0:
406                     alt += '\n'
407                 alt += '\n'.join([s + m.group(1) + ' "%%"' for s in alt_tokens])
408     return alt
409
410
411 def listAlternatives(progs, alt_type, rc_entry = []):
412     '''
413         Returns a list of \\prog_alternatives strings to be used as alternative
414         rc entries.  alt_type can be a string or a list of strings.
415     '''
416     if len(rc_entry) > 1 and len(rc_entry) != len(progs) + 1:
417         logger.error("rc entry should have one item or item for each prog and not_found.")
418         sys.exit(2)
419     alt_rc_entry = []
420     for idx in range(len(progs)):
421         if len(rc_entry) == 1:
422             rcs = rc_entry[0].split('\n')
423             alt = addAlternatives(rcs, alt_type)
424             alt_rc_entry.insert(0, alt)
425         elif len(rc_entry) > 1:
426             rcs = rc_entry[idx].split('\n')
427             alt = addAlternatives(rcs, alt_type)
428             alt_rc_entry.insert(idx, alt)
429     return alt_rc_entry
430
431
432 def checkViewer(description, progs, rc_entry = [], path = []):
433     ''' The same as checkProgAlternatives, but for viewers '''
434     alt_rc_entry = listAlternatives(progs, 'viewer', rc_entry)
435     return checkProgAlternatives(description, progs, rc_entry, alt_rc_entry, path, not_found = 'auto')
436
437
438 def checkEditor(description, progs, rc_entry = [], path = []):
439     ''' The same as checkProgAlternatives, but for editors '''
440     alt_rc_entry = listAlternatives(progs, 'editor', rc_entry)
441     return checkProgAlternatives(description, progs, rc_entry, alt_rc_entry, path, not_found = 'auto')
442
443
444 def checkViewerNoRC(description, progs, rc_entry = [], path = []):
445     ''' The same as checkViewer, but do not add rc entry '''
446     alt_rc_entry = listAlternatives(progs, 'viewer', rc_entry)
447     rc_entry = []
448     return checkProgAlternatives(description, progs, rc_entry, alt_rc_entry, path, not_found = 'auto')
449
450
451 def checkEditorNoRC(description, progs, rc_entry = [], path = []):
452     ''' The same as checkViewer, but do not add rc entry '''
453     alt_rc_entry = listAlternatives(progs, 'editor', rc_entry)
454     rc_entry = []
455     return checkProgAlternatives(description, progs, rc_entry, alt_rc_entry, path, not_found = 'auto')
456
457
458 def checkViewerEditor(description, progs, rc_entry = [], path = []):
459     ''' The same as checkProgAlternatives, but for viewers and editors '''
460     alt_rc_entry = listAlternatives(progs, ['editor', 'viewer'], rc_entry)
461     return checkProgAlternatives(description, progs, rc_entry, alt_rc_entry, path, not_found = 'auto')
462
463
464 def checkDTLtools():
465     ''' Check whether DTL tools are available (Windows only) '''
466     # Find programs! Returned path is not used now
467     if ((os.name == 'nt' or sys.platform == 'cygwin') and
468             checkProg('DVI to DTL converter', ['dv2dt']) != ['', ''] and
469             checkProg('DTL to DVI converter', ['dt2dv']) != ['', '']):
470         dtl_tools = True
471     else:
472         dtl_tools = False
473     return dtl_tools
474
475 def checkInkscape():
476     ''' Check whether Inkscape is available and return the full path (Windows only) '''
477     if os.name != 'nt':
478         return 'inkscape'
479     import _winreg
480     aReg = _winreg.ConnectRegistry(None, _winreg.HKEY_CLASSES_ROOT)
481     try:
482         aKey = _winreg.OpenKey(aReg, r"inkscape.svg\DefaultIcon")
483         val = _winreg.QueryValueEx(aKey, "")
484         return str(val[0]).split('"')[1].replace('.exe', '')
485     except EnvironmentError:
486         try:
487             aKey = _winreg.OpenKey(aReg, r"Applications\inkscape.exe\shell\open\command")
488             val = _winreg.QueryValueEx(aKey, "")
489             return str(val[0]).split('"')[1].replace('.exe', '')
490         except EnvironmentError:
491             return 'inkscape'
492
493 def checkLatex(dtl_tools):
494     ''' Check latex, return lyx_check_config '''
495     path, LATEX = checkProg('a Latex2e program', ['latex $$i', 'latex2e $$i'])
496     path, PPLATEX = checkProg('a DVI postprocessing program', ['pplatex $$i'])
497     #-----------------------------------------------------------------
498     path, PLATEX = checkProg('pLaTeX, the Japanese LaTeX', ['platex $$i'])
499     if PLATEX != '':
500         # check if PLATEX is pLaTeX2e
501         writeToFile('chklatex.ltx', r'\nonstopmode\makeatletter\@@end')
502         # run platex on chklatex.ltx and check result
503         if cmdOutput(PLATEX + ' chklatex.ltx').find('pLaTeX2e') != -1:
504             # We have the Japanese pLaTeX2e
505             addToRC(r'\converter platex   dvi       "%s"   "latex=platex"' % PLATEX)
506         else:
507             PLATEX = ''
508             removeFiles(['chklatex.ltx', 'chklatex.log'])
509     #-----------------------------------------------------------------
510     # use LATEX to convert from latex to dvi if PPLATEX is not available
511     if PPLATEX == '':
512         PPLATEX = LATEX
513     if dtl_tools:
514         # Windows only: DraftDVI
515         addToRC(r'''\converter latex      dvi2       "%s"       "latex"
516 \converter dvi2       dvi        "python -tt $$s/scripts/clean_dvi.py $$i $$o"  ""''' % PPLATEX)
517     else:
518         addToRC(r'\converter latex      dvi        "%s" "latex"' % PPLATEX)
519     # no latex
520     if LATEX != '':
521         # Check if latex is usable
522         writeToFile('chklatex.ltx', r'''
523 \nonstopmode
524 \ifx\undefined\documentclass\else
525   \message{ThisIsLaTeX2e}
526 \fi
527 \makeatletter
528 \@@end
529 ''')
530         # run latex on chklatex.ltx and check result
531         if cmdOutput(LATEX + ' chklatex.ltx').find('ThisIsLaTeX2e') != -1:
532             # valid latex2e
533             return LATEX
534         else:
535             logger.warning("Latex not usable (not LaTeX2e) ")
536         # remove temporary files
537         removeFiles(['chklatex.ltx', 'chklatex.log'])
538     return ''
539
540
541 def checkLuatex():
542     ''' Check if luatex is there and usable '''
543     path, LUATEX = checkProg('LuaTeX', ['lualatex $$i'])
544     path, DVILUATEX = checkProg('LuaTeX (DVI)', ['dvilualatex $$i'])
545     if LUATEX != '':
546     # luatex binary is there
547         msg = "checking if LuaTeX is usable ..."
548         # Check if luatex is usable
549         writeToFile('luatest.tex', r'''
550 \nonstopmode
551 \documentclass{minimal}
552 \usepackage{fontspec}
553 \begin{document}
554 .
555 \end{document}
556 ''')
557         # run lualatex on luatest.tex and check result
558         luatest = cmdOutput(LUATEX + ' luatest.tex')
559         if luatest.find('XeTeX is required to compile this document') != -1:
560             # fontspec/luatex too old! We do not support this version.
561             logger.info(msg + ' no (probably not recent enough)')
562         elif luatest.find('! LaTeX Error: File `fontspec.sty\' not found') != -1:
563             # fontspec missing
564             logger.info(msg + ' no (missing fontspec)')
565         else:
566             # working luatex
567             logger.info(msg + ' yes')
568             addToRC(r'\converter luatex      pdf5       "%s"    "latex=lualatex"' % LUATEX)
569             if DVILUATEX != '':
570                 addToRC(r'\converter luatex      dvi3        "%s"       "latex=dvilualatex"' % DVILUATEX)
571         # remove temporary files
572         removeFiles(['luatest.tex', 'luatest.log', 'luatest.aux', 'luatest.pdf'])
573
574
575 def checkModule(module):
576     ''' Check for a Python module, return the status '''
577     msg = 'checking for "' + module + ' module"... '
578     try:
579       __import__(module)
580       logger.info(msg + ' yes')
581       return True
582     except ImportError:
583       logger.info(msg + ' no')
584       return False
585
586
587 def checkFormatEntries(dtl_tools):
588     ''' Check all formats (\Format entries) '''
589     checkViewerEditor('a Tgif viewer and editor', ['tgif'],
590         rc_entry = [r'\Format tgif      "obj, tgo" Tgif                 "" "%%" "%%"    "vector"        "application/x-tgif"'])
591     #
592     checkViewerEditor('a FIG viewer and editor', ['xfig', 'jfig3-itext.jar', 'jfig3.jar'],
593         rc_entry = [r'\Format fig        fig     FIG                    "" "%%" "%%"    "vector"        "application/x-xfig"'])
594     #
595     checkViewerEditor('a Dia viewer and editor', ['dia'],
596         rc_entry = [r'\Format dia        dia     DIA                    "" "%%" "%%"    "vector,zipped=native", "application/x-dia-diagram"'])
597     #
598     checkViewerEditor('an OpenDocument drawing viewer and editor', ['libreoffice', 'lodraw', 'ooffice', 'oodraw', 'soffice'],
599         rc_entry = [r'\Format odg        "odg, sxd" "OpenDocument drawing"   "" "%%"    "%%"    "vector,zipped=native"  "application/vnd.oasis.opendocument.graphics"'])
600     #
601     checkViewerEditor('a Grace viewer and editor', ['xmgrace'],
602         rc_entry = [r'\Format agr        agr     Grace                  "" "%%" "%%"    "vector"        ""'])
603     #
604     checkViewerEditor('a FEN viewer and editor', ['xboard -lpf $$i -mode EditPosition'],
605         rc_entry = [r'\Format fen        fen     FEN                    "" "%%" "%%"    ""      ""'])
606     #
607     checkViewerEditor('a SVG viewer and editor', [inkscape_name],
608         rc_entry = [r'\Format svg        "svg, svgz" SVG                "" "%%" "%%"    "vector,zipped=native"  "image/svg+xml"'],
609         path = [inkscape_path])
610     #
611     imageformats = r'''\Format bmp        bmp     BMP                    "" "%s"        "%s"    ""      "image/x-bmp"
612 \Format gif        gif     GIF                    "" "%s"       "%s"    ""      "image/gif"
613 \Format jpg       "jpg, jpeg" JPEG                "" "%s"       "%s"    ""      "image/jpeg"
614 \Format pbm        pbm     PBM                    "" "%s"       "%s"    ""      "image/x-portable-bitmap"
615 \Format pgm        pgm     PGM                    "" "%s"       "%s"    ""      "image/x-portable-graymap"
616 \Format png        png     PNG                    "" "%s"       "%s"    ""      "image/x-png"
617 \Format ppm        ppm     PPM                    "" "%s"       "%s"    ""      "image/x-portable-pixmap"
618 \Format tiff       tif     TIFF                   "" "%s"       "%s"    ""      "image/tiff"
619 \Format xbm        xbm     XBM                    "" "%s"       "%s"    ""      "image/x-xbitmap"
620 \Format xpm        xpm     XPM                    "" "%s"       "%s"    ""      "image/x-xpixmap"'''
621     path, iv = checkViewerNoRC('a raster image viewer', ['xv', 'kview', 'gimp-remote', 'gimp'], rc_entry = [imageformats])
622     path, ie = checkEditorNoRC('a raster image editor', ['gimp-remote', 'gimp'], rc_entry = [imageformats])
623     addToRC(imageformats % \
624         (iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie) )
625     #
626     checkViewerEditor('a text editor', ['xemacs', 'gvim', 'kedit', 'kwrite', 'kate', \
627         'nedit', 'gedit', 'notepad', 'geany', 'leafpad', 'mousepad'],
628         rc_entry = [r'''\Format asciichess asc    "Plain text (chess output)"  "" ""    "%%"    ""      ""
629 \Format asciiimage asc    "Plain text (image)"         "" ""    "%%"    ""      ""
630 \Format asciixfig  asc    "Plain text (Xfig output)"   "" ""    "%%"    ""      ""
631 \Format dateout    tmp    "date (output)"         "" "" "%%"    ""      ""
632 \Format docbook    sgml    DocBook                B  "" "%%"    "document,menu=export"  ""
633 \Format docbook-xml xml   "DocBook (XML)"         "" "" "%%"    "document,menu=export"  "application/docbook+xml"
634 \Format dot        dot    "Graphviz Dot"          "" "" "%%"    "vector"        "text/vnd.graphviz"
635 \Format dviluatex  tex    "LaTeX (dviluatex)"     "" "" "%%"    "document,menu=export"  ""
636 \Format platex     tex    "LaTeX (pLaTeX)"        "" "" "%%"    "document,menu=export"  ""
637 \Format literate   nw      NoWeb                  N  "" "%%"    "document,menu=export"  ""
638 \Format sweave     Rnw    "Sweave"                S  "" "%%"    "document,menu=export"  ""
639 \Format r          R      "R/S code"              "" "" "%%"    "document,menu=export"  ""
640 \Format knitr      Rnw    "Rnw (knitr)"           "" "" "%%"    "document,menu=export"  ""
641 \Format lilypond   ly     "LilyPond music"        "" "" "%%"    "vector"        "text/x-lilypond"
642 \Format lilypond-book    lytex "LilyPond book (LaTeX)"   "" ""  "%%"    "document,menu=export"  ""
643 \Format latex      tex    "LaTeX (plain)"         L  "" "%%"    "document,menu=export"  "text/x-tex"
644 \Format luatex     tex    "LaTeX (LuaTeX)"        "" "" "%%"    "document,menu=export"  ""
645 \Format pdflatex   tex    "LaTeX (pdflatex)"      "" "" "%%"    "document,menu=export"  ""
646 \Format xetex      tex    "LaTeX (XeTeX)"         "" "" "%%"    "document,menu=export"  ""
647 \Format latexclipboard tex "LaTeX (clipboard)"    "" "" "%%"    ""      ""
648 \Format text       txt    "Plain text"            a  "" "%%"    "document,menu=export"  "text/plain"
649 \Format text2      txt    "Plain text (pstotext)" "" "" "%%"    "document"      ""
650 \Format text3      txt    "Plain text (ps2ascii)" "" "" "%%"    "document"      ""
651 \Format text4      txt    "Plain text (catdvi)"   "" "" "%%"    "document"      ""
652 \Format textparagraph txt "Plain Text, Join Lines" "" ""        "%%"    "document"      ""
653 \Format beamer.info pdf.info   "Info (Beamer)"         "" ""   "%%"    "document,menu=export"   ""''' ])
654    #Spreadsheets using ssconvert from gnumeric
655     checkViewer('gnumeric spreadsheet software', ['gnumeric'],
656       rc_entry = [r'''\Format gnumeric gnumeric "Gnumeric spreadsheet" "" ""    "%%"   "document"       "application/x-gnumeric"
657 \Format excel      xls    "Excel spreadsheet"      "" "" "%%"    "document"     "application/vnd.ms-excel"
658 \Format oocalc     ods    "OpenDocument spreadsheet" "" "" "%%"    "document"   "application/vnd.oasis.opendocument.spreadsheet"'''])
659  #
660     checkViewer('an HTML previewer', ['firefox', 'mozilla file://$$p$$i', 'netscape'],
661         rc_entry = [r'\Format xhtml      xhtml   "LyXHTML"              y "%%" ""    "document,menu=export"     "application/xhtml+xml"'])
662  #
663     checkEditor('a BibTeX editor', ['jabref', 'JabRef', \
664         'pybliographic', 'bibdesk', 'gbib', 'kbib', \
665         'kbibtex', 'sixpack', 'bibedit', 'tkbibtex' \
666         'xemacs', 'gvim', 'kedit', 'kwrite', 'kate', \
667         'jedit', 'TeXnicCenter', 'WinEdt', 'WinShell', 'PSPad', \
668         'nedit', 'gedit', 'notepad', 'geany', 'leafpad', 'mousepad'],
669         rc_entry = [r'''\Format bibtex bib    "BibTeX"         "" ""    "%%"    ""      "text/x-bibtex"''' ])
670     #
671     #checkProg('a Postscript interpreter', ['gs'],
672     #  rc_entry = [ r'\ps_command "%%"' ])
673     checkViewer('a Postscript previewer', ['kghostview', 'okular', 'qpdfview --unique', 'evince', 'gv', 'ghostview -swap', 'gsview64', 'gsview32'],
674         rc_entry = [r'''\Format eps        eps     EPS                    "" "%%"       ""      "vector"        "image/x-eps"
675 \Format eps2       eps    "EPS (uncropped)"       "" "%%"       ""      "vector"        ""
676 \Format eps3       eps    "EPS (cropped)"         "" "%%"       ""      "document"      ""
677 \Format ps         ps      Postscript             t  "%%"       ""      "document,vector,menu=export"   "application/postscript"'''])
678     # for xdg-open issues look here: http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg151818.html
679     # the MIME type is set for pdf6, because that one needs to be autodetectable by libmime
680     checkViewer('a PDF previewer', ['pdfview', 'kpdf', 'okular', 'qpdfview --unique', 'evince', 'kghostview', 'xpdf', 'SumatraPDF', 'acrobat', 'acroread', 'mupdf', \
681                     'gv', 'ghostview', 'AcroRd32', 'gsview64', 'gsview32'],
682         rc_entry = [r'''\Format pdf        pdf    "PDF (ps2pdf)"          P  "%%"       ""      "document,vector,menu=export"   ""
683 \Format pdf2       pdf    "PDF (pdflatex)"        F  "%%"       ""      "document,vector,menu=export"   ""
684 \Format pdf3       pdf    "PDF (dvipdfm)"         m  "%%"       ""      "document,vector,menu=export"   ""
685 \Format pdf4       pdf    "PDF (XeTeX)"           X  "%%"       ""      "document,vector,menu=export"   ""
686 \Format pdf5       pdf    "PDF (LuaTeX)"          u  "%%"       ""      "document,vector,menu=export"   ""
687 \Format pdf6       pdf    "PDF (graphics)"        "" "%%"       ""      "vector"        "application/pdf"
688 \Format pdf7       pdf    "PDF (cropped)"         "" "%%"       ""      "document,vector"       ""
689 \Format pdf8       pdf    "PDF (lower resolution)"         "" "%%"      ""      "document,vector"       ""'''])
690     #
691     checkViewer('a DVI previewer', ['xdvi', 'kdvi', 'okular', 'yap', 'dviout -Set=!m'],
692         rc_entry = [r'''\Format dvi        dvi     DVI                    D  "%%"       ""      "document,vector,menu=export"   "application/x-dvi"
693 \Format dvi3       dvi     "DVI (LuaTeX)"          V  "%%"      ""      "document,vector,menu=export"   ""'''])
694     if dtl_tools:
695         # Windows only: DraftDVI
696         addToRC(r'\Format dvi2       dvi     DraftDVI               ""  ""      ""      "vector"        ""')
697     #
698     checkViewer('an HTML previewer', ['firefox', 'mozilla file://$$p$$i', 'netscape'],
699         rc_entry = [r'\Format html      "html, htm" HTML                H  "%%" ""      "document,menu=export"  "text/html"'])
700     #
701     checkViewerEditor('Noteedit', ['noteedit'],
702         rc_entry = [r'\Format noteedit   not     Noteedit               "" "%%" "%%"    "vector"        ""'])
703     #
704     checkViewerEditor('an OpenDocument viewer', ['libreoffice', 'lwriter', 'lowriter', 'oowriter', 'swriter', 'abiword'],
705         rc_entry = [r'''\Format odt        odt     "OpenDocument (tex4ht)"  "" "%%"     "%%"    "document,vector,menu=export"   "application/vnd.oasis.opendocument.text"
706 \Format odt2       odt    "OpenDocument (eLyXer)"  "" "%%"      "%%"    "document,vector,menu=export"   "application/vnd.oasis.opendocument.text"
707 \Format odt3       odt    "OpenDocument (Pandoc)"  "" "%%"      "%%"    "document,vector,menu=export"   "application/vnd.oasis.opendocument.text"
708 \Format sxw        sxw    "OpenOffice.Org (sxw)"  "" "" ""      "document,vector"       "application/vnd.sun.xml.writer"'''])
709     #
710     checkViewerEditor('a Rich Text and Word viewer', ['libreoffice', 'lwriter', 'lowriter', 'oowriter', 'swriter', 'abiword'],
711         rc_entry = [r'''\Format rtf        rtf    "Rich Text Format"      "" "%%"       "%%"    "document,vector,menu=export"   "application/rtf"
712 \Format word       doc    "MS Word"               W  "%%"       "%%"    "document,vector,menu=export"   "application/msword"
713 \Format word2      docx    "MS Word Office Open XML"               O  "%%"      "%%"    "document,vector,menu=export"   "application/vnd.openxmlformats-officedocument.wordprocessingml.document"'''])
714     #
715     # entries that do not need checkProg
716     addToRC(r'''\Format date       ""     "date command"          "" "" ""      ""      ""
717 \Format csv        csv    "Table (CSV)"           "" "" ""      "document"      "text/csv"
718 \Format fax        ""      Fax                    "" "" ""      "document"      ""
719 \Format lyx        lyx     LyX                    "" "" ""      ""      "application/x-lyx"
720 \Format lyx13x     13.lyx "LyX 1.3.x"             "" "" ""      "document"      ""
721 \Format lyx14x     14.lyx "LyX 1.4.x"             "" "" ""      "document"      ""
722 \Format lyx15x     15.lyx "LyX 1.5.x"             "" "" ""      "document"      ""
723 \Format lyx16x     16.lyx "LyX 1.6.x"             "" "" ""      "document"      ""
724 \Format lyx20x     20.lyx "LyX 2.0.x"             "" "" ""      "document"      ""
725 \Format lyx21x     21.lyx "LyX 2.1.x"             "" "" ""      "document,menu=export"  ""
726 \Format clyx       cjklyx "CJK LyX 1.4.x (big5)"  "" "" ""      "document"      ""
727 \Format jlyx       cjklyx "CJK LyX 1.4.x (euc-jp)" "" ""        ""      "document"      ""
728 \Format klyx       cjklyx "CJK LyX 1.4.x (euc-kr)" "" ""        ""      "document"      ""
729 \Format lyxpreview lyxpreview "LyX Preview"       "" "" ""      ""      ""
730 \Format pdftex     pdftex_t PDFTEX                "" "" ""      ""      ""
731 \Format program    ""      Program                "" "" ""      ""      ""
732 \Format pstex      pstex_t PSTEX                  "" "" ""      ""      ""
733 \Format wmf        wmf    "Windows Metafile"      "" "" ""      "vector"        "image/x-wmf"
734 \Format emf        emf    "Enhanced Metafile"     "" "" ""      "vector"        "image/x-emf"
735 \Format wordhtml  "html, htm" "HTML (MS Word)"    "" "" ""      "document"      ""
736 ''')
737
738
739 def checkConverterEntries():
740     ''' Check all converters (\converter entries) '''
741     checkProg('the pdflatex program', ['pdflatex $$i'],
742         rc_entry = [ r'\converter pdflatex   pdf2       "%%"    "latex=pdflatex"' ])
743
744     checkProg('XeTeX', ['xelatex $$i'],
745         rc_entry = [ r'\converter xetex      pdf4       "%%"    "latex=xelatex"' ])
746
747     checkLuatex()
748
749     # Look for tex2lyx in this order (see bugs #3308 and #6986):
750     #   1)  If we're building LyX with autotools then tex2lyx is found
751     #       in the subdirectory tex2lyx with respect to the binary dir.
752     #   2)  If we're building LyX with cmake then tex2lyx is found
753     #       in the binary dir.
754     #   3)  If LyX was configured with a version suffix then tex2lyx
755     #       will also have this version suffix.
756     #   4)  Otherwise always use tex2lyx.
757     in_binary_subdir = os.path.join(lyx_binary_dir, 'tex2lyx', 'tex2lyx')
758     in_binary_subdir = os.path.abspath(in_binary_subdir).replace('\\', '/')
759
760     in_binary_dir = os.path.join(lyx_binary_dir, 'tex2lyx')
761     in_binary_dir = os.path.abspath(in_binary_dir).replace('\\', '/')
762
763     path, t2l = checkProg('a LaTeX/Noweb -> LyX converter', [in_binary_subdir, in_binary_subdir + version_suffix, in_binary_dir, in_binary_dir + version_suffix, 'tex2lyx' + version_suffix, 'tex2lyx'],
764         rc_entry = [r'''\converter latex      lyx        "%% -f $$i $$o"        ""
765 \converter latexclipboard lyx        "%% -fixedenc utf8 -f $$i $$o"     ""
766 \converter literate   lyx        "%% -n -m noweb -f $$i $$o"    ""
767 \converter sweave   lyx        "%% -n -m sweave -f $$i $$o"     ""
768 \converter knitr   lyx        "%% -n -m knitr -f $$i $$o"       ""'''], not_found = 'tex2lyx')
769     if path == '':
770         logger.warning("Failed to find tex2lyx on your system.")
771
772     #
773     checkProg('a Noweb -> LaTeX converter', ['noweave -delay -index $$i > $$o'],
774         rc_entry = [r'''\converter literate   latex      "%%"   ""
775 \converter literate   pdflatex      "%%"        ""
776 \converter literate   xetex         "%%"        ""
777 \converter literate   luatex        "%%"        ""'''])
778     #
779     checkProg('a Sweave -> LaTeX converter', ['Rscript --verbose --no-save --no-restore $$s/scripts/lyxsweave.R $$p$$i $$p$$o $$e $$r'],
780         rc_entry = [r'''\converter sweave   latex      "%%"     ""
781 \converter sweave   pdflatex   "%%"     ""
782 \converter sweave   xetex      "%%"     ""
783 \converter sweave   luatex     "%%"     ""'''])
784     #
785     checkProg('a knitr -> LaTeX converter', ['Rscript --verbose --no-save --no-restore $$s/scripts/lyxknitr.R $$p$$i $$p$$o $$e $$r'],
786         rc_entry = [r'''\converter knitr   latex      "%%"      ""
787 \converter knitr   pdflatex   "%%"      ""
788 \converter knitr   xetex      "%%"      ""
789 \converter knitr   luatex     "%%"      ""'''])
790     #
791     checkProg('a Sweave -> R/S code converter', ['Rscript --verbose --no-save --no-restore $$s/scripts/lyxstangle.R $$i $$e $$r'], 
792         rc_entry = [ r'\converter sweave      r      "%%"    ""' ])
793     #
794     checkProg('a knitr -> R/S code converter', ['Rscript --verbose --no-save --no-restore $$s/scripts/lyxknitr.R $$p$$i $$p$$o $$e $$r tangle'],
795         rc_entry = [ r'\converter knitr      r      "%%"    ""' ])
796     #
797     checkProg('an HTML -> LaTeX converter', ['html2latex $$i', 'gnuhtml2latex',
798         'htmltolatex -input $$i -output $$o', 'htmltolatex.jar -input $$i -output $$o'],
799         rc_entry = [ r'\converter html       latex      "%%"    ""', \
800                      r'\converter html       latex      "python -tt $$s/scripts/html2latexwrapper.py %% $$i $$o"        ""', \
801                      r'\converter html       latex      "%%"    ""', \
802                      r'\converter html       latex      "%%"    ""', '' ])
803     #
804     checkProg('an MS Word -> LaTeX converter', ['wvCleanLatex $$i $$o'],
805         rc_entry = [ r'\converter word       latex      "%%"    ""' ])
806
807     # eLyXer: search as an executable (elyxer.py, elyxer)
808     path, elyxer = checkProg('a LyX -> HTML converter',
809         ['elyxer.py --nofooter --directory $$r $$i $$o', 'elyxer --nofooter --directory $$r $$i $$o'],
810         rc_entry = [ r'\converter lyx      html       "%%"      ""' ])
811     path, elyxer = checkProg('a LyX -> HTML (MS Word) converter',
812         ['elyxer.py --nofooter --html --directory $$r $$i $$o', 'elyxer --nofooter --html --directory $$r $$i $$o'],
813         rc_entry = [ r'\converter lyx      wordhtml       "%%"  ""' ])
814     path, elyxer = checkProg('a LyX -> OpenDocument (eLyXer) converter',
815         ['elyxer.py --html --nofooter --unicode --directory $$r $$i $$o', 'elyxer --html --nofooter --unicode --directory $$r $$i $$o'],
816         rc_entry = [ r'\converter lyx      odt2       "%%"      ""' ])
817     path, elyxer = checkProg('a LyX -> Word converter',
818         ['elyxer.py --html --nofooter --unicode --directory $$r $$i $$o', 'elyxer --html --nofooter --unicode --directory $$r $$i $$o'],
819         rc_entry = [ r'\converter lyx      word      "%%"       ""' ])
820     if elyxer.find('elyxer') >= 0:
821       addToRC(r'''\copier    html       "python -tt $$s/scripts/ext_copy.py -e html,png,jpg,jpeg,css $$i $$o"''')
822       addToRC(r'''\copier    wordhtml       "python -tt $$s/scripts/ext_copy.py -e html,png,jpg,jpeg,css $$i $$o"''')
823     else:
824       # search for HTML converters other than eLyXer
825       # On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
826       path, htmlconv = checkProg('a LaTeX -> HTML converter', ['htlatex $$i', 'htlatex.sh $$i', \
827           '/usr/share/tex4ht/htlatex $$i', 'tth  -t -e2 -L$$b < $$i > $$o', \
828           'latex2html -no_subdir -split 0 -show_section_numbers $$i', 'hevea -s $$i'],
829           rc_entry = [ r'\converter latex      html       "%%"  "needaux"' ])
830       if htmlconv.find('htlatex') >= 0 or htmlconv == 'latex2html':
831         addToRC(r'''\copier    html       "python -tt $$s/scripts/ext_copy.py -e html,png,css $$i $$o"''')
832       else:
833         addToRC(r'''\copier    html       "python -tt $$s/scripts/ext_copy.py $$i $$o"''')
834       path, htmlconv = checkProg('a LaTeX -> HTML (MS Word) converter', ["htlatex $$i 'html,word' 'symbol/!' '-cvalidate'", \
835           "htlatex.sh $$i 'html,word' 'symbol/!' '-cvalidate'", \
836           "/usr/share/tex4ht/htlatex $$i 'html,word' 'symbol/!' '-cvalidate'"],
837           rc_entry = [ r'\converter latex      wordhtml   "%%"  "needaux"' ])
838       if htmlconv.find('htlatex') >= 0:
839         addToRC(r'''\copier    wordhtml       "python -tt $$s/scripts/ext_copy.py -e html,png,css $$i $$o"''')
840       else:
841         addToRC(r'''\copier    wordhtml       "python -tt $$s/scripts/ext_copy.py $$i $$o"''')
842
843
844     # Check if LyXBlogger is installed
845     lyxblogger_found = checkModule('lyxblogger')
846     if lyxblogger_found:
847       addToRC(r'\Format    blog       blog       "LyXBlogger"           "" "" ""  "document"  ""')
848       addToRC(r'\converter xhtml      blog       "python -m lyxblogger $$i"       ""')
849
850     #
851     checkProg('an OpenOffice.org -> LaTeX converter', ['w2l -clean $$i'],
852         rc_entry = [ r'\converter sxw        latex      "%%"    ""' ])
853     #
854     checkProg('an OpenDocument -> LaTeX converter', ['w2l -clean $$i'],
855         rc_entry = [ r'\converter odt        latex      "%%"    ""' ])
856     #
857     checkProg('an Open Document (Pandoc) -> LaTeX converter', ['pandoc -s -f odt -o $$o -t latex $$i'],
858         rc_entry = [ r'\converter odt3        latex      "%%"   ""' ])
859     #
860     checkProg('a MS Word Office Open XML converter -> LaTeX', ['pandoc -s -f docx -o $$o -t latex $$i'],
861         rc_entry = [ r'\converter word2      latex      "%%"    ""' ])
862     # Only define a converter to pdf6, otherwise the odt format could be
863     # used as an intermediate step for export to pdf, which is not wanted.
864     checkProg('an OpenDocument -> PDF converter', ['unoconv -f pdf --stdout $$i > $$o'],
865         rc_entry = [ r'\converter odt        pdf6       "%%"    ""' ])
866     # According to http://www.tug.org/applications/tex4ht/mn-commands.html
867     # the command mk4ht oolatex $$i has to be used as default,
868     # but as this would require to have Perl installed, in MiKTeX oolatex is
869     # directly available as application.
870     # On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
871     # Both SuSE and debian have oolatex
872     checkProg('a LaTeX -> Open Document (tex4ht) converter', [
873         'oolatex $$i', 'mk4ht oolatex $$i', 'oolatex.sh $$i', '/usr/share/tex4ht/oolatex $$i',
874         'htlatex $$i \'xhtml,ooffice\' \'ooffice/! -cmozhtf\' \'-coo\' \'-cvalidate\''],
875         rc_entry = [ r'\converter latex      odt        "%%"    "needaux"' ])
876     # On windows it is called latex2rt.exe
877     checkProg('a LaTeX -> RTF converter', ['latex2rtf -p -S -o $$o $$i', 'latex2rt -p -S -o $$o $$i'],
878         rc_entry = [ r'\converter latex      rtf        "%%"    "needaux"' ])
879     #
880     checkProg('a LaTeX -> Open Document (Pandoc) converter', ['pandoc -s -f latex -o $$o -t odt $$i'],
881         rc_entry = [ r'\converter latex      odt3        "%%"   ""' ])
882     #
883     checkProg('a LaTeX -> MS Word Office Open XML converter', ['pandoc -s -f latex -o $$o -t docx $$i'],
884         rc_entry = [ r'\converter latex      word2       "%%"   ""' ])
885     #
886     checkProg('a RTF -> HTML converter', ['unrtf --html  $$i > $$o'],
887         rc_entry = [ r'\converter rtf      html        "%%"     ""' ])
888     # Do not define a converter to pdf6, ps is a pure export format 
889     checkProg('a PS to PDF converter', ['ps2pdf $$i $$o'],
890         rc_entry = [ r'\converter ps         pdf        "%%"    ""' ])
891     #
892     checkProg('a PS to TXT converter', ['pstotext $$i > $$o'],
893         rc_entry = [ r'\converter ps         text2      "%%"    ""' ])
894     #
895     checkProg('a PS to TXT converter', ['ps2ascii $$i $$o'],
896         rc_entry = [ r'\converter ps         text3      "%%"    ""' ])
897     # Need to call ps2eps in a pipe, otherwise it would name the output file
898     # depending on the extension of the input file. We do not know the input
899     # file extension in general, so the resultfile= flag would not help.
900     # Since ps2eps crops the image, we do not use it to convert from ps->eps.
901     # This would create additional paths in the converter graph with unwanted
902     # side effects (e.g. ps->pdf via ps2pdf would create a different result
903     # than ps->eps->pdf via ps2eps and epstopdf).
904     checkProg('a PS to EPS converter', ['ps2eps -- < $$i > $$o'],
905         rc_entry = [ r'\converter eps2       eps      "%%"      ""' ])
906     #
907     checkProg('a PDF to PS converter', ['pdftops $$i $$o', 'pdf2ps $$i $$o'],
908         rc_entry = [ r'\converter pdf         ps        "%%"    ""' ])
909     # Only define a converter from pdf6 for graphics
910     checkProg('a PDF to EPS converter', ['pdftops -eps -f 1 -l 1 $$i $$o'],
911         rc_entry = [ r'\converter pdf6        eps        "%%"   ""' ])
912     # Create one converter for a PDF produced using TeX fonts and one for a
913     # PDF produced using non-TeX fonts. This does not produce non-unique
914     # conversion paths, since a given document either uses TeX fonts or not.
915     checkProg('a PDF cropping tool', ['pdfcrop $$i $$o'],
916         rc_entry = [ r'''\converter pdf2   pdf7       "%%"      ""
917 \converter pdf4   pdf7       "%%"       ""''' ])
918     # Create one converter for a PDF produced using TeX fonts and one for a
919     # PDF produced using non-TeX fonts. This does not produce non-unique
920     # conversion paths, since a given document either uses TeX fonts or not.
921     checkProg('Ghostscript', ["gswin32c", "gswin64c", "gs"],
922         rc_entry = [ r'''\converter pdf2   pdf8       "python -tt $$s/scripts/convert_pdf.py $$i $$o ebook"     ""
923 \converter pdf4   pdf8       "python -tt $$s/scripts/convert_pdf.py $$i $$o ebook"      ""''' ])
924     #
925     checkProg('a Beamer info extractor', ['makebeamerinfo -p $$i'],
926         rc_entry = [ r'\converter pdf2         beamer.info        "%%"  ""' ])
927     #
928     checkProg('a DVI to TXT converter', ['catdvi $$i > $$o'],
929         rc_entry = [ r'\converter dvi        text4      "%%"    ""' ])
930     #
931     checkProg('a DVI to PS converter', ['dvips -o $$o $$i'],
932         rc_entry = [ r'\converter dvi        ps         "%%"    ""' ])
933     #
934     checkProg('a DVI to cropped EPS converter', ['dvips -E -o $$o $$i'],
935         rc_entry = [ r'\converter dvi        eps3         "%%"  ""' ])
936     #
937     checkProg('a DVI to PDF converter', ['dvipdfmx -o $$o $$i', 'dvipdfm -o $$o $$i'],
938         rc_entry = [ r'\converter dvi        pdf3       "%%"    ""' ])
939     #
940     checkProg('a fax program', ['kdeprintfax $$i', 'ksendfax $$i', 'hylapex $$i'],
941         rc_entry = [ r'\converter ps         fax        "%%"    ""'])
942     #
943     path, fig2dev = checkProg('a FIG -> Image converter', ['fig2dev'])
944     if fig2dev == "fig2dev":
945         addToRC(r'''\converter fig        eps        "fig2dev -L eps $$i $$o"   ""
946 \converter fig        ppm        "fig2dev -L ppm $$i $$o"       ""
947 \converter fig        png        "fig2dev -L png $$i $$o"       ""
948 \converter fig        pdftex     "python -tt $$s/scripts/fig2pdftex.py $$i $$o" ""
949 \converter fig        pstex      "python -tt $$s/scripts/fig2pstex.py $$i $$o"  ""''')
950     #
951     checkProg('a TIFF -> PS converter', ['tiff2ps $$i > $$o'],
952         rc_entry = [ r'\converter tiff       eps        "%%"    ""'])
953     #
954     checkProg('a TGIF -> EPS/PPM converter', ['tgif'],
955         rc_entry = [
956             r'''\converter tgif       eps        "tgif -print -color -eps -stdout $$i > $$o"    ""
957 \converter tgif       png        "tgif -print -color -png -o $$d $$i"   ""
958 \converter tgif       pdf6       "tgif -print -color -pdf -stdout $$i > $$o"    ""'''])
959     #
960     checkProg('a WMF -> EPS converter', ['metafile2eps $$i $$o', 'wmf2eps -o $$o $$i', inkscape_name + ' --file=$$i --export-area-drawing --without-gui --export-eps=$$o'],
961         rc_entry = [ r'\converter wmf        eps        "%%"    ""'])
962     #
963     checkProg('an EMF -> EPS converter', ['metafile2eps $$i $$o', 'wmf2eps -o $$o $$i', inkscape_name + ' --file=$$i --export-area-drawing --without-gui --export-eps=$$o'],
964         rc_entry = [ r'\converter emf        eps        "%%"    ""'])
965     #
966     checkProg('a WMF -> PDF converter', [inkscape_name + ' --file=$$i --export-area-drawing --without-gui --export-pdf=$$o'],
967         rc_entry = [ r'\converter wmf        pdf6        "%%"   ""'])
968     #
969     checkProg('an EMF -> PDF converter', [inkscape_name + ' --file=$$i --export-area-drawing --without-gui --export-pdf=$$o'],
970         rc_entry = [ r'\converter emf        pdf6        "%%"   ""'])
971     # Only define a converter to pdf6 for graphics
972     checkProg('an EPS -> PDF converter', ['epstopdf'],
973         rc_entry = [ r'\converter eps        pdf6       "epstopdf --outfile=$$o $$i"    ""'])
974     #
975     checkProg('an EPS -> PNG converter', ['convert $$i $$o'],
976         rc_entry = [ r'\converter eps        png        "%%"    ""'])
977     #
978     # no agr -> pdf6 converter, since the pdf library used by gracebat is not
979     # free software and therefore not compiled in in many installations.
980     # Fortunately, this is not a big problem, because we will use epstopdf to
981     # convert from agr to pdf6 via eps without loss of quality.
982     checkProg('a Grace -> Image converter', ['gracebat'],
983         rc_entry = [
984             r'''\converter agr        eps        "gracebat -hardcopy -printfile $$o -hdevice EPS $$i 2>/dev/null"       ""
985 \converter agr        png        "gracebat -hardcopy -printfile $$o -hdevice PNG $$i 2>/dev/null"       ""
986 \converter agr        jpg        "gracebat -hardcopy -printfile $$o -hdevice JPEG $$i 2>/dev/null"      ""
987 \converter agr        ppm        "gracebat -hardcopy -printfile $$o -hdevice PNM $$i 2>/dev/null"       ""'''])
988     #
989     checkProg('a Dot -> Image converter', ['dot'],
990         rc_entry = [
991             r'''\converter dot        eps        "dot -Teps $$i -o $$o" ""
992 \converter dot        png        "dot -Tpng $$i -o $$o" ""'''])
993     #
994     checkProg('a Dia -> PNG converter', ['dia -e $$o -t png $$i'],
995         rc_entry = [ r'\converter dia        png        "%%"    ""'])
996     #
997     checkProg('a Dia -> EPS converter', ['dia -e $$o -t eps $$i'],
998         rc_entry = [ r'\converter dia        eps        "%%"    ""'])
999     # Actually, this produces EPS, but with a wrong bounding box (usually A4 or letter).
1000     # The eps2->eps converter then fixes the bounding box by cropping.
1001     # Although unoconv can convert to png and pdf as well, do not define
1002     # odg->png and odg->pdf converters, since the bb would be too large as well.
1003     checkProg('an OpenDocument -> EPS converter', ['libreoffice -headless -nologo -convert-to eps $$i', 'unoconv -f eps --stdout $$i > $$o'],
1004         rc_entry = [ r'\converter odg        eps2       "%%"    ""'])
1005     # Only define a converter to pdf6 for graphics
1006     # Prefer rsvg-convert over inkscape since it is faster (see http://www.lyx.org/trac/ticket/9891)
1007     checkProg('a SVG -> PDF converter', ['rsvg-convert -f pdf -o $$o $$i', inkscape_name + ' --file=$$i --export-area-drawing --without-gui --export-pdf=$$o'],
1008         rc_entry = [ r'\converter svg        pdf6       "%%"    ""'],
1009         path = ['', inkscape_path])
1010     #
1011     checkProg('a SVG -> EPS converter', ['rsvg-convert -f ps -o $$o $$i', inkscape_name + ' --file=$$i --export-area-drawing --without-gui --export-eps=$$o'],
1012         rc_entry = [ r'\converter svg        eps        "%%"    ""'],
1013         path = ['', inkscape_path])
1014     #
1015     checkProg('a SVG -> PNG converter', ['rsvg-convert -f png -o $$o $$i', inkscape_name + ' --without-gui --file=$$i --export-png=$$o'],
1016         rc_entry = [ r'\converter svg        png        "%%"    ""'],
1017         path = ['', inkscape_path])
1018
1019     #
1020     # gnumeric/xls/ods to tex
1021     checkProg('a spreadsheet -> latex converter', ['ssconvert'],
1022        rc_entry = [ r'''\converter gnumeric latex "ssconvert --export-type=Gnumeric_html:latex $$i $$o" ""
1023 \converter oocalc latex "ssconvert --export-type=Gnumeric_html:latex $$i $$o" ""
1024 \converter excel  latex "ssconvert --export-type=Gnumeric_html:latex $$i $$o" ""'''])
1025
1026     path, lilypond = checkProg('a LilyPond -> EPS/PDF/PNG converter', ['lilypond'])
1027     if (lilypond != ''):
1028         version_string = cmdOutput("lilypond --version")
1029         match = re.match('GNU LilyPond (\S+)', version_string)
1030         if match:
1031             version_number = match.groups()[0]
1032             version = version_number.split('.')
1033             if int(version[0]) > 2 or (len(version) > 1 and int(version[0]) == 2 and int(version[1]) >= 11):
1034                 addToRC(r'''\converter lilypond   eps        "lilypond -dbackend=eps -dsafe --ps $$i"   ""
1035 \converter lilypond   png        "lilypond -dbackend=eps -dsafe --png $$i"      ""''')
1036                 addToRC(r'\converter lilypond   pdf6       "lilypond -dbackend=eps -dsafe --pdf $$i"    ""')
1037                 logger.info('+  found LilyPond version %s.' % version_number)
1038             elif int(version[0]) > 2 or (len(version) > 1 and int(version[0]) == 2 and int(version[1]) >= 6):
1039                 addToRC(r'''\converter lilypond   eps        "lilypond -b eps --ps --safe $$i"  ""
1040 \converter lilypond   png        "lilypond -b eps --png $$i"    ""''')
1041                 if int(version[0]) > 2 or (len(version) > 1 and int(version[0]) == 2 and int(version[1]) >= 9):
1042                     addToRC(r'\converter lilypond   pdf6       "lilypond -b eps --pdf --safe $$i"       ""')
1043                 logger.info('+  found LilyPond version %s.' % version_number)
1044             else:
1045                 logger.info('+  found LilyPond, but version %s is too old.' % version_number)
1046         else:
1047             logger.info('+  found LilyPond, but could not extract version number.')
1048     #
1049     path, lilypond_book = checkProg('a LilyPond book (LaTeX) -> LaTeX converter', ['lilypond-book'])
1050     if (lilypond_book != ''):
1051         version_string = cmdOutput("lilypond-book --version")
1052         match = re.match('^(\S+)$', version_string)
1053         if match:
1054             version_number = match.groups()[0]
1055             version = version_number.split('.')
1056             if int(version[0]) > 2 or (len(version) > 1 and int(version[0]) == 2 and int(version[1]) >= 13):
1057                 # Note: The --lily-output-dir flag is required because lilypond-book
1058                 #       does not process input again unless the input has changed,
1059                 #       even if the output format being requested is different. So
1060                 #       once a .eps file exists, lilypond-book won't create a .pdf
1061                 #       even when requested with --pdf. This is a problem if a user
1062                 #       clicks View PDF after having done a View DVI. To circumvent
1063                 #       this, use different output folders for eps and pdf outputs.
1064                 addToRC(r'\converter lilypond-book latex    "lilypond-book --safe --lily-output-dir=ly-eps $$i"                                ""')
1065                 addToRC(r'\converter lilypond-book pdflatex "lilypond-book --safe --pdf --latex-program=pdflatex --lily-output-dir=ly-pdf $$i" ""')
1066                 addToRC(r'\converter lilypond-book xetex    "lilypond-book --safe --pdf --latex-program=xelatex --lily-output-dir=ly-pdf $$i"  ""')
1067                 addToRC(r'\converter lilypond-book luatex   "lilypond-book --safe --pdf --latex-program=lualatex --lily-output-dir=ly-pdf $$i" ""')
1068                 logger.info('+  found LilyPond-book version %s.' % version_number)
1069             else:
1070                 logger.info('+  found LilyPond-book, but version %s is too old.' % version_number)
1071         else:
1072             logger.info('+  found LilyPond-book, but could not extract version number.')
1073     #
1074     checkProg('a Noteedit -> LilyPond converter', ['noteedit --export-lilypond $$i'],
1075         rc_entry = [ r'\converter noteedit   lilypond   "%%"    ""' ])
1076     #
1077     # Currently, lyxpak outputs a gzip compressed tar archive on *nix
1078     # and a zip archive on Windows.
1079     # So, we configure the appropriate version according to the platform.
1080     cmd = r'\converter lyx %s "python -tt $$s/scripts/lyxpak.py $$r/$$f" ""'
1081     if os.name == 'nt':
1082         addToRC(r'\Format lyxzip     zip    "LyX Archive (zip)"     "" "" ""  "document,menu=export"    ""')
1083         addToRC(cmd % "lyxzip")
1084     else:
1085         addToRC(r'\Format lyxgz      gz     "LyX Archive (tar.gz)"  "" "" ""  "document,menu=export"    ""')
1086         addToRC(cmd % "lyxgz")
1087
1088     #
1089     # FIXME: no rc_entry? comment it out
1090     # checkProg('Image converter', ['convert $$i $$o'])
1091     #
1092     # Entries that do not need checkProg
1093     addToRC(r'''
1094 \converter csv        lyx        "python -tt $$s/scripts/csv2lyx.py $$i $$o"    ""
1095 \converter date       dateout    "python -tt $$s/scripts/date.py %d-%m-%Y > $$o"        ""
1096 \converter docbook    docbook-xml "cp $$i $$o"  "xml"
1097 \converter fen        asciichess "python -tt $$s/scripts/fen2ascii.py $$i $$o"  ""
1098 \converter lyx        lyx13x     "python -tt $$s/lyx2lyx/lyx2lyx -t 221 $$i > $$o"      ""
1099 \converter lyx        lyx14x     "python -tt $$s/lyx2lyx/lyx2lyx -t 245 $$i > $$o"      ""
1100 \converter lyx        lyx15x     "python -tt $$s/lyx2lyx/lyx2lyx -t 276 $$i > $$o"      ""
1101 \converter lyx        lyx16x     "python -tt $$s/lyx2lyx/lyx2lyx -t 345 $$i > $$o"      ""
1102 \converter lyx        lyx20x     "python -tt $$s/lyx2lyx/lyx2lyx -t 413 $$i > $$o"      ""
1103 \converter lyx        lyx21x     "python -tt $$s/lyx2lyx/lyx2lyx -t 474 $$i > $$o"      ""
1104 \converter lyx        clyx       "python -tt $$s/lyx2lyx/lyx2lyx -c big5 -t 245 $$i > $$o"      ""
1105 \converter lyx        jlyx       "python -tt $$s/lyx2lyx/lyx2lyx -c euc_jp -t 245 $$i > $$o"    ""
1106 \converter lyx        klyx       "python -tt $$s/lyx2lyx/lyx2lyx -c euc_kr -t 245 $$i > $$o"    ""
1107 \converter clyx       lyx        "python -tt $$s/lyx2lyx/lyx2lyx -c big5 $$i > $$o"     ""
1108 \converter jlyx       lyx        "python -tt $$s/lyx2lyx/lyx2lyx -c euc_jp $$i > $$o"   ""
1109 \converter klyx       lyx        "python -tt $$s/lyx2lyx/lyx2lyx -c euc_kr $$i > $$o"   ""
1110 \converter lyxpreview png        "python -tt $$s/scripts/lyxpreview2bitmap.py --png"    ""
1111 \converter lyxpreview ppm        "python -tt $$s/scripts/lyxpreview2bitmap.py --ppm"    ""
1112 ''')
1113
1114
1115 def checkDocBook():
1116     ''' Check docbook '''
1117     path, DOCBOOK = checkProg('SGML-tools 2.x (DocBook), db2x scripts or xsltproc', ['sgmltools', 'db2dvi', 'xsltproc'],
1118         rc_entry = [
1119             r'''\converter docbook    dvi        "sgmltools -b dvi $$i" ""
1120 \converter docbook    html       "sgmltools -b html $$i"        ""
1121 \converter docbook    ps         "sgmltools -b ps $$i"  ""''',
1122             r'''\converter docbook    dvi        "db2dvi $$i"   ""
1123 \converter docbook    html       "db2html $$i"  ""''',
1124             r'''\converter docbook    dvi        ""     ""
1125 \converter docbook    html       "" ""''',
1126             r'''\converter docbook    dvi        ""     ""
1127 \converter docbook    html       ""     ""'''])
1128     #
1129     if DOCBOOK != '':
1130         return ('yes', 'true', '\\def\\hasdocbook{yes}')
1131     else:
1132         return ('no', 'false', '')
1133
1134
1135 def checkOtherEntries():
1136     ''' entries other than Format and Converter '''
1137     checkProg('ChkTeX', ['chktex -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38'],
1138         rc_entry = [ r'\chktex_command "%%"' ])
1139     checkProgAlternatives('BibTeX or alternative programs', ['bibtex', 'bibtex8', 'biber'],
1140         rc_entry = [ r'\bibtex_command "%%"' ],
1141         alt_rc_entry = [ r'\bibtex_alternatives "%%"' ])
1142     checkProg('a specific Japanese BibTeX variant', ['pbibtex', 'jbibtex', 'bibtex'],
1143         rc_entry = [ r'\jbibtex_command "%%"' ])
1144     checkProgAlternatives('available index processors', ['texindy', 'makeindex -c -q', 'xindy'],
1145         rc_entry = [ r'\index_command "%%"' ],
1146         alt_rc_entry = [ r'\index_alternatives "%%"' ])
1147     checkProg('an index processor appropriate to Japanese', ['mendex -c -q', 'jmakeindex -c -q', 'makeindex -c -q'],
1148         rc_entry = [ r'\jindex_command "%%"' ])
1149     checkProg('the splitindex processor', ['splitindex.pl', 'splitindex',
1150         'splitindex.class'], rc_entry = [ r'\splitindex_command "%%"' ])
1151     checkProg('a nomenclature processor', ['makeindex'],
1152         rc_entry = [ r'\nomencl_command "makeindex -s nomencl.ist"' ])
1153     ## FIXME: OCTAVE is not used anywhere
1154     # path, OCTAVE = checkProg('Octave', ['octave'])
1155     ## FIXME: MAPLE is not used anywhere
1156     # path, MAPLE = checkProg('Maple', ['maple'])
1157     # Add the rest of the entries (no checkProg is required)
1158     addToRC(r'''\copier    fig        "python -tt $$s/scripts/fig_copy.py $$i $$o"
1159 \copier    pstex      "python -tt $$s/scripts/tex_copy.py $$i $$o $$l"
1160 \copier    pdftex     "python -tt $$s/scripts/tex_copy.py $$i $$o $$l"
1161 \copier    program    "python -tt $$s/scripts/ext_copy.py $$i $$o"
1162 ''')
1163
1164
1165 def processLayoutFile(file, bool_docbook):
1166     ''' process layout file and get a line of result
1167
1168         Declare lines look like this:
1169
1170         \DeclareLaTeXClass[<requirements>]{<description>}
1171         
1172         Optionally, a \DeclareCategory line follows:
1173         
1174         \DeclareCategory{<category>}
1175         
1176         So for example (article.layout, scrbook.layout, svjog.layout)
1177         
1178         \DeclareLaTeXClass{article}
1179         \DeclareCategory{Articles}
1180         
1181         \DeclareLaTeXClass[scrbook]{book (koma-script)}
1182         \DeclareCategory{Books}
1183         
1184         \DeclareLaTeXClass[svjour,svjog.clo]{article (Springer - svjour/jog)}
1185
1186         we'd expect this output:
1187
1188         "article" "article" "article" "false" "article.cls" "Articles"
1189         "scrbook" "scrbook" "book (koma-script)" "false" "scrbook.cls" "Books"
1190         "svjog" "svjour" "article (Springer - svjour/jog)" "false" "svjour.cls,svjog.clo" ""
1191     '''
1192     def checkForClassExtension(x):
1193         '''if the extension for a latex class is not
1194            provided, add .cls to the classname'''
1195         if not '.' in x:
1196             return x.strip() + '.cls'
1197         else:
1198             return x.strip()
1199     classname = file.split(os.sep)[-1].split('.')[0]
1200     # return ('LaTeX', '[a,b]', 'a', ',b,c', 'article') for \DeclareLaTeXClass[a,b,c]{article}
1201     p = re.compile(r'^\s*#\s*\\Declare(LaTeX|DocBook)Class\s*(\[([^,]*)(,.*)*\])*\s*{(.*)}\s*$')
1202     q = re.compile(r'^\s*#\s*\\DeclareCategory{(.*)}\s*$')
1203     classdeclaration = ""
1204     categorydeclaration = '""'
1205     for line in open(file).readlines():
1206         res = p.search(line)
1207         qres = q.search(line)
1208         if res != None:
1209             (classtype, optAll, opt, opt1, desc) = res.groups()
1210             avai = {'LaTeX':'false', 'DocBook':bool_docbook}[classtype]
1211             if opt == None:
1212                 opt = classname
1213                 prereq_latex = checkForClassExtension(classname)
1214             else:
1215                 prereq_list = optAll[1:-1].split(',')
1216                 prereq_list = map(checkForClassExtension, prereq_list)
1217                 prereq_latex = ','.join(prereq_list)
1218             prereq_docbook = {'true':'', 'false':'docbook'}[bool_docbook]
1219             prereq = {'LaTeX':prereq_latex, 'DocBook':prereq_docbook}[classtype]
1220             classdeclaration = '"%s" "%s" "%s" "%s" "%s"' % (classname, opt, desc, avai, prereq)
1221             if categorydeclaration != '""':
1222                 return classdeclaration + " " + categorydeclaration
1223         if qres != None:
1224              categorydeclaration = '"%s"' % (qres.groups()[0])
1225              if classdeclaration != "":
1226                  return classdeclaration + " " + categorydeclaration
1227     if classdeclaration != "":
1228         return classdeclaration + " " + categorydeclaration
1229     logger.warning("Layout file " + file + " has no \DeclareXXClass line. ")
1230     return ""
1231
1232
1233 def checkLatexConfig(check_config, bool_docbook):
1234     ''' Explore the LaTeX configuration
1235         Return None (will be passed to sys.exit()) for success.
1236     '''
1237     msg = 'checking LaTeX configuration... '
1238     # if --without-latex-config is forced, or if there is no previous
1239     # version of textclass.lst, re-generate a default file.
1240     if not os.path.isfile('textclass.lst') or not check_config:
1241         # remove the files only if we want to regenerate
1242         removeFiles(['textclass.lst', 'packages.lst'])
1243         #
1244         # Then, generate a default textclass.lst. In case configure.py
1245         # fails, we still have something to start lyx.
1246         logger.info(msg + ' default values')
1247         logger.info('+checking list of textclasses... ')
1248         tx = open('textclass.lst', 'w')
1249         tx.write('''
1250 # This file declares layouts and their associated definition files
1251 # (include dir. relative to the place where this file is).
1252 # It contains only default values, since chkconfig.ltx could not be run
1253 # for some reason. Run ./configure.py if you need to update it after a
1254 # configuration change.
1255 ''')
1256         # build the list of available layout files and convert it to commands
1257         # for chkconfig.ltx
1258         foundClasses = []
1259         for file in glob.glob( os.path.join('layouts', '*.layout') ) + \
1260             glob.glob( os.path.join(srcdir, 'layouts', '*.layout' ) ) :
1261             # valid file?
1262             if not os.path.isfile(file):
1263                 continue
1264             # get stuff between /xxxx.layout .
1265             classname = file.split(os.sep)[-1].split('.')[0]
1266             #  tr ' -' '__'`
1267             cleanclass = classname.replace(' ', '_')
1268             cleanclass = cleanclass.replace('-', '_')
1269             # make sure the same class is not considered twice
1270             if foundClasses.count(cleanclass) == 0: # not found before
1271                 foundClasses.append(cleanclass)
1272                 retval = processLayoutFile(file, bool_docbook)
1273                 if retval != "":
1274                     tx.write(retval)
1275         tx.close()
1276         logger.info('\tdone')
1277     if not os.path.isfile('packages.lst') or not check_config:
1278         logger.info('+generating default list of packages... ')
1279         removeFiles(['packages.lst'])
1280         tx = open('packages.lst', 'w')
1281         tx.close()
1282         logger.info('\tdone')
1283     if not check_config:
1284         return None
1285     # the following will generate textclass.lst.tmp, and packages.lst.tmp
1286     logger.info(msg + '\tauto')
1287     removeFiles(['chkconfig.classes', 'chkconfig.vars', 'chklayouts.tex',
1288         'wrap_chkconfig.ltx'])
1289     rmcopy = False
1290     if not os.path.isfile( 'chkconfig.ltx' ):
1291         shutil.copyfile( os.path.join(srcdir, 'chkconfig.ltx'), 'chkconfig.ltx' )
1292         rmcopy = True
1293     writeToFile('wrap_chkconfig.ltx', '%s\n\\input{chkconfig.ltx}\n' % docbook_cmd)
1294     # Construct the list of classes to test for.
1295     # build the list of available layout files and convert it to commands
1296     # for chkconfig.ltx
1297     declare = re.compile(r'^\s*#\s*\\Declare(LaTeX|DocBook)Class\s*(\[([^,]*)(,.*)*\])*\s*{(.*)}\s*$')
1298     category = re.compile(r'^\s*#\s*\\DeclareCategory{(.*)}\s*$')
1299     empty = re.compile(r'^\s*$')
1300     testclasses = list()
1301     for file in glob.glob( os.path.join('layouts', '*.layout') ) + \
1302         glob.glob( os.path.join(srcdir, 'layouts', '*.layout' ) ) :
1303         nodeclaration = False
1304         if not os.path.isfile(file):
1305             continue
1306         classname = file.split(os.sep)[-1].split('.')[0]
1307         decline = ""
1308         catline = ""
1309         for line in open(file).readlines():
1310             if not empty.match(line) and line[0] != '#':
1311                 if decline == "":
1312                     logger.warning("Failed to find valid \Declare line for layout file `" + file + "'.\n\t=> Skipping this file!")
1313                     nodeclaration = True
1314                 # A class, but no category declaration. Just break.
1315                 break
1316             if declare.search(line) != None:
1317                 decline = "\\TestDocClass{%s}{%s}" % (classname, line[1:].strip())
1318                 testclasses.append(decline)
1319             elif category.search(line) != None:
1320                 catline = "\\DeclareCategory{%s}{%s}" % (classname, category.search(line).groups()[0])
1321                 testclasses.append(catline)
1322             if catline == "" or decline == "":
1323                 continue
1324             break
1325         if nodeclaration:
1326             continue
1327     testclasses.sort()
1328     cl = open('chklayouts.tex', 'w')
1329     for line in testclasses:
1330         cl.write(line + '\n')
1331     cl.close()
1332     #
1333     # we have chklayouts.tex, then process it
1334     latex_out = cmdOutput(LATEX + ' wrap_chkconfig.ltx', True)
1335     while True:
1336         line = latex_out.readline()
1337         if not line:
1338             break;
1339         if re.match('^\+', line):
1340             logger.info(line.strip())
1341     # if the command succeeds, None will be returned
1342     ret = latex_out.close()
1343     #
1344     # remove the copied file
1345     if rmcopy:
1346         removeFiles( [ 'chkconfig.ltx' ] )
1347     #
1348     # currently, values in chkconfig are only used to set
1349     # \font_encoding
1350     values = {}
1351     for line in open('chkconfig.vars').readlines():
1352         key, val = re.sub('-', '_', line).split('=')
1353         val = val.strip()
1354         values[key] = val.strip("'")
1355     # chk_fontenc may not exist
1356     try:
1357         addToRC(r'\font_encoding "%s"' % values["chk_fontenc"])
1358     except:
1359         pass
1360     # if configure successed, move textclass.lst.tmp to textclass.lst
1361     # and packages.lst.tmp to packages.lst
1362     if os.path.isfile('textclass.lst.tmp') and len(open('textclass.lst.tmp').read()) > 0 \
1363         and os.path.isfile('packages.lst.tmp') and len(open('packages.lst.tmp').read()) > 0:
1364         shutil.move('textclass.lst.tmp', 'textclass.lst')
1365         shutil.move('packages.lst.tmp', 'packages.lst')
1366     return ret
1367
1368
1369 def checkModulesConfig():
1370   removeFiles(['lyxmodules.lst', 'chkmodules.tex'])
1371
1372   logger.info('+checking list of modules... ')
1373   tx = open('lyxmodules.lst', 'w')
1374   tx.write('''## This file declares modules and their associated definition files.
1375 ## It has been automatically generated by configure
1376 ## Use "Options/Reconfigure" if you need to update it after a
1377 ## configuration change.
1378 ## "ModuleName" "filename" "Description" "Packages" "Requires" "Excludes" "Category"
1379 ''')
1380
1381   # build the list of available modules
1382   seen = []
1383   # note that this searches the local directory first, then the
1384   # system directory. that way, we pick up the user's version first.
1385   for file in glob.glob( os.path.join('layouts', '*.module') ) + \
1386       glob.glob( os.path.join(srcdir, 'layouts', '*.module' ) ) :
1387       # valid file?
1388       logger.info(file)
1389       if not os.path.isfile(file):
1390           continue
1391
1392       filename = file.split(os.sep)[-1]
1393       filename = filename[:-7]
1394       if seen.count(filename):
1395           continue
1396
1397       seen.append(filename)
1398       retval = processModuleFile(file, filename, bool_docbook)
1399       if retval != "":
1400           tx.write(retval)
1401   tx.close()
1402   logger.info('\tdone')
1403
1404
1405 def processModuleFile(file, filename, bool_docbook):
1406     ''' process module file and get a line of result
1407
1408         The top of a module file should look like this:
1409           #\DeclareLyXModule[LaTeX Packages]{ModuleName}
1410           #DescriptionBegin
1411           #...body of description...
1412           #DescriptionEnd
1413           #Requires: [list of required modules]
1414           #Excludes: [list of excluded modules]
1415           #Category: [category name]
1416         The last three lines are optional (though do give a category).
1417         We expect output:
1418           "ModuleName" "filename" "Description" "Packages" "Requires" "Excludes" "Category"
1419     '''
1420     remods = re.compile(r'\DeclareLyXModule\s*(?:\[([^]]*?)\])?{(.*)}')
1421     rereqs = re.compile(r'#+\s*Requires: (.*)')
1422     reexcs = re.compile(r'#+\s*Excludes: (.*)')
1423     recaty = re.compile(r'#+\s*Category: (.*)')
1424     redbeg = re.compile(r'#+\s*DescriptionBegin\s*$')
1425     redend = re.compile(r'#+\s*DescriptionEnd\s*$')
1426
1427     modname = desc = pkgs = req = excl = catgy = ""
1428     readingDescription = False
1429     descLines = []
1430
1431     for line in open(file).readlines():
1432       if readingDescription:
1433         res = redend.search(line)
1434         if res != None:
1435           readingDescription = False
1436           desc = " ".join(descLines)
1437           # Escape quotes.
1438           desc = desc.replace('"', '\\"')
1439           continue
1440         descLines.append(line[1:].strip())
1441         continue
1442       res = redbeg.search(line)
1443       if res != None:
1444         readingDescription = True
1445         continue
1446       res = remods.search(line)
1447       if res != None:
1448           (pkgs, modname) = res.groups()
1449           if pkgs == None:
1450             pkgs = ""
1451           else:
1452             tmp = [s.strip() for s in pkgs.split(",")]
1453             pkgs = ",".join(tmp)
1454           continue
1455       res = rereqs.search(line)
1456       if res != None:
1457         req = res.group(1)
1458         tmp = [s.strip() for s in req.split("|")]
1459         req = "|".join(tmp)
1460         continue
1461       res = reexcs.search(line)
1462       if res != None:
1463         excl = res.group(1)
1464         tmp = [s.strip() for s in excl.split("|")]
1465         excl = "|".join(tmp)
1466         continue
1467       res = recaty.search(line)
1468       if res != None:
1469         catgy = res.group(1)
1470         continue
1471
1472     if modname == "":
1473       logger.warning("Module file without \DeclareLyXModule line. ")
1474       return ""
1475
1476     if pkgs != "":
1477         # this module has some latex dependencies:
1478         # append the dependencies to chkmodules.tex,
1479         # which is \input'ed by chkconfig.ltx
1480         testpackages = list()
1481         for pkg in pkgs.split(","):
1482             if "->" in pkg:
1483                 # this is a converter dependency: skip
1484                 continue
1485             if pkg.endswith(".sty"):
1486                 pkg = pkg[:-4]
1487             testpackages.append("\\TestPackage{%s}" % (pkg,))
1488         cm = open('chkmodules.tex', 'a')
1489         for line in testpackages:
1490             cm.write(line + '\n')
1491         cm.close()
1492
1493     return '"%s" "%s" "%s" "%s" "%s" "%s" "%s"\n' % (modname, filename, desc, pkgs, req, excl, catgy)
1494
1495
1496 def checkTeXAllowSpaces():
1497     ''' Let's check whether spaces are allowed in TeX file names '''
1498     tex_allows_spaces = 'false'
1499     if lyx_check_config:
1500         msg = "Checking whether TeX allows spaces in file names... "
1501         writeToFile('a b.tex', r'\message{working^^J}' )
1502         if LATEX != '':
1503             if os.name == 'nt' or sys.platform == 'cygwin':
1504                 latex_out = cmdOutput(LATEX + r""" "\nonstopmode\input{\"a b\"}\makeatletter\@@end" """)
1505             else:
1506                 latex_out = cmdOutput(LATEX + r""" '\nonstopmode\input{"a b"}\makeatletter\@@end' """)
1507         else:
1508             latex_out = ''
1509         if 'working' in latex_out:
1510             logger.info(msg + 'yes')
1511             tex_allows_spaces = 'true'
1512         else:
1513             logger.info(msg + 'no')
1514             tex_allows_spaces = 'false'
1515         addToRC(r'\tex_allows_spaces ' + tex_allows_spaces)
1516         removeFiles( [ 'a b.tex', 'a b.log', 'texput.log' ])
1517
1518
1519 def rescanTeXFiles():
1520     ''' Run kpsewhich to update information about TeX files '''
1521     logger.info("+Indexing TeX files... ")
1522     if not os.path.isfile( os.path.join(srcdir, 'scripts', 'TeXFiles.py') ):
1523         logger.error("configure: error: cannot find TeXFiles.py script")
1524         sys.exit(1)
1525     tfp = cmdOutput("python -tt " + '"' + os.path.join(srcdir, 'scripts', 'TeXFiles.py') + '"')
1526     logger.info(tfp)
1527     logger.info("\tdone")
1528
1529
1530 def removeTempFiles():
1531     # Final clean-up
1532     if not lyx_keep_temps:
1533         removeFiles(['chkconfig.vars', 'chklatex.ltx', 'chklatex.log',
1534             'chklayouts.tex', 'chkmodules.tex', 'missfont.log',
1535             'wrap_chkconfig.ltx', 'wrap_chkconfig.log'])
1536
1537
1538 if __name__ == '__main__':
1539     lyx_check_config = True
1540     lyx_kpsewhich = True
1541     outfile = 'lyxrc.defaults'
1542     lyxrc_fileformat = 19
1543     rc_entries = ''
1544     lyx_keep_temps = False
1545     version_suffix = ''
1546     lyx_binary_dir = ''
1547     ## Parse the command line
1548     for op in sys.argv[1:]:   # default shell/for list is $*, the options
1549         if op in [ '-help', '--help', '-h' ]:
1550             print '''Usage: configure [options]
1551 Options:
1552     --help                   show this help lines
1553     --keep-temps             keep temporary files (for debug. purposes)
1554     --without-kpsewhich      do not update TeX files information via kpsewhich
1555     --without-latex-config   do not run LaTeX to determine configuration
1556     --with-version-suffix=suffix suffix of binary installed files
1557     --binary-dir=directory   directory of binary installed files
1558 '''
1559             sys.exit(0)
1560         elif op == '--without-kpsewhich':
1561             lyx_kpsewhich = False
1562         elif op == '--without-latex-config':
1563             lyx_check_config = False
1564         elif op == '--keep-temps':
1565             lyx_keep_temps = True
1566         elif op[0:22] == '--with-version-suffix=':  # never mind if op is not long enough
1567             version_suffix = op[22:]
1568         elif op[0:13] == '--binary-dir=':
1569             lyx_binary_dir = op[13:]
1570         else:
1571             print "Unknown option", op
1572             sys.exit(1)
1573     #
1574     # check if we run from the right directory
1575     srcdir = os.path.dirname(sys.argv[0])
1576     if srcdir == '':
1577         srcdir = '.'
1578     if not os.path.isfile( os.path.join(srcdir, 'chkconfig.ltx') ):
1579         logger.error("configure: error: cannot find chkconfig.ltx script")
1580         sys.exit(1)
1581     setEnviron()
1582     if sys.platform == 'darwin' and len(version_suffix) > 0:
1583         checkUpgrade()
1584     createDirectories()
1585     dtl_tools = checkDTLtools()
1586     ## Write the first part of outfile
1587     writeToFile(outfile, '''# This file has been automatically generated by LyX' lib/configure.py
1588 # script. It contains default settings that have been determined by
1589 # examining your system. PLEASE DO NOT MODIFY ANYTHING HERE! If you
1590 # want to customize LyX, use LyX' Preferences dialog or modify directly
1591 # the "preferences" file instead. Any setting in that file will
1592 # override the values given here.
1593
1594 Format %i
1595
1596 ''' % lyxrc_fileformat)
1597     # check latex
1598     LATEX = checkLatex(dtl_tools)
1599     # check java and perl before any checkProg that may require them
1600     java = checkProg('a java interpreter', ['java'])[1]
1601     perl = checkProg('a perl interpreter', ['perl'])[1]
1602     (inkscape_path, inkscape_name) = os.path.split(checkInkscape())
1603     checkFormatEntries(dtl_tools)
1604     checkConverterEntries()
1605     (chk_docbook, bool_docbook, docbook_cmd) = checkDocBook()
1606     checkTeXAllowSpaces()
1607     windows_style_tex_paths = checkTeXPaths()
1608     if windows_style_tex_paths != '':
1609         addToRC(r'\tex_expects_windows_paths %s' % windows_style_tex_paths)
1610     checkOtherEntries()
1611     if lyx_kpsewhich:
1612         rescanTeXFiles()
1613     checkModulesConfig()
1614     # --without-latex-config can disable lyx_check_config
1615     ret = checkLatexConfig(lyx_check_config and LATEX != '', bool_docbook)
1616     removeTempFiles()
1617     # The return error code can be 256. Because most systems expect an error code
1618     # in the range 0-127, 256 can be interpretted as 'success'. Because we expect
1619     # a None for success, 'ret is not None' is used to exit.
1620     sys.exit(ret is not None)