mirror of https://github.com/morpheus65535/bazarr
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
from __future__ import unicode_literals
|
|
|
|
|
|
class Renderer(object):
|
|
def render(self, ast):
|
|
"""Walks the AST and calls member methods for each Node type.
|
|
|
|
@param ast {Node} The root of the abstract syntax tree.
|
|
"""
|
|
walker = ast.walker()
|
|
|
|
self.buf = ''
|
|
self.last_out = '\n'
|
|
|
|
event = walker.nxt()
|
|
while event is not None:
|
|
type_ = event['node'].t
|
|
if hasattr(self, type_):
|
|
getattr(self, type_)(event['node'], event['entering'])
|
|
event = walker.nxt()
|
|
|
|
return self.buf
|
|
|
|
def lit(self, s):
|
|
"""Concatenate a literal string to the buffer.
|
|
|
|
@param str {String} The string to concatenate.
|
|
"""
|
|
self.buf += s
|
|
self.last_out = s
|
|
|
|
def cr(self):
|
|
if self.last_out != '\n':
|
|
self.lit('\n')
|
|
|
|
def out(self, s):
|
|
"""Concatenate a string to the buffer possibly escaping the content.
|
|
|
|
Concrete renderer implementations should override this method.
|
|
|
|
@param str {String} The string to concatenate.
|
|
"""
|
|
self.lit(s)
|