Allow to access io write destination buffer (#504)

This commit is contained in:
Nikolay Kim 2025-01-21 19:32:31 +03:00 committed by GitHub
parent 5b11a3e30e
commit 282e3224cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 21 additions and 3 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [2.9.3] - 2025-01-21
* Allow to access io write destination buffer
## [2.9.2] - 2024-12-05
* Better error handling

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-io"
version = "2.9.2"
version = "2.9.3"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for encoding and decoding frames"
keywords = ["network", "framework", "async", "futures"]

View file

@ -218,12 +218,12 @@ impl Stack {
pub(crate) fn with_write_destination<F, R>(&self, io: &IoRef, f: F) -> R
where
F: FnOnce(&mut Option<BytesVec>) -> R,
F: FnOnce(Option<&mut BytesVec>) -> R,
{
let item = self.get_last_level();
let mut wb = item.1.take();
let result = f(&mut wb);
let result = f(wb.as_mut());
// check nested updates
if item.1.take().is_some() {

View file

@ -199,6 +199,16 @@ impl IoRef {
}
}
#[doc(hidden)]
#[inline]
/// Get mut access to destination write buffer
pub fn with_write_dest_buf<F, R>(&self, f: F) -> R
where
F: FnOnce(Option<&mut BytesVec>) -> R,
{
self.0.buffer.with_write_destination(self, f)
}
#[inline]
/// Get mut access to source read buffer
pub fn with_read_buf<F, R>(&self, f: F) -> R
@ -559,6 +569,10 @@ mod tests {
assert_eq!(in_bytes.get(), BIN.len() * 2);
assert_eq!(out_bytes.get(), 8);
assert_eq!(
state.with_write_dest_buf(|b| b.map(|b| b.len()).unwrap_or(0)),
0
);
// refs
assert_eq!(Rc::strong_count(&in_bytes), 3);