-
Notifications
You must be signed in to change notification settings - Fork 366
/
system_check.py
771 lines (617 loc) · 24.5 KB
/
system_check.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
import copy
import os
import re
import signal
import subprocess
import sys
import textwrap
import threading
import traceback
from io import StringIO
from shutil import which
import sublime
import sublime_plugin
from .latextools_plugin import (
add_plugin_path, get_plugin, NoSuchPluginException,
_classname_to_internal_name
)
from .latextools_utils import get_setting
from .latextools_utils.distro_utils import using_miktex
from .latextools_utils.external_command import check_output
from .latextools_utils.output_directory import (
get_aux_directory, get_output_directory, get_jobname
)
from .latextools_utils.progress_indicator import ProgressIndicator
from .latextools_utils.tex_directives import parse_tex_directives
from .latextools_utils.sublime_utils import get_sublime_exe
from .jumpToPDF import DEFAULT_VIEWERS
from .getTeXRoot import get_tex_root
from .st_preview.preview_utils import (
convert_installed, ghostscript_installed,
__get_gs_command as get_gs_command
)
if sublime.platform() == 'windows':
from .st_preview.preview_utils import get_system_root
def expand_vars(texpath):
return os.path.expandvars(texpath)
def update_environment(old, new):
old.update(new.items())
def _get_texpath(view):
texpath = get_setting(sublime.platform(), {}, view).get('texpath')
return expand_vars(texpath) if texpath is not None else None
class SubprocessTimeoutThread(threading.Thread):
'''
A thread for monitoring a subprocess to kill the subprocess after a fixed
period of time
'''
def __init__(self, timeout, *args, **kwargs):
super(SubprocessTimeoutThread, self).__init__()
self.args = args
self.kwargs = kwargs
# ignore the preexec_fn if specified
if 'preexec_fn' in kwargs:
del self.kwargs['preexec_fn']
if 'startupinfo' in kwargs:
del self.kwargs['startupinfo']
if sublime.platform() == 'windows':
# ensure console window doesn't show
self.kwargs['startupinfo'] = startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
self.kwargs['shell'] = True
self.timeout = timeout
self.returncode = None
self.stdout = None
self.stderr = None
def run(self):
if sublime.platform() != 'windows':
preexec_fn = os.setsid
else:
preexec_fn = None
try:
self._p = p = subprocess.Popen(
*self.args,
preexec_fn=preexec_fn,
**self.kwargs
)
self.stdout, self.stderr = p.communicate()
self.returncode = p.returncode
except Exception as e:
# just in case...
self.kill_process()
raise e
def start(self):
super(SubprocessTimeoutThread, self).start()
self.join(self.timeout)
# if the timeout occurred, kill the entire process chain
if self.isAlive():
self.kill_process()
def kill_process(self):
try:
if sublime.platform == 'windows':
startupinfo = subprocess.STARTUPINFO()
startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
subprocess.call(
'taskkill /t /f /pid {pid}'.format(pid=self._p.pid),
startupinfo=startupinfo,
shell=True
)
else:
os.killpg(self._p.pid, signal.SIGKILL)
except:
traceback.print_exc()
def get_version_info(executable, env=None):
print('Checking {0}...'.format(executable))
if env is None:
env = os.environ
version = '--version'
# gs / gswin32c has a different format for --version vs -version
if (os.path.splitext(os.path.basename(executable))[0] in
['gs', 'gswin32c', 'gswin64c']):
version = '-version'
try:
t = SubprocessTimeoutThread(
30, # wait 30 seconds
[executable, version],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
shell=False,
env=env
)
t.start()
stdout = t.stdout
if stdout is None:
return None
return re.split(
r'\r?\n', stdout.decode(encoding='utf-8', errors='ignore').strip(), 1
)[0].lstrip('Version: ')
except:
return None
def get_tex_path_variable_texlive(variable, env=None):
'''
Uses kpsewhich to read the value of a given TeX PATH variable, such as
TEXINPUTS.
'''
print('Reading path for {0}...'.format(variable))
if env is None:
env = os.environ
try:
t = SubprocessTimeoutThread(
30, # wait up to 30 seconds
['kpsewhich', '--expand-path=$' + variable],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
shell=False,
env=env
)
t.start()
stdout = t.stdout
if stdout is None:
return None
return u'\n'.join(re.split(r'\r?\n', stdout.decode('utf-8').strip()))
except:
return None
def get_tex_path_variable_miktex(variable, env=None):
'''
Uses findtexmf to find the values of a given TeX PATH variable, such as
TEXINPUTS
'''
print('Reading path for {0}...'.format(variable))
if env is None:
env = os.environ
try:
command = ['findtexmf', '-alias=latex']
command.append(
('-show-path={' + variable + '}').format(
TEXINPUTS='tex',
BIBINPUTS='bib',
BSTINPUTS='bst'
)
)
t = SubprocessTimeoutThread(
30, # wait up to 30 seconds
command,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
shell=False,
env=env
)
t.start()
stdout = t.stdout
if stdout is None:
return None
output = u'\n'.join(re.split(r'\r?\n', stdout.decode('utf-8').strip()))
return os.pathsep.join([
os.path.normpath(p) for p in output.split(os.pathsep)
])
except:
return None
def kpsewhich(file):
try:
return check_output(['kpsewhich', file])
except Exception:
return None
def get_max_width(table, column):
return max(len(str(row[column])) for row in table)
def tabulate(table, wrap_column=0, output=sys.stdout):
'''
Utility function to layout a table. A table is a list of list, with each
sub-list representing a row of values. The first row in the table is taken
to be the header row.
Format looks like this:
Header1 Header2
------- -------
Value1 Value2
i.e., each column is displayed at the maximum number of characters of any
field in that column; the spacing between two columns is two spaces from
the length of the longest entry; and each header is followed by a series
of dashes as long as the header.
Args:
table: a list of lists containg the data to be formatted
wrap_column: if a positive number, specifies the maximum number of
characters to allow in any column
output: the output stream to write to; defaults to sys.stdout
'''
column_widths = [get_max_width(table, i) for i in range(len(table[0]))]
# Ensure the *last* column is only as long as it needs to be
# This is necessary for the syntax to work properly
column_widths[-1] = len(table[0][-1])
if wrap_column is not None and wrap_column > 0:
column_widths = [width if width <= wrap_column else wrap_column
for width in column_widths]
headers = table.pop(0)
for i in range(len(headers)):
padding = 2 if i < len(headers) - 1 else 0
output.write(str(headers[i]).ljust(column_widths[i] + padding))
output.write(u'\n')
for i in range(len(headers)):
padding = 2 if i < len(headers) - 1 else 0
if headers[i]:
output.write(
(u'-' * len(headers[i])).ljust(column_widths[i] + padding)
)
else:
output.write(u''.ljust(column_widths[i] + padding))
output.write(u'\n')
added_row = False
for j, row in enumerate(table):
for i in range(len(row)):
padding = 2 if i < len(row) - 1 else 0
column = str(row[i])
if wrap_column is not None and wrap_column != 0 and \
len(column) > wrap_column:
wrapped = textwrap.wrap(column, wrap_column)
column = wrapped.pop(0)
lines = u''.join(wrapped)
if added_row:
table[j + 1][i] = lines
else:
table.insert(j + 1, [u''] * len(row))
table[j + 1][i] = lines
added_row = True
output.write(column.ljust(column_widths[i] + padding))
added_row = False
output.write(u'\n')
output.write(u'\n')
class SystemCheckThread(threading.Thread):
def __init__(self, sublime_exe=None, uses_miktex=False, texpath=None,
build_env=None, view=None, on_done=None):
super(SystemCheckThread, self).__init__()
self.sublime_exe = sublime_exe
self.uses_miktex = uses_miktex
self.texpath = texpath
self.build_env = build_env
self.view = view
self.on_done = on_done
def run(self):
texpath = self.texpath
results = []
env = copy.deepcopy(os.environ)
if texpath is not None:
env['PATH'] = texpath
if self.build_env is not None:
update_environment(env, self.build_env)
table = [
['Variable', 'Value']
]
table.append(['PATH', env.get('PATH', '')])
if self.uses_miktex:
get_tex_path_variable = get_tex_path_variable_miktex
should_run = which('findtexmf', path=texpath) is not None
else:
get_tex_path_variable = get_tex_path_variable_texlive
should_run = which('kpsewhich', path=texpath) is not None
if should_run:
for var in ['TEXINPUTS', 'BIBINPUTS', 'BSTINPUTS']:
table.append([var, get_tex_path_variable(var, env)])
if self.uses_miktex:
for var in ['BIBTEX', 'LATEX', 'PDFLATEX', 'MAKEINDEX',
'MAKEINFO', 'TEX', 'PDFTEX', 'TEXINDEX']:
value = env.get(var, None)
if value is not None:
table.append([var, value])
results.append(table)
table = [
['Program', 'Location', 'Status', 'Version']
]
# skip sublime_exe on OS X
# we only use this for the hack to re-focus on ST
# which doesn't work on OS X anyway
if sublime.platform() != 'osx':
sublime_exe = self.sublime_exe
available = sublime_exe is not None
if available:
if not os.path.isabs(sublime_exe):
sublime_exe = which(sublime_exe)
basename, extension = os.path.splitext(sublime_exe)
if extension is not None:
sublime_exe = ''.join((basename, extension.lower()))
version_info = get_version_info(
sublime_exe, env=env
) if available else None
table.append([
'sublime',
sublime_exe if available and version_info is not None else u'',
(u'available'
if available and version_info is not None else u'missing'),
version_info if version_info is not None else u'unavailable'
])
# a list of programs, each program is either a string or a list
# of alternatives (e.g. 32/64 bit version)
programs = [
'latexmk' if not self.uses_miktex else 'texify', 'pdflatex',
'xelatex', 'lualatex', 'biber', 'bibtex', 'bibtex8', 'kpsewhich'
]
# ImageMagick requires gs to work with PDFs
programs += [['magick', 'convert']]
for program in programs:
if isinstance(program, list):
program_list = program
program = program_list[0]
location = None
for p in program_list:
location = which(p, path=texpath)
if location is not None:
program = p
break
else:
location = which(program, path=texpath)
# convert.exe on Windows can refer to %sysroot%\convert.exe,
# which should not be used; in that case, simple report magick.exe
# as not existing
if program == 'convert' and sublime.platform() == 'windows':
system_root = get_system_root().lower()
if location.lower().startswith(system_root):
program = 'magick'
location = None
available = location is not None
if available:
basename, extension = os.path.splitext(location)
if extension is not None:
location = ''.join((basename, extension.lower()))
version_info = get_version_info(
location, env=env
) if available else None
available_str = (
u'available' if available and version_info is not None
else u'missing'
)
if (available and program in ['magick', 'convert'] and
not convert_installed()):
available_str = u'restart required'
table.append([
program,
location if available and version_info is not None else u'',
available_str,
version_info if version_info is not None else u'unavailable'
])
program = 'ghostscript'
location = get_gs_command()
available = location is not None
if available:
basename, extension = os.path.splitext(location)
if extension is not None:
location = ''.join((basename, extension.lower()))
version_info = get_version_info(
location, env=env
) if available else None
available_str = (
u'available' if available and version_info is not None
else u'missing'
)
if available and not ghostscript_installed():
available_str = u'restart required'
table.append([
program,
location if available and version_info is not None else u'',
available_str,
version_info if version_info is not None else u'unavailable'
])
results.append(table)
# This really only works for the default template
# Note that no attempt is made to find other packages that the
# included package depends on
if (ghostscript_installed() and
get_setting('preview_math_template_file') is None and
get_setting("preview_math_mode", view=self.view) != "none"):
find_package_re = re.compile(
r'\\usepackage(?:\[[^\]]*\])?\{(?P<pkg>[^\}]*)\}'
)
packages = ["standalone.cls", "preview.sty", "xcolor.sty"]
package_settings = get_setting(
"preview_math_template_packages", [], view=self.view)
# extract all packages from each package line
for pkg_str in package_settings:
# search for all \usepackage in the line
for m in find_package_re.finditer(pkg_str):
pkg_arg = m.group("pkg")
# search for each package in the \usepackage argument
for pkg in pkg_arg.split(","):
pkg = pkg.strip()
if pkg:
packages.append(pkg + ".sty")
if packages:
table = [[u'Packages for equation preview', u'Status']]
for package in packages:
available = kpsewhich(package) is not None
package_name = package.split(".")[0]
table.append([
package_name,
(u'available' if available else u'missing')
])
results.append(table)
self._on_main_thread(results)
def _on_main_thread(self, results):
builder_name = get_setting(
'builder', 'traditional', view=self.view
)
if builder_name in ['', 'default']:
builder_name = 'traditional'
builder_settings = get_setting('builder_settings', view=self.view)
builder_path = get_setting('builder_path', view=self.view)
if builder_name in ['simple', 'traditional', 'script']:
builder_path = None
else:
bld_path = os.path.join(sublime.packages_path(), builder_path)
add_plugin_path(bld_path)
builder_name = _classname_to_internal_name(builder_name)
try:
get_plugin('{0}_builder'.format(builder_name))
builder_available = True
except NoSuchPluginException:
traceback.print_exc()
builder_available = False
results.append([
[u'Builder', u'Status'],
[
builder_name,
u'available' if builder_available else u'missing'
]
])
if builder_path:
results.append([[u'Builder Path'], [builder_path]])
if builder_settings is not None:
table = [[u'Builder Setting', u'Value']]
for key in sorted(builder_settings.keys()):
value = builder_settings[key]
table.append([key, value])
results.append(table)
# is current view a TeX file?
view = self.view
if view.score_selector(0, 'text.tex.latex') != 0:
tex_root = get_tex_root(view)
tex_directives = parse_tex_directives(
tex_root,
multi_values=['options'],
key_maps={'ts-program': 'program'}
)
results.append([[u'TeX Root'], [tex_root]])
results.append([
[u'LaTeX Engine'],
[
tex_directives.get(
'program',
get_setting(
'program', 'pdflatex', self.view
)
)
]
])
table = [[u'LaTeX Output Setting', u'Value']]
output_directory = get_output_directory(view)
if output_directory:
table.append(
['output_directory', output_directory]
)
aux_directory = get_aux_directory(view)
if aux_directory:
table.append(['aux_directory', aux_directory])
jobname = get_jobname(view)
if jobname and jobname != os.path.splitext(
os.path.basename(tex_root)
)[0]:
table.append(['jobname', jobname])
if len(table) > 1:
results.append(table)
options = get_setting('builder_settings', {}, self.view).\
get('options', [])
if isinstance(options, str):
options = [options]
options.extend(tex_directives.get('options', []))
if len(options) > 0:
table = [[u'LaTeX Options']]
for option in options:
table.append([option])
results.append(table)
default_viewer = DEFAULT_VIEWERS.get(sublime.platform(), None)
viewer_name = get_setting('viewer', default_viewer)
if viewer_name in ['', 'default']:
viewer_name = default_viewer
try:
viewer_plugin = get_plugin(viewer_name + '_viewer')
viewer_available = True
except NoSuchPluginException:
viewer_available = False
viewer_location = 'N/A'
if viewer_available:
if viewer_name == 'command':
# assume the command viewer is always valid
viewer_location = 'N/A'
elif viewer_name in ('evince', 'okular', 'zathura'):
viewer_location = which(viewer_name)
viewer_available = bool(viewer_location)
elif viewer_name == 'preview':
viewer_location = '/Applications/Preview.app'
if not os.path.exists(viewer_location):
try:
viewer_location = check_output([
'osascript',
'-e',
'POSIX path of '
'(path to app id "com.apple.Preview")'
], use_texpath=False)
except subprocess.CalledProcessError:
viewer_location = None
viewer_available = False \
if not viewer_location else os.path.exists(viewer_location)
elif viewer_name == 'skim':
viewer_location = '/Applications/Skim.app'
if not os.path.exists(viewer_location):
try:
viewer_location = check_output([
'osascript',
'-e',
'POSIX path of '
'(path to app id "net.sourceforge.skim-app.skim")'
], use_texpath=False)
except subprocess.CalledProcessError:
viewer_location = None
viewer_available = False \
if not viewer_location else os.path.exists(viewer_location)
elif viewer_name == 'sumatra':
sumatra_exe = get_setting('viewer_settings', {}).\
get('sumatra', get_setting('windows', {}).
get('sumatra', 'SumatraPDF.exe')) or \
'SumatraPDF.exe'
viewer_location = which(sumatra_exe)
if not bool(viewer_location):
viewer_location = viewer_plugin()._find_sumatra_exe()
viewer_available = bool(viewer_location)
if not viewer_available:
viewer_location = 'N/A'
results.append([
[u'Viewer', u'Status', u'Location'],
[
viewer_name,
u'available' if viewer_available else u'missing',
viewer_location
]
])
if callable(self.on_done):
self.on_done(results)
class LatextoolsSystemCheckCommand(sublime_plugin.ApplicationCommand):
def run(self):
view = sublime.active_window().active_view()
t = SystemCheckThread(
sublime_exe=get_sublime_exe(),
uses_miktex=using_miktex(),
texpath=_get_texpath(view) or os.environ['PATH'],
build_env=get_setting('builder_settings', {}).get(
sublime.platform(), {}
).get('env'),
view=view,
on_done=self.on_done
)
t.start()
ProgressIndicator(t, 'Checking system...', 'System check complete')
def on_done(self, results):
def _on_done():
buf = StringIO()
for item in results:
tabulate(item, output=buf)
new_view = sublime.active_window().new_file()
new_view.set_scratch(True)
new_view.settings().set('word_wrap', False)
new_view.settings().set('line_numbers', False)
new_view.settings().set('gutter', False)
new_view.set_name('LaTeXTools System Check')
if sublime.version() < '3103':
new_view.settings().set(
'syntax',
'Packages/LaTeXTools/system_check.hidden-tmLanguage'
)
else:
new_view.settings().set(
'syntax', 'Packages/LaTeXTools/system_check.sublime-syntax'
)
new_view.set_encoding('UTF-8')
new_view.run_command(
'latextools_insert_text',
{'text': buf.getvalue().rstrip()}
)
new_view.set_read_only(True)
buf.close()
sublime.set_timeout(_on_done, 0)
class LatextoolsInsertTextCommand(sublime_plugin.TextCommand):
def run(self, edit, text=''):
view = self.view
view.insert(edit, 0, text)