aboutsummaryrefslogtreecommitdiffstats
path: root/tools/migration/main.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tools/migration/main.lua')
-rw-r--r--tools/migration/main.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/migration/main.lua b/tools/migration/main.lua
new file mode 100644
index 00000000..42e9babe
--- /dev/null
+++ b/tools/migration/main.lua
@@ -0,0 +1,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
+