人妖在线一区,国产日韩欧美一区二区综合在线,国产啪精品视频网站免费,欧美内射深插日本少妇

新聞動態(tài)

使用Lua編寫Web端模板引擎的實例代碼分享

發(fā)布日期:2022-01-31 00:54 | 文章來源:站長之家

ltemplate.lua

local insert = table.insert
local remove = table.remove
local concat = table.concat
local format = string.format
local loaded = {}
local partten = "(.-){#([^#].-[^#])#}()"
local content = {}
local cur_content = nil
local function ob_start()
 cur_content = {}
 insert(content, cur_content)
end
local function ob_get_clean()
 local ret = concat(cur_content)
 remove(content)
 cur_content = content[#content]
 return ret
end
local function echo(value)
 insert(cur_content, value)
end
local function include(path, params)
 local bitcode = loaded[path]
 if not bitcode then
 local fp = io.open(path, "rb")
 local template = fp:read('*a')
 fp:close()
 local results = {}
 local last_endpos = 0
 for outside, inside, endpos in template:gmatch(partten) do
  insert(results, format("echo(%q)", outside))
  insert(results, inside)
  last_endpos = endpos
 end
 insert(results, format("echo(%q)", template:sub(last_endpos)))
 results = concat(results, "\n")
 bitcode = assert(loadstring(results))
 loaded[path] = bitcode
 end
 local env = {
 include = include,
 echo = echo,
 ob_start = ob_start,
 ob_get_clean = ob_get_clean
 }
 setmetatable(env, {__index = function(tb, k)
 return params[k] or _G[k]
 end})
 setfenv(bitcode, env)
 bitcode()
end
for i = 1, 100000 do
 ob_start()
 include(arg[1], {
 params = {
  a = '1234',
  b = '4321'
 }
 })
 ob_get_clean()
end

master.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang='zh-CN' xml:lang='zh-CN' xmlns='http://www.w3.org/1999/xhtml'>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
 <meta http-equiv="Content-Language" content="zh-CN"/>
 <meta name="robots" content="index, follow" />
 <link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico" />
 <title> child&apos;s personal page - 開源中國社區(qū)</title>
<link rel="stylesheet/less"  type="text/css" media="screen" />
 <link rel="stylesheet" href="/js/2012/poshytip/tip-yellowsimple/tip-yellowsimple.css" type="text/css" />
 <link rel="stylesheet" type="text/css" href="/js/2011/fancybox/jquery.fancybox-1.3.4.css" media="screen" />
 <script type="text/javascript" src="/js/2012/jquery-1.7.1.min.js"></script>
 <script type="text/javascript" src="/js/2012/jquery.form.js"></script>
 <script type="text/javascript" src="/js/2011/fancybox/jquery.fancybox-1.3.4.pack.js"></script>
 <script type="text/javascript" src="/js/2012/poshytip/jquery.poshytip.min.js"></script>
 <script type="text/javascript" src="/js/2011/oschina.js?ver=20121007"></script>
 <script type="text/javascript" src="/js/2012/less-1.3.0.min.js"></script>
 <script type="text/javascript" src="/js/scrolltopcontrol.js"></script>
 <script type='text/javascript' src='/js/jquery/jquery.atwho.js?ver=2013112501'></script>
 <link rel="stylesheet" type="text/css" href="/js/jquery/jquery.atwho.css" />
 <link rel="alternate" type="application/rss+xml" title="lostchild最新博客"  />
 <link rel="EditURI" type="application/rsd+xml" title="RSD"  />
 <link rel="wlwmanifest" type="application/wlwmanifest+xml"  />
 {# echo(header) #}
</head>
<body>
{# echo(content) #}
<body>
</html>

temp.html,繼承master.html

{# ob_start() #}
<script>
 alert("hello World")
</script>
{# local header = ob_get_clean() #}

{# ob_start() #}
<table>
{# for k, v in pairs(params) do #}
<tr>
 <td>{# echo(k) #}</td>
 <td>{# echo(v) #}</td>
</tr>
{# end #}
</table>
{# local content = ob_get_clean() #}
{# include('master.html', {header = header, content = content}) #}

循環(huán)十萬次測試渲染速度(阿里云最便宜一款vps)

[root@AY130801221248587d02Z ~]# time lua ltemplate.lua temp.htmlreal  0m1.867s
user  0m1.862s
sys0m0.004s

總結(jié)

由此可見渲染的速度還是非??斓?,可以將此原型用于嵌入式設(shè)備中的頁面上(用大量js實現(xiàn)的嵌入式設(shè)備頁面兼容性不好)。而且嵌入式設(shè)備的界面需要簡單明確,所以也不用太豐富的模版功能。

原理很簡單:

1.用lua版的正則把模版內(nèi){#與#}之間的內(nèi)容挖出來,原樣輸出成lua代碼,其它部分則生成使用echo打印到某個緩沖區(qū)的lua代碼。

2.將這個生成出來的代碼使用loadstring編譯。

3.通過setfenv實現(xiàn)loadstring后的模擬環(huán)境配置(用以提供模版內(nèi)使用的echo,ob_start等函數(shù),以及傳入的參數(shù))

4.執(zhí)行這個編譯后的函數(shù)即可。

海外服務(wù)器租用

版權(quán)聲明:本站文章來源標注為YINGSOO的內(nèi)容版權(quán)均為本站所有,歡迎引用、轉(zhuǎn)載,請保持原文完整并注明來源及原文鏈接。禁止復(fù)制或仿造本網(wǎng)站,禁止在非www.sddonglingsh.com所屬的服務(wù)器上建立鏡像,否則將依法追究法律責(zé)任。本站部分內(nèi)容來源于網(wǎng)友推薦、互聯(lián)網(wǎng)收集整理而來,僅供學(xué)習(xí)參考,不代表本站立場,如有內(nèi)容涉嫌侵權(quán),請聯(lián)系alex-e#qq.com處理。

相關(guān)文章

實時開通

自選配置、實時開通

免備案

全球線路精選!

全天候客戶服務(wù)

7x24全年不間斷在線

專屬顧問服務(wù)

1對1客戶咨詢顧問

在線
客服

在線客服:7*24小時在線

客服
熱線

400-630-3752
7*24小時客服服務(wù)熱線

關(guān)注
微信

關(guān)注官方微信
頂部