Newer
Older
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
""" A templating engine for separation of code and HTML.
The documentation of this templating engine is separated to two parts:
1. Description of the templating language.
2. Documentation of classes and API of this module that provides
a Python implementation of the templating language.
All the documentation can be found in 'doc' directory of the
distribution tarball or at the homepage of the engine.
Latest versions of this module are also available at that website.
You can use and redistribute this module under conditions of the
GNU General Public License that can be found either at
[ http://www.gnu.org/ ] or in file "LICENSE" contained in the
distribution tarball of this module.
Copyright (c) 2001 Tomas Styblo, tripie@cpan.org
@name htmltmpl
@version 1.22
@author-name Tomas Styblo
@author-email tripie@cpan.org
@website http://htmltmpl.sourceforge.net/
@license-name GNU GPL
@license-url http://www.gnu.org/licenses/gpl.html
"""
__version__ = 1.22
__author__ = "Tomas Styblo (tripie@cpan.org)"
# All imported modules are part of the standard Python library.
from types import *
import re
import os
import os.path
import pprint # only for debugging
import sys
import copy
import cgi # for HTML escaping of variables
import urllib # for URL escaping of variables
import cPickle # for template compilation
import gettext
import portalocker # for locking
INCLUDE_DIR = "inc"
# Total number of possible parameters.
# Increment if adding a parameter to any statement.
PARAMS_NUMBER = 3
# Relative positions of parameters in TemplateCompiler.tokenize().
PARAM_NAME = 1
PARAM_ESCAPE = 2
PARAM_GLOBAL = 3
PARAM_GETTEXT_STRING = 1
##############################################
# CLASS: TemplateManager #
##############################################
class TemplateManager:
""" Class that manages compilation and precompilation of templates.
You should use this class whenever you work with templates
that are stored in a file. The class can create a compiled
template and transparently manage its precompilation. It also
keeps the precompiled templates up-to-date by modification times
comparisons.
"""
def __init__(self, include=1, max_include=5, precompile=1, comments=1,
gettext=0, debug=0):
""" Constructor.
@header
__init__(include=1, max_include=5, precompile=1, comments=1,
gettext=0, debug=0)
@param include Enable or disable included templates.
This optional parameter can be used to enable or disable
<em>TMPL_INCLUDE</em> inclusion of templates. Disabling of
inclusion can improve performance a bit. The inclusion is
enabled by default.
@param max_include Maximum depth of nested inclusions.
This optional parameter can be used to specify maximum depth of
nested <em>TMPL_INCLUDE</em> inclusions. It defaults to 5.
This setting prevents infinite recursive inclusions.
@param precompile Enable or disable precompilation of templates.
This optional parameter can be used to enable or disable
creation and usage of precompiled templates.
A precompiled template is saved to the same directory in
which the main template file is located. You need write
permissions to that directory.
Precompilation provides a significant performance boost because
it's not necessary to parse the templates over and over again.
The boost is especially noticeable when templates that include
other templates are used.
Comparison of modification times of the main template and all
included templates is used to ensure that the precompiled
templates are up-to-date. Templates are also recompiled if the
htmltmpl module is updated.
The <em>TemplateError</em>exception is raised when the precompiled
template cannot be saved. Precompilation is enabled by default.
@param comments Enable or disable template comments.
This optional parameter can be used to enable or disable
template comments.
Disabling of the comments can improve performance a bit.
Comments are enabled by default.
@param gettext Enable or disable gettext support.
@param debug Enable or disable debugging messages.
This optional parameter is a flag that can be used to enable
or disable debugging messages which are printed to the standard
error output. The debugging messages are disabled by default.
"""
# Save the optional parameters.
# These values are not modified by any method.
self._include = include
self._max_include = max_include
self._precompile = precompile
self._comments = comments
self._gettext = gettext
self._debug = debug
self.DEB("INIT DONE")
def prepare(self, file):
""" Preprocess, parse, tokenize and compile the template.
If precompilation is enabled then this method tries to load
a precompiled form of the template from the same directory
in which the template source file is located. If it succeeds,
then it compares modification times stored in the precompiled
form to modification times of source files of the template,
including source files of all templates included via the
<em>TMPL_INCLUDE</em> statements. If any of the modification times
differs, then the template is recompiled and the precompiled
form updated.
If precompilation is disabled, then this method parses and
compiles the template.
@header prepare(file)
@return Compiled template.
The methods returns an instance of the <em>Template</em> class
which is a compiled form of the template. This instance can be
used as input for the <em>TemplateProcessor</em>.
@param file Path to the template file to prepare.
The method looks for the template file in current directory
if the parameter is a relative path. All included templates must
be placed in subdirectory <strong>'inc'</strong> of the
directory in which the main template file is located.
"""
compiled = None
if self._precompile:
if self.is_precompiled(file):
try:
precompiled = self.load_precompiled(file)
except PrecompiledError, template:
print >> sys.stderr, "Htmltmpl: bad precompiled "\
"template '%s' removed" % template
compiled = self.compile(file)
self.save_precompiled(compiled)
else:
precompiled.debug(self._debug)
compile_params = (self._include, self._max_include,
self._comments, self._gettext)
if precompiled.is_uptodate(compile_params):
self.DEB("PRECOMPILED: UPTODATE")
compiled = precompiled
else:
self.DEB("PRECOMPILED: NOT UPTODATE")
compiled = self.update(precompiled)
else:
self.DEB("PRECOMPILED: NOT PRECOMPILED")
compiled = self.compile(file)
self.save_precompiled(compiled)
else:
self.DEB("PRECOMPILATION DISABLED")
compiled = self.compile(file)
return compiled
def update(self, template):
""" Update (recompile) a compiled template.
This method recompiles a template compiled from a file.
If precompilation is enabled then the precompiled form saved on
disk is also updated.
@header update(template)
@return Recompiled template.
It's ensured that the returned template is up-to-date.
@param template A compiled template.
This parameter should be an instance of the <em>Template</em>
class, created either by the <em>TemplateManager</em> or by the
<em>TemplateCompiler</em>. The instance must represent a template
compiled from a file on disk.
"""
self.DEB("UPDATE")
updated = self.compile(template.file())
if self._precompile:
self.save_precompiled(updated)
return updated
##############################################
# PRIVATE METHODS #
##############################################
def DEB(self, str):
""" Print debugging message to stderr if debugging is enabled.
@hidden
"""
if self._debug: print >> sys.stderr, str
def compile(self, file):
""" Compile the template.
@hidden
"""
return TemplateCompiler(self._include, self._max_include,
self._comments, self._gettext,
self._debug).compile(file)
def is_precompiled(self, file):
""" Return true if the template is already precompiled on the disk.
This method doesn't check whether the compiled template is
uptodate.
@hidden
"""
filename = file + "c" # "template.tmplc"
if os.path.isfile(filename):
return 1
else:
return 0
def load_precompiled(self, file):
""" Load precompiled template from disk.
Remove the precompiled template file and recompile it
if the file contains corrupted or unpicklable data.
@hidden
"""
filename = file + "c" # "template.tmplc"
self.DEB("LOADING PRECOMPILED")
try:
remove_bad = 0
file = None
try:
file = open(filename, "rb")
portalocker.lock(file, portalocker.LOCK_SH)
precompiled = cPickle.load(file)
except IOError, (errno, errstr):
raise TemplateError, "IO error in load precompiled "\
"template '%s': (%d) %s"\
% (filename, errno, errstr)
except cPickle.UnpicklingError:
remove_bad = 1
raise PrecompiledError, filename
except:
remove_bad = 1
raise
else:
return precompiled
finally:
if file:
portalocker.unlock(file)
file.close()
if remove_bad and os.path.isfile(filename):
# X: We may lose the original exception here, raising OSError.
os.remove(filename)
def save_precompiled(self, template):
""" Save compiled template to disk in precompiled form.
Associated metadata is also saved. It includes: filename of the
main template file, modification time of the main template file,
modification times of all included templates and version of the
htmltmpl module which compiled the template.
The method removes a file which is saved only partially because
of some error.
@hidden
"""
filename = template.file() + "c" # creates "template.tmplc"
# Check if we have write permission to the template's directory.
template_dir = os.path.dirname(os.path.abspath(filename))
if not os.access(template_dir, os.W_OK):
raise TemplateError, "Cannot save precompiled templates "\
"to '%s': write permission denied."\
% template_dir
try:
remove_bad = 0
file = None
try:
file = open(filename, "wb") # may truncate existing file
portalocker.lock(file, portalocker.LOCK_EX)
BINARY = 1
READABLE = 0
if self._debug:
cPickle.dump(template, file, READABLE)
else:
cPickle.dump(template, file, BINARY)
except IOError, (errno, errstr):
remove_bad = 1
raise TemplateError, "IO error while saving precompiled "\
"template '%s': (%d) %s"\
% (filename, errno, errstr)
except cPickle.PicklingError, error:
remove_bad = 1
raise TemplateError, "Pickling error while saving "\
"precompiled template '%s': %s"\
% (filename, error)
except:
remove_bad = 1
raise
else:
self.DEB("SAVING PRECOMPILED")
finally:
if file:
portalocker.unlock(file)
file.close()
if remove_bad and os.path.isfile(filename):
# X: We may lose the original exception here, raising OSError.
os.remove(filename)
##############################################
# CLASS: TemplateProcessor #
##############################################
class TemplateProcessor:
""" Fill the template with data and process it.
This class provides actual processing of a compiled template.
Use it to set template variables and loops and then obtain
result of the processing.
"""
def __init__(self, html_escape=1, magic_vars=1, global_vars=0, debug=0):
""" Constructor.
@header __init__(html_escape=1, magic_vars=1, global_vars=0,
debug=0)
@param html_escape Enable or disable HTML escaping of variables.
This optional parameter is a flag that can be used to enable or
disable automatic HTML escaping of variables.
All variables are by default automatically HTML escaped.
The escaping process substitutes HTML brackets, ampersands and
double quotes with appropriate HTML entities.
@param magic_vars Enable or disable loop magic variables.
This parameter can be used to enable or disable
"magic" context variables, that are automatically defined inside
loops. Magic variables are enabled by default.
Refer to the language specification for description of these
magic variables.
@param global_vars Globally activate global lookup of variables.
This optional parameter is a flag that can be used to specify
whether variables which cannot be found in the current scope
should be automatically looked up in enclosing scopes.
Automatic global lookup is disabled by default. Global lookup
can be overriden on a per-variable basis by the
<strong>GLOBAL</strong> parameter of a <strong>TMPL_VAR</strong>
statement.
@param debug Enable or disable debugging messages.
"""
self._html_escape = html_escape
self._magic_vars = magic_vars
self._global_vars = global_vars
self._debug = debug
# Data structure containing variables and loops set by the
# application. Use debug=1, process some template and
# then check stderr to see how the structure looks.
# It's modified only by set() and reset() methods.
self._vars = {}
# Following variables are for multipart templates.
self._current_part = 1
self._current_pos = 0
def set(self, var, value):
""" Associate a value with top-level template variable or loop.
A template identifier can represent either an ordinary variable
(string) or a loop.
To assign a value to a string identifier pass a scalar
as the 'value' parameter. This scalar will be automatically
converted to string.
To assign a value to a loop identifier pass a list of mappings as
the 'value' parameter. The engine iterates over this list and
assigns values from the mappings to variables in a template loop
block if a key in the mapping corresponds to a name of a variable
in the loop block. The number of mappings contained in this list
is equal to number of times the loop block is repeated in the
output.
@header set(var, value)
@return No return value.
@param var Name of template variable or loop.
@param value The value to associate.
"""
# The correctness of character case is verified only for top-level
# variables.
if self.is_ordinary_var(value):
# template top-level ordinary variable
if not var.islower():
raise TemplateError, "Invalid variable name '%s'." % var
elif type(value) == ListType:
# template top-level loop
if var != var.capitalize():
raise TemplateError, "Invalid loop name '%s'." % var
else:
raise TemplateError, "Value of toplevel variable '%s' must "\
"be either a scalar or a list." % var
self._vars[var] = value
self.DEB("VALUE SET: " + str(var))
def reset(self, keep_data=0):
""" Reset the template data.
This method resets the data contained in the template processor
instance. The template processor instance can be used to process
any number of templates, but this method must be called after
a template is processed to reuse the instance,
@header reset(keep_data=0)
@return No return value.
@param keep_data Do not reset the template data.
Use this flag if you do not want the template data to be erased.
This way you can reuse the data contained in the instance of
the <em>TemplateProcessor</em>.
"""
self._current_part = 1
self._current_pos = 0
if not keep_data:
self._vars.clear()
self.DEB("RESET")
def process(self, template, part=None):
""" Process a compiled template. Return the result as string.
This method actually processes a template and returns
the result.
@header process(template, part=None)
@return Result of the processing as string.
@param template A compiled template.
Value of this parameter must be an instance of the
<em>Template</em> class created either by the
<em>TemplateManager</em> or by the <em>TemplateCompiler</em>.
@param part The part of a multipart template to process.
This parameter can be used only together with a multipart
template. It specifies the number of the part to process.
It must be greater than zero, because the parts are numbered
from one.
The parts must be processed in the right order. You
cannot process a part which precedes an already processed part.
If this parameter is not specified, then the whole template
is processed, or all remaining parts are processed.
"""
self.DEB("APP INPUT:")
if self._debug: pprint.pprint(self._vars, sys.stderr)
if part != None and (part == 0 or part < self._current_part):
raise TemplateError, "process() - invalid part number"
# This flag means "jump behind the end of current statement" or
# "skip the parameters of current statement".
# Even parameters that actually are not present in the template
# do appear in the list of tokens as empty items !
skip_params = 0
# Stack for enabling or disabling output in response to TMPL_IF,
# TMPL_UNLESS, TMPL_ELSE and TMPL_LOOPs with no passes.
output_control = []
ENABLE_OUTPUT = 1
DISABLE_OUTPUT = 0
# Stacks for data related to loops.
loop_name = [] # name of a loop
loop_pass = [] # current pass of a loop (counted from zero)
loop_start = [] # index of loop start in token list
loop_total = [] # total number of passes in a loop
tokens = template.tokens()
len_tokens = len(tokens)
out = "" # buffer for processed output
# Recover position at which we ended after processing of last part.
i = self._current_pos
# Process the list of tokens.
while 1:
if i == len_tokens: break
if skip_params:
# Skip the parameters following a statement.
skip_params = 0
i += PARAMS_NUMBER
continue
token = tokens[i]
if token.startswith("<TMPL_") or \
token.startswith("</TMPL_"):
if token == "<TMPL_VAR":
# TMPL_VARs should be first. They are the most common.
var = tokens[i + PARAM_NAME]
if not var:
raise TemplateError, "No identifier in <TMPL_VAR>."
escape = tokens[i + PARAM_ESCAPE]
globalp = tokens[i + PARAM_GLOBAL]
skip_params = 1
# If output of current block is not disabled then append
# the substitued and escaped variable to the output.
if DISABLE_OUTPUT not in output_control:
value = str(self.find_value(var, loop_name, loop_pass,
loop_total, globalp))
out += self.escape(value, escape)
self.DEB("VAR: " + str(var))
elif token == "<TMPL_LOOP":
var = tokens[i + PARAM_NAME]
if not var:
raise TemplateError, "No identifier in <TMPL_LOOP>."
skip_params = 1
# Find total number of passes in this loop.
passtotal = self.find_value(var, loop_name, loop_pass,
loop_total)
if not passtotal: passtotal = 0
# Push data for this loop on the stack.
loop_total.append(passtotal)
loop_start.append(i)
loop_pass.append(0)
loop_name.append(var)
# Disable output of loop block if the number of passes
# in this loop is zero.
if passtotal == 0:
# This loop is empty.
output_control.append(DISABLE_OUTPUT)
self.DEB("LOOP: DISABLE: " + str(var))
else:
output_control.append(ENABLE_OUTPUT)
self.DEB("LOOP: FIRST PASS: %s TOTAL: %d"\
% (var, passtotal))
elif token == "<TMPL_IF":
var = tokens[i + PARAM_NAME]
if not var:
raise TemplateError, "No identifier in <TMPL_IF>."
globalp = tokens[i + PARAM_GLOBAL]
skip_params = 1
if self.find_value(var, loop_name, loop_pass,
loop_total, globalp):
output_control.append(ENABLE_OUTPUT)
self.DEB("IF: ENABLE: " + str(var))
else:
output_control.append(DISABLE_OUTPUT)
self.DEB("IF: DISABLE: " + str(var))
elif token == "<TMPL_UNLESS":
var = tokens[i + PARAM_NAME]
if not var:
raise TemplateError, "No identifier in <TMPL_UNLESS>."
globalp = tokens[i + PARAM_GLOBAL]
skip_params = 1
if self.find_value(var, loop_name, loop_pass,
loop_total, globalp):
output_control.append(DISABLE_OUTPUT)
self.DEB("UNLESS: DISABLE: " + str(var))
else:
output_control.append(ENABLE_OUTPUT)
self.DEB("UNLESS: ENABLE: " + str(var))
elif token == "</TMPL_LOOP":
skip_params = 1
if not loop_name:
raise TemplateError, "Unmatched </TMPL_LOOP>."
# If this loop was not disabled, then record the pass.
if loop_total[-1] > 0: loop_pass[-1] += 1
if loop_pass[-1] == loop_total[-1]:
# There are no more passes in this loop. Pop
# the loop from stack.
loop_pass.pop()
loop_name.pop()
loop_start.pop()
loop_total.pop()
output_control.pop()
self.DEB("LOOP: END")
else:
# Jump to the beggining of this loop block
# to process next pass of the loop.
i = loop_start[-1]
self.DEB("LOOP: NEXT PASS")
elif token == "</TMPL_IF":
skip_params = 1
if not output_control:
raise TemplateError, "Unmatched </TMPL_IF>."
output_control.pop()
self.DEB("IF: END")
elif token == "</TMPL_UNLESS":
skip_params = 1
if not output_control:
raise TemplateError, "Unmatched </TMPL_UNLESS>."
output_control.pop()
self.DEB("UNLESS: END")
elif token == "<TMPL_ELSE":
skip_params = 1
if not output_control:
raise TemplateError, "Unmatched <TMPL_ELSE>."
if output_control[-1] == DISABLE_OUTPUT:
# Condition was false, activate the ELSE block.
output_control[-1] = ENABLE_OUTPUT
self.DEB("ELSE: ENABLE")
elif output_control[-1] == ENABLE_OUTPUT:
# Condition was true, deactivate the ELSE block.
output_control[-1] = DISABLE_OUTPUT
self.DEB("ELSE: DISABLE")
else:
raise TemplateError, "BUG: ELSE: INVALID FLAG"
elif token == "<TMPL_BOUNDARY":
if part and part == self._current_part:
self.DEB("BOUNDARY ON")
self._current_part += 1
self._current_pos = i + 1 + PARAMS_NUMBER
break
else:
skip_params = 1
self.DEB("BOUNDARY OFF")
self._current_part += 1
elif token == "<TMPL_INCLUDE":
# TMPL_INCLUDE is left in the compiled template only
# when it was not replaced by the parser.
skip_params = 1
filename = tokens[i + PARAM_NAME]
out += """
<br />
<p>
<strong>HTMLTMPL WARNING:</strong><br />
Cannot include template: <strong>%s</strong>
</p>
<br />
""" % filename
self.DEB("CANNOT INCLUDE WARNING")
elif token == "<TMPL_GETTEXT":
skip_params = 1
if DISABLE_OUTPUT not in output_control:
text = tokens[i + PARAM_GETTEXT_STRING]
out += gettext.gettext(text)
self.DEB("GETTEXT: " + text)
else:
# Unknown processing directive.
raise TemplateError, "Invalid statement %s>." % token
elif DISABLE_OUTPUT not in output_control:
# Raw textual template data.
# If output of current block is not disabled, then
# append template data to the output buffer.
out += token
i += 1
# end of the big while loop
# Check whether all opening statements were closed.
if loop_name: raise TemplateError, "Missing </TMPL_LOOP>."
if output_control: raise TemplateError, "Missing </TMPL_IF> or </TMPL_UNLESS>"
return out
##############################################
# PRIVATE METHODS #
##############################################
def DEB(self, str):
""" Print debugging message to stderr if debugging is enabled.
@hidden
"""
if self._debug: print >> sys.stderr, str
def find_value(self, var, loop_name, loop_pass, loop_total,
global_override=None):
""" Search the self._vars data structure to find variable var
located in currently processed pass of a loop which
is currently being processed. If the variable is an ordinary
variable, then return it.
If the variable is an identificator of a loop, then
return the total number of times this loop will
be executed.
Return an empty string, if the variable is not
found at all.
@hidden
"""
# Search for the requested variable in magic vars if the name
# of the variable starts with "__" and if we are inside a loop.
if self._magic_vars and var.startswith("__") and loop_name:
return self.magic_var(var, loop_pass[-1], loop_total[-1])
# Search for an ordinary variable or for a loop.
# Recursively search in self._vars for the requested variable.
scope = self._vars
globals = []
for i in range(len(loop_name)):
# If global lookup is on then push the value on the stack.
if ((self._global_vars and global_override != "0") or \
global_override == "1") and scope.has_key(var) and \
self.is_ordinary_var(scope[var]):
globals.append(scope[var])
# Descent deeper into the hierarchy.
if scope.has_key(loop_name[i]) and scope[loop_name[i]]:
scope = scope[loop_name[i]][loop_pass[i]]
else:
return ""
if scope.has_key(var):
# Value exists in current loop.
if type(scope[var]) == ListType:
# The requested value is a loop.
# Return total number of its passes.
return len(scope[var])
else:
return scope[var]
elif globals and \
((self._global_vars and global_override != "0") or \
global_override == "1"):
# Return globally looked up value.
return globals.pop()
else:
# No value found.
if var[0].isupper():
# This is a loop name.
# Return zero, because the user wants to know number
# of its passes.
return 0
else:
return ""
def magic_var(self, var, loop_pass, loop_total):
""" Resolve and return value of a magic variable.
Raise an exception if the magic variable is not recognized.
@hidden
"""
self.DEB("MAGIC: '%s', PASS: %d, TOTAL: %d"\
% (var, loop_pass, loop_total))
if var == "__FIRST__":
if loop_pass == 0:
return 1
else:
return 0
elif var == "__LAST__":
if loop_pass == loop_total - 1:
return 1
else:
return 0
elif var == "__INNER__":
# If this is neither the first nor the last pass.
if loop_pass != 0 and loop_pass != loop_total - 1:
return 1
else:
return 0
elif var == "__PASS__":
# Magic variable __PASS__ counts passes from one.
return loop_pass + 1
elif var == "__PASSTOTAL__":
return loop_total
elif var == "__ODD__":
# Internally pass numbers stored in loop_pass are counted from
# zero. But the template language presents them counted from one.
# Therefore we must add one to the actual loop_pass value to get
# the value we present to the user.
if (loop_pass + 1) % 2 != 0:
return 1
else:
return 0
elif var.startswith("__EVERY__"):
# Magic variable __EVERY__x is never true in first or last pass.
if loop_pass != 0 and loop_pass != loop_total - 1:
# Check if an integer follows the variable name.
try:
every = int(var[9:]) # nine is length of "__EVERY__"
except ValueError:
raise TemplateError, "Magic variable __EVERY__x: "\
"Invalid pass number."
else:
if not every:
raise TemplateError, "Magic variable __EVERY__x: "\
"Pass number cannot be zero."
elif (loop_pass + 1) % every == 0:
self.DEB("MAGIC: EVERY: " + str(every))
return 1
else:
return 0
else:
return 0
else:
raise TemplateError, "Invalid magic variable '%s'." % var
def escape(self, str, override=""):
""" Escape a string either by HTML escaping or by URL escaping.
@hidden
"""
ESCAPE_QUOTES = 1
if (self._html_escape and override != "NONE" and override != "0" and \
override != "URL") or override == "HTML" or override == "1":
return cgi.escape(str, ESCAPE_QUOTES)
elif override == "URL":
return urllib.quote_plus(str)
else:
return str
def is_ordinary_var(self, var):
""" Return true if var is a scalar. (not a reference to loop)
@hidden
"""
if type(var) == StringType or type(var) == IntType or \
type(var) == LongType or type(var) == FloatType:
return 1
else:
return 0
##############################################
# CLASS: TemplateCompiler #
##############################################
class TemplateCompiler:
""" Preprocess, parse, tokenize and compile the template.
This class parses the template and produces a 'compiled' form
of it. This compiled form is an instance of the <em>Template</em>
class. The compiled form is used as input for the TemplateProcessor
which uses it to actually process the template.
This class should be used direcly only when you need to compile
a template from a string. If your template is in a file, then you
should use the <em>TemplateManager</em> class which provides
a higher level interface to this class and also can save the
compiled template to disk in a precompiled form.
"""
def __init__(self, include=1, max_include=5, comments=1, gettext=0,
debug=0):
""" Constructor.
@header __init__(include=1, max_include=5, comments=1, gettext=0,
debug=0)
@param include Enable or disable included templates.
@param max_include Maximum depth of nested inclusions.
@param comments Enable or disable template comments.
@param gettext Enable or disable gettext support.
@param debug Enable or disable debugging messages.
"""
self._include = include
self._max_include = max_include
self._comments = comments
self._gettext = gettext
self._debug = debug
# This is a list of filenames of all included templates.
# It's modified by the include_templates() method.
self._include_files = []
# This is a counter of current inclusion depth. It's used to prevent
# infinite recursive includes.
self._include_level = 0
def compile(self, file):
""" Compile template from a file.
@header compile(file)
@return Compiled template.
The return value is an instance of the <em>Template</em>
class.
@param file Filename of the template.
See the <em>prepare()</em> method of the <em>TemplateManager</em>
class for exaplanation of this parameter.
"""
self.DEB("COMPILING FROM FILE: " + file)
self._include_path = os.path.join(os.path.dirname(file), INCLUDE_DIR)
tokens = self.parse(self.read(file))
compile_params = (self._include, self._max_include, self._comments,
self._gettext)
return Template(__version__, file, self._include_files,
tokens, compile_params, self._debug)
def compile_string(self, data):
""" Compile template from a string.
This method compiles a template from a string. The
template cannot include any templates.
<strong>TMPL_INCLUDE</strong> statements are turned into warnings.
@header compile_string(data)
@return Compiled template.
The return value is an instance of the <em>Template</em>
class.
@param data String containing the template data.
"""
self.DEB("COMPILING FROM STRING")
self._include = 0
tokens = self.parse(data)
compile_params = (self._include, self._max_include, self._comments,
self._gettext)
return Template(__version__, None, None, tokens, compile_params,
self._debug)
##############################################
# PRIVATE METHODS #
##############################################
def DEB(self, str):
""" Print debugging message to stderr if debugging is enabled.
@hidden
"""
if self._debug: print >> sys.stderr, str
def read(self, filename):
""" Read content of file and return it. Raise an error if a problem
occurs.
@hidden
"""
self.DEB("READING: " + filename)
try:
f = None
try:
f = open(filename, "r")
data = f.read()
except IOError, (errno, errstr):
raise TemplateError, "IO error while reading template '%s': "\
"(%d) %s" % (filename, errno, errstr)
else:
return data
finally:
if f: f.close()
def parse(self, template_data):
""" Parse the template. This method is recursively called from
within the include_templates() method.
@return List of processing tokens.
@hidden
"""
if self._comments:
self.DEB("PREPROCESS: COMMENTS")
template_data = self.remove_comments(template_data)
tokens = self.tokenize(template_data)
if self._include:
self.DEB("PREPROCESS: INCLUDES")
self.include_templates(tokens)
return tokens