Commit graph

9 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
ffa72d829b util.dbuffer: Add efficient shortcuts for discard() in certain cases
If the buffer is already empty, nothing to do. If we're throwing away the
whole buffer, we can just empty it and avoid read_chunk() (which in turn
may collapse()). These shortcuts are much more efficient.
2022-10-11 11:37:55 +01:00
Matthew Wild
586a0d8493 util.dbuffer: Remove redundant code (read_chunk() cannot fail at this point) 2022-10-11 11:34:47 +01:00
Matthew Wild
e21e4b2b24 util.dbuffer: Fix bugs, remove multi-char support (more complex than first thought)
Character sequences could be split across chunk boundaries. Would require a bunch
of code to make that work reliably.

Only apply front_consumed on first chunk, and adjust buffer_pos accordingly.
2021-06-29 14:25:57 +01:00
Matthew Wild
4e56658eb3 util.dbuffer: Add read_until() method 2021-06-29 13:48:14 +01:00
Matthew Wild
f80e643a0e util.dbuffer: Add __name to metatable 2020-10-30 13:53:39 +00:00
Matthew Wild
01c5bf5529 util.dbuffer: Optimize :sub() and :byte() 2020-10-28 14:21:09 +00:00
Kim Alvefur
d3b3e21720 util.dbuffer: Expose length as :len() method, like strings
Ref #1598
2020-10-12 20:20:02 +02:00
Matthew Wild
91d42d3218 util.dbuffer: Fix :sub() not working with partially-consumed chunks (thanks Zash for test case)
This also appears to fix some bugs with chunk-encoded streams in net.http.parser.
2020-08-24 16:18:13 +01:00