1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
#!/usr/bin/python
"""
Benchmark for test the performance of Mako templates engine.
Includes:
-two template inherences
-HTML escaping, XML escaping, URL escaping, whitespace trimming
-function defitions and calls
-forloops
"""
__author__ = "virhilo@gmail.com (Lukasz Fidosz)"
# Python imports
import os
import sys
import optparse
import time
# Local imports
import util
def relative(*args):
return os.path.join(os.path.dirname(os.path.abspath(__file__)), *args)
sys.path.insert(0, relative('..', 'lib'))
# Mako imports
from mako.template import Template
from mako.lookup import TemplateLookup
LOREM_IPSUM = """Quisque lobortis hendrerit posuere. Curabitur
aliquet consequat sapien molestie pretium. Nunc adipiscing luc
tus mi, viverra porttitor lorem vulputate et. Ut at purus sem,
sed tincidunt ante. Vestibulum ante ipsum primis in faucibus
orci luctus et ultrices posuere cubilia Curae; Praesent pulvinar
sodales justo at congue. Praesent aliquet facilisis nisl a
molestie. Sed tempus nisl ut augue eleifend tincidunt. Sed a
lacinia nulla. Cras tortor est, mollis et consequat at,
vulputate et orci. Nulla sollicitudin"""
BASE_TEMPLATE = """
<%def name="render_table(table)">
<table>
% for row in table:
<tr>
% for col in row:
<td>${col|h}</td>
% endfor
</tr>
% endfor
</table>
</%def>
<%def name="img(src, alt)">
<img src="${src|u}" alt="${alt}" />
</%def>
<html>
<head><title>${title|h,trim}</title></head>
<body>
${next.body()}
</body>
<html>
"""
PAGE_TEMPLATE = """
<%inherit file="base.mako"/>
<table>
% for row in table:
<tr>
% for col in row:
<td>${col}</td>
% endfor
</tr>
% endfor
</table>
% for nr in xrange(img_count):
${parent.img('/foo/bar/baz.png', 'no image :o')}
% endfor
${next.body()}
% for nr in paragraphs:
<p>${lorem|x}</p>
% endfor
${parent.render_table(table)}
"""
CONTENT_TEMPLATE = """
<%inherit file="page.mako"/>
<%def name="fun1()">
<span>fun1</span>
</%def>
<%def name="fun2()">
<span>fun2</span>
</%def>
<%def name="fun3()">
<span>foo3</span>
</%def>
<%def name="fun4()">
<span>foo4</span>
</%def>
<%def name="fun5()">
<span>foo5</span>
</%def>
<%def name="fun6()">
<span>foo6</span>
</%def>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Nam laoreet justo in velit faucibus lobortis. Sed dictum sagittis
volutpat. Sed adipiscing vestibulum consequat. Nullam laoreet, ante
nec pretium varius, libero arcu porttitor orci, id cursus odio nibh
nec leo. Vestibulum dapibus pellentesque purus, sed bibendum tortor
laoreet id. Praesent quis sodales ipsum. Fusce ut ligula sed diam
pretium sagittis vel at ipsum. Nulla sagittis sem quam, et volutpat
velit. Fusce dapibus ligula quis lectus ultricies tempor. Pellente</p>
${fun1()}
${fun2()}
${fun3()}
${fun4()}
${fun5()}
${fun6()}
"""
def test_mako(count):
lookup = TemplateLookup()
lookup.put_string('base.mako', BASE_TEMPLATE)
lookup.put_string('page.mako', PAGE_TEMPLATE)
template = Template(CONTENT_TEMPLATE, lookup=lookup)
table = [xrange(150) for i in xrange(150)]
paragraphs = xrange(50)
title = 'Hello world!'
times = []
for i in range(count):
t0 = time.time()
data = template.render(table=table, paragraphs=paragraphs,
lorem=LOREM_IPSUM, title=title,
img_count=50)
t1 = time.time()
times.append(t1-t0)
return times
if __name__ == "__main__":
parser = optparse.OptionParser(
usage="%prog [options]",
description=("Test the performance of Mako templates."))
util.add_standard_options_to(parser)
(options, args) = parser.parse_args()
util.run_benchmark(options, options.num_runs, test_mako)
|