mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.queue: Add 'consume()' convenience iterator
This commit is contained in:
parent
95314bb2be
commit
a274eacbbc
2 changed files with 40 additions and 0 deletions
|
@ -100,4 +100,41 @@ describe("util.queue", function()
|
|||
|
||||
end);
|
||||
end);
|
||||
describe("consume()", function ()
|
||||
it("should work", function ()
|
||||
local q = queue.new(10);
|
||||
for i = 1, 5 do
|
||||
q:push(i);
|
||||
end
|
||||
local c = 0;
|
||||
for i in q:consume() do
|
||||
assert(i == c + 1);
|
||||
assert(q:count() == (5-i));
|
||||
c = i;
|
||||
end
|
||||
end);
|
||||
|
||||
it("should work even if items are pushed in the loop", function ()
|
||||
local q = queue.new(10);
|
||||
for i = 1, 5 do
|
||||
q:push(i);
|
||||
end
|
||||
local c = 0;
|
||||
for i in q:consume() do
|
||||
assert(i == c + 1);
|
||||
if c < 3 then
|
||||
assert(q:count() == (5-i));
|
||||
else
|
||||
assert(q:count() == (6-i));
|
||||
end
|
||||
|
||||
c = i;
|
||||
|
||||
if c == 3 then
|
||||
q:push(6);
|
||||
end
|
||||
end
|
||||
assert.equal(c, 6);
|
||||
end);
|
||||
end);
|
||||
end);
|
||||
|
|
|
@ -64,6 +64,9 @@ local function new(size, allow_wrapping)
|
|||
return pos+1, t._items[read_pos];
|
||||
end, self, 0;
|
||||
end;
|
||||
consume = function (self)
|
||||
return self.pop, self;
|
||||
end;
|
||||
};
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue