aboutsummaryrefslogtreecommitdiffstats
path: root/tools/migration/main.lua
blob: 42e9babe56e646ff33388e8dfd3732f9cc79fcca (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



local function loadfilein(file, env) return loadin and loadin(env, io.open(file):read("*a")) or setfenv(loadfile(file), env); end
config = {};
local config_env = setmetatable({}, { __index = function(t, k) return function(tbl) config[k] = tbl; end; end });
loadfilein("config.lua", config_env)();

package.path = "../../?.lua;"..package.path
package.cpath = "../../?.dll;"..package.cpath


assert(config.input, "no input specified")
assert(config.output, "no output specified")
local itype = assert(config.input.type, "no input.type specified");
local otype = assert(config.output.type, "no output.type specified");
local reader = require(itype).reader(config.input);
local writer = require(otype).writer(config.output);

local json = require "util.json";

for x in reader do
	--print(json.encode(x))
	writer(x);
end
writer(nil); -- close