Module:Params: Difference between revisions

From All Skies Encyclopaedia
imported>Grufo
(New functions `magic_for_each` and `magic_for_each_value`; new `setting` modifier; structural changes in all iterating functions; general code review)
imported>Grufo
(Add two new functions, `squeezing` and `trimming_values`; general code review)
Line 6: Line 6:


-- Set directives
-- Set directives
local slots = {
local memoryslots = {
i = 'itersep',
i = 'itersep',
p = 'pairsep',
p = 'pairsep',
Line 68: Line 68:
end
end
else
else
if ctx.subset == -1 then
for key, val in ipairs(ctx.params) do
ctx.params[key] = nil
end
end
for key, val in pairs(ctx.params) do
for key, val in pairs(ctx.params) do
if type(key) == 'number' then
if type(key) == 'number' then
Line 104: Line 109:
ctx.iterfunc = pairs
ctx.iterfunc = pairs
ctx.subset = -1
ctx.subset = -1
for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
return context_iterate(ctx, 1)
return context_iterate(ctx, 1)
end
end
Line 136: Line 140:
arglen = arglen + 1
arglen = arglen + 1
else
else
varname = slots[string.char(chr)]
varname = memoryslots[string.char(chr)]
if varname == nil then error('Unknown slot "' ..
if varname == nil then error('Unknown slot "' ..
string.char(chr) .. '"', 0) end
string.char(chr) .. '"', 0) end
Line 147: Line 151:
return context_iterate(ctx, arglen + 1)
return context_iterate(ctx, arglen + 1)


end


-- See iface.squeezing()
library.squeezing = function(ctx)
local tbl = ctx.params
local store = {}
local indices = {}
for key, val in pairs(tbl) do
if type(key) == 'number' then
indices[#indices + 1] = key
store[key] = val
tbl[key] = nil
end
end
table.sort(indices)
for idx = 1, #indices do tbl[idx] = store[indices[idx]] end
return context_iterate(ctx, 1)
end
end


Line 153: Line 175:
library.cutting = function(ctx)
library.cutting = function(ctx)
local lcut = tonumber(ctx.pipe[1])
local lcut = tonumber(ctx.pipe[1])
if lcut == nil then error('Left trim must be a number', 0) end
if lcut == nil then error('Left cut must be a number', 0) end
local rcut = tonumber(ctx.pipe[2])
local rcut = tonumber(ctx.pipe[2])
if rcut == nil then error('Right trim must be a number', 0) end
if rcut == nil then error('Right cut must be a number', 0) end
if ctx.subset == -1 then return context_iterate(ctx, 3) end
local tbl = ctx.params
local tbl = ctx.params
local tlen = #tbl
local tlen = #tbl
Line 176: Line 197:
-- See iface.with_name_matching()
-- See iface.with_name_matching()
library.with_name_matching = function(ctx)
library.with_name_matching = function(ctx)
local ptn = ctx.pipe[1]
for key, val in ctx.iterfunc(ctx.params) do
local tbl = ctx.params
if not string.find(key, ctx.pipe[1], 1, false) then
for key, val in pairs(tbl) do
ctx.params[key] = nil
if not string.find(key, ptn, 1, false) then tbl[key] = nil end
end
end
end
return context_iterate(ctx, 2)
return context_iterate(ctx, 2)
Line 187: Line 208:
-- See iface.with_name_not_matching()
-- See iface.with_name_not_matching()
library.with_name_not_matching = function(ctx)
library.with_name_not_matching = function(ctx)
local ptn = ctx.pipe[1]
for key, val in ctx.iterfunc(ctx.params) do
local tbl = ctx.params
if string.find(key, ctx.pipe[1], 1, false) then
for key, val in pairs(tbl) do
ctx.params[key] = nil
if string.find(key, ptn, 1, false) then tbl[key] = nil end
end
end
end
return context_iterate(ctx, 2)
return context_iterate(ctx, 2)
Line 198: Line 219:
-- See iface.with_value_matching()
-- See iface.with_value_matching()
library.with_value_matching = function(ctx)
library.with_value_matching = function(ctx)
local ptn = ctx.pipe[1]
for key, val in ctx.iterfunc(ctx.params) do
local tbl = ctx.params
if not string.find(val, ctx.pipe[1], 1, false) then
for key, val in pairs(tbl) do
ctx.params[key] = nil
if not string.find(val, ptn, 1, false) then tbl[key] = nil end
end
end
end
return context_iterate(ctx, 2)
return context_iterate(ctx, 2)
Line 209: Line 230:
-- See iface.with_value_not_matching()
-- See iface.with_value_not_matching()
library.with_value_not_matching = function(ctx)
library.with_value_not_matching = function(ctx)
local ptn = ctx.pipe[1]
for key, val in ctx.iterfunc(ctx.params) do
local tbl = ctx.params
if string.find(val, ctx.pipe[1], 1, false) then
for key, val in pairs(tbl) do
ctx.params[key] = nil
if string.find(val, ptn, 1, false) then tbl[key] = nil end
end
end
end
return context_iterate(ctx, 2)
return context_iterate(ctx, 2)
end


-- See iface.trimming_values()
library.trimming_values = function(ctx)
local tbl = ctx.params
for key, val in pairs(tbl) do tbl[key] = val:match('^%s*(.-)%s*$') end
return context_iterate(ctx, 1)
end
end


Line 227: Line 256:
local count = 0
local count = 0
for _ in ctx.iterfunc(ctx.params) do count = count + 1 end
for _ in ctx.iterfunc(ctx.params) do count = count + 1 end
if ctx.subset == -1 then count = count - #ctx.params end
return count
return count
end
end
Line 276: Line 306:
local keystr = (opts[1] or ''):match'^%s*(.*%S)'
local keystr = (opts[1] or ''):match'^%s*(.*%S)'
if keystr == '' then error('No parameter name was provided', 0) end
if keystr == '' then error('No parameter name was provided', 0) end
local val = ctx.params[tonumber(keystr) or keystr]
local keynum = tonumber(keystr)
if (
ctx.subset == -1 and keynum ~= nil and #ctx.params >= keynum
) or (
ctx.subset == 1 and (keynum == nil or #ctx.params < keynum)
) then return (ctx.ifngiven or '') end
local val = ctx.params[keynum or keystr]
if val == nil then return (ctx.ifngiven or '') end
if val == nil then return (ctx.ifngiven or '') end
return (ctx.header or '') .. val .. (ctx.footer or '')
return (ctx.header or '') .. val .. (ctx.footer or '')
Line 292: Line 328:
local ret = ''
local ret = ''


if ctx.subset ~= -1 then
if ctx.subset == -1 then
for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
else
for key, val in ipairs(ctx.params) do
for key, val in ipairs(ctx.params) do
ret = ret .. sep .. key .. kvs .. val
ret = ret .. sep .. key .. kvs .. val
Line 323: Line 361:
local ret = ''
local ret = ''


if ctx.subset ~= -1 then
if ctx.subset == -1 then
for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
else
for key, val in ipairs(ctx.params) do
for key, val in ipairs(ctx.params) do
ret = ret .. sep .. val
ret = ret .. sep .. val
Line 355: Line 395:
local ret = ''
local ret = ''


if ctx.subset ~= -1 then
if ctx.subset == -1 then
for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
else
for key, val in ipairs(ctx.params) do
for key, val in ipairs(ctx.params) do
ret = ret .. sep .. string.gsub(
ret = ret .. sep .. string.gsub(
Line 396: Line 438:
local las = ctx.footer or ''
local las = ctx.footer or ''
local foo = ctx.ifngiven or ''
local foo = ctx.ifngiven or ''
local model = { title = opts[1]:match'^%s*(.*%S)', args = opts }
local ret = ''
local ret = ''

local model = { title = opts[1]:match'^%s*(.*%S)', args = opts }


table.insert(opts, 1, true)
table.insert(opts, 1, true)


if ctx.subset ~= -1 then
if ctx.subset == -1 then
for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
else
for key, val in ipairs(ctx.params) do
for key, val in ipairs(ctx.params) do
opts[1] = key
opts[1] = key
Line 440: Line 483:
local las = ctx.footer or ''
local las = ctx.footer or ''
local foo = ctx.ifngiven or ''
local foo = ctx.ifngiven or ''
local ret = ''

local model = { title = 'Module:' .. opts[1]:match'^%s*(.*%S)', args = opts }
local model = { title = 'Module:' .. opts[1]:match'^%s*(.*%S)', args = opts }
local mfunc = require(model.title)[opts[2]:match'^%s*(.*%S)']
local mfunc = require(model.title)[opts[2]:match'^%s*(.*%S)']
local ret = ''


if ctx.subset ~= -1 then
if ctx.subset == -1 then
for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
else
for key, val in ipairs(ctx.params) do
for key, val in ipairs(ctx.params) do
opts[1] = key
opts[1] = key
Line 487: Line 531:
table.insert(opts, 1, true)
table.insert(opts, 1, true)


if ctx.subset ~= -1 then
if ctx.subset == -1 then
for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
else
for key, val in ipairs(ctx.params) do
for key, val in ipairs(ctx.params) do
opts[1] = key
opts[1] = key
Line 524: Line 570:
local las = ctx.footer or ''
local las = ctx.footer or ''
local foo = ctx.ifngiven or ''
local foo = ctx.ifngiven or ''
local model = { title = opts[1]:match'^%s*(.*%S)', args = opts }
local ret = ''
local ret = ''


if ctx.subset == -1 then
local model = { title = opts[1]:match'^%s*(.*%S)', args = opts }
for key, val in ipairs(ctx.params) do ctx.params[key] = nil end

else
if ctx.subset ~= -1 then
for key, val in ipairs(ctx.params) do
for key, val in ipairs(ctx.params) do
opts[1] = val
opts[1] = val
Line 564: Line 611:
local las = ctx.footer or ''
local las = ctx.footer or ''
local foo = ctx.ifngiven or ''
local foo = ctx.ifngiven or ''
local ret = ''

local model = { title = 'Module:' .. opts[1]:match'^%s*(.*%S)', args = opts }
local model = { title = 'Module:' .. opts[1]:match'^%s*(.*%S)', args = opts }
local mfunc = require(model.title)[opts[2]:match'^%s*(.*%S)']
local mfunc = require(model.title)[opts[2]:match'^%s*(.*%S)']
local ret = ''


table.remove(opts, 1)
table.remove(opts, 1)


if ctx.subset ~= -1 then
if ctx.subset == -1 then
for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
else
for key, val in ipairs(ctx.params) do
for key, val in ipairs(ctx.params) do
opts[1] = val
opts[1] = val
Line 609: Line 657:
local ret = ''
local ret = ''


if ctx.subset ~= -1 then
if ctx.subset == -1 then
for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
else
for key, val in ipairs(ctx.params) do
for key, val in ipairs(ctx.params) do
opts[1] = val
opts[1] = val
Line 667: Line 717:




-- Syntax: #invoke:params|cutting|left trim|right trim|function name
-- Syntax: #invoke:params|squeezing|function name
iface.squeezing = function(frame)
return context_init(frame, library.squeezing, false, false)
end


-- Syntax: #invoke:params|cutting|left cut|right cut|function name
iface.cutting = function(frame)
iface.cutting = function(frame)
return context_init(frame, library.cutting, false, false)
return context_init(frame, library.cutting, false, false)
Line 694: Line 750:
iface.with_value_not_matching = function(frame)
iface.with_value_not_matching = function(frame)
return context_init(frame, library.with_value_not_matching, false, false)
return context_init(frame, library.with_value_not_matching, false, false)
end


-- Syntax: #invoke:params|trimming_values|function name
iface.trimming_values = function(frame)
return context_init(frame, library.trimming_values, false, false)
end
end



Revision as of 09:33, 14 July 2023

Documentation for this module may be created at Module:Params/doc

	---                                        ---
	---     LOCAL ENVIRONMENT                  ---
	---    ________________________________    ---
	---                                        ---


-- Set directives
local memoryslots = {
	i = 'itersep',
	p = 'pairsep',
	h = 'header',
	f = 'footer',
	n = 'ifngiven'
}


-- The private table of functions
local library = {}


-- Return a copy or a reference to a table
local function copy_or_ref_table(src, refonly)
	if refonly then return src end
	newtab = {}
	for key, val in pairs(src) do newtab[key] = val end
	return newtab
end


-- Prepare the context
local function context_init(frame, funcname, refpipe, refparams)
	local ctx = {}
	ctx.iterfunc = pairs
	ctx.pipe = copy_or_ref_table(frame.args, refpipe)
	ctx.frame = frame:getParent()
	ctx.params = copy_or_ref_table(ctx.frame.args, refparams)
	return funcname(ctx)
end


-- Move to the next action within the user-given list
local function context_iterate(ctx, n_forward)
	local nextfn
	if ctx.pipe[n_forward] ~= nil then
		nextfn = ctx.pipe[n_forward]:match'^%s*(.*%S)'
	end
	if nextfn == nil then
		error('End of arguments reached without a function call', 0)
	end
	if library[nextfn] == nil then
		error('The function "' .. nextfn .. '" does not exist', 0)
	end
	for idx = n_forward, 1, -1 do table.remove(ctx.pipe, idx) end
	return library[nextfn](ctx)
end


-- Concatenate the numerical keys from the table of parameters to the numerical
-- keys from the table of options; non-numerical keys from the table of options
-- will prevail over colliding non-numerical keys from the table of parameters
local function concat_params(ctx)
	local shift = table.maxn(ctx.pipe) 
	local newargs = {}
	if ctx.subset == 1 then
		-- We need only the sequence
		for key, val in ipairs(ctx.params) do
			newargs[key + shift] = val
		end
	else
		if ctx.subset == -1 then
			for key, val in ipairs(ctx.params) do
				ctx.params[key] = nil
			end
		end
		for key, val in pairs(ctx.params) do
			if type(key) == 'number' then
				newargs[key + shift] = val
			else
				newargs[key] = val
			end
		end
	end
	for key, val in pairs(ctx.pipe) do newargs[key] = val end
	return newargs
end



	--[[ Piping piped functions ]]--
	--------------------------------


-- See iface.sequential()
library.sequential = function(ctx)
	if ctx.subset == -1 then
		error('The two directives `non-sequential` and `sequential` are in contradiction with each other', 0)
	end
	ctx.iterfunc = ipairs
	ctx.subset = 1
	return context_iterate(ctx, 1)
end


-- See iface['non-sequential']()
library['non-sequential'] = function(ctx)
	if ctx.subset == 1 then
		error('The two directives `sequential` and `non-sequential` are in contradiction with each other', 0)
	end
	ctx.iterfunc = pairs
	ctx.subset = -1
	return context_iterate(ctx, 1)
end


-- See iface.setting()
library.setting = function(ctx)

	local opts = ctx.pipe

	local cmd = (opts[1] or
			''):gsub('%s+', ''):gsub('/+', '/'):match'^/*(.*[^/])'

	if cmd == nil then
		error('No directive was given about what variables to set', 0)
	end

	local target = string.byte('/')
	local arglen = 2
	local aggregate = {}
	local varname
	local chr

	for idx = 1, #cmd do
		chr = cmd:byte(idx)
		if chr == target then
			for key, val in ipairs(aggregate) do
				ctx[val] = opts[arglen]
				aggregate[key] = nil
			end
			arglen = arglen + 1
		else
			varname = memoryslots[string.char(chr)]
			if varname == nil then error('Unknown slot "' ..
				string.char(chr) .. '"', 0) end
			table.insert(aggregate, varname)
		end
	end

	for key, val in ipairs(aggregate) do ctx[val] = opts[arglen] end

	return context_iterate(ctx, arglen + 1)

end


-- See iface.squeezing()
library.squeezing = function(ctx)
	local tbl = ctx.params
	local store = {}
	local indices = {}
	for key, val in pairs(tbl) do
		if type(key) == 'number' then
			indices[#indices + 1] = key
			store[key] = val
			tbl[key] = nil
		end
	end
	table.sort(indices)
	for idx = 1, #indices do tbl[idx] = store[indices[idx]] end
	return context_iterate(ctx, 1)
end


-- See iface.cutting()
library.cutting = function(ctx)
	local lcut = tonumber(ctx.pipe[1])
	if lcut == nil then error('Left cut must be a number', 0) end
	local rcut = tonumber(ctx.pipe[2])
	if rcut == nil then error('Right cut must be a number', 0) end
	local tbl = ctx.params
	local tlen = #tbl
	if lcut < 0 then lcut = tlen + lcut end
	if rcut < 0 then rcut = tlen + rcut end
	if lcut + rcut > 0 then
		if lcut + rcut >= tlen then
			for key, val in ipairs(tbl) do tbl[key] = nil end
		else
			local last = tlen - rcut + 1
			for idx = tlen, last, -1 do tbl[idx] = nil end
			for _ = 1, lcut, 1 do table.remove(tbl, 1) end
		end
	end
	return context_iterate(ctx, 3)
end


-- See iface.with_name_matching()
library.with_name_matching = function(ctx)
	local ptn = ctx.pipe[1]
	local tbl = ctx.params
	for key, val in pairs(tbl) do
		if not string.find(key, ptn, 1, false) then tbl[key] = nil end
	end
	return context_iterate(ctx, 2)
end


-- See iface.with_name_not_matching()
library.with_name_not_matching = function(ctx)
	local ptn = ctx.pipe[1]
	local tbl = ctx.params
	for key, val in pairs(tbl) do
		if string.find(key, ptn, 1, false) then tbl[key] = nil end
	end
	return context_iterate(ctx, 2)
end


-- See iface.with_value_matching()
library.with_value_matching = function(ctx)
	local ptn = ctx.pipe[1]
	local tbl = ctx.params
	for key, val in pairs(tbl) do
		if not string.find(val, ptn, 1, false) then tbl[key] = nil end
	end
	return context_iterate(ctx, 2)
end


-- See iface.with_value_not_matching()
library.with_value_not_matching = function(ctx)
	local ptn = ctx.pipe[1]
	local tbl = ctx.params
	for key, val in pairs(tbl) do
		if string.find(val, ptn, 1, false) then tbl[key] = nil end
	end
	return context_iterate(ctx, 2)
end


-- See iface.trimming_values()
library.trimming_values = function(ctx)
	local tbl = ctx.params
	for key, val in pairs(tbl) do tbl[key] = val:match('^%s*(.-)%s*$') end
	return context_iterate(ctx, 1)
end



	--[[ Non-piping piped functions ]]--
	------------------------------------


-- See iface.count()
library.count = function(ctx)
	local count = 0
	for _ in ctx.iterfunc(ctx.params) do count = count + 1 end
	if ctx.subset == -1 then count = count - #ctx.params end
	return count
end


-- See iface.concat_and_call()
library.concat_and_call = function(ctx)

	local opts = ctx.pipe
	local tname = opts[1]

	if tname == nil then error('No template name was provided', 0) end

	table.remove(opts, 1)

	return ctx.frame:expandTemplate{
		title = tname,
		args = concat_params(ctx)
	}

end


-- See iface.concat_and_invoke()
library.concat_and_invoke = function(ctx)

	local opts = ctx.pipe
	local mname = opts[1]

	if mname == nil then error('No module name was provided', 0) end
	if opts[2] == nil then error('No function name was provided', 0) end

	local fname = opts[2]:match'^%s*(.*%S)'

	table.remove(opts, 2)
	table.remove(opts, 1)

	return require('Module:' .. mname)[fname](ctx.frame:newChild{
		title = 'Module:' .. fname,
		args = concat_params(ctx)
	})

end


-- See iface.value_of()
library.value_of = function(ctx)
	local opts = ctx.pipe
	local keystr = (opts[1] or ''):match'^%s*(.*%S)'
	if keystr == '' then error('No parameter name was provided', 0) end
	local keynum = tonumber(keystr)
	if (
		ctx.subset == -1 and keynum ~= nil and #ctx.params >= keynum
	) or (
		ctx.subset == 1 and (keynum == nil or #ctx.params < keynum)
	) then return (ctx.ifngiven or '') end
	local val = ctx.params[keynum or keystr]
	if val == nil then return (ctx.ifngiven or '') end
	return (ctx.header or '') .. val .. (ctx.footer or '')
end


-- See iface.list()
library.list = function(ctx)

	local pps = ctx.itersep or ''
	local kvs = ctx.pairsep or ''
	local sep = ctx.header or ''
	local las = ctx.footer or ''
	local foo = ctx.ifngiven or ''
	local ret = ''

	if ctx.subset == -1 then
		for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
	else
		for key, val in ipairs(ctx.params) do
			ret = ret .. sep .. key .. kvs .. val
			sep = pps
			foo = las
			ctx.params[key] = nil
		end
	end

	if ctx.subset ~= 1 then
		for key, val in pairs(ctx.params) do
			ret = ret .. sep .. key .. kvs .. val
			sep = pps
			foo = las
		end
	end

	return ret .. foo

end


-- See iface.list_values()
library.list_values = function(ctx)

	local pps = ctx.itersep or ''
	local sep = ctx.header or ''
	local las = ctx.footer or ''
	local foo = ctx.ifngiven or ''
	local ret = ''

	if ctx.subset == -1 then
		for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
	else
		for key, val in ipairs(ctx.params) do
			ret = ret .. sep .. val
			sep = pps
			foo = las
			ctx.params[key] = nil
		end
	end

	if ctx.subset ~= 1 then
		for key, val in pairs(ctx.params) do
			ret = ret .. sep .. val
			sep = pps
			foo = las
		end
	end

	return ret .. foo

end


-- See iface.for_each()
library.for_each = function(ctx)

	local pps = ctx.itersep or ''
	local las = ctx.footer or ''
	local sep = ctx.header or ''
	local foo = ctx.ifngiven or ''
	local txt = ctx.pipe[1]
	local ret = ''

	if ctx.subset == -1 then
		for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
	else
		for key, val in ipairs(ctx.params) do
			ret = ret .. sep .. string.gsub(
				string.gsub(txt, '%$#', key),
				'%$@',
				val
			)
			sep = pps
			foo = las
			ctx.params[key] = nil
		end
	end

	if ctx.subset ~= 1 then
		for key, val in pairs(ctx.params) do
			ret = ret .. sep .. string.gsub(
				string.gsub(txt, '%$#', key),
				'%$@',
				val
			)
			sep = pps
			foo = las
		end
	end

	return ret .. foo

end


-- See iface.call_for_each()
library.call_for_each = function(ctx)

	local opts = ctx.pipe

	if opts[1] == nil then error('No template name was provided', 0) end

	local ccs = ctx.itersep or ''
	local sep = ctx.header or ''
	local las = ctx.footer or ''
	local foo = ctx.ifngiven or ''
	local model = { title = opts[1]:match'^%s*(.*%S)', args = opts }
	local ret = ''

	table.insert(opts, 1, true)

	if ctx.subset == -1 then
		for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
	else
		for key, val in ipairs(ctx.params) do
			opts[1] = key
			opts[2] = val
			ret = ret .. sep .. ctx.frame:expandTemplate(model)
			sep = ccs
			foo = las
			ctx.params[key] = nil
		end
	end

	if ctx.subset ~= 1 then
		for key, val in pairs(ctx.params) do
			opts[1] = key
			opts[2] = val
			ret = ret .. sep .. ctx.frame:expandTemplate(model)
			sep = ccs
			foo = las
		end
	end

	return ret .. foo

end


-- See iface.invoke_for_each()
library.invoke_for_each = function(ctx)

	local opts = ctx.pipe

	if opts[1] == nil then error('No module name was provided', 0) end
	if opts[2] == nil then error('No function name was provided', 0) end

	local ccs = ctx.itersep or ''
	local sep = ctx.header or ''
	local las = ctx.footer or ''
	local foo = ctx.ifngiven or ''
	local model = { title = 'Module:' .. opts[1]:match'^%s*(.*%S)', args = opts }
	local mfunc = require(model.title)[opts[2]:match'^%s*(.*%S)']
	local ret = ''

	if ctx.subset == -1 then
		for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
	else
		for key, val in ipairs(ctx.params) do
			opts[1] = key
			opts[2] = val
			ret = ret .. sep .. mfunc(ctx.frame:newChild(model))
			sep = ccs
			foo = las
			ctx.params[key] = nil
		end
	end

	if ctx.subset ~= 1 then
		for key, val in pairs(ctx.params) do
			opts[1] = key
			opts[2] = val
			ret = ret .. sep .. mfunc(ctx.frame:newChild(model))
			sep = ccs
			foo = las
		end
	end

	return ret .. foo

end


-- See iface.magic_for_each()
library.magic_for_each = function(ctx)

	local opts = ctx.pipe

	if opts[1] == nil then error('No template name was provided', 0) end

	local ccs = ctx.itersep or ''
	local sep = ctx.header or ''
	local las = ctx.footer or ''
	local foo = ctx.ifngiven or ''
	local magic = opts[1]:match'^%s*(.*%S)'
	local ret = ''

	table.insert(opts, 1, true)

	if ctx.subset == -1 then
		for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
	else
		for key, val in ipairs(ctx.params) do
			opts[1] = key
			opts[2] = val
			ret = ret .. sep .. ctx.frame:callParserFunction(magic, opts)
			sep = ccs
			foo = las
			ctx.params[key] = nil
		end
	end

	if ctx.subset ~= 1 then
		for key, val in pairs(ctx.params) do
			opts[1] = key
			opts[2] = val
			ret = ret .. sep .. ctx.frame:callParserFunction(magic, opts)
			sep = ccs
			foo = las
		end
	end

	return ret .. foo

end


-- See iface.call_for_each_value()
library.call_for_each_value = function(ctx)

	local opts = ctx.pipe

	if opts[1] == nil then error('No template name was provided', 0) end

	local ccs = ctx.itersep or ''
	local sep = ctx.header or ''
	local las = ctx.footer or ''
	local foo = ctx.ifngiven or ''
	local model = { title = opts[1]:match'^%s*(.*%S)', args = opts }
	local ret = ''

	if ctx.subset == -1 then
		for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
	else
		for key, val in ipairs(ctx.params) do
			opts[1] = val
			ret = ret .. sep .. ctx.frame:expandTemplate(model)
			sep = ccs
			foo = las
			ctx.params[key] = nil
		end
	end

	if ctx.subset ~= 1 then
		for key, val in pairs(ctx.params) do
			opts[1] = val
			ret = ret .. sep .. ctx.frame:expandTemplate(model)
			sep = ccs
			foo = las
		end
	end

	return ret .. foo

end


-- See iface.invoke_for_each_value()
library.invoke_for_each_value = function(ctx)

	local opts = ctx.pipe

	if opts[1] == nil then error('No module name was provided', 0) end
	if opts[2] == nil then error('No function name was provided', 0) end

	local ccs = ctx.itersep or ''
	local sep = ctx.header or ''
	local las = ctx.footer or ''
	local foo = ctx.ifngiven or ''
	local model = { title = 'Module:' .. opts[1]:match'^%s*(.*%S)', args = opts }
	local mfunc = require(model.title)[opts[2]:match'^%s*(.*%S)']
	local ret = ''

	table.remove(opts, 1)

	if ctx.subset == -1 then
		for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
	else
		for key, val in ipairs(ctx.params) do
			opts[1] = val
			ret = ret .. sep .. mfunc(ctx.frame:newChild(model))
			sep = ccs
			foo = las
			ctx.params[key] = nil
		end
	end

	if ctx.subset ~= 1 then
		for key, val in pairs(ctx.params) do
			opts[1] = val
			ret = ret .. sep .. mfunc(ctx.frame:newChild(model))
			sep = ccs
			foo = las
		end
	end

	return ret .. foo

end


-- See iface.magic_for_each_value()
library.magic_for_each_value = function(ctx)

	local opts = ctx.pipe

	if opts[1] == nil then error('No template name was provided', 0) end

	local ccs = ctx.itersep or ''
	local sep = ctx.header or ''
	local las = ctx.footer or ''
	local foo = ctx.ifngiven or ''
	local magic = opts[1]:match'^%s*(.*%S)'
	local ret = ''

	if ctx.subset == -1 then
		for key, val in ipairs(ctx.params) do ctx.params[key] = nil end
	else
		for key, val in ipairs(ctx.params) do
			opts[1] = val
			ret = ret .. sep .. ctx.frame:callParserFunction(magic, opts)
			sep = ccs
			foo = las
			ctx.params[key] = nil
		end
	end

	if ctx.subset ~= 1 then
		for key, val in pairs(ctx.params) do
			opts[1] = val
			ret = ret .. sep .. ctx.frame:callParserFunction(magic, opts)
			sep = ccs
			foo = las
		end
	end

	return ret .. foo

end



	---                                        ---
	---     PUBLIC ENVIRONMENT                 ---
	---    ________________________________    ---
	---                                        ---


-- The public table of functions
local iface = {}



	--[[ Piping interface functions ]]--
	------------------------------------


-- Syntax:  #invoke:params|sequential|function name
iface.sequential = function(frame)
	return context_init(frame, library.sequential, false, false)
end


-- Syntax:  #invoke:params|non-sequential|function name
iface['non-sequential'] = function(frame)
	return context_init(frame, library['non-sequential'], false, false)
end


-- Syntax:  #invoke:params|setting|directives|...|function name
iface.setting = function(frame)
	return context_init(frame, library.setting, false, false)
end


-- Syntax:  #invoke:params|squeezing|function name
iface.squeezing = function(frame)
	return context_init(frame, library.squeezing, false, false)
end


-- Syntax:  #invoke:params|cutting|left cut|right cut|function name
iface.cutting = function(frame)
	return context_init(frame, library.cutting, false, false)
end


-- Syntax:  #invoke:params|with_name_matching|pattern|function name
iface.with_name_matching = function(frame)
	return context_init(frame, library.with_name_matching, false, false)
end


-- Syntax:  #invoke:params|with_name_not_matching|pattern|function name
iface.with_name_not_matching = function(frame)
	return context_init(frame, library.with_name_not_matching, false, false)
end


-- Syntax:  #invoke:params|with_value_matching|pattern|function name
iface.with_value_matching = function(frame)
	return context_init(frame, library.with_value_matching, false, false)
end


-- Syntax:  #invoke:params|with_value_not_matching|pattern|function name
iface.with_value_not_matching = function(frame)
	return context_init(frame, library.with_value_not_matching, false, false)
end


-- Syntax:  #invoke:params|trimming_values|function name
iface.trimming_values = function(frame)
	return context_init(frame, library.trimming_values, false, false)
end



	--[[ Non-piping interface functions ]]--
	----------------------------------------


-- Syntax:  #invoke:params|count
iface.count = function(frame)
	return context_init(frame, library.count, true, true)
end


-- Syntax:  #invoke:args|concat_and_call|template name|[prepend 1]|[prepend 2]
--            |[...]|[item n]|[named item 1=value 1]|[...]|[named item n=value
--            n]|[...]
iface.concat_and_call = function(frame)
	return context_init(frame, library.concat_and_call, false, true)
end


-- Syntax:  #invoke:args|concat_and_invoke|module name|function name|[prepend
--            1]|[prepend 2]|[...]|[item n]|[named item 1=value 1]|[...]|[named
--            item n=value n]|[...]
iface.concat_and_invoke = function(frame)
	return context_init(frame, library.concat_and_invoke, false, true)
end


-- Syntax:  #invoke:params|value_of|parameter name
iface.value_of = function(frame)
	return context_init(frame, library.value_of, true, true)
end


-- Syntax:  #invoke:params|list
iface.list = function(frame)
	return context_init(frame, library.list, true, false)
end


-- Syntax:  #invoke:params|list_values
iface.list_values = function(frame)
	return context_init(frame, library.list_values, true, false)
end


-- Syntax:  #invoke:params|for_each|wikitext
iface.for_each = function(frame)
	return context_init(frame, library.for_each, true, false)
end


-- Syntax:  #invoke:params|call_for_each|template name|[append 1]|[append 2]
--            |[...]|[append n]|[named param 1=value 1]|[...]|[named param
--            n=value n]|[...]
iface.call_for_each = function(frame)
	return context_init(frame, library.call_for_each, false, false)
end


-- Syntax:  #invoke:params|invoke_for_each|module name|module function|[append
--            1]|[append 2]|[...]|[append n]|[named param 1=value 1]|[...]
--            |[named param n=value n]|[...]
iface.invoke_for_each = function(frame)
	return context_init(frame, library.invoke_for_each, false, false)
end


-- Syntax:  #invoke:params|magic_for_each|parser function|[append 1]|[append 2]
--            |[...]|[append n]|[named param 1=value 1]|[...]|[named param
--            n=value n]|[...]
iface.magic_for_each = function(frame)
	return context_init(frame, library.magic_for_each, false, false)
end


-- Syntax:  #invoke:params|call_for_each_value|template name|[append 1]|[append
--            2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param
--            n=value n]|[...]
iface.call_for_each_value = function(frame)
	return context_init(frame, library.call_for_each_value, false, false)
end


-- Syntax:  #invoke:params|invoke_for_each_value|module name|[append 1]|[append
--            2]|[...]|[append n]|[named param 1=value 1]|[...]|[named param
--            n=value n]|[...]
iface.invoke_for_each_value = function(frame)
	return context_init(frame, library.invoke_for_each_value, false, false)
end


-- Syntax:  #invoke:params|magic_for_each_value|parser function|[append 1]
--            |[append 2]|[...]|[append n]|[named param 1=value 1]|[...]|[named
--            param n=value n]|[...]
iface.magic_for_each_value = function(frame)
	return context_init(frame, library.magic_for_each_value, false, false)
end


return iface