Software /
code /
prosody
Diff
util/stanza.lua @ 12406:a3ddf3f42212
util.stanza: Use table.move in clone
Code reduction, potentially a performance gain.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 18 Mar 2022 16:39:48 +0100 |
parent | 12140:1a4c61253932 |
child | 12407:b6b01724e04f |
line wrap: on
line diff
--- a/util/stanza.lua Fri Mar 18 15:29:05 2022 +0000 +++ b/util/stanza.lua Fri Mar 18 16:39:48 2022 +0100 @@ -21,6 +21,7 @@ local s_gsub = string.gsub; local s_sub = string.sub; local s_find = string.find; +local t_move = table.move or require "util.table".move; local valid_utf8 = require "util.encodings".utf8.valid; @@ -283,17 +284,13 @@ for k,v in pairs(old_namespaces) do namespaces[k] = v; end end local new = { name = stanza.name, attr = attr, namespaces = namespaces, tags = tags }; + setmetatable(new, stanza_mt); if not only_top then - for i=1,#stanza do - local child = stanza[i]; - if child.name then - child = _clone(child); - t_insert(tags, child); - end - t_insert(new, child); - end + t_move(stanza, 1, #stanza, 1, new); + t_move(stanza.tags, 1, #stanza.tags, 1, tags); + new:maptags(_clone); end - return setmetatable(new, stanza_mt); + return new; end local function clone(stanza, only_top)