2009-07-16 15:20:15 +00:00
|
|
|
--
|
|
|
|
-- Embed the Lua scripts into src/host/scripts.c as static data buffers.
|
2013-09-10 20:24:39 +00:00
|
|
|
-- I embed the actual scripts, rather than Lua bytecodes, because the
|
|
|
|
-- bytecodes are not portable to different architectures, which causes
|
2009-07-16 15:20:15 +00:00
|
|
|
-- issues in Mac OS X Universal builds.
|
|
|
|
--
|
|
|
|
|
2010-01-07 15:36:03 +00:00
|
|
|
local function stripfile(fname)
|
2009-07-16 15:20:15 +00:00
|
|
|
local f = io.open(fname)
|
2011-08-24 20:07:53 +00:00
|
|
|
local s = assert(f:read("*a"))
|
2009-07-16 15:20:15 +00:00
|
|
|
f:close()
|
|
|
|
|
|
|
|
-- strip tabs
|
|
|
|
s = s:gsub("[\t]", "")
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2009-07-16 15:20:15 +00:00
|
|
|
-- strip any CRs
|
|
|
|
s = s:gsub("[\r]", "")
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2012-02-13 20:21:28 +00:00
|
|
|
-- strip out block comments
|
|
|
|
s = s:gsub("%-%-%[%[.-%-%-%]%]", "")
|
|
|
|
|
|
|
|
-- strip out inline comments
|
|
|
|
s = s:gsub("\n%-%-[^\n]*", "")
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2009-07-16 15:20:15 +00:00
|
|
|
-- escape backslashes
|
|
|
|
s = s:gsub("\\", "\\\\")
|
|
|
|
|
|
|
|
-- strip duplicate line feeds
|
|
|
|
s = s:gsub("\n+", "\n")
|
|
|
|
|
|
|
|
-- strip out leading comments
|
|
|
|
s = s:gsub("^%-%-\n", "")
|
|
|
|
|
|
|
|
-- escape line feeds
|
|
|
|
s = s:gsub("\n", "\\n")
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2009-07-16 15:20:15 +00:00
|
|
|
-- escape double quote marks
|
|
|
|
s = s:gsub("\"", "\\\"")
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2010-01-07 15:36:03 +00:00
|
|
|
return s
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2010-01-08 17:42:16 +00:00
|
|
|
local function writeline(out, s, continues)
|
2009-07-16 15:20:15 +00:00
|
|
|
out:write("\t\"")
|
|
|
|
out:write(s)
|
2010-01-08 17:42:16 +00:00
|
|
|
out:write(iif(continues, "\"\n", "\",\n"))
|
2009-07-16 15:20:15 +00:00
|
|
|
end
|
2013-09-10 20:24:39 +00:00
|
|
|
|
|
|
|
|
2010-01-07 15:36:03 +00:00
|
|
|
local function writefile(out, fname, contents)
|
2010-01-08 17:42:16 +00:00
|
|
|
local max = 1024
|
2010-01-07 15:36:03 +00:00
|
|
|
|
2010-01-08 17:42:16 +00:00
|
|
|
out:write("\t/* " .. fname .. " */\n")
|
2013-09-10 20:24:39 +00:00
|
|
|
|
|
|
|
-- break up large strings to fit in Visual Studio's string length limit
|
2010-01-07 15:36:03 +00:00
|
|
|
local start = 1
|
|
|
|
local len = contents:len()
|
|
|
|
while start <= len do
|
|
|
|
local n = len - start
|
2010-01-07 16:24:17 +00:00
|
|
|
if n > max then n = max end
|
|
|
|
local finish = start + n
|
|
|
|
|
|
|
|
-- make sure I don't cut an escape sequence
|
|
|
|
while contents:sub(finish, finish) == "\\" do
|
|
|
|
finish = finish - 1
|
2013-09-10 20:24:39 +00:00
|
|
|
end
|
2010-01-07 16:24:17 +00:00
|
|
|
|
2010-01-08 17:42:16 +00:00
|
|
|
writeline(out, contents:sub(start, finish), finish < len)
|
2010-01-07 16:24:17 +00:00
|
|
|
start = finish + 1
|
2013-09-10 20:24:39 +00:00
|
|
|
end
|
2010-01-07 15:36:03 +00:00
|
|
|
|
2010-01-08 17:42:16 +00:00
|
|
|
out:write("\n")
|
2010-01-07 15:36:03 +00:00
|
|
|
end
|
2009-07-16 15:20:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
function doembed()
|
2010-01-07 15:36:03 +00:00
|
|
|
-- load the manifest of script files
|
|
|
|
scripts = dofile("src/_manifest.lua")
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2012-10-19 22:53:03 +00:00
|
|
|
-- main script always goes first
|
|
|
|
table.insert(scripts, 1, "_premake_main.lua")
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2010-01-07 15:36:03 +00:00
|
|
|
-- open scripts.c and write the file header
|
|
|
|
local out = io.open("src/host/scripts.c", "w+b")
|
|
|
|
out:write("/* Premake's Lua scripts, as static data buffers for release mode builds */\n")
|
|
|
|
out:write("/* DO NOT EDIT - this file is autogenerated - see BUILD.txt */\n")
|
2013-09-10 20:24:39 +00:00
|
|
|
out:write("/* To regenerate this file, run: premake5 embed */ \n\n")
|
2010-01-07 15:36:03 +00:00
|
|
|
out:write("const char* builtin_scripts[] = {\n")
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2010-01-07 15:36:03 +00:00
|
|
|
for i,fn in ipairs(scripts) do
|
|
|
|
print(fn)
|
|
|
|
local s = stripfile("src/" .. fn)
|
|
|
|
writefile(out, fn, s)
|
|
|
|
end
|
2013-09-10 20:24:39 +00:00
|
|
|
|
|
|
|
out:write("\t0\n};\n");
|
2010-01-07 15:36:03 +00:00
|
|
|
out:close()
|
2009-07-16 15:20:15 +00:00
|
|
|
end
|