aboutsummaryrefslogtreecommitdiffstats
path: root/tools/migration/mtools.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2011-02-23 02:16:19 +0500
committerWaqas Hussain <waqas20@gmail.com>2011-02-23 02:16:19 +0500
commit0a2b87128fab3220d4d257692287df12fb040df2 (patch)
treef2ba11d202316444c92edd3d146ed29ea03bdd3f /tools/migration/mtools.lua
parentfc6149a695b65875580ff0a474af0748fc519d86 (diff)
downloadprosody-0a2b87128fab3220d4d257692287df12fb040df2.tar.gz
prosody-0a2b87128fab3220d4d257692287df12fb040df2.zip
tools/migration/*: Initial commit of a new migration tool. Currently supports Prosody files and Prosody SQL as input and output.
Diffstat (limited to 'tools/migration/mtools.lua')
-rw-r--r--tools/migration/mtools.lua56
1 files changed, 56 insertions, 0 deletions
diff --git a/tools/migration/mtools.lua b/tools/migration/mtools.lua
new file mode 100644
index 00000000..d2bd1e7a
--- /dev/null
+++ b/tools/migration/mtools.lua
@@ -0,0 +1,56 @@
+
+
+local print = print;
+local t_insert = table.insert;
+local t_sort = table.sort;
+
+module "mtools"
+
+function sorted(params)
+
+ local reader = params.reader; -- iterator to get items from
+ local sorter = params.sorter; -- sorting function
+ local filter = params.filter; -- filter function
+
+ local cache = {};
+ for item in reader do
+ if filter then item = filter(item); end
+ if item then t_insert(cache, item); end
+ end
+ if sorter then
+ t_sort(cache, sorter);
+ end
+ local i = 0;
+ return function()
+ i = i + 1;
+ return cache[i];
+ end;
+
+end
+
+function merged(reader, merger)
+
+ local item1 = reader();
+ local merged = { item1 };
+ return function()
+ while true do
+ if not item1 then return nil; end
+ local item2 = reader();
+ if not item2 then item1 = nil; return merged; end
+ if merger(item1, item2) then
+ --print("merged")
+ item1 = item2;
+ t_insert(merged, item1);
+ else
+ --print("unmerged", merged)
+ item1 = item2;
+ local tmp = merged;
+ merged = { item1 };
+ return tmp;
+ end
+ end
+ end;
+
+end
+
+return _M;