Python 에서 실 현 된 간단 한 템 플 릿 엔진 기능 예시
#coding:utf- 8
__author__="sdm"
__author_email='[email protected]'
__date__ ="$2009-8-25 21:04:13$"
'' '
pytpl php
'' '
import sys
import StringIO
import os.path
import os
#
_tpl_cache={}
class Pytpl:
def __init__(self,tpl_path='./' ):
self.tpl_path=tpl_path
self.data={}
self.output = StringIO.StringIO()
pass
def set(self,name,value):
'' '
'' '
self.data[name]=value;
pass
def get(self,name):
'' '
'' '
t={}
return t.get(name, '' )
pass
def tpl(self,tplname):
'' '
'' '
f=self.tpl_path+tplname
if not os.path.exists(f):
raise Exception('tpl:[%s] is not exists' % f)
mtime=os.stat(f).st_mtime
if not _tpl_cache.has_key(f) or _tpl_cache[f][ 'time' ]<mtime:
src_code=self.__compile__(open(f).read())
try :
t=open(f+'.py' , 'w' )
t.write(src_code)
t.close()
except:
pass
py_code=compile(src_code, f+'.py' , 'exec' )
_tpl_cache[f]={'code' :py_code, 'time' :mtime}
else :
py_code= _tpl_cache[f]['code' ]
exec(py_code, {'self' :self}, self.data)
return self.output.getvalue()
def execute(self,code,data,tplname):
'' '
'' '
py_file_name=tplname+'.py'
f=open(py_file_name,'w' )
f.write(code)
f.close()
execfile(py_file_name, {'self' :self}, data)
def __compile__ (self,code):
'' '
<?
'' '
tlen=len(code);
flag_start='<?'
flag_end='?>'
#
status=0
i=0
#
pos_end=0
pos_start=0
#
global indent
indent=0
py_code=[]
def place_t_code(c,t_indent):
'' '
'' '
global indent
if (c[ 0 ]== '=' ):
return ( ' ' * 4 *indent) + 'echo ( /'%s/' % (' +c[ 1 :]+ '))'
lines=c.split("/n" )
t=[]
for i in lines:
indent2=indent
tmp=i.strip(" /n/r" )
c=tmp[len(tmp)-1 :len(tmp)]
#
if (c== '{' ):
indent+=1
tmp=tmp[0 :len(tmp)- 1 ]+ ":"
elif(c=='}' ):
indent-=1
tmp=tmp[0 :len(tmp)- 1 ]
t.append((' ' * 4 *indent2) +tmp )
return "/n" .join(t)
while 1 :
if i>=tlen: break
c=code[i];
if status== 0 :
#
pos_start=code.find(flag_start,pos_end);
if (pos_start>- 1 ):
s=code[pos_end:pos_start]
t_code= 'echo ( ' +repr(s)+ ')'
t_code=' ' *indent* 4 +t_code
if s:
py_code.append(t_code)
i=pos_start
last_pos=i
#
status=1
continue
else :
#
pos_start=tlen
t_code='echo ( ' +repr(code[pos_end:pos_start])+ ' ) '
t_code=' ' *indent* 4 +t_code
py_code.append(t_code)
break
if status== 1 :
#
pos_end=code.find(flag_end,i)
if (pos_end>- 1 ):
# <?
t_code=place_t_code(code[pos_start+2 :pos_end],indent)
# ?>
pos_end+=2
py_code.append(t_code)
else :
#
pos_end=tlen
# <?
t_code=place_t_code(code[pos_start+2 :pos_end],indent)
py_code.append(t_code)
break
status=0
i=pos_end
pass
i+=1
py_code_str="#coding:utf-8/nimport sys;global echo;echo=self.output.write/n"
py_code_str+="/n" .join(py_code)
py_code_str=py_code_str.replace("/t" , " " )
return py_code_str
def test():
tpl=Pytpl('./' );
tpl.set('title' , ' 3' )
print tpl.tpl('test.html' )
pass
if __name__ == "__main__" :
test()
Python 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있 습 니 다.본 논문 에서 말 한 것 이 여러분 의 Python 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python의 None과 NULL의 차이점 상세 정보그래서 대상 = 속성 + 방법 (사실 방법도 하나의 속성, 데이터 속성과 구별되는 호출 가능한 속성 같은 속성과 방법을 가진 대상을 클래스, 즉 Classl로 분류할 수 있다.클래스는 하나의 청사진과 같아서 하나의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.