mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.queue: Allow optional wrap-around when pushing, overwriting oldest unread item
This commit is contained in:
parent
bfba36b194
commit
a67c2d33e5
1 changed files with 7 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
|||
|
||||
local have_utable, utable = pcall(require, "util.table"); -- For pre-allocation of table
|
||||
|
||||
local function new(size)
|
||||
local function new(size, allow_wrapping)
|
||||
-- Head is next insert, tail is next read
|
||||
local head, tail = 1, 1;
|
||||
local items = 0; -- Number of stored items
|
||||
|
@ -22,7 +22,12 @@ local function new(size)
|
|||
count = function (self) return items; end;
|
||||
push = function (self, item)
|
||||
if items >= size then
|
||||
return nil, "queue full";
|
||||
if allow_wrapping then
|
||||
tail = (tail%size)+1; -- Advance to next oldest item
|
||||
items = items - 1;
|
||||
else
|
||||
return nil, "queue full";
|
||||
end
|
||||
end
|
||||
t[head] = item;
|
||||
items = items + 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue