Software /
code /
prosody
Diff
util/multitable.lua @ 840:ad842df925c7
util.multitable: Add mt:search(), use nil for wildcard keys
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 26 Feb 2009 16:55:46 +0000 |
parent | 760:90ce865eebd8 |
child | 896:2c0b9e3c11c3 |
line wrap: on
line diff
--- a/util/multitable.lua Thu Feb 26 02:42:47 2009 +0000 +++ b/util/multitable.lua Thu Feb 26 16:55:46 2009 +0000 @@ -82,6 +82,53 @@ end +local function s(t, n, results, _end, ...) + if t == nil then return; end + local k = select(n, ...); + if n == _end then + if k == nil then + for _, v in pairs(t) do + t_insert(results, v); + end + else + t_insert(results, t[k]); + end + return; + end + if k then + v = t[k]; + if v then + s(v, n+1, results, _end, ...); + end + else + for _,b in pairs(t) do + s(b, n+1, results, _end, ...); + end + end +end + +-- Search for keys, nil == wildcard +local function search(self, ...) + local _end = select('#', ...); + for n = _end,1 do + if select(n, ...) then _end = n; break; end + end + local results = {}; + s(self.data, 1, results, _end, ...); + return results; +end + +-- Append results to an existing list +local function search_add(self, results, ...) + if not results then results = {}; end + local _end = select('#', ...); + for n = _end,1 do + if select(n, ...) then _end = n; break; end + end + s(self.data, 1, results, _end, ...); + return results; +end + function new() return { data = {}; @@ -89,6 +136,8 @@ add = add; set = set; remove = remove; + search = search; + search_add = search_add; }; end