From 3b2591c47d5dc035f421dc3150c1cf1f3bd7f308 Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Wed, 23 Feb 2011 02:16:19 +0500 Subject: tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output. --- tools/migration/main.lua | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tools/migration/main.lua (limited to 'tools/migration/main.lua') 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 + -- cgit v1.2.3