aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2018-06-13 13:05:11 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2018-06-29 19:38:23 +0200
commit512b2612a81805c1a835eb3a9fc38144e15662f2 (patch)
tree33e3c6128cdd4e84526fe4bcefd779dc45841d81
parent1ca4926cfd87c9e7bcc84edb45356029d41dce3a (diff)
Add 2 lua utilities function
Sleep function and a recursive table equality function Change-Id: I4cb3a0f0909674f03caeadeebd8da35f16391198 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--ctl-lib/ctl-lua-utils.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/ctl-lib/ctl-lua-utils.c b/ctl-lib/ctl-lua-utils.c
index da22b7a..98dcebd 100644
--- a/ctl-lib/ctl-lua-utils.c
+++ b/ctl-lib/ctl-lua-utils.c
@@ -82,6 +82,56 @@ printf = function(s,...)\n\
return\n\
end\n\
\n\
+function sleep(n)\n\
+ os.execute(\"sleep \" .. tonumber(n))\n\
+end\n\
+\n\
+function table_eq(table1, table2)\n\
+ local avoid_loops = {}\n\
+ local function recurse(t1, t2)\n\
+ -- compare value types\n\
+ if type(t1) ~= type(t2) then return false end\n\
+ -- Base case: compare simple values\n\
+ if type(t1) ~= \"table\" then return t1 == t2 end\n\
+ -- Now, on to tables.\n\
+ -- First, let's avoid looping forever.\n\
+ if avoid_loops[t1] then return avoid_loops[t1] == t2 end\n\
+ avoid_loops[t1] = t2\n\
+ -- Copy keys from t2\n\
+ local t2keys = {}\n\
+ local t2tablekeys = {}\n\
+ for k, _ in pairs(t2) do\n\
+ if type(k) == \"table\" then table.insert(t2tablekeys, k) end\n\
+ t2keys[k] = true\n\
+ end\n\
+ -- Let's iterate keys from t1\n\
+ for k1, v1 in pairs(t1) do\n\
+ local v2 = t2[k1]\n\
+ if type(k1) == \"table\" then\n\
+ -- if key is a table, we need to find an equivalent one.\n\
+ local ok = false\n\
+ for i, tk in ipairs(t2tablekeys) do\n\
+ if table_eq(k1, tk) and recurse(v1, t2[tk]) then\n\
+ table.remove(t2tablekeys, i)\n\
+ t2keys[tk] = nil\n\
+ ok = true\n\
+ break\n\
+ end\n\
+ end\n\
+ if not ok then return false end\n\
+ else\n\
+ -- t1 has a key which t2 doesn't have, fail.\n\
+ if v2 == nil then return false end\n\
+ t2keys[k1] = nil\n\
+ if not recurse(v1, v2) then return false end\n\
+ end\n\
+ end\n\
+ -- if t2 has a key which t1 doesn't have, fail.\n\
+ if next(t2keys) then return false end\n\
+ return true\n\
+ end\n\
+ return recurse(table1, table2)\n\
+end\n\
-- lock global variable\n\
GLOBAL_lock(_G)\n\
";