Commit graph

10 commits

Author SHA1 Message Date
Kim Alvefur
43531740f9 util: Prefix module imports with prosody namespace 2023-03-17 16:23:16 +01:00
Matthew Wild
fb8e10737d util.dbuffer: dynamic string buffer
Similar to util.ringbuffer (and shares almost identical API). Differences:

- size limit is optional and dynamic
- does not allocate a fixed buffer of max_size bytes
- focus on simply storing references to existing string objects where possible,
  avoiding unnecessary allocations
- references are still stored in a ring buffer to enable use as a fast FIFO

Optional second parameter to new() provides the number of ring buffer segments. On
Lua 5.2 on my laptop, a segment is ~19 bytes. If the ring buffer fills up, the next
write will compact all strings into a single item.
2020-06-26 16:41:31 +01:00
Matthew Wild
e5d74b77ae util.queue: Update :items() to consistently use private data directly
It will perform better this way, and we were accessing private variables already within the iterator.

Replaces 3eea63a68e0f
2019-03-26 13:54:14 +00:00
Matthew Wild
de72422137 Backed out changeset 3eea63a68e0f
Commit included intended changes to loggingmanager
2019-03-26 13:51:06 +00:00
Matthew Wild
3c50aa4902 util.queue: Update :items() to consistently use private data directly
It will perform better this way, and we were accessing private variables
already within the iterator.
2019-03-23 08:52:57 +00:00
Matthew Wild
a274eacbbc util.queue: Add 'consume()' convenience iterator 2019-03-23 08:47:55 +00:00
Matthew Wild
7592b57bc6 util.queue: Add luacheck annotations 2015-10-18 21:54:17 +01:00
Matthew Wild
cd8af079c3 util.queue: Add :items() iterator 2015-10-18 21:42:33 +01:00
Matthew Wild
a67c2d33e5 util.queue: Allow optional wrap-around when pushing, overwriting oldest unread item 2015-06-03 15:51:07 +01:00
Matthew Wild
2f7ac94341 util.queue: Small fast FIFO/ringbuffer/queue library 2015-05-13 16:57:27 +01:00