Skip to content

Instantly share code, notes, and snippets.

@serpent7776
Forked from johndgiese/circular_buffer.lua
Last active June 11, 2021 23:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save serpent7776/d56fe1c187d88fac6be316207eb18f9c to your computer and use it in GitHub Desktop.
Save serpent7776/d56fe1c187d88fac6be316207eb18f9c to your computer and use it in GitHub Desktop.
Circular Buffer in Lua
-- circular buffer factory for lua
local function rotate_indice(i, n)
return ((i - 1) % n) + 1
end
local circular_buffer = {}
function circular_buffer:filled()
return #(self.history) == self.max_length
end
function circular_buffer:push(value)
if self:filled() then
local value_to_be_removed = self.history[self.oldest]
self.history[self.oldest] = value
self.oldest = self.oldest == self.max_length and 1 or self.oldest + 1
else
self.history[#(self.history) + 1] = value
end
end
circular_buffer.metatable = {}
-- positive values index from newest to oldest (starting with 1)
-- negative values index from oldest to newest (starting with -1)
function circular_buffer.metatable:__index(i)
local history_length = #(self.history)
if i == 0 or math.abs(i) > history_length then
return nil
elseif i >= 1 then
local i_rotated = rotate_indice(self.oldest - i, history_length)
return self.history[i_rotated]
elseif i <= -1 then
local i_rotated = rotate_indice(i + 1 + self.oldest, history_length)
return self.history[i_rotated]
end
end
function circular_buffer.metatable:__len()
return #(self.history)
end
function circular_buffer.new(max_length)
if type(max_length) ~= 'number' or max_length <= 1 then
error("Buffer length must be a positive integer")
end
local instance = {
history = {},
oldest = 1,
max_length = max_length,
push = circular_buffer.push,
filled = circular_buffer.filled,
}
setmetatable(instance, circular_buffer.metatable)
return instance
end
return circular_buffer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment