From dc5b5334b89b26487ab2ac3982bcb55b0c208651 Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Sun, 21 Jun 2009 19:15:59 +0500 Subject: modulemanager: Added simple module:require implementation --- core/modulemanager.lua | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/modulemanager.lua b/core/modulemanager.lua index d6220cec..4f24c0a1 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -30,7 +30,7 @@ local t_insert, t_concat = table.insert, table.concat; local type = type; local next = next; local rawget = rawget; - +local error = error; local tostring = tostring; -- We need this to let modules access the real global namespace @@ -400,6 +400,15 @@ function api:hook_stanza(xmlns, name, handler, priority) return api.hook(self, "stanza/"..(xmlns and (xmlns..":") or "")..name, function (data) return handler(data.origin, data.stanza, data); end, priority); end +function api:require(lib) + local f, n = pluginloader.load_code(self.name, lib..".lib.lua"); + if not f then + f, n = pluginloader.load_code(lib, lib..".lib.lua"); + end + if not f then error("Failed to load plugin library '"..lib.."', error: "..n); end -- FIXME better error message + return f(); +end + -------------------------------------------------------------------- local actions = {}; -- cgit v1.2.3