| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | local utils = require 'pl.utils' |
| |
|
| | local append,format,strsub,strfind = table.insert,string.format,string.sub,string.find |
| |
|
| | |
| | |
| | |
| | |
| | local max_concatenations = 100 |
| |
|
| | local function parseDollarParen(pieces, chunk, exec_pat) |
| | local concatenations = 0 |
| | local s = 1 |
| | for term, executed, e in chunk:gmatch(exec_pat) do |
| | executed = '('..strsub(executed,2,-2)..')' |
| | concatenations = concatenations + 2 |
| | if concatenations > max_concatenations then |
| | append(pieces, format("%q)_put((%s or '')..", |
| | strsub(chunk,s, term - 1), executed)) |
| | concatenations = 1 |
| | else |
| | append(pieces, format("%q..(%s or '')..", |
| | strsub(chunk,s, term - 1), executed)) |
| | end |
| | s = e |
| | end |
| | append(pieces, format("%q", strsub(chunk,s))) |
| | end |
| |
|
| | local function parseHashLines(chunk,brackets,esc) |
| | local exec_pat = "()$(%b"..brackets..")()" |
| |
|
| | local esc_pat = esc.."+([^\n]*\n?)" |
| | local esc_pat1, esc_pat2 = "^"..esc_pat, "\n"..esc_pat |
| | local pieces, s = {"return function(_put) ", n = 1}, 1 |
| | while true do |
| | local ss, e, lua = strfind(chunk,esc_pat1, s) |
| | if not e then |
| | ss, e, lua = strfind(chunk,esc_pat2, s) |
| | append(pieces, "_put(") |
| | parseDollarParen(pieces, strsub(chunk,s, ss), exec_pat) |
| | append(pieces, ")") |
| | if not e then break end |
| | end |
| | append(pieces, lua) |
| | s = e + 1 |
| | end |
| | append(pieces, " end") |
| | return table.concat(pieces) |
| | end |
| |
|
| | local template = {} |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | function template.substitute(str,env) |
| | env = env or {} |
| | if rawget(env,"_parent") then |
| | setmetatable(env,{__index = env._parent}) |
| | end |
| | local brackets = rawget(env,"_brackets") or '()' |
| | local escape = rawget(env,"_escape") or '#' |
| | local code = parseHashLines(str,brackets,escape) |
| | local fn,err = utils.load(code,'TMP','t',env) |
| | if not fn then return nil,err end |
| | fn = fn() |
| | local out = {} |
| | local res,err = xpcall(function() fn(function(s) |
| | out[#out+1] = s |
| | end) end,debug.traceback) |
| | if not res then |
| | if env._debug then print(code) end |
| | return nil,err |
| | end |
| | return table.concat(out) |
| | end |
| |
|
| | return template |
| |
|
| |
|
| |
|
| |
|
| |
|