ack/first/ackbuilder.lua

724 lines
15 KiB
Lua
Raw Normal View History

2016-06-07 02:13:56 +00:00
local posix = require("posix")
-- Targets:
--
-- {
-- fullname = full name of target
-- dir = target's build directory
-- outs = target's object files
-- is = { set of rule types which made the target }
-- }
local emitter = {}
local rules = {}
local targets = {}
local buildfiles = {}
local globals
local cwd = "."
local function inherit(high, low)
local o = {}
setmetatable(o, {
__index = function(self, k)
local x = high[k]
if x then
return x
end
return low[k]
end
})
return o
end
local function asstring(o)
local t = type(o)
2016-06-07 02:13:56 +00:00
if (t == "nil") then
return ""
elseif (t == "string") then
return o
elseif (t == "number") then
return o
elseif (t == "table") then
2016-06-07 02:13:56 +00:00
if o.is then
2016-06-06 22:10:22 +00:00
return asstring(o.outs)
else
local s = {}
for _, v in pairs(o) do
s[#s+1] = asstring(v)
end
return table.concat(s, " ")
end
else
error(string.format("can't turn values of type '%s' into strings", t))
end
end
local function concat(...)
local r = {}
for _, t in ipairs({...}) do
for _, v in ipairs(t) do
r[#r+1] = v
end
end
return r
end
local function concatpath(...)
local p = table.concat({...}, "/")
return (p:gsub("/+", "/"):gsub("^%./", ""):gsub("/%./", "/"))
end
local function filenamesof(targets, pattern)
local f = {}
if targets then
if targets.is then
targets = {targets}
end
for _, r in pairs(targets) do
if (type(r) == "table") and r.is then
if r.outs then
for _, o in pairs(r.outs) do
if not pattern or o:find(pattern) then
f[#f+1] = o
end
end
2016-06-07 02:13:56 +00:00
end
2016-06-12 18:59:43 +00:00
elseif (type(r) == "string") then
f[#f+1] = r
else
2016-06-09 05:14:41 +00:00
error(string.format("list of targets contains a %s which isn't a target",
type(r)))
2016-06-07 02:13:56 +00:00
end
end
end
return f
end
local function targetnamesof(targets)
local f = {}
if targets then
if targets.is then
targets = {targets}
end
for _, r in pairs(targets) do
if (type(r) == "table") and r.is then
f[#f+1] = r.fullname
elseif (type(r) == "string") then
f[#f+1] = r
else
error(string.format("list of targets contains a %s which isn't a target",
type(r)))
end
end
end
return f
end
2016-06-12 18:59:43 +00:00
local function dotocollection(collection, callback)
if (type(collection) == "string") then
return callback(collection)
elseif collection.is then
local files = filenamesof(collection.outs)
if (#files ~= 1) then
error("inputs with more than one output need to be in a list")
end
return callback(files[1])
end
local o = {}
for _, s in pairs(collection) do
if s.is then
for _, b in pairs(dotocollection(filenamesof(s), callback)) do
o[#o+1] = b
end
else
local b = callback(s)
if (b ~= "") then
o[#o+1] = b
end
end
end
return o
end
local function abspath(collection)
return dotocollection(collection,
function(filename)
if not filename:find("^[/$]") then
filename = concatpath(posix.getcwd(), filename)
end
return filename
2016-06-12 18:59:43 +00:00
end
)
end
2016-06-12 18:59:43 +00:00
local function basename(collection)
return dotocollection(collection,
function(filename)
local _, _, b = filename:find("^.*/([^/]*)$")
if not b then
return filename
end
return b
end
)
end
local function dirname(collection)
return dotocollection(collection,
function(filename)
local _, _, b = filename:find("^(.*)/[^/]*$")
if not b then
return ""
end
return b
end
)
end
2016-06-29 11:28:22 +00:00
local function replace(collection, pattern, repl)
return dotocollection(collection,
function(filename)
return filename:gsub(pattern, repl)
end
)
end
2016-06-12 18:59:43 +00:00
local function fpairs(collection)
if (type(collection) == "string") or collection.is then
return fpairs({collection})
2016-06-12 18:59:43 +00:00
end
return pairs(filenamesof(collection))
end
-- Selects all targets containing at least one output file that matches
2016-06-12 18:59:43 +00:00
-- the pattern (or all, if the pattern is nil).
local function selectof(targets, pattern)
local o = {}
for k, v in pairs(targets) do
if v.is and v.outs then
local matches = false
for _, f in pairs(v.outs) do
if f:find(pattern) then
matches = true
break
end
end
if matches then
o[#o+1] = v
end
end
end
return o
end
local function uniquify(collection)
local s = {}
local o = {}
for _, v in pairs(collection) do
if not s[v] then
s[v] = true
2016-06-07 02:13:56 +00:00
o[#o+1] = v
end
end
return o
end
local function startswith(needle, haystack)
return haystack:sub(1, #needle) == needle
end
local function emit(...)
local n = select("#", ...)
local args = {...}
for i=1, n do
local s = asstring(args[i])
io.stdout:write(s)
if not s:find("\n$") then
io.stdout:write(" ")
end
end
end
2016-06-06 22:10:22 +00:00
local function templateexpand(list, vars)
vars = inherit(vars, globals)
2016-06-06 22:10:22 +00:00
local o = {}
for _, s in ipairs(list) do
o[#o+1] = s:gsub("%%%b{}",
function(expr)
expr = expr:sub(3, -2)
local chunk, e = loadstring("return "..expr, expr, "text", vars)
if e then
error(string.format("error evaluating expression: %s", e))
end
local value = chunk()
if (value == nil) then
error(string.format("template expression expands to nil (probably an undefined variable)"))
end
return asstring(value)
2016-06-06 22:10:22 +00:00
end
)
end
2016-06-06 22:10:22 +00:00
return o
end
local function loadbuildfile(filename)
if not buildfiles[filename] then
buildfiles[filename] = true
local fp, data, chunk, e
io.stderr:write("loading ", filename, "\n")
fp, e = io.open(filename)
if not e then
data, e = fp:read("*a")
fp:close()
if not e then
local thisglobals = {_G = thisglobals}
setmetatable(thisglobals, {__index = globals})
chunk, e = loadstring(data, filename, "text", thisglobals)
end
end
if e then
error(string.format("couldn't load '%s': %s", filename, e))
end
2016-06-06 22:10:22 +00:00
local oldcwd = cwd
cwd = dirname(filename)
chunk()
cwd = oldcwd
end
end
local function loadtarget(targetname)
2016-06-06 22:10:22 +00:00
if targets[targetname] then
return targets[targetname]
end
local target
if not targetname:find("%+") then
local files
if targetname:find("[?*]") then
files = posix.glob(targetname)
if not files then
error(string.format("glob '%s' matches no files", targetname))
end
else
files = {targetname}
end
target = {
outs = files,
is = {
__implicitfile = true
}
}
targets[targetname] = target
else
local _, _, filepart, targetpart = targetname:find("^([^+]*)%+([%w-_]+)$")
if not filepart or not targetpart then
error(string.format("malformed target name '%s'", targetname))
end
2016-06-06 22:10:22 +00:00
if (filepart == "") then
filepart = cwd
end
2016-06-06 22:10:22 +00:00
local filename = concatpath(filepart, "/build.lua")
loadbuildfile(concatpath(filename))
target = targets[targetname]
if not target then
error(string.format("build file '%s' contains no rule '%s'",
2016-06-06 22:10:22 +00:00
filename, targetpart))
end
end
return target
end
local typeconverters = {
targets = function(propname, i)
if (type(i) == "string") then
i = {i}
elseif (type(i) ~= "table") then
error(string.format("property '%s' must be a target list", propname))
end
local o = {}
for k, s in pairs(i) do
2016-06-07 02:20:08 +00:00
if (type(s) == "table") and s.is then
o[k] = s
2016-06-07 02:20:08 +00:00
elseif (type(s) == "string") then
if s:find("^%+") then
2016-06-07 02:20:08 +00:00
s = cwd..s
elseif s:find("^%./") then
2016-06-07 02:20:08 +00:00
s = concatpath(cwd, s)
end
o[k] = loadtarget(s)
2016-06-07 02:20:08 +00:00
else
error(string.format("member of target list '%s' is not a string or a target",
propname))
end
end
return o
end,
strings = function(propname, i)
if (type(i) == "string") then
i = {i}
elseif (type(i) ~= "table") then
error(string.format("property '%s' must be a string list", propname))
end
return i
end,
boolean = function(propname, i)
if (type(i) ~= "boolean") then
error(string.format("property '%s' must be a boolean", propname))
end
return i
end,
string = function(propname, i)
if (type(i) ~= "string") then
error(string.format("property '%s' must be a string", propname))
end
return i
end,
table = function(propname, i)
if (type(i) ~= "table") then
error(string.format("property '%s' must be a table", propname))
end
return i
end,
}
local function definerule(rulename, types, cb)
2016-06-29 11:28:22 +00:00
if rulename and rules[rulename] then
error(string.format("rule '%s' is already defined", rulename))
end
types.name = { type="string" }
2016-06-29 11:58:38 +00:00
types.cwd = { type="string", optional=true }
for propname, typespec in pairs(types) do
if not typeconverters[typespec.type] then
error(string.format("property '%s' has unrecognised type '%s'",
propname, typespec.type))
end
end
2016-06-29 11:58:38 +00:00
local rulecwd = cwd
2016-06-29 11:28:22 +00:00
local rule = function(e)
local args = {}
for propname, typespec in pairs(types) do
if not e[propname] then
if not typespec.optional and (typespec.default == nil) then
error(string.format("missing mandatory property '%s'", propname))
end
args[propname] = typespec.default
else
args[propname] = typeconverters[typespec.type](propname, e[propname])
e[propname] = nil
end
end
local propname, _ = next(e)
if propname then
error(string.format("don't know what to do with property '%s'", propname))
end
2016-06-29 11:58:38 +00:00
if not args.cwd then
args.cwd = cwd
end
args.fullname = args.cwd.."+"..args.name
2016-06-06 22:10:22 +00:00
local result = cb(args) or {}
2016-06-29 11:58:38 +00:00
2016-06-06 22:10:22 +00:00
result.is = result.is or {}
result.is[rulename] = true
result.fullname = args.fullname
if targets[arg.fullname] and (targets[arg.fullname] ~= result) then
error(string.format("target '%s' is already defined", args.fullname))
end
targets[result.fullname] = result
2016-06-07 02:13:56 +00:00
return result
end
2016-06-29 11:28:22 +00:00
if rulename then
if rules[rulename] then
error(string.format("rule '%s' is already defined", rulename))
end
2016-06-29 11:28:22 +00:00
rules[rulename] = rule
end
return rule
end
-----------------------------------------------------------------------------
-- DEFAULT RULES --
-----------------------------------------------------------------------------
local function install_make_emitter()
emit("hide = @\n")
function emitter:rule(name, ins, outs)
emit(".INTERMEDIATE:", name, "\n")
for i = 1, #ins do
emit(name..":", ins[i], "\n")
end
for i = 1, #outs do
2016-06-30 11:19:10 +00:00
emit(outs[i]..":", name, ";\n")
end
emit(name..":\n")
local dirs = uniquify(dirname(outs))
if (#dirs > 0) then
emit("\t@mkdir -p", dirs, "\n")
end
end
function emitter:phony(name, ins, outs)
emit(".PHONY:", name, "\n")
self:rule(name, ins, outs)
end
function emitter:label(...)
local s = table.concat({...}, " ")
emit("\t@echo", s, "\n")
end
function emitter:exec(commands)
for _, s in ipairs(commands) do
emit("\t$(hide)", s, "\n")
end
end
function emitter:endrule()
emit("\n")
end
2016-06-06 22:10:22 +00:00
end
local function install_ninja_emitter()
emit("rule build\n")
emit(" command = $command\n")
2016-06-06 22:10:22 +00:00
emit("\n")
local function unmake(collection)
return dotocollection(collection,
function(s)
return s:gsub("%$%b()",
function(expr)
return "${"..expr:sub(3, -2).."}"
end
)
end
)
end
function emitter:rule(name, ins, outs)
if (#outs == 0) then
emit("build", name, ": phony", unmake(ins), "\n")
else
emit("build", name, ": phony", unmake(outs), "\n")
emit("build", unmake(outs), ": build", unmake(ins), "\n")
end
end
function emitter:label(...)
end
function emitter:exec(commands)
emit(" command =", table.concat(unmake(commands), " && "), "\n")
end
function emitter:endrule()
emit("\n")
end
end
definerule("simplerule",
{
ins = { type="targets" },
outs = { type="strings" },
deps = { type="targets", default={} },
label = { type="string", optional=true },
commands = { type="strings" },
vars = { type="table", default={} },
},
function (e)
emitter:rule(e.fullname,
concat(filenamesof(e.ins), filenamesof(e.deps)),
e.outs)
emitter:label(e.fullname, " ", e.label or "")
local vars = inherit(e.vars, {
ins = e.ins,
outs = e.outs
})
emitter:exec(templateexpand(e.commands, vars))
emitter:endrule()
2016-06-06 22:10:22 +00:00
return {
outs = e.outs
}
end
)
definerule("installable",
{
map = { type="targets", default={} },
},
function (e)
local deps = {}
local commands = {}
local srcs = {}
local dests = {}
for dest, src in pairs(e.map) do
if src.is.installable then
if (type(dest) ~= "number") then
error("can't specify a destination filename when installing an installable")
end
deps[#deps+1] = src.fullname
elseif (type(dest) == "number") then
error("only references to other installables can be missing a destination")
else
local f = filenamesof(src)
if (#f ~= 1) then
error("installable can only cope with targets emitting single files")
end
deps[#deps+1] = src
dests[#dests+1] = dest
commands[#commands+1] = "cp "..f[1].." "..dest
end
end
emitter:rule(e.fullname, deps, dests)
emitter:label(e.fullname, " ", e.label or "")
if (#commands > 0) then
emitter:exec(commands)
end
emitter:endrule()
end
)
-----------------------------------------------------------------------------
-- MAIN PROGRAM --
-----------------------------------------------------------------------------
local function parse_arguments(argmap, arg)
local i = 1
local files = {}
local function unrecognisedarg(arg)
argmap[" unrecognised"](arg)
end
while (i <= #arg) do
local o = arg[i]
local op
if (o:byte(1) == 45) then
-- This is an option.
if (o:byte(2) == 45) then
-- ...with a -- prefix.
o = o:sub(3)
local fn = argmap[o]
if not fn then
unrecognisedarg("--"..o)
end
i = i + fn(arg[i+1], arg[i+2])
else
-- ...without a -- prefix.
local od = o:sub(2, 2)
local fn = argmap[od]
if not fn then
unrecognisedarg("-"..od)
end
op = o:sub(3)
if (op == "") then
i = i + fn(arg[i+1], arg[i+2])
else
fn(op)
end
end
else
files[#files+1] = o
end
i = i + 1
end
argmap[" files"](files)
end
globals = {
posix = posix,
2016-06-12 18:59:43 +00:00
abspath = abspath,
asstring = asstring,
basename = basename,
concat = concat,
2016-06-07 02:13:56 +00:00
concatpath = concatpath,
2016-06-12 18:59:43 +00:00
cwd = function() return cwd end,
definerule = definerule,
dirname = dirname,
emit = emit,
filenamesof = filenamesof,
fpairs = fpairs,
2016-06-29 11:28:22 +00:00
include = loadbuildfile,
inherit = inherit,
2016-06-29 11:28:22 +00:00
replace = replace,
selectof = selectof,
startswith = startswith,
targetnamesof = targetnamesof,
uniquify = uniquify,
}
setmetatable(globals,
{
__index = function(self, k)
local rule = rules[k]
if rule then
return rule
else
return _G[k]
end
end
}
)
do
local emitter_type = install_make_emitter
parse_arguments(
{
["make"] = function()
emitter_type = install_make_emitter
return 1
end,
["ninja"] = function()
emitter_type = install_ninja_emitter
return 1
end,
[" unrecognised"] = function(arg)
error(string.format("unrecognised argument '%s'", arg))
end,
[" files"] = function(files)
emitter_type()
for _, f in ipairs(files) do
loadbuildfile(f)
end
end
},
{...}
)
end