add buffer_params() api

This commit is contained in:
Nikolay Kim 2021-03-15 16:44:38 +06:00
parent 099d7d4bc9
commit 5eaaca9b2f
9 changed files with 79 additions and 58 deletions

View file

@ -8,7 +8,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
version: version:
- 1.45.0 # MSRV - 1.46.0 # MSRV
- stable - stable
- nightly - nightly
@ -43,7 +43,7 @@ jobs:
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }} key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo tarpaulin - name: Cache cargo tarpaulin
if: matrix.version == '1.45.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') if: matrix.version == '1.46.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
uses: actions/cache@v1 uses: actions/cache@v1
with: with:
path: ~/.cargo/bin path: ~/.cargo/bin
@ -57,19 +57,19 @@ jobs:
args: --all --all-features --no-fail-fast -- --nocapture args: --all --all-features --no-fail-fast -- --nocapture
- name: Install tarpaulin - name: Install tarpaulin
if: matrix.version == '1.45.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') if: matrix.version == '1.46.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
continue-on-error: true continue-on-error: true
run: | run: |
cargo install cargo-tarpaulin cargo install cargo-tarpaulin
- name: Generate coverage report - name: Generate coverage report
if: matrix.version == '1.45.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') if: matrix.version == '1.46.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
continue-on-error: true continue-on-error: true
run: | run: |
cargo tarpaulin --out Xml --all --all-features cargo tarpaulin --out Xml --all --all-features
- name: Upload to Codecov - name: Upload to Codecov
if: matrix.version == '1.45.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') if: matrix.version == '1.46.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
continue-on-error: true continue-on-error: true
uses: codecov/codecov-action@v1 uses: codecov/codecov-action@v1
with: with:

View file

@ -1,5 +1,9 @@
# Changes # Changes
## [0.3.10] - 2021-03-15
* add buffer_params() api
## [0.3.9] - 2021-03-15 ## [0.3.9] - 2021-03-15
* framed: refactor api * framed: refactor api

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex" name = "ntex"
version = "0.3.9" version = "0.3.10"
authors = ["ntex contributors <team@ntex.rs>"] authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services" description = "Framework for composable network services"
readme = "README.md" readme = "README.md"

View file

@ -7,7 +7,7 @@
[![codecov](https://codecov.io/gh/ntex-rs/ntex/branch/master/graph/badge.svg)](https://codecov.io/gh/ntex-rs/ntex) [![codecov](https://codecov.io/gh/ntex-rs/ntex/branch/master/graph/badge.svg)](https://codecov.io/gh/ntex-rs/ntex)
[![crates.io](https://meritbadge.herokuapp.com/ntex)](https://crates.io/crates/ntex) [![crates.io](https://meritbadge.herokuapp.com/ntex)](https://crates.io/crates/ntex)
[![Documentation](https://docs.rs/ntex/badge.svg)](https://docs.rs/ntex) [![Documentation](https://docs.rs/ntex/badge.svg)](https://docs.rs/ntex)
[![Version](https://img.shields.io/badge/rustc-1.45+-lightgray.svg)](https://blog.rust-lang.org/2020/03/12/Rust-1.45.html) [![Version](https://img.shields.io/badge/rustc-1.46+-lightgray.svg)](https://blog.rust-lang.org/2020/08/27/Rust-1.46.0.html)
![License](https://img.shields.io/crates/l/ntex.svg) ![License](https://img.shields.io/crates/l/ntex.svg)
</p> </p>
@ -24,7 +24,7 @@
## Documentation & community resources ## Documentation & community resources
* [Documentation](https://docs.rs/ntex) * [Documentation](https://docs.rs/ntex)
* Minimum supported Rust version: 1.45 or later * Minimum supported Rust version: 1.46 or later
## License ## License

View file

@ -685,7 +685,7 @@ mod tests {
} }
}), }),
); );
state.set_buffer_sizes(8 * 1024, 16 * 1024, 1024); state.set_buffer_params(8 * 1024, 16 * 1024, 1024);
crate::rt::spawn(disp.map(|_| ())); crate::rt::spawn(disp.map(|_| ()));
let buf = client.read_any(); let buf = client.read_any();

View file

@ -191,7 +191,7 @@ impl State {
/// Set read/write buffer sizes /// Set read/write buffer sizes
/// ///
/// By default read max buf size is 8kb, write max buf size is 8kb /// By default read max buf size is 8kb, write max buf size is 8kb
pub fn set_buffer_sizes( pub fn set_buffer_params(
&self, &self,
max_read_buf_size: u16, max_read_buf_size: u16,
max_write_buf_size: u16, max_write_buf_size: u16,

View file

@ -114,30 +114,18 @@ where
} }
#[inline] #[inline]
/// Set read buffer high water mark size /// Set read/write buffer params
/// ///
/// By default read hw is 8kb /// By default read buffer is 8kb, write buffer is 8kb
pub fn read_high_watermark(mut self, hw: u16) -> Self { pub fn buffer_params(
self.read_hw = hw; mut self,
self max_read_buf_size: u16,
} max_write_buf_size: u16,
min_buf_size: u16,
#[inline] ) -> Self {
/// Set write buffer high watermark size self.read_hw = max_read_buf_size;
/// self.write_hw = max_write_buf_size;
/// By default write hw is 8kb self.lw = min_buf_size;
pub fn write_high_watermark(mut self, hw: u16) -> Self {
self.write_hw = hw;
self
}
#[inline]
/// Set buffer low watermark size
///
/// Low watermark is the same for read and write buffers.
/// By default low watermark value is 1kb.
pub fn low_watermark(mut self, lw: u16) -> Self {
self.lw = lw;
self self
} }
@ -287,4 +275,28 @@ where
.upgrade(self.upgrade) .upgrade(self.upgrade)
.on_connect(self.on_connect) .on_connect(self.on_connect)
} }
#[inline]
#[doc(hidden)]
#[deprecated(since = "0.3.10")]
pub fn read_high_watermark(mut self, hw: u16) -> Self {
self.read_hw = hw;
self
}
#[inline]
#[doc(hidden)]
#[deprecated(since = "0.3.10")]
pub fn write_high_watermark(mut self, hw: u16) -> Self {
self.write_hw = hw;
self
}
#[inline]
#[doc(hidden)]
#[deprecated(since = "0.3.10")]
pub fn low_watermark(mut self, lw: u16) -> Self {
self.lw = lw;
self
}
} }

View file

@ -897,7 +897,7 @@ mod tests {
client.remote_buffer_cap(4096); client.remote_buffer_cap(4096);
let mut h1 = h1(server, |_| ok::<_, io::Error>(Response::Ok().finish())); let mut h1 = h1(server, |_| ok::<_, io::Error>(Response::Ok().finish()));
h1.inner.state.set_buffer_sizes(16 * 1024, 16 * 1024, 1024); h1.inner.state.set_buffer_params(16 * 1024, 16 * 1024, 1024);
let mut decoder = ClientCodec::default(); let mut decoder = ClientCodec::default();

View file

@ -233,28 +233,43 @@ where
} }
#[inline] #[inline]
/// Set read buffer high water mark size /// Set read/write buffer params
/// ///
/// By default read hw is 8kb /// By default read buffer is 8kb, write buffer is 8kb
pub fn buffer_params(
self,
max_read_buf_size: u16,
max_write_buf_size: u16,
min_buf_size: u16,
) -> Self {
{
let mut cfg = self.config.lock().unwrap();
cfg.read_hw = max_read_buf_size;
cfg.write_hw = max_write_buf_size;
cfg.lw = min_buf_size;
}
self
}
#[inline]
#[doc(hidden)]
#[deprecated(since = "0.3.10")]
pub fn read_high_watermark(self, hw: u16) -> Self { pub fn read_high_watermark(self, hw: u16) -> Self {
self.config.lock().unwrap().read_hw = hw; self.config.lock().unwrap().read_hw = hw;
self self
} }
#[inline] #[inline]
/// Set write buffer high watermark size #[doc(hidden)]
/// #[deprecated(since = "0.3.10")]
/// By default write hw is 8kb
pub fn write_high_watermark(self, hw: u16) -> Self { pub fn write_high_watermark(self, hw: u16) -> Self {
self.config.lock().unwrap().write_hw = hw; self.config.lock().unwrap().write_hw = hw;
self self
} }
#[inline] #[inline]
/// Set buffer low watermark size #[doc(hidden)]
/// #[deprecated(since = "0.3.10")]
/// Low watermark is the same for read and write buffers.
/// By default low watermark value is 1kb.
pub fn low_watermark(self, lw: u16) -> Self { pub fn low_watermark(self, lw: u16) -> Self {
self.config.lock().unwrap().lw = lw; self.config.lock().unwrap().lw = lw;
self self
@ -284,9 +299,7 @@ where
.keep_alive(c.keep_alive) .keep_alive(c.keep_alive)
.client_timeout(c.client_timeout) .client_timeout(c.client_timeout)
.disconnect_timeout(c.client_disconnect) .disconnect_timeout(c.client_disconnect)
.low_watermark(c.lw) .buffer_params(c.read_hw, c.write_hw, c.lw)
.read_high_watermark(c.read_hw)
.write_high_watermark(c.write_hw)
.finish(map_config(factory(), move |_| cfg.clone())) .finish(map_config(factory(), move |_| cfg.clone()))
.tcp() .tcp()
}, },
@ -331,9 +344,7 @@ where
.client_timeout(c.client_timeout) .client_timeout(c.client_timeout)
.disconnect_timeout(c.client_disconnect) .disconnect_timeout(c.client_disconnect)
.ssl_handshake_timeout(c.handshake_timeout) .ssl_handshake_timeout(c.handshake_timeout)
.low_watermark(c.lw) .buffer_params(c.read_hw, c.write_hw, c.lw)
.read_high_watermark(c.read_hw)
.write_high_watermark(c.write_hw)
.finish(map_config(factory(), move |_| cfg.clone())) .finish(map_config(factory(), move |_| cfg.clone()))
.openssl(acceptor.clone()) .openssl(acceptor.clone())
}, },
@ -378,9 +389,7 @@ where
.client_timeout(c.client_timeout) .client_timeout(c.client_timeout)
.disconnect_timeout(c.client_disconnect) .disconnect_timeout(c.client_disconnect)
.ssl_handshake_timeout(c.handshake_timeout) .ssl_handshake_timeout(c.handshake_timeout)
.low_watermark(c.lw) .buffer_params(c.read_hw, c.write_hw, c.lw)
.read_high_watermark(c.read_hw)
.write_high_watermark(c.write_hw)
.finish(map_config(factory(), move |_| cfg.clone())) .finish(map_config(factory(), move |_| cfg.clone()))
.rustls(config.clone()) .rustls(config.clone())
}, },
@ -500,9 +509,7 @@ where
HttpService::build() HttpService::build()
.keep_alive(c.keep_alive) .keep_alive(c.keep_alive)
.client_timeout(c.client_timeout) .client_timeout(c.client_timeout)
.low_watermark(c.lw) .buffer_params(c.read_hw, c.write_hw, c.lw)
.read_high_watermark(c.read_hw)
.write_high_watermark(c.write_hw)
.finish(map_config(factory(), move |_| config.clone())), .finish(map_config(factory(), move |_| config.clone())),
) )
})?; })?;
@ -541,9 +548,7 @@ where
HttpService::build() HttpService::build()
.keep_alive(c.keep_alive) .keep_alive(c.keep_alive)
.client_timeout(c.client_timeout) .client_timeout(c.client_timeout)
.low_watermark(c.lw) .buffer_params(c.read_hw, c.write_hw, c.lw)
.read_high_watermark(c.read_hw)
.write_high_watermark(c.write_hw)
.finish(map_config(factory(), move |_| config.clone())), .finish(map_config(factory(), move |_| config.clone())),
) )
}, },