Difference between revisions of "Module:Test/lib/search"
Jump to navigation
Jump to search
(removed surplus) |
|||
Line 4: | Line 4: | ||
-- conductor -- | -- conductor -- | ||
--------------- | --------------- | ||
− | -- sibling_key: optional, deprecate the whole thing | + | -- ancestry functionality (commented out) |
− | -- query: {key, value} | + | -- sibling_key: optional, deprecate the whole thing (commented out) |
− | -- query: {key, } | + | |
− | -- query: {nil, value} | + | -- Possible query combinations: |
− | -- query: key (string or number) | + | -- query: {key, value} |
+ | -- query: {key, nil} | ||
+ | -- query: {nil, value} | ||
+ | -- query: key (string or number) | ||
function search.conductor(query, tbl) | function search.conductor(query, tbl) | ||
− | + | assert(query, "conductor: missing argument #1 (query)") | |
− | assert( | + | assert(tbl, "conductor: missing argument #2 (table to search through)") |
− | assert(tbl, string.format("bad argument #2 | + | assert(type(tbl) == 'table', string.format("conductor: bad argument #2 (table expected, got %s)", type(tbl))) |
search.state = { | search.state = { | ||
Line 18: | Line 21: | ||
["queried"] = {} | ["queried"] = {} | ||
} | } | ||
− | search.ancestors = {} | + | --~ search.ancestors = {} |
search.state.args.query = query | search.state.args.query = query | ||
Line 24: | Line 27: | ||
--~ search.state.args.sibling_key = sibling_key | --~ search.state.args.sibling_key = sibling_key | ||
− | local result = search. | + | local result = search.find(query, tbl) |
if result then | if result then | ||
Line 36: | Line 39: | ||
-- ancestry -- | -- ancestry -- | ||
-------------- | -------------- | ||
− | function search.generate_anscestry_of_last_search(quad) | + | --~ function search.generate_anscestry_of_last_search(quad) |
− | quad = quad or {} | + | --~ quad = quad or {} |
− | for _,v in ipairs(search.state.queried) do | + | --~ for _,v in ipairs(search.state.queried) do |
− | if v.value == quad.parent.table then | + | --~ if v.value == quad.parent.table then |
− | table.insert(search.ancestors, quad.parent.key) | + | --~ table.insert(search.ancestors, quad.parent.key) |
− | search.generate_anscestry_of_last_search(v, search.state.queried, ancestors) | + | --~ search.generate_anscestry_of_last_search(v, search.state.queried, ancestors) |
− | elseif not quad.parent.key then return nil | + | --~ elseif not quad.parent.key then return nil |
− | end | + | --~ end |
− | end | + | --~ end |
− | end | + | --~ end |
---------------------- | ---------------------- | ||
Line 69: | Line 72: | ||
---------------- | ---------------- | ||
− | -- | + | -- find first -- |
---------------- | ---------------- | ||
− | function search. | + | function search.find(query, tbl, parentKey) |
− | local | + | local children = {} |
− | for k,v in pairs(tbl) do | + | for k,v in pairs(tbl) do -- search through children that are not tables |
local quad = { | local quad = { | ||
Line 80: | Line 83: | ||
value = v, | value = v, | ||
parent = { | parent = { | ||
− | key = | + | key = parentKey, |
table = tbl | table = tbl | ||
} | } | ||
} | } | ||
− | -- | + | --~ -- needed to generate ancestry |
− | |||
--~ table.insert(search.state.queried, quad) | --~ table.insert(search.state.queried, quad) | ||
Line 92: | Line 94: | ||
return quad | return quad | ||
elseif type(v) == "table" then | elseif type(v) == "table" then | ||
− | table.insert( | + | table.insert(children, k) |
end | end | ||
end | end | ||
− | + | for _,childK in ipairs(children) do -- search through child tables | |
− | + | return search.find(query, tbl[childK], childK) | |
− | for _, | ||
− | |||
− | |||
− | |||
end | end | ||
end | end | ||
− | return search | + | return search -- return module |
Revision as of 14:25, 9 May 2021
This page has been marked as needing documentation of its function and purpose. You can help RimWorld Wiki by creating it here |
local search = {} --------------- -- conductor -- --------------- -- ancestry functionality (commented out) -- sibling_key: optional, deprecate the whole thing (commented out) -- Possible query combinations: -- query: {key, value} -- query: {key, nil} -- query: {nil, value} -- query: key (string or number) function search.conductor(query, tbl) assert(query, "conductor: missing argument #1 (query)") assert(tbl, "conductor: missing argument #2 (table to search through)") assert(type(tbl) == 'table', string.format("conductor: bad argument #2 (table expected, got %s)", type(tbl))) search.state = { ["args"] = {}, ["queried"] = {} } --~ search.ancestors = {} search.state.args.query = query search.state.args.table = tbl --~ search.state.args.sibling_key = sibling_key local result = search.find(query, tbl) if result then --~ search.generate_anscestry_of_last_search(result) --~ result.ancestors = search.ancestors return result end end -------------- -- ancestry -- -------------- --~ function search.generate_anscestry_of_last_search(quad) --~ quad = quad or {} --~ for _,v in ipairs(search.state.queried) do --~ if v.value == quad.parent.table then --~ table.insert(search.ancestors, quad.parent.key) --~ search.generate_anscestry_of_last_search(v, search.state.queried, ancestors) --~ elseif not quad.parent.key then return nil --~ end --~ end --~ end ---------------------- -- search_condition -- ---------------------- -- note: if I want to search for true/false, will need to change this up a bit function search.search_condition(query, key, value) local condition = false if type(query) == "string" or type(query) == "number" then condition = key == query elseif query[1] and query[2] then condition = key == query[1] and value == query[2] elseif query[1] then condition = key == query[1] elseif query[2] then condition = value == query[2] end return condition end ---------------- -- find first -- ---------------- function search.find(query, tbl, parentKey) local children = {} for k,v in pairs(tbl) do -- search through children that are not tables local quad = { key = k, value = v, parent = { key = parentKey, table = tbl } } --~ -- needed to generate ancestry --~ table.insert(search.state.queried, quad) if search.search_condition(query, k, v) then return quad elseif type(v) == "table" then table.insert(children, k) end end for _,childK in ipairs(children) do -- search through child tables return search.find(query, tbl[childK], childK) end end return search -- return module