Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

optimize mvps_push_or_pull #662

Closed
wants to merge 11 commits into from
Prev Previous commit
add fallback implementation for fifo_queue.add_list() in case table.m…
…ove() is missing
  • Loading branch information
lolbinarycat committed Dec 19, 2023
commit ab2df3caf31cb3877b5f37b2e778cf0448f0adeb
17 changes: 13 additions & 4 deletions mesecons/fifo_queue.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,19 @@ function fifo_queue.add(self, v)
self.buf_in[n] = v
end

-- add several elements to the queue
function fifo_queue.add_list(self, v)
table.move(v, 1, #v, self.n_in + 1, self.buf_in)
self.n_in = self.n_in + #v
-- table.move is not available in some lua versions, provide a fallback implementaion
if table.move ~= nil then
-- add several elements to the queue
function fifo_queue.add_list(self, v)
table.move(v, 1, #v, self.n_in + 1, self.buf_in)
self.n_in = self.n_in + #v
end
else
function fifo_queue.add_list(self, v)
for _, elem in ipairs(v) do
self:add(elem)
end
end
end
-- removes and returns the next element, or nil of empty
function fifo_queue.take(self)
Expand Down
Loading