-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathmakeboxes.py
361 lines (313 loc) · 12.2 KB
/
makeboxes.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
# -*- coding: utf-8 -*-
"""
This module contains basic low-level functions that combine an ``Expression``
with an ``Evaluation`` objects to produce ``BoxExpressions``, following
formatting rules.
"""
import typing
from typing import Any, Dict, Type
from mathics.core.atoms import Complex, Integer, Rational, Real, String, SymbolI
from mathics.core.convert.expression import to_expression_with_specialization
from mathics.core.element import BaseElement, BoxElementMixin, EvalMixin
from mathics.core.evaluation import Evaluation
from mathics.core.expression import Expression
from mathics.core.list import ListExpression
from mathics.core.symbols import (
Atom,
Symbol,
SymbolDivide,
SymbolFullForm,
SymbolGraphics,
SymbolGraphics3D,
SymbolHoldForm,
SymbolList,
SymbolMakeBoxes,
SymbolNumberForm,
SymbolPlus,
SymbolPostfix,
SymbolRepeated,
SymbolRepeatedNull,
SymbolTimes,
)
from mathics.core.systemsymbols import (
SymbolComplex,
SymbolMinus,
SymbolRational,
SymbolRowBox,
SymbolStandardForm,
)
# An operator precedence value that will ensure that whatever operator
# this is attached to does not have parenthesis surrounding it.
# Operator precedence values are integers; If if an operator
# "op" is greater than the surrounding precedence, then "op"
# will be surrounded by parenthesis, e.g. ... (...op...) ...
# In named-characters.yml of mathics-scanner we start at 0.
# However, negative values would also work.
NEVER_ADD_PARENTHESIS = 0
# These Strings are used in Boxing output
StringElipsis = String("...")
StringLParen = String("(")
StringRParen = String(")")
StringRepeated = String("..")
builtins_precedence: Dict[Symbol, int] = {}
element_formatters = {}
# this temporarily replaces the _BoxedString class
def _boxed_string(string: str, **options):
from mathics.builtin.box.layout import StyleBox
return StyleBox(String(string), **options)
def eval_fullform_makeboxes(
self, expr, evaluation: Evaluation, form=SymbolStandardForm
) -> Expression:
"""
This function takes the definitions provided by the evaluation
object, and produces a boxed form for expr.
Basically: MakeBoxes[expr // FullForm]
"""
# This is going to be reimplemented.
expr = Expression(SymbolFullForm, expr)
return Expression(SymbolMakeBoxes, expr, form).evaluate(evaluation)
def eval_makeboxes(expr, evaluation: Evaluation, form=SymbolStandardForm) -> Expression:
"""
This function takes the definitions provided by the evaluation
object, and produces a boxed fullform for expr.
Basically: MakeBoxes[expr // form]
"""
# This is going to be reimplemented.
return Expression(SymbolMakeBoxes, expr, form).evaluate(evaluation)
def format_element(
element: BaseElement, evaluation: Evaluation, form: Symbol, **kwargs
) -> Type[BaseElement]:
"""
Applies formats associated to the expression, and then calls Makeboxes
"""
expr = do_format(element, evaluation, form)
result = Expression(SymbolMakeBoxes, expr, form)
result_box = result.evaluate(evaluation)
if isinstance(result_box, String):
return result_box
if isinstance(result_box, BoxElementMixin):
return result_box
else:
return format_element(element, evaluation, SymbolFullForm, **kwargs)
# do_format_*
def do_format(
element: BaseElement, evaluation: Evaluation, form: Symbol
) -> Type[BaseElement]:
do_format_method = element_formatters.get(type(element), do_format_element)
return do_format_method(element, evaluation, form)
def do_format_element(
element: BaseElement, evaluation: Evaluation, form: Symbol
) -> Type[BaseElement]:
"""
Applies formats associated to the expression and removes
superfluous enclosing formats.
"""
from mathics.core.definitions import OutputForms
evaluation.inc_recursion_depth()
try:
expr = element
head = element.get_head() # use element.head
elements = element.get_elements()
include_form = False
# If the expression is enclosed by a Format
# takes the form from the expression and
# removes the format from the expression.
if head in OutputForms and len(expr.elements) == 1:
expr = elements[0]
if not form.sameQ(head):
form = head
include_form = True
# If form is Fullform, return it without changes
if form is SymbolFullForm:
if include_form:
expr = Expression(form, expr)
return expr
# Repeated and RepeatedNull confuse the formatter,
# so we need to hardlink their format rules:
if head is SymbolRepeated:
if len(elements) == 1:
return Expression(
SymbolHoldForm,
Expression(
SymbolPostfix,
ListExpression(elements[0]),
StringRepeated,
Integer(170),
),
)
else:
return Expression(SymbolHoldForm, expr)
elif head is SymbolRepeatedNull:
if len(elements) == 1:
return Expression(
SymbolHoldForm,
Expression(
SymbolPostfix,
Expression(SymbolList, elements[0]),
StringElipsis,
Integer(170),
),
)
else:
return Expression(SymbolHoldForm, expr)
# If expr is not an atom, looks for formats in its definition
# and apply them.
def format_expr(expr):
if not (isinstance(expr, Atom)) and not (isinstance(expr.head, Atom)):
# expr is of the form f[...][...]
return None
name = expr.get_lookup_name()
format_rules = evaluation.definitions.get_formats(name, form.get_name())
for rule in format_rules:
result = rule.apply(expr, evaluation)
if result is not None and result != expr:
return result.evaluate(evaluation)
return None
formatted = format_expr(expr) if isinstance(expr, EvalMixin) else None
if formatted is not None:
do_format = element_formatters.get(type(formatted), do_format_element)
result = do_format(formatted, evaluation, form)
if include_form:
result = Expression(form, result)
return result
# If the expression is still enclosed by a Format,
# iterate.
# If the expression is not atomic or of certain
# specific cases, iterate over the elements.
head = expr.get_head()
if head in OutputForms:
# If the expression was of the form
# Form[expr, opts]
# then the format was not stripped. Then,
# just return it as it is.
if len(expr.elements) != 1:
return expr
do_format = element_formatters.get(type(element), do_format_element)
expr = do_format(expr, evaluation, form)
elif (
head is not SymbolNumberForm
and not isinstance(expr, (Atom, BoxElementMixin))
and head not in (SymbolGraphics, SymbolGraphics3D)
):
# print("Not inside graphics or numberform, and not is atom")
new_elements = [
element_formatters.get(type(element), do_format_element)(
element, evaluation, form
)
for element in expr.elements
]
expr_head = expr.head
do_format = element_formatters.get(type(expr_head), do_format_element)
head = do_format(expr_head, evaluation, form)
expr = to_expression_with_specialization(head, *new_elements)
if include_form:
expr = Expression(form, expr)
return expr
finally:
evaluation.dec_recursion_depth()
def do_format_rational(
element: BaseElement, evaluation: Evaluation, form: Symbol
) -> Type[BaseElement]:
if form is SymbolFullForm:
return do_format_expression(
Expression(
Expression(SymbolHoldForm, SymbolRational),
element.numerator(),
element.denominator(),
),
evaluation,
form,
)
else:
numerator = element.numerator()
minus = numerator.value < 0
if minus:
numerator = Integer(-numerator.value)
result = Expression(SymbolDivide, numerator, element.denominator())
if minus:
result = Expression(SymbolMinus, result)
result = Expression(SymbolHoldForm, result)
return do_format_expression(result, evaluation, form)
def do_format_complex(
element: BaseElement, evaluation: Evaluation, form: Symbol
) -> Type[BaseElement]:
if form is SymbolFullForm:
return do_format_expression(
Expression(
Expression(SymbolHoldForm, SymbolComplex), element.real, element.imag
),
evaluation,
form,
)
parts: typing.List[Any] = []
if element.is_machine_precision() or not element.real.is_zero:
parts.append(element.real)
if element.imag.sameQ(Integer(1)):
parts.append(SymbolI)
else:
parts.append(Expression(SymbolTimes, element.imag, SymbolI))
if len(parts) == 1:
result = parts[0]
else:
result = Expression(SymbolPlus, *parts)
return do_format_expression(Expression(SymbolHoldForm, result), evaluation, form)
def do_format_expression(
element: BaseElement, evaluation: Evaluation, form: Symbol
) -> Type[BaseElement]:
# # not sure how much useful is this format_cache
# if element._format_cache is None:
# element._format_cache = {}
# last_evaluated_time, expr = element._format_cache.get(form, (None, None))
# if last_evaluated_time is not None and expr is not None:
# if True
# symbolname = expr.get_name()
# if symbolname != "":
# if not evaluation.definitions.is_uncertain_final_value(
# last_evaluated_time, set((symbolname,))
# ):
# return expr
expr = do_format_element(element, evaluation, form)
# element._format_cache[form] = (evaluation.definitions.now, expr)
return expr
def parenthesize(
precedence: int, element: Type[BaseElement], element_boxes, when_equal: bool
) -> Type[Expression]:
"""
"Determines if ``element_boxes`` needs to be surrounded with parenthesis.
This is done based on ``precedence`` and the computed preceence of
``element``. The adjusted ListExpression is returned.
If when_equal is True, parentheses will be added if the two
precedence values are equal.
"""
while element.has_form("HoldForm", 1):
element = element.elements[0]
if element.has_form(("Infix", "Prefix", "Postfix"), 3, None):
element_prec = element.elements[2].value
elif element.has_form("PrecedenceForm", 2):
element_prec = element.elements[1].value
# If "element" is a negative number, we need to parenthesize the number. (Fixes #332)
elif isinstance(element, (Integer, Real)):
if element.value < 0:
# Force parenthesis by adjusting the surrounding context's precedence value,
# We can't change the precedence for the number since it, doesn't
# have a precedence value.
element_prec = 480
else:
element_prec = 999
when_equal = False
elif isinstance(element, Symbol):
precedence = precedence
element_prec = 999
when_equal = False
else:
element_prec = builtins_precedence.get(element.get_head(), 670)
if precedence is not None and element_prec is not None:
if precedence > element_prec or (precedence == element_prec and when_equal):
return Expression(
SymbolRowBox,
ListExpression(StringLParen, element_boxes, StringRParen),
)
return element_boxes
element_formatters[Rational] = do_format_rational
element_formatters[Complex] = do_format_complex
element_formatters[Expression] = do_format_expression