From a5eb9399da215d8c5692aaa2a2a45a45545e7088 Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Sun, 28 Nov 2010 02:42:02 +0500 Subject: mod_iq: Optimized a bit more (fewer table accesses). --- plugins/mod_iq.lua | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/plugins/mod_iq.lua b/plugins/mod_iq.lua index 256a9419..c201a465 100644 --- a/plugins/mod_iq.lua +++ b/plugins/mod_iq.lua @@ -36,9 +36,10 @@ module:hook("iq/bare", function(data) -- TODO fire post processing events if type == "get" or type == "set" then - local ret = module:fire_event("iq/bare/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + local child = stanza.tags[1]; + local ret = module:fire_event("iq/bare/"..child.attr.xmlns..":"..child.name, data); if ret ~= nil then return ret; end - return module:fire_event("iq-"..type.."/bare/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + return module:fire_event("iq-"..type.."/bare/"..child.attr.xmlns..":"..child.name, data); else module:fire_event("iq-"..type.."/bare/"..stanza.attr.id, data); return true; @@ -51,9 +52,10 @@ module:hook("iq/self", function(data) local type = stanza.attr.type; if type == "get" or type == "set" then - local ret = module:fire_event("iq/self/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + local child = stanza.tags[1]; + local ret = module:fire_event("iq/self/"..child.attr.xmlns..":"..child.name, data); if ret ~= nil then return ret; end - return module:fire_event("iq-"..type.."/self/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + return module:fire_event("iq-"..type.."/self/"..child.attr.xmlns..":"..child.name, data); else module:fire_event("iq-"..type.."/self/"..stanza.attr.id, data); return true; @@ -66,9 +68,10 @@ module:hook("iq/host", function(data) local type = stanza.attr.type; if type == "get" or type == "set" then - local ret = module:fire_event("iq/host/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + local child = stanza.tags[1]; + local ret = module:fire_event("iq/host/"..child.attr.xmlns..":"..child.name, data); if ret ~= nil then return ret; end - return module:fire_event("iq-"..type.."/host/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data); + return module:fire_event("iq-"..type.."/host/"..child.attr.xmlns..":"..child.name, data); else module:fire_event("iq-"..type.."/host/"..stanza.attr.id, data); return true; -- cgit v1.2.3