Created
November 27, 2012 09:30
-
-
Save malthe/4153332 to your computer and use it in GitHub Desktop.
Chameleon 2.x "path traverser" implementation in Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import ast | |
from chameleon.tales import TalesExpr | |
from chameleon.codegen import template | |
from chameleon.astutil import load | |
from chameleon.astutil import Symbol | |
from chameleon.exc import ExpressionError | |
marker = object() | |
def traverse(obj, name, further_path, default=marker, request=None): | |
"""Traverse a single step 'name' relative to the given object.""" | |
if name == '.': | |
return obj | |
if name == '..': | |
return obj.__parent__ | |
attr = getattr(obj, name, marker) | |
if attr is not marker: | |
return attr | |
if hasattr(obj, '__getitem__'): | |
try: | |
return obj[name] | |
except KeyError: | |
pass | |
raise AttributeError(name) | |
def path_traverse(base, econtext, call, path_items): | |
if path_items: | |
request = econtext.get('request') | |
path_items = list(path_items) | |
path_items.reverse() | |
while len(path_items): | |
name = path_items.pop() | |
# special-case dicts for performance reasons | |
if isinstance(base, dict): | |
next = base.get(name, marker) | |
else: | |
next = getattr(base, name, marker) | |
if next is not marker: | |
base = next | |
else: | |
base = traverse( | |
base, name, path_items, request=request) | |
if call and getattr(base, '__call__', marker) is not marker: | |
return base() | |
return base | |
class PathExpr(TalesExpr): | |
path_regex = re.compile( | |
r'^(?:(nocall|not):\s*)*((?:[A-Za-z_][A-Za-z0-9_:]*)' + | |
r'(?:/[?A-Za-z_@\-+][?A-Za-z0-9_@\-\.+/:]*)*)$') | |
interpolation_regex = re.compile( | |
r'\?[A-Za-z][A-Za-z0-9_]+') | |
traverser = Symbol(path_traverse) | |
def translate(self, string, target): | |
""" | |
>>> from chameleon.tales import test | |
>>> test(PathExpr('')) is None | |
True | |
""" | |
string = string.strip() | |
if not string: | |
return template("target = None", target=target) | |
m = self.path_regex.match(string) | |
if m is None: | |
raise ExpressionError("Not a valid path-expression.", string) | |
nocall, path = m.groups() | |
# note that unicode paths are not allowed | |
parts = str(path).split('/') | |
components = [] | |
for part in parts[1:]: | |
interpolation_args = [] | |
def replace(match): | |
start, end = match.span() | |
interpolation_args.append( | |
part[start + 1:end]) | |
return "%s" | |
while True: | |
part, count = self.interpolation_regex.subn(replace, part) | |
if count == 0: | |
break | |
if len(interpolation_args): | |
component = template( | |
"format % args", format=ast.Str(part), | |
args=ast.Tuple( | |
list(map(load, interpolation_args)), | |
ast.Load() | |
), | |
mode="eval") | |
else: | |
component = ast.Str(part) | |
components.append(component) | |
base = parts[0] | |
if not components: | |
if len(parts) == 1 and (nocall or base == 'None'): | |
return template("target = base", base=base, target=target) | |
else: | |
components = () | |
call = template( | |
"traverse(base, econtext, call, path_items)", | |
traverse=self.traverser, | |
base=load(base), | |
call=load(str(not nocall)), | |
path_items=ast.Tuple(elts=components), | |
mode="eval", | |
) | |
return template("target = value", target=target, value=call) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment