pmacs3/test3.py

116 lines
2.7 KiB
Python

import sys
import lex2, lex2_perl, highlight2
color_list = []
color_list.extend(['\033[3%dm' % x for x in range(0, 8)])
color_list.extend(['\033[3%d;1m' % x for x in range(0, 8)])
color_list.append('\033[0m')
color_names = [
'black', 'dred', 'dgreen', 'brown', 'dblue', 'dpurple', 'dcyan', 'lgrey',
'dgrey', 'lred', 'lgreen', 'yellow', 'lblue', 'lpurple', 'lcyan', 'white',
'unset',
]
color_dict ={}
for i in range(0, len(color_list)):
color_dict[color_names[i]] = color_list[i]
token_colors = {
# basic stuff
'escaped': 'lpurple',
'null': 'white',
'delimiter': 'white',
'sub': 'lcyan',
'number': 'white',
'operator': 'white',
'endblock': 'lred',
'keyword': 'lpurple',
'scalar': 'yellow',
'array': 'yellow',
'deref': 'yellow',
'hash': 'yellow',
'hash_key': 'lgreen',
'comment': 'lred',
'function': 'lcyan',
'builtin': 'lpurple',
'method': 'lcyan',
'bareword': 'white',
'label': 'lcyan',
'package': 'lcyan',
'class': 'lcyan',
'use': 'lcyan',
'method': 'lcyan',
# heredoc
'heredoc1.start': 'lgreen',
'heredoc1.null': 'lgreen',
'heredoc1.end': 'lgreen',
'heredoc2.start': 'lgreen',
'heredoc2.null': 'lgreen',
'heredoc2.end': 'lgreen',
'eval_heredoc.start': 'lcyan',
'eval_heredoc.null': 'lcyan',
'eval_heredoc.end': 'lcyan',
# pod
'pod.start': 'lred',
'pod.null': 'lred',
'pod.entry': 'lpurple',
'pod.end': 'lred',
# "" strings
'string1.start': 'lgreen',
'string1.null': 'lgreen',
'string1.escaped': 'lpurple',
'string1.deref': 'yellow',
'string1.end': 'lgreen',
# '' strings
'string2.start': 'lgreen',
'string2.null': 'lgreen',
'string2.end': 'lgreen',
# `` strings
'evalstring': 'lcyan',
# quoted region
'quoted': 'lcyan',
'quoted.start': 'lcyan',
'quoted.null': 'lcyan',
'quoted.end': 'lcyan',
# match regex
'match.start': 'lcyan',
'match.end': 'lcyan',
'match.null': 'lcyan',
# replace regex
'replace.start': 'lcyan',
'replace.middle': 'lcyan',
'replace.end': 'lcyan',
'replace.null': 'lcyan',
# translate regex
'translate.start': 'lpurple',
'translate.middle': 'lpurple',
'translate.end': 'lpurple',
'translate.null': 'lpurple',
}
paths = sys.argv[1:]
for path in paths:
f = open(path, 'r')
data = f.read()
f.close()
lines = data.split('\n')
grammar = lex2_perl.PerlGrammar()
lexer = lex2.Lexer('lexer', grammar)
highlighter = highlight2.Highlighter(lexer)
highlighter.highlight(lines)
highlighter.display(token_colors)