Diff

tools/migration/main.lua @ 4193:3fecfe58d633

tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
author Waqas Hussain <waqas20@gmail.com>
date Wed, 23 Feb 2011 02:16:19 +0500
child 4166:3ac90743039b
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/migration/main.lua	Wed Feb 23 02:16:19 2011 +0500
@@ -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
+