mirror of
https://github.com/gnuradio/gnuradio-companion.git
synced 2025-12-10 17:46:12 -06:00
All of the removed `from __future__ import` were needed in older versions of Python (mostly 2.5.x and below) but later became mandatory in most versions of Python 3 hence are not necessary anymore. More specifically, according to __future__.py[1]: - unicode_literals is part of Python since versions 2.6.0 and 3.0.0; - print_function is part of Python since versions 2.6.0 and 3.0.0; - absolute_import is part of Python since versions 2.5.0 and 3.0.0; - division is part of Python since versions 2.2.0 and 3.0.0; Get rid of those unnecessary imports to slightly clean up the codebase. [1] https://github.com/python/cpython/blob/master/Lib/__future__.py
66 lines
1.8 KiB
Python
66 lines
1.8 KiB
Python
# Copyright 2016 Free Software Foundation, Inc.
|
|
# This file is part of GNU Radio
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
"""
|
|
This dict class holds a (shared) cache of compiled mako templates.
|
|
These
|
|
|
|
"""
|
|
|
|
from mako.template import Template
|
|
from mako.exceptions import SyntaxException
|
|
|
|
from ..errors import TemplateError
|
|
|
|
|
|
class MakoTemplates(dict):
|
|
|
|
_template_cache = {}
|
|
|
|
def __init__(self, _bind_to=None, *args, **kwargs):
|
|
self.instance = _bind_to
|
|
dict.__init__(self, *args, **kwargs)
|
|
|
|
def __get__(self, instance, owner):
|
|
if instance is None or self.instance is not None:
|
|
return self
|
|
copy = self.__class__(_bind_to=instance, **self)
|
|
if getattr(instance.__class__, 'templates', None) is self:
|
|
setattr(instance, 'templates', copy)
|
|
return copy
|
|
|
|
@classmethod
|
|
def compile(cls, text):
|
|
text = str(text)
|
|
try:
|
|
template = Template(text, strict_undefined=True)
|
|
except SyntaxException as error:
|
|
raise TemplateError(text, *error.args)
|
|
|
|
cls._template_cache[text] = template
|
|
return template
|
|
|
|
def _get_template(self, text):
|
|
try:
|
|
return self._template_cache[str(text)]
|
|
except KeyError:
|
|
return self.compile(text)
|
|
|
|
def render(self, item):
|
|
text = self.get(item)
|
|
if not text:
|
|
return ''
|
|
namespace = self.instance.namespace_templates
|
|
|
|
try:
|
|
if isinstance(text, list):
|
|
templates = (self._get_template(t) for t in text)
|
|
return [template.render(**namespace) for template in templates]
|
|
else:
|
|
template = self._get_template(text)
|
|
return template.render(**namespace)
|
|
except Exception as error:
|
|
raise TemplateError(error, text)
|