highlight.py
100 lines
| 3.1 KiB
| text/x-python
|
PythonLexer
Martin Geisler
|
r8251 | # highlight.py - highlight extension implementation file | ||
# | ||||
# Copyright 2007-2009 Adam Hupp <adam@hupp.org> and others | ||||
# | ||||
# This software may be used and distributed according to the terms of the | ||||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Patrick Mezard
|
r6938 | # | ||
# The original module was split in an interface and an implementation | ||||
# file to defer pygments loading and speedup extension setup. | ||||
Pulkit Goyal
|
r29485 | |||
Patrick Mezard
|
r6938 | from mercurial import demandimport | ||
Augie Fackler
|
r43346 | |||
Augie Fackler
|
r43347 | demandimport.IGNORES.update([b'pkgutil', b'pkg_resources', b'__main__']) | ||
Pulkit Goyal
|
r29485 | |||
from mercurial import ( | ||||
encoding, | ||||
Connor Sheehan
|
r43193 | pycompat, | ||
Yuya Nishihara
|
r37102 | ) | ||
Augie Fackler
|
r43346 | from mercurial.utils import stringutil | ||
Patrick Mezard
|
r6938 | |||
Augie Fackler
|
r32908 | with demandimport.deactivated(): | ||
import pygments | ||||
import pygments.formatters | ||||
import pygments.lexers | ||||
Augie Fackler
|
r35330 | import pygments.plugin | ||
Augie Fackler
|
r32908 | import pygments.util | ||
Augie Fackler
|
r35330 | for unused in pygments.plugin.find_plugin_lexers(): | ||
pass | ||||
Pulkit Goyal
|
r29485 | highlight = pygments.highlight | ||
ClassNotFound = pygments.util.ClassNotFound | ||||
guess_lexer = pygments.lexers.guess_lexer | ||||
guess_lexer_for_filename = pygments.lexers.guess_lexer_for_filename | ||||
TextLexer = pygments.lexers.TextLexer | ||||
HtmlFormatter = pygments.formatters.HtmlFormatter | ||||
Patrick Mezard
|
r6938 | |||
Augie Fackler
|
r43346 | SYNTAX_CSS = ( | ||
Martin von Zweigbergk
|
r43387 | b'\n<link rel="stylesheet" href="{url}highlightcss" type="text/css" />' | ||
Augie Fackler
|
r43346 | ) | ||
Patrick Mezard
|
r6938 | |||
Gregory Szorc
|
r26680 | def pygmentize(field, fctx, style, tmpl, guessfilenameonly=False): | ||
Patrick Mezard
|
r6938 | |||
# append a <link ...> to the syntax highlighting css | ||||
Augie Fackler
|
r43347 | tmpl.load(b'header') | ||
old_header = tmpl.cache[b'header'] | ||||
Patrick Mezard
|
r6938 | if SYNTAX_CSS not in old_header: | ||
timeless
|
r27637 | new_header = old_header + SYNTAX_CSS | ||
Augie Fackler
|
r43347 | tmpl.cache[b'header'] = new_header | ||
Patrick Mezard
|
r6938 | |||
text = fctx.data() | ||||
Yuya Nishihara
|
r37102 | if stringutil.binary(text): | ||
Patrick Mezard
|
r6938 | return | ||
Matt Mackall
|
r23613 | # str.splitlines() != unicode.splitlines() because "reasons" | ||
Denis Laxalde
|
r44014 | for c in b"\x0c", b"\x1c", b"\x1d", b"\x1e": | ||
Matt Mackall
|
r23613 | if c in text: | ||
Augie Fackler
|
r43347 | text = text.replace(c, b'') | ||
Matt Mackall
|
r23613 | |||
Yuya Nishihara
|
r9424 | # Pygments is best used with Unicode strings: | ||
# <http://pygments.org/docs/unicode/> | ||||
Connor Sheehan
|
r43193 | text = text.decode(pycompat.sysstr(encoding.encoding), 'replace') | ||
Christian Ebert
|
r7120 | |||
Patrick Mezard
|
r6938 | # To get multi-line strings right, we can't format line-by-line | ||
try: | ||||
Connor Sheehan
|
r43193 | path = pycompat.sysstr(fctx.path()) | ||
Augie Fackler
|
r43346 | lexer = guess_lexer_for_filename(path, text[:1024], stripnl=False) | ||
Patrick Mezard
|
r6938 | except (ClassNotFound, ValueError): | ||
Gregory Szorc
|
r26680 | # guess_lexer will return a lexer if *any* lexer matches. There is | ||
# no way to specify a minimum match score. This can give a high rate of | ||||
# false positives on files with an unknown filename pattern. | ||||
if guessfilenameonly: | ||||
return | ||||
Patrick Mezard
|
r6938 | try: | ||
Alexander Plavin
|
r19169 | lexer = guess_lexer(text[:1024], stripnl=False) | ||
Patrick Mezard
|
r6938 | except (ClassNotFound, ValueError): | ||
r25899 | # Don't highlight unknown files | |||
return | ||||
# Don't highlight text files | ||||
if isinstance(lexer, TextLexer): | ||||
return | ||||
Patrick Mezard
|
r6938 | |||
Connor Sheehan
|
r43193 | formatter = HtmlFormatter(nowrap=True, style=pycompat.sysstr(style)) | ||
Patrick Mezard
|
r6938 | |||
colorized = highlight(text, lexer, formatter) | ||||
Augie Fackler
|
r43346 | coloriter = ( | ||
s.encode(pycompat.sysstr(encoding.encoding), 'replace') | ||||
for s in colorized.splitlines() | ||||
) | ||||
Patrick Mezard
|
r6938 | |||
Augie Fackler
|
r43347 | tmpl._filters[b'colorize'] = lambda x: next(coloriter) | ||
Patrick Mezard
|
r6938 | |||
oldl = tmpl.cache[field] | ||||
Augie Fackler
|
r43347 | newl = oldl.replace(b'line|escape', b'line|colorize') | ||
Patrick Mezard
|
r6938 | tmpl.cache[field] = newl | ||