]> git.lyx.org Git - lyx.git/blob - lib/scripts/lyxpreview_tools.py
Rename LFUN_OPTIONAL_INSERT as LFUN_ARGUMENT_INSERT.
[lyx.git] / lib / scripts / lyxpreview_tools.py
1 #! /usr/bin/env python
2
3 # file lyxpreview_tools.py
4 # This file is part of LyX, the document processor.
5 # Licence details can be found in the file COPYING.
6
7 # author Angus Leeming
8 # Full author contact details are available in file CREDITS
9
10 # and with much help testing the code under Windows from
11 #   Paul A. Rubin, rubin@msu.edu.
12
13 # A repository of the following functions, used by the lyxpreview2xyz scripts.
14 # copyfileobj, error, find_exe, find_exe_or_terminate, make_texcolor, mkstemp,
15 # run_command, warning
16
17 import os, re, string, sys, tempfile
18
19 use_win32_modules = 0
20 if os.name == "nt":
21     use_win32_modules = 1
22     try:
23         import pywintypes
24         import win32con
25         import win32event
26         import win32file
27         import win32pipe
28         import win32process
29         import win32security
30         import winerror
31     except:
32         sys.stderr.write("Consider installing the PyWin extension modules "\
33                          "if you're irritated by windows appearing briefly.\n")
34         use_win32_modules = 0
35
36
37 def warning(message):
38     sys.stderr.write(message + '\n')
39
40
41 def error(message):
42     sys.stderr.write(message + '\n')
43     sys.exit(1)
44
45
46 def make_texcolor(hexcolor, graphics):
47     # Test that the input string contains 6 hexadecimal chars.
48     hexcolor_re = re.compile("^[0-9a-fA-F]{6}$")
49     if not hexcolor_re.match(hexcolor):
50         error("Cannot convert color '%s'" % hexcolor)
51
52     red   = float(string.atoi(hexcolor[0:2], 16)) / 255.0
53     green = float(string.atoi(hexcolor[2:4], 16)) / 255.0
54     blue  = float(string.atoi(hexcolor[4:6], 16)) / 255.0
55
56     if graphics:
57         return "%f,%f,%f" % (red, green, blue)
58     else:
59         return "rgb %f %f %f" % (red, green, blue)
60
61
62 def find_exe(candidates, path):
63     for prog in candidates:
64         for directory in path:
65             if os.name == "nt":
66                 full_path = os.path.join(directory, prog + ".exe")
67             else:
68                 full_path = os.path.join(directory, prog)
69
70             if os.access(full_path, os.X_OK):
71                 # The thing is in the PATH already (or we wouldn't
72                 # have found it). Return just the basename to avoid
73                 # problems when the path to the executable contains
74                 # spaces.
75                 return os.path.basename(full_path)
76
77     return None
78
79
80 def find_exe_or_terminate(candidates, path):
81     exe = find_exe(candidates, path)
82     if exe == None:
83         error("Unable to find executable from '%s'" % string.join(candidates))
84
85     return exe
86
87
88 def run_command_popen(cmd):
89     handle = os.popen(cmd, 'r')
90     cmd_stdout = handle.read()
91     cmd_status = handle.close()
92
93     return cmd_status, cmd_stdout
94
95
96 def run_command_win32(cmd):
97     sa = win32security.SECURITY_ATTRIBUTES()
98     sa.bInheritHandle = True
99     stdout_r, stdout_w = win32pipe.CreatePipe(sa, 0)
100
101     si = win32process.STARTUPINFO()
102     si.dwFlags = (win32process.STARTF_USESTDHANDLES
103                   | win32process.STARTF_USESHOWWINDOW)
104     si.wShowWindow = win32con.SW_HIDE
105     si.hStdOutput = stdout_w
106
107     process, thread, pid, tid = \
108              win32process.CreateProcess(None, cmd, None, None, True,
109                                         0, None, None, si)
110     if process == None:
111         return -1, ""
112
113     # Must close the write handle in this process, or ReadFile will hang.
114     stdout_w.Close()
115
116     # Read the pipe until we get an error (including ERROR_BROKEN_PIPE,
117     # which is okay because it happens when child process ends).
118     data = ""
119     error = 0
120     while 1:
121         try:
122             hr, buffer = win32file.ReadFile(stdout_r, 4096)
123             if hr != winerror.ERROR_IO_PENDING:
124                 data = data + buffer
125
126         except pywintypes.error, e:
127             if e.args[0] != winerror.ERROR_BROKEN_PIPE:
128                 error = 1
129             break
130
131     if error:
132         return -2, ""
133
134     # Everything is okay --- the called process has closed the pipe.
135     # For safety, check that the process ended, then pick up its exit code.
136     win32event.WaitForSingleObject(process, win32event.INFINITE)
137     if win32process.GetExitCodeProcess(process):
138         return -3, ""
139
140     return None, data
141
142
143 def run_command(cmd):
144     if use_win32_modules:
145         return run_command_win32(cmd)
146     else:
147         return run_command_popen(cmd)
148
149
150 def get_version_info():
151     version_re = re.compile("([0-9])\.([0-9])")
152
153     match = version_re.match(sys.version)
154     if match == None:
155         error("Unable to extract version info from 'sys.version'")
156
157     return string.atoi(match.group(1)), string.atoi(match.group(2))
158
159
160 def copyfileobj(fsrc, fdst, rewind=0, length=16*1024):
161     """copy data from file-like object fsrc to file-like object fdst"""
162     if rewind:
163         fsrc.flush()
164         fsrc.seek(0)
165
166     while 1:
167         buf = fsrc.read(length)
168         if not buf:
169             break
170         fdst.write(buf)
171
172
173 class TempFile:
174     """clone of tempfile.TemporaryFile to use with python < 2.0."""
175     # Cache the unlinker so we don't get spurious errors at shutdown
176     # when the module-level "os" is None'd out.  Note that this must
177     # be referenced as self.unlink, because the name TempFile
178     # may also get None'd out before __del__ is called.
179     unlink = os.unlink
180
181     def __init__(self):
182         self.filename = tempfile.mktemp()
183         self.file = open(self.filename,"w+b")
184         self.close_called = 0
185
186     def close(self):
187         if not self.close_called:
188             self.close_called = 1
189             self.file.close()
190             self.unlink(self.filename)
191
192     def __del__(self):
193         self.close()
194
195     def read(self, size = -1):
196         return self.file.read(size)
197
198     def write(self, line):
199         return self.file.write(line)
200
201     def seek(self, offset):
202         return self.file.seek(offset)
203
204     def flush(self):
205         return self.file.flush()
206
207
208 def mkstemp():
209     """create a secure temporary file and return its object-like file"""
210     major, minor = get_version_info()
211
212     if major >= 2 and minor >= 0:
213         return tempfile.TemporaryFile()
214     else:
215         return TempFile()