mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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.
This commit is contained in:
parent
586a0d8493
commit
ffa72d829b
1 changed files with 6 additions and 2 deletions
|
@ -91,8 +91,12 @@ function dbuffer_methods:read_until(char)
|
|||
end
|
||||
|
||||
function dbuffer_methods:discard(requested_bytes)
|
||||
if requested_bytes > self._length then
|
||||
return nil;
|
||||
if self._length == 0 then return true; end
|
||||
if not requested_bytes or requested_bytes >= self._length then
|
||||
self.front_consumed = 0;
|
||||
self._length = 0;
|
||||
for _ in self.items:consume() do end
|
||||
return true;
|
||||
end
|
||||
|
||||
local chunk, read_bytes = self:read_chunk(requested_bytes);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue