mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Restart timer after runtime stop (#154)
* Code coverage * Restart timer after runtime stop
This commit is contained in:
parent
67eb653ef2
commit
4baf42d6d1
8 changed files with 62 additions and 47 deletions
37
.github/workflows/cov.yml
vendored
Normal file
37
.github/workflows/cov.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
name: Coverage
|
||||||
|
|
||||||
|
on: [pull_request, push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
coverage:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install Rust
|
||||||
|
run: rustup toolchain install stable --component llvm-tools-preview
|
||||||
|
|
||||||
|
- name: Install cargo-llvm-cov
|
||||||
|
uses: taiki-e/install-action@cargo-llvm-cov
|
||||||
|
|
||||||
|
- name: Generate Cargo.lock
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: generate-lockfile
|
||||||
|
|
||||||
|
- name: Cache Dependencies
|
||||||
|
uses: Swatinem/rust-cache@v1.0.1
|
||||||
|
|
||||||
|
- name: Code coverage
|
||||||
|
run: cargo llvm-cov --all --all-features --lcov --output-path lcov.info
|
||||||
|
|
||||||
|
- name: Code coverage (glommio)
|
||||||
|
run: cargo llvm-cov --all --no-default-features --features="glommio,cookie,url,compress,openssl,rustls" --lcov --output-path lcov.info
|
||||||
|
|
||||||
|
- name: Upload coverage to Codecov
|
||||||
|
uses: codecov/codecov-action@v3
|
||||||
|
with:
|
||||||
|
files: lcov.info
|
||||||
|
fail_ci_if_error: true
|
34
.github/workflows/linux.yml
vendored
34
.github/workflows/linux.yml
vendored
|
@ -42,13 +42,6 @@ jobs:
|
||||||
path: ~/.cargo/git
|
path: ~/.cargo/git
|
||||||
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
|
|
||||||
if: matrix.version == '1.65.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
|
||||||
uses: actions/cache@v1
|
|
||||||
with:
|
|
||||||
path: ~/.cargo/bin
|
|
||||||
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-tarpaulin
|
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
timeout-minutes: 40
|
timeout-minutes: 40
|
||||||
|
@ -63,33 +56,6 @@ jobs:
|
||||||
cd ntex
|
cd ntex
|
||||||
cargo test --no-default-features --no-fail-fast --features="async-std,cookie,url,compress,openssl,rustls" --lib -- --test-threads 1
|
cargo test --no-default-features --no-fail-fast --features="async-std,cookie,url,compress,openssl,rustls" --lib -- --test-threads 1
|
||||||
|
|
||||||
- name: Install tarpaulin
|
|
||||||
if: matrix.version == '1.65.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
|
||||||
continue-on-error: true
|
|
||||||
run: |
|
|
||||||
cargo install cargo-tarpaulin
|
|
||||||
|
|
||||||
- name: Generate coverage report
|
|
||||||
if: matrix.version == '1.65.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
|
||||||
continue-on-error: true
|
|
||||||
run: |
|
|
||||||
cargo tarpaulin --out Xml --all --all-features
|
|
||||||
|
|
||||||
- name: Generate coverage report (glommio)
|
|
||||||
if: matrix.version == '1.65.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
|
||||||
continue-on-error: true
|
|
||||||
run: |
|
|
||||||
cd ntex
|
|
||||||
sudo -E env PATH="$PATH" bash -c "ulimit -l 512 && ulimit -a && cargo tarpaulin --out Xml --no-default-features --features=\"glommio,cookie,url,compress,openssl,rustls\""
|
|
||||||
|
|
||||||
- name: Upload to Codecov
|
|
||||||
if: matrix.version == '1.65.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
|
|
||||||
continue-on-error: true
|
|
||||||
uses: codecov/codecov-action@v2
|
|
||||||
with:
|
|
||||||
files: cobertura.xml, ./ntex/cobertura.xml
|
|
||||||
verbose: true
|
|
||||||
|
|
||||||
- name: Install cargo-cache
|
- name: Install cargo-cache
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
[](https://github.com/ntex-rs/ntex/actions?query=workflow%3A"CI+(Linux)")
|
[](https://github.com/ntex-rs/ntex/actions?query=workflow%3A"CI+(Linux)")
|
||||||
[](https://crates.io/crates/ntex)
|
[](https://crates.io/crates/ntex)
|
||||||
[](https://docs.rs/ntex)
|
[](https://docs.rs/ntex)
|
||||||
[](https://blog.rust-lang.org/2021/12/02/Rust-1.57.0.html)
|
[](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html)
|
||||||

|

|
||||||
[](https://codecov.io/gh/ntex-rs/ntex)
|
[](https://codecov.io/gh/ntex-rs/ntex)
|
||||||
[](https://discord.gg/zBNyhVRz)
|
[](https://discord.gg/zBNyhVRz)
|
||||||
|
@ -29,13 +29,13 @@ Starting ntex v0.5 async runtime must be selected as a feature. Available option
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ntex = { version = "0.5", features = ["glommio"] }
|
ntex = { version = "0.6", features = ["glommio"] }
|
||||||
```
|
```
|
||||||
|
|
||||||
## Documentation & community resources
|
## Documentation & community resources
|
||||||
|
|
||||||
* [Documentation](https://docs.rs/ntex)
|
* [Documentation](https://docs.rs/ntex)
|
||||||
* Minimum supported Rust version: 1.57 or later
|
* Minimum supported Rust version: 1.65 or later
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.2.0-beta.0] - 2022-12-xx
|
||||||
|
|
||||||
|
* Upgrade to ntex-service 1.0
|
||||||
|
|
||||||
|
* Restart timer after runtime stop
|
||||||
|
|
||||||
## [0.1.11] - 2022-12-02
|
## [0.1.11] - 2022-12-02
|
||||||
|
|
||||||
* Expose IoRef::start_keepalive_timer() and IoRef::remove_keepalive_timer() methods
|
* Expose IoRef::start_keepalive_timer() and IoRef::remove_keepalive_timer() methods
|
||||||
|
|
|
@ -1,14 +1,11 @@
|
||||||
use std::cell::Cell;
|
use std::cell::Cell;
|
||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
use std::{
|
use std::{fmt, future::Future, hash, io, marker, mem, ops, pin::Pin, ptr, rc::Rc, time};
|
||||||
fmt, future::Future, hash, io, marker, mem, ops::Deref, pin::Pin, ptr, rc::Rc, time,
|
|
||||||
};
|
|
||||||
|
|
||||||
use ntex_bytes::{BytesVec, PoolId, PoolRef};
|
use ntex_bytes::{BytesVec, PoolId, PoolRef};
|
||||||
use ntex_codec::{Decoder, Encoder};
|
use ntex_codec::{Decoder, Encoder};
|
||||||
use ntex_util::{
|
use ntex_util::time::{now, Millis};
|
||||||
future::poll_fn, future::Either, task::LocalWaker, time::now, time::Millis,
|
use ntex_util::{future::poll_fn, future::Either, task::LocalWaker};
|
||||||
};
|
|
||||||
|
|
||||||
use super::filter::{Base, NullFilter};
|
use super::filter::{Base, NullFilter};
|
||||||
use super::seal::Sealed;
|
use super::seal::Sealed;
|
||||||
|
@ -696,7 +693,7 @@ impl<F> fmt::Debug for Io<F> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<F> Deref for Io<F> {
|
impl<F> ops::Deref for Io<F> {
|
||||||
type Target = IoRef;
|
type Target = IoRef;
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
|
|
|
@ -3,8 +3,7 @@ use std::{any, fmt, hash, io, time};
|
||||||
use ntex_bytes::{BufMut, BytesVec, PoolRef};
|
use ntex_bytes::{BufMut, BytesVec, PoolRef};
|
||||||
use ntex_codec::{Decoder, Encoder};
|
use ntex_codec::{Decoder, Encoder};
|
||||||
|
|
||||||
use super::io::{Flags, IoRef, OnDisconnect};
|
use super::{io::Flags, timer, types, Filter, IoRef, OnDisconnect};
|
||||||
use super::{timer, types, Filter};
|
|
||||||
|
|
||||||
impl IoRef {
|
impl IoRef {
|
||||||
#[inline]
|
#[inline]
|
||||||
|
|
|
@ -46,6 +46,7 @@ pub(crate) fn register(timeout: Duration, io: &IoRef) -> Instant {
|
||||||
let inner = timer.clone();
|
let inner = timer.clone();
|
||||||
|
|
||||||
spawn(async move {
|
spawn(async move {
|
||||||
|
let guard = TimerGuard(inner.clone());
|
||||||
loop {
|
loop {
|
||||||
sleep(Millis::ONE_SEC).await;
|
sleep(Millis::ONE_SEC).await;
|
||||||
{
|
{
|
||||||
|
@ -71,6 +72,7 @@ pub(crate) fn register(timeout: Duration, io: &IoRef) -> Instant {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
drop(guard);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -78,6 +80,14 @@ pub(crate) fn register(timeout: Duration, io: &IoRef) -> Instant {
|
||||||
expire
|
expire
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct TimerGuard(Rc<RefCell<Inner>>);
|
||||||
|
|
||||||
|
impl Drop for TimerGuard {
|
||||||
|
fn drop(&mut self) {
|
||||||
|
self.0.borrow_mut().running = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub(crate) fn unregister(expire: Instant, io: &IoRef) {
|
pub(crate) fn unregister(expire: Instant, io: &IoRef) {
|
||||||
TIMER.with(|timer| {
|
TIMER.with(|timer| {
|
||||||
timer.borrow_mut().unregister(expire, io);
|
timer.borrow_mut().unregister(expire, io);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
//! See [`Service`] docs for information on this crate's foundational trait.
|
//! See [`Service`] docs for information on this crate's foundational trait.
|
||||||
|
|
||||||
#![deny(rust_2018_idioms, warnings)]
|
#![deny(rust_2018_idioms, warnings)]
|
||||||
// #![allow(clippy::type_complexity)]
|
#![allow(clippy::type_complexity)]
|
||||||
|
|
||||||
use std::future::Future;
|
use std::future::Future;
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue