mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_storage_sql: Record connection to database as module status
Allows retrieving this in e.g. a health reporting module Thanks pfak
This commit is contained in:
parent
dc958f1e40
commit
0147b972e0
3 changed files with 18 additions and 4 deletions
|
@ -840,6 +840,7 @@ function module.load()
|
||||||
engine = engines[db_uri];
|
engine = engines[db_uri];
|
||||||
if not engine then
|
if not engine then
|
||||||
module:log("debug", "Creating new engine %s", db_uri);
|
module:log("debug", "Creating new engine %s", db_uri);
|
||||||
|
module:log_status("debug", "Creating new engine for "..params.driver);
|
||||||
engine = sql:create_engine(params, function (engine) -- luacheck: ignore 431/engine
|
engine = sql:create_engine(params, function (engine) -- luacheck: ignore 431/engine
|
||||||
if module:get_option("sql_manage_tables", true) then
|
if module:get_option("sql_manage_tables", true) then
|
||||||
-- Automatically create table, ignore failure (table probably already exists)
|
-- Automatically create table, ignore failure (table probably already exists)
|
||||||
|
@ -858,8 +859,13 @@ function module.load()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
module:set_status("info", "Connected to " .. engine.params.driver);
|
||||||
|
end, function (engine)
|
||||||
|
module:set_status("error", "Disconnected from " .. engine.params.driver);
|
||||||
end);
|
end);
|
||||||
engines[sql.db2uri(params)] = engine;
|
engines[sql.db2uri(params)] = engine;
|
||||||
|
else
|
||||||
|
module:set_status("info", "Using existing engine");
|
||||||
end
|
end
|
||||||
|
|
||||||
module:provides("storage", driver);
|
module:provides("storage", driver);
|
||||||
|
|
|
@ -99,6 +99,9 @@ end
|
||||||
function engine:onconnect() -- luacheck: ignore 212/self
|
function engine:onconnect() -- luacheck: ignore 212/self
|
||||||
-- Override from create_engine()
|
-- Override from create_engine()
|
||||||
end
|
end
|
||||||
|
function engine:ondisconnect() -- luacheck: ignore 212/self
|
||||||
|
-- Override from create_engine()
|
||||||
|
end
|
||||||
|
|
||||||
function engine:prepquery(sql)
|
function engine:prepquery(sql)
|
||||||
if self.params.driver == "MySQL" then
|
if self.params.driver == "MySQL" then
|
||||||
|
@ -224,6 +227,7 @@ function engine:transaction(...)
|
||||||
if not conn or not conn:ping() then
|
if not conn or not conn:ping() then
|
||||||
log("debug", "Database connection was closed. Will reconnect and retry.");
|
log("debug", "Database connection was closed. Will reconnect and retry.");
|
||||||
self.conn = nil;
|
self.conn = nil;
|
||||||
|
self:ondisconnect();
|
||||||
log("debug", "Retrying SQL transaction [%s]", (...));
|
log("debug", "Retrying SQL transaction [%s]", (...));
|
||||||
ok, ret, b, c = self:_transaction(...);
|
ok, ret, b, c = self:_transaction(...);
|
||||||
log("debug", "SQL transaction retry %s", ok and "succeeded" or "failed");
|
log("debug", "SQL transaction retry %s", ok and "succeeded" or "failed");
|
||||||
|
@ -365,8 +369,8 @@ local function db2uri(params)
|
||||||
};
|
};
|
||||||
end
|
end
|
||||||
|
|
||||||
local function create_engine(_, params, onconnect)
|
local function create_engine(_, params, onconnect, ondisconnect)
|
||||||
return setmetatable({ url = db2uri(params), params = params, onconnect = onconnect }, engine_mt);
|
return setmetatable({ url = db2uri(params); params = params; onconnect = onconnect; ondisconnect = ondisconnect }, engine_mt);
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -159,6 +159,9 @@ end
|
||||||
function engine:onconnect()
|
function engine:onconnect()
|
||||||
-- Override from create_engine()
|
-- Override from create_engine()
|
||||||
end
|
end
|
||||||
|
function engine:ondisconnect() -- luacheck: ignore 212/self
|
||||||
|
-- Override from create_engine()
|
||||||
|
end
|
||||||
function engine:execute(sql, ...)
|
function engine:execute(sql, ...)
|
||||||
local success, err = self:connect();
|
local success, err = self:connect();
|
||||||
if not success then return success, err; end
|
if not success then return success, err; end
|
||||||
|
@ -322,6 +325,7 @@ function engine:transaction(...)
|
||||||
local conn = self.conn;
|
local conn = self.conn;
|
||||||
if not conn or not conn:isopen() then
|
if not conn or not conn:isopen() then
|
||||||
self.conn = nil;
|
self.conn = nil;
|
||||||
|
self:ondisconnect();
|
||||||
ok, ret = self:_transaction(...);
|
ok, ret = self:_transaction(...);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -389,9 +393,9 @@ local function db2uri(params)
|
||||||
};
|
};
|
||||||
end
|
end
|
||||||
|
|
||||||
local function create_engine(_, params, onconnect)
|
local function create_engine(_, params, onconnect, ondisconnect)
|
||||||
assert(params.driver == "SQLite3", "Only SQLite3 is supported without LuaDBI");
|
assert(params.driver == "SQLite3", "Only SQLite3 is supported without LuaDBI");
|
||||||
return setmetatable({ url = db2uri(params), params = params, onconnect = onconnect }, engine_mt);
|
return setmetatable({ url = db2uri(params); params = params; onconnect = onconnect; ondisconnect = ondisconnect }, engine_mt);
|
||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue