From 0a481b9aef3726763c572ad3ce6d44ea14dd35ba Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Mon, 24 Jun 2024 12:24:07 +0200 Subject: linda:dump correctly outputs limit as "unlimited" for unlimited keys --- CHANGES | 1 + src/keeper.cpp | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index f2031f7..8234215 100644 --- a/CHANGES +++ b/CHANGES @@ -29,6 +29,7 @@ CHANGE 2: BGe 11-Jun-24 - linda:deep() result no longer contains the raw C pointer of the Linda object. - linda :receive(), :send(), :get(), :set(), :limit() return nil, error in case of problem. Returned values in case of success change too. - Lindas have a __close metamethod that calls any suitable handler that was provided at Linda creation. + - linda:dump outputs .limit as 'unlimited' instead of -1 for unlimited keys. - Lane generator settings: - error_trace_level added. Replaces the global verbose_errors setting. - name added. Can be used to set the name early (before the lane body calls set_debug_threadname()). diff --git a/src/keeper.cpp b/src/keeper.cpp index 8261f5a..3054f86 100644 --- a/src/keeper.cpp +++ b/src/keeper.cpp @@ -711,7 +711,11 @@ int Keeper::PushLindaStorage(Linda& linda_, DestState const L_) STACK_CHECK(L_, 5); lua_setfield(L_, -3, "count"); // _K: KeysDB key L_: out key keyout fifo // keyout.limit - lua_pushinteger(L_, _key->limit); // _K: KeysDB key L_: out key keyout fifo limit + if (_key->limit >= 0) { + lua_pushinteger(L_, _key->limit); // _K: KeysDB key L_: out key keyout fifo limit + } else { + luaG_pushstring(L_, "unlimited"); // _K: KeysDB key L_: out key keyout fifo limit + } STACK_CHECK(L_, 5); lua_setfield(L_, -3, "limit"); // _K: KeysDB key L_: out key keyout fifo // keyout.fifo -- cgit v1.2.3-55-g6feb