Welcome to mirror list, hosted at ThFree Co, Russian Federation.

embed.lua « scripts - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b02adec5027b7604184df0012d2ad17137ee614c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
--
-- Embed the Lua scripts into src/host/scripts.c as static data buffers.
-- I embed the actual scripts, rather than Lua bytecodes, because the
-- bytecodes are not portable to different architectures, which causes
-- issues in Mac OS X Universal builds.
--

	local raw_sum = 0
	local trim_sum = 0

	local function stripfile(fname)
		dofile("scripts/luasrcdiet/LuaSrcDiet.lua")
		-- Let LuaSrcDiet do its job
		local s,l = get_slim_luasrc(fname)
		-- Now do some cleanup so we can write these out as C strings
		-- strip any CRs
		s = s:gsub("[\r]", "")

		-- overall counters
		raw_sum = raw_sum + l:len()
		trim_sum = trim_sum + s:len()

		-- escape backslashes
		s = s:gsub("\\", "\\\\")

		-- escape line feeds
		s = s:gsub("\n", "\\n")

		-- escape double quote marks
		s = s:gsub("\"", "\\\"")
		return s
	end


	local function writeline(out, s, continues)
		out:write("\t\"")
		out:write(s)
		out:write(iif(continues, "\"\n", "\",\n"))
	end


	local function writefile(out, fname, contents)
		local max = 1024

		out:write("\t/* " .. fname .. " */\n")

		-- break up large strings to fit in Visual Studio's string length limit
		local start = 1
		local len = contents:len()
		while start <= len do
			local n = len - start
			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
			end

			writeline(out, contents:sub(start, finish), finish < len)
			start = finish + 1
		end

		out:write("\n")
	end


	function doembed()
		raw_sum = 0
		trim_sum = 0
		fnames = "const char* builtin_script_fnames[] = {"
		-- load the manifest of script files
		scripts = dofile("src/_manifest.lua")

		-- main script always goes at the end
		table.insert(scripts, "_premake_main.lua")

		-- 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")
		out:write("/* To regenerate this file, run: premake4 embed */ \n\n")
		out:write("const char* builtin_scripts[] = {\n")

		for i,fn in ipairs(scripts) do
			print(fn)
			local s = stripfile("src/" .. fn)
			fnames = fnames .. "\n" .. "\t\"@" .. fn .. "\","
			writefile(out, fn, s)
		end

		out:write("\t0\n};\n\n");
		out:write(fnames);
		out:write("\n\t0\n};\n");

		out:close()
		print(string.format("Lua scripts trimmed down to %2.1f%% of original size (%d/%d)", (trim_sum / raw_sum) * 100, trim_sum, raw_sum))
	end