util.dependencies, prosody, prosodyctl: Give util.dependencies a check_dependencies() function so the caller can decide what to do when dependencies aren't met - update prosody/prosodyctl for this change

This commit is contained in:
Matthew Wild 2010-01-28 14:56:47 +00:00
parent 74ceb83cca
commit 08284a586e
3 changed files with 95 additions and 85 deletions

View file

@ -114,7 +114,9 @@ function load_libraries()
require "core.loggingmanager"
-- Check runtime dependencies
require "util.dependencies"
if not require "util.dependencies".check_dependencies() then
os.exit(1);
end
-- Load socket framework
server = require "net.server"

View file

@ -29,10 +29,13 @@ if CFG_DATADIR then
end
end
if not require "util.dependencies".check_dependencies() then
os.exit(1);
end
-- Required to be able to find packages installed with luarocks
pcall(require, "luarocks.require")
require "util.dependencies"
config = require "core.configmanager"

View file

@ -6,12 +6,11 @@
-- COPYING file in the source package for more information.
--
module("dependencies", package.seeall)
local fatal;
function softreq(...) local ok, lib = pcall(require, ...); if ok then return lib; else return nil, lib; end end
local function softreq(...) local ok, lib = pcall(require, ...); if ok then return lib; else return nil, lib; end end
local function missingdep(name, sources, msg)
function missingdep(name, sources, msg)
print("");
print("**************************");
print("Prosody was unable to find "..tostring(name));
@ -31,6 +30,9 @@ local function missingdep(name, sources, msg)
print("");
end
function check_dependencies()
local fatal;
local lxp = softreq "lxp"
if not lxp then
@ -115,5 +117,8 @@ if not hashes then
end
fatal = true;
end
return not fatal;
end
if fatal then os.exit(1); end
return _M;