Skip to content

Commit

Permalink
Revise the variable names and reduce the redundant code
Browse files Browse the repository at this point in the history
  • Loading branch information
cocolato committed Oct 27, 2024
1 parent 8945ad2 commit 5e64e05
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 38 deletions.
63 changes: 33 additions & 30 deletions mako/codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from mako import filters
from mako import parsetree
from mako import util
from mako.filters import CONFLICT_PREFIX
from mako.filters import DEFAULT_ESCAPE_PREFIX
from mako.pygen import PythonPrinter


Expand All @@ -27,6 +27,7 @@
# context itself
TOPLEVEL_DECLARED = {"UNDEFINED", "STOP_RENDERING"}
RESERVED_NAMES = {"context", "loop"}.union(TOPLEVEL_DECLARED)
DEFAULT_ESCAPED_N = "%sn" % DEFAULT_ESCAPE_PREFIX


def compile( # noqa
Expand Down Expand Up @@ -523,8 +524,7 @@ def write_variable_declares(self, identifiers, toplevel=False, limit=None):
self.printer.writeline("loop = __M_loop = runtime.LoopStack()")

for ident in to_write:
if ident.startswith(CONFLICT_PREFIX):
ident = ident.replace(CONFLICT_PREFIX, "")
ident = ident.replace(DEFAULT_ESCAPE_PREFIX, "")
if ident in comp_idents:
comp = comp_idents[ident]
if comp.is_block:
Expand Down Expand Up @@ -788,45 +788,48 @@ def locate_encode(name):
else:
return filters.DEFAULT_ESCAPES.get(name, name)

filter_args = []
conflict_n = "%sn" % CONFLICT_PREFIX
if conflict_n not in args:
filter_args = set()
if DEFAULT_ESCAPED_N not in args:
if is_expression:
if self.compiler.pagetag:
args = self.compiler.pagetag.filter_args.args + args
filter_args = self.compiler.pagetag.filter_args.args
if self.compiler.default_filters and conflict_n not in args:
filter_args = set(self.compiler.pagetag.filter_args.args)
if (
self.compiler.default_filters
and DEFAULT_ESCAPED_N not in args
):
args = self.compiler.default_filters + args
for e in args:
if e == conflict_n:
if e == DEFAULT_ESCAPED_N:
continue
if e.startswith(CONFLICT_PREFIX):
if e not in filter_args:
ident = e.replace(CONFLICT_PREFIX, "")
m = re.match(r"(.+?)(\(.*\))", e)
if m:
target = "%s(%s)" % (ident, target)
continue
target = "%s(%s) if %s is not UNDEFINED else %s(%s)" % (
ident,
target,
ident,
locate_encode(ident),
target,
)
continue
e = e.replace(CONFLICT_PREFIX, "")

if e.startswith(DEFAULT_ESCAPE_PREFIX):
render_e = e.replace(DEFAULT_ESCAPE_PREFIX, "")
is_default_filter = True
else:
render_e = e
is_default_filter = False

# if filter given as a function, get just the identifier portion
m = re.match(r"(.+?)(\(.*\))", e)
if m:
ident, fargs = m.group(1, 2)
f = locate_encode(ident)
e = f + fargs
if not is_default_filter:
ident, fargs = m.group(1, 2)
f = locate_encode(ident)
render_e = f + fargs
target = "%s(%s)" % (render_e, target)
elif is_default_filter and e not in filter_args:
target = "%s(%s) if %s is not UNDEFINED else %s(%s)" % (
render_e,
target,
render_e,
locate_encode(render_e),
target,
)
else:
e = locate_encode(e)
e = locate_encode(render_e)
assert e is not None
target = "%s(%s)" % (e, target)
target = "%s(%s)" % (e, target)
return target

def visitExpression(self, node):
Expand Down
3 changes: 2 additions & 1 deletion mako/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,5 @@ def htmlentityreplace_errors(ex):
"n": "n",
}

CONFLICT_PREFIX = "__ALIAS_"

DEFAULT_ESCAPE_PREFIX = "__DEFAULT_ESCAPE_"
12 changes: 8 additions & 4 deletions mako/pyparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from mako import compat
from mako import exceptions
from mako import util
from mako.filters import CONFLICT_PREFIX
from mako.filters import DEFAULT_ESCAPE_PREFIX
from mako.filters import DEFAULT_ESCAPES

# words that cannot be assigned to (notably
Expand Down Expand Up @@ -203,13 +203,17 @@ def visit_Tuple(self, node):
DEFAULT_ESCAPES
)
if conflict_identifiers:
_map = {i: CONFLICT_PREFIX + i for i in conflict_identifiers}
_map = {
i: DEFAULT_ESCAPE_PREFIX + i for i in conflict_identifiers
}
for i, arg in enumerate(self.listener.args):
if arg in _map:
self.listener.args[i] = _map[arg]
self.listener.undeclared_identifiers = (
undeclared_identifiers ^ conflict_identifiers
).union(_map.values())
undeclared_identifiers.symmetric_difference(
conflict_identifiers
).union(_map.values())
)
else:
self.listener.undeclared_identifiers = undeclared_identifiers

Expand Down
18 changes: 16 additions & 2 deletions test/test_ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,23 @@ def test_argument_list(self):

def test_conflict_argument_list(self):
parsed = ast.ArgumentList(
"3, 5, 'hi', n+5, " "context.get('lala')", **exception_kwargs
"x-2, h*2, '(u)', n+5, trim, entity, unicode, decode, str, other",
**exception_kwargs,
)
eq_(
parsed.undeclared_identifiers,
{
"__DEFAULT_ESCAPE_trim",
"__DEFAULT_ESCAPE_h",
"__DEFAULT_ESCAPE_decode",
"__DEFAULT_ESCAPE_unicode",
"__DEFAULT_ESCAPE_x",
"__DEFAULT_ESCAPE_str",
"__DEFAULT_ESCAPE_entity",
"__DEFAULT_ESCAPE_n",
"other",
},
)
eq_(parsed.undeclared_identifiers, {"__ALIAS_n", "context"})

def test_function_decl(self):
"""test getting the arguments from a function"""
Expand Down
2 changes: 1 addition & 1 deletion test/test_lexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ def test_integration(self):
Text(" <tr>\n", (14, 1)),
ControlLine("for", "for x in j:", False, (15, 1)),
Text(" <td>Hello ", (16, 1)),
Expression("x", ["__ALIAS_h"], (16, 23)),
Expression("x", ["__DEFAULT_ESCAPE_h"], (16, 23)),
Text("</td>\n", (16, 30)),
ControlLine("for", "endfor", True, (17, 1)),
Text(" </tr>\n", (18, 1)),
Expand Down

0 comments on commit 5e64e05

Please sign in to comment.