aboutsummaryrefslogtreecommitdiffstats
path: root/core/storagemanager.lua
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2014-08-07 12:15:15 -0400
committerdaurnimator <quae@daurnimator.com>2014-08-07 12:15:15 -0400
commitd96a0ef55c6de851369bd0a562caf349d4435c75 (patch)
tree0b0fa45cfcfaa9d019148cb126a4d3a85008ed3d /core/storagemanager.lua
parentb6a24a9bb00a9461eace9ad2172d3774d7a2a71b (diff)
downloadprosody-d96a0ef55c6de851369bd0a562caf349d4435c75.tar.gz
prosody-d96a0ef55c6de851369bd0a562caf349d4435c75.zip
storagemanager: When map store isn't available, fallback to keyval store [backported from trunk]
Diffstat (limited to 'core/storagemanager.lua')
-rw-r--r--core/storagemanager.lua38
1 files changed, 37 insertions, 1 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua
index c312cf05..39eae120 100644
--- a/core/storagemanager.lua
+++ b/core/storagemanager.lua
@@ -99,11 +99,47 @@ local function get_driver(host, store)
return driver, driver_name;
end
-local function open(host, store, typ)
+local map_shim_mt = {
+ __index = {
+ get = function(self, username, key)
+ local ret, err = self.keyval_store:get(username);
+ if ret == nil and err then return nil, err end
+ return ret[key];
+ end;
+ set = function(self, username, key, data)
+ local current, err = self.keyval_store:get(username);
+ if current == nil then
+ if err then
+ return nil, err;
+ else
+ current = {};
+ end
+ end
+ current[key] = data;
+ return self.keyval_store:set(username, current);
+ end;
+ };
+}
+
+local open;
+
+local function create_map_shim(host, store)
+ local keyval_store, err = open(host, store, "keyval");
+ if keyval_store == nil then return nil, err end
+ return setmetatable({
+ keyval_store = keyval_store;
+ }, map_shim_mt);
+end
+
+function open(host, store, typ)
local driver, driver_name = get_driver(host, store);
local ret, err = driver:open(store, typ);
if not ret then
if err == "unsupported-store" then
+ if typ == "map" then -- Use shim on top of keyval store
+ log("debug", "map storage driver unavailable, using shim on top of keyval store.");
+ return create_map_shim(host, store);
+ end
log("debug", "Storage driver %s does not support store %s (%s), falling back to null driver",
driver_name, store, typ or "<nil>");
ret = null_storage_driver;