blob: 434ab62d6210848be0da981153724d27d75b5098 [file] [log] [blame]
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +02001# osmo_gsm_tester: automated cellular network hardware tests
2# Proxy to templating engine to handle files
3#
4# Copyright (C) 2016-2017 by sysmocom - s.f.m.c. GmbH
5#
6# Author: Neels Hofmeyr <neels@hofmeyr.de>
7#
8# This program is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as
10# published by the Free Software Foundation, either version 3 of the
11# License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU Affero General Public License for more details.
17#
18# You should have received a copy of the GNU Affero General Public License
19# along with this program. If not, see <http://www.gnu.org/licenses/>.
20
21import os, sys
22from mako.template import Template
23from mako.lookup import TemplateLookup
24
25from . import log
26from .utils import dict2obj
27
28_lookup = None
29_logger = log.Origin('no templates dir set')
30
31def set_templates_dir(*templates_dirs):
32 global _lookup
33 global _logger
34 if not templates_dirs:
35 # default templates dir is relative to this source file
36 templates_dirs = [os.path.join(os.path.dirname(__file__), 'templates')]
37 for d in templates_dirs:
38 if not os.path.isdir(d):
39 raise RuntimeError('templates dir is not a dir: %r'
40 % os.path.abspath(d))
41 _lookup = TemplateLookup(directories=templates_dirs)
42 _logger = log.Origin('Templates', category=log.C_CNF)
43
44def render(name, values):
45 '''feed values dict into template and return rendered result.
46 ".tmpl" is added to the name to look it up in the templates dir.'''
47 global _lookup
48 if _lookup is None:
49 set_templates_dir()
50 with _logger:
51 tmpl_name = name + '.tmpl'
52 template = _lookup.get_template(tmpl_name)
53 _logger.dbg('rendering', tmpl_name)
54 return template.render(**dict2obj(values))
55
56# vim: expandtab tabstop=4 shiftwidth=4