-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsyntax.py
181 lines (168 loc) · 5.34 KB
/
syntax.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
#!/usr/bin/env python3.7
##########################################################################
#
# This file is part of Proverbot9001.
#
# Proverbot9001 is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Proverbot9001 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Proverbot9001. If not, see <https://www.gnu.org/licenses/>.
#
# Copyright 2019 Alex Sanchez-Stern and Yousef Alhessi
#
##########################################################################
import re
from dataclasses import dataclass
from typing import List, Union, Iterable
from util import unwrap
vernacular_binder = [
"Definition",
"Inductive",
"Fixpoint",
"Theorem",
"Function",
"Remark",
"Hypothesis",
"Lemma",
"Example",
"Ltac",
"Record",
"Variable",
"Variables",
"Section",
"End",
"Instance",
"Module",
"Context"
]
vernacular_words = vernacular_binder + [
"Proof",
"Qed",
"Defined",
"Require",
"Import",
"Export",
"Print",
"Assumptions",
"Local",
"Open",
"Scope",
"Admitted",
"Notation",
"Set",
"Unset",
"Implicit",
]
local_binder = [
"forall",
"fun"
]
syntax_words = local_binder + [
"Type",
"Set",
"Prop",
"if",
"then",
"else",
"match",
"with",
"end",
"as",
"in",
"return",
"using",
"let"
]
vernacular_color = "#a020f0"
syntax_color = "#0027a6"
global_bound_color = "#3b10ff"
local_bound_color = "#a0522d"
comment_color = "#004800"
def color_word(color : str, word : str) -> str:
return f"<span style=\"color:{color}\">{word}</span>"
@dataclass
class ColoredString:
contents : str
color : str
def highlight_comments(code : str) -> List[Union[str, ColoredString]]:
def generate() -> Iterable[Union[str, ColoredString]]:
cur_string = ""
comment_depth = 0
cur_pos = 0
openp = re.compile(r"\(\*", re.DOTALL)
closep = re.compile(r"\*\)", re.DOTALL)
while cur_pos < len(code):
next_open_match = openp.search(code, cur_pos)
next_close_match = closep.search(code, cur_pos)
if next_open_match == None and next_close_match == None:
if comment_depth <= 0:
yield cur_string + code[cur_pos:]
else:
yield ColoredString(cur_string + code[cur_pos:], comment_color)
break
if next_close_match == None or \
(next_open_match != None and
unwrap(next_open_match).start() < unwrap(next_close_match).start()):
next_open_match = unwrap(next_open_match)
cur_string += code[cur_pos:next_open_match.start()]
if comment_depth == 0:
yield cur_string
cur_string = ""
cur_string += next_open_match.group(0)
cur_pos = next_open_match.end()
comment_depth += 1
else:
next_close_match = unwrap(next_close_match)
cur_string += code[cur_pos:next_close_match.end()]
cur_pos = next_close_match.end()
comment_depth -= 1
if comment_depth == 0:
yield ColoredString(cur_string, comment_color)
cur_string = ""
return list(generate())
def highlight_word(color: str, word : str, colored_text : List[Union[str, ColoredString]]) \
-> List[Union[str, ColoredString]]:
word_pat = re.compile(rf"\b{word}\b")
def generate() -> Iterable[Union[str, ColoredString]]:
for block in colored_text:
if isinstance(block, ColoredString):
yield block
else:
text_left = block
match = word_pat.search(text_left)
while match:
yield text_left[:match.start()]
yield ColoredString(word, color)
text_left = text_left[match.end():]
match = word_pat.search(text_left)
yield text_left
return list(generate())
def highlight_words(color : str, words : List[str], text : List[Union[str, ColoredString]]) \
-> List[Union[str, ColoredString]]:
result = text
for word in words:
result = highlight_word(color, word, result)
return result
def syntax_highlight(code : str) -> List[Union[str, ColoredString]]:
return highlight_words(syntax_color, syntax_words,
highlight_words(vernacular_color, vernacular_words,
highlight_comments(code)))
def strip_comments(command : str) -> str:
result = ""
comment_depth = 0
for i in range(len(command)):
if command[i:i+2] == "(*":
comment_depth += 1
if comment_depth < 1:
result += command[i]
if command[i-1:i+1] == "*)":
comment_depth -= 1
return result