From 5455626d0a09235b73f698a19d5a7ce9d41545be Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Mon, 19 Apr 2010 18:28:12 +0500 Subject: prosody: Set metatable on functions to allow easy access to upvalues. --- prosody | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'prosody') diff --git a/prosody b/prosody index 46f3331f..c7f91456 100755 --- a/prosody +++ b/prosody @@ -123,6 +123,29 @@ function sandbox_require() end end +function set_function_metatable() + local mt = {}; + function mt.__index(f, upvalue) + local i, name, value = 0; + repeat + i = i + 1; + name, value = debug.getupvalue(f, i); + until name == upvalue or name == nil; + return value; + end + function mt.__newindex(f, upvalue, value) + local i, name = 0; + repeat + i = i + 1; + name = debug.getupvalue(f, i); + until name == upvalue or name == nil; + if name then + debug.setupvalue(f, i, value); + end + end + debug.setmetatable(function() end, mt); +end + function init_global_state() bare_sessions = {}; full_sessions = {}; @@ -418,6 +441,7 @@ read_config(); init_logging(); check_dependencies(); sandbox_require(); +set_function_metatable(); load_libraries(); init_global_state(); read_version(); -- cgit v1.2.3