mirror of
https://github.com/fafhrd91/actix-net
synced 2025-08-13 21:18:21 +02:00
Compare commits
47 Commits
router-v0.
...
server-v1.
Author | SHA1 | Date | |
---|---|---|---|
|
1918c8d4f8 | ||
|
e21c58930b | ||
|
59c5e9be6a | ||
|
a2a9d9764d | ||
|
bf0a9d2f6e | ||
|
119027f822 | ||
|
0fe8038d23 | ||
|
b599bc4a0c | ||
|
a80e1f8370 | ||
|
5fe759cc02 | ||
|
05549f0b42 | ||
|
b1430eaded | ||
|
0d3f9e74c5 | ||
|
cab73791ed | ||
|
a7ac1a76ed | ||
|
37bedff6fb | ||
|
33fd6adc11 | ||
|
4305cdba2c | ||
|
52ecb4bcc5 | ||
|
b28f32e82c | ||
|
081205a02f | ||
|
8bb81c0768 | ||
|
c7a8743bf9 | ||
|
f26fcc703b | ||
|
ce4587df82 | ||
|
9957f28137 | ||
|
9d84d14ef4 | ||
|
60bfa1bfb1 | ||
|
2c81c22b3e | ||
|
dded482514 | ||
|
631cb86947 | ||
|
2e5e69c9ba | ||
|
e315cf2893 | ||
|
13fd615966 | ||
|
c094f84b85 | ||
|
25012d290a | ||
|
32202188cc | ||
|
bf734a31dc | ||
|
d29e7c4ba6 | ||
|
7163e2c2a2 | ||
|
1d810b4561 | ||
|
0913badd61 | ||
|
8b3062cd6e | ||
|
35218a4df1 | ||
|
d47f1fb730 | ||
|
1ad0bbfb7f | ||
|
c38a25f102 |
20
.github/workflows/main.yml
vendored
20
.github/workflows/main.yml
vendored
@@ -2,6 +2,9 @@ name: CI
|
|||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
env:
|
||||||
|
VCPKGRS_DYNAMIC: 1
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_and_test:
|
build_and_test:
|
||||||
strategy:
|
strategy:
|
||||||
@@ -18,10 +21,12 @@ jobs:
|
|||||||
include:
|
include:
|
||||||
- toolchain: x86_64-pc-windows-msvc
|
- toolchain: x86_64-pc-windows-msvc
|
||||||
os: windows-latest
|
os: windows-latest
|
||||||
|
arch: x64
|
||||||
- toolchain: x86_64-pc-windows-gnu
|
- toolchain: x86_64-pc-windows-gnu
|
||||||
os: windows-latest
|
os: windows-latest
|
||||||
- toolchain: i686-pc-windows-msvc
|
- toolchain: i686-pc-windows-msvc
|
||||||
os: windows-latest
|
os: windows-latest
|
||||||
|
arch: x86
|
||||||
- toolchain: x86_64-apple-darwin
|
- toolchain: x86_64-apple-darwin
|
||||||
os: macOS-latest
|
os: macOS-latest
|
||||||
|
|
||||||
@@ -37,6 +42,13 @@ jobs:
|
|||||||
toolchain: ${{ matrix.version }}-${{ matrix.toolchain }}
|
toolchain: ${{ matrix.version }}-${{ matrix.toolchain }}
|
||||||
default: true
|
default: true
|
||||||
|
|
||||||
|
|
||||||
|
- name: Install OpenSSL
|
||||||
|
if: matrix.toolchain == 'x86_64-pc-windows-msvc' || matrix.toolchain == 'i686-pc-windows-msvc'
|
||||||
|
run: |
|
||||||
|
vcpkg integrate install
|
||||||
|
vcpkg install openssl:${{ matrix.arch }}-windows
|
||||||
|
|
||||||
- name: check nightly
|
- name: check nightly
|
||||||
if: matrix.version == 'nightly'
|
if: matrix.version == 'nightly'
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
@@ -52,6 +64,14 @@ jobs:
|
|||||||
args: --all --bins --examples --tests
|
args: --all --bins --examples --tests
|
||||||
|
|
||||||
- name: tests
|
- name: tests
|
||||||
|
if: matrix.toolchain != 'x86_64-pc-windows-gnu'
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: test
|
||||||
|
args: --all --all-features -- --nocapture
|
||||||
|
|
||||||
|
- name: tests on x86_64-pc-windows-gnu
|
||||||
|
if: matrix.toolchain == 'x86_64-pc-windows-gnu'
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
|
18
README.md
18
README.md
@@ -30,14 +30,16 @@ fn main() -> io::Result<()> {
|
|||||||
let num = num.clone();
|
let num = num.clone();
|
||||||
let acceptor = acceptor.clone();
|
let acceptor = acceptor.clone();
|
||||||
|
|
||||||
// service for converting incoming TcpStream to a SslStream<TcpStream>
|
// construct transformation pipeline
|
||||||
fn_service(move |stream: Io<tokio_tcp::TcpStream>| {
|
pipeline(
|
||||||
SslAcceptorExt::accept_async(&acceptor, stream.into_parts().0)
|
// service for converting incoming TcpStream to a SslStream<TcpStream>
|
||||||
.map_err(|e| println!("Openssl error: {}", e))
|
fn_service(move |stream: actix_rt::net::TcpStream| async move {
|
||||||
})
|
SslAcceptorExt::accept_async(&acceptor, stream.into_parts().0).await
|
||||||
// .and_then() combinator uses other service to convert incoming `Request` to a
|
.map_err(|e| println!("Openssl error: {}", e))
|
||||||
// `Response` and then uses that response as an input for next
|
}))
|
||||||
// service. in this case, on success we use `logger` service
|
// .and_then() combinator chains result of previos service call to argument
|
||||||
|
/// for next service calll. in this case, on success we chain
|
||||||
|
/// ssl stream to the `logger` service.
|
||||||
.and_then(fn_service(logger))
|
.and_then(fn_service(logger))
|
||||||
// Next service counts number of connections
|
// Next service counts number of connections
|
||||||
.and_then(move |_| {
|
.and_then(move |_| {
|
||||||
|
@@ -1,5 +1,15 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
* Use `.advance()` intead of `.split_to()`
|
||||||
|
|
||||||
|
## [0.2.0] - 2019-12-10
|
||||||
|
|
||||||
|
* Use specific futures dependencies
|
||||||
|
|
||||||
|
## [0.2.0-alpha.4]
|
||||||
|
|
||||||
|
* Fix buffer remaining capacity calcualtion
|
||||||
|
|
||||||
## [0.2.0-alpha.3]
|
## [0.2.0-alpha.3]
|
||||||
|
|
||||||
* Use tokio 0.2
|
* Use tokio 0.2
|
||||||
@@ -10,17 +20,14 @@
|
|||||||
|
|
||||||
* Migrated to `std::future`
|
* Migrated to `std::future`
|
||||||
|
|
||||||
|
|
||||||
## [0.1.2] - 2019-03-27
|
## [0.1.2] - 2019-03-27
|
||||||
|
|
||||||
* Added `Framed::map_io()` method.
|
* Added `Framed::map_io()` method.
|
||||||
|
|
||||||
|
|
||||||
## [0.1.1] - 2019-03-06
|
## [0.1.1] - 2019-03-06
|
||||||
|
|
||||||
* Added `FramedParts::with_read_buffer()` method.
|
* Added `FramedParts::with_read_buffer()` method.
|
||||||
|
|
||||||
|
|
||||||
## [0.1.0] - 2018-12-09
|
## [0.1.0] - 2018-12-09
|
||||||
|
|
||||||
* Move codec to separate crate
|
* Move codec to separate crate
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-codec"
|
name = "actix-codec"
|
||||||
version = "0.2.0-alpha.3"
|
version = "0.2.0"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Utilities for encoding and decoding frames"
|
description = "Utilities for encoding and decoding frames"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
@@ -9,7 +9,6 @@ repository = "https://github.com/actix/actix-net.git"
|
|||||||
documentation = "https://docs.rs/actix-codec/"
|
documentation = "https://docs.rs/actix-codec/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
workspace = ".."
|
workspace = ".."
|
||||||
|
|
||||||
@@ -20,7 +19,8 @@ path = "src/lib.rs"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "1.2.1"
|
bitflags = "1.2.1"
|
||||||
bytes = "0.5.2"
|
bytes = "0.5.2"
|
||||||
futures = "0.3.1"
|
futures-core = "0.3.1"
|
||||||
|
futures-sink = "0.3.1"
|
||||||
tokio = { version = "0.2.4", default-features=false }
|
tokio = { version = "0.2.4", default-features=false }
|
||||||
tokio-util = { version = "0.2.0", default-features=false, features=["codec"] }
|
tokio-util = { version = "0.2.0", default-features=false, features=["codec"] }
|
||||||
log = "0.4"
|
log = "0.4"
|
@@ -2,8 +2,9 @@ use std::pin::Pin;
|
|||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
use std::{fmt, io};
|
use std::{fmt, io};
|
||||||
|
|
||||||
use bytes::{BufMut, BytesMut};
|
use bytes::{Buf, BytesMut};
|
||||||
use futures::{ready, Sink, Stream};
|
use futures_core::{ready, Stream};
|
||||||
|
use futures_sink::Sink;
|
||||||
|
|
||||||
use crate::{AsyncRead, AsyncWrite, Decoder, Encoder};
|
use crate::{AsyncRead, AsyncWrite, Decoder, Encoder};
|
||||||
|
|
||||||
@@ -19,8 +20,6 @@ bitflags::bitflags! {
|
|||||||
|
|
||||||
/// A unified `Stream` and `Sink` interface to an underlying I/O object, using
|
/// A unified `Stream` and `Sink` interface to an underlying I/O object, using
|
||||||
/// the `Encoder` and `Decoder` traits to encode and decode frames.
|
/// the `Encoder` and `Decoder` traits to encode and decode frames.
|
||||||
///
|
|
||||||
/// You can create a `Framed` instance by using the `AsyncRead::framed` adapter.
|
|
||||||
pub struct Framed<T, U> {
|
pub struct Framed<T, U> {
|
||||||
io: T,
|
io: T,
|
||||||
codec: U,
|
codec: U,
|
||||||
@@ -49,10 +48,6 @@ where
|
|||||||
/// `Sink`; grouping this into a single object is often useful for layering
|
/// `Sink`; grouping this into a single object is often useful for layering
|
||||||
/// things like gzip or TLS, which require both read and write access to the
|
/// things like gzip or TLS, which require both read and write access to the
|
||||||
/// underlying object.
|
/// underlying object.
|
||||||
///
|
|
||||||
/// If you want to work more directly with the streams and sink, consider
|
|
||||||
/// calling `split` on the `Framed` returned by this method, which will
|
|
||||||
/// break them into separate objects, allowing them to interact more easily.
|
|
||||||
pub fn new(io: T, codec: U) -> Framed<T, U> {
|
pub fn new(io: T, codec: U) -> Framed<T, U> {
|
||||||
Framed {
|
Framed {
|
||||||
io,
|
io,
|
||||||
@@ -82,10 +77,6 @@ impl<T, U> Framed<T, U> {
|
|||||||
/// This objects takes a stream and a readbuffer and a writebuffer. These
|
/// This objects takes a stream and a readbuffer and a writebuffer. These
|
||||||
/// field can be obtained from an existing `Framed` with the
|
/// field can be obtained from an existing `Framed` with the
|
||||||
/// `into_parts` method.
|
/// `into_parts` method.
|
||||||
///
|
|
||||||
/// If you want to work more directly with the streams and sink, consider
|
|
||||||
/// calling `split` on the `Framed` returned by this method, which will
|
|
||||||
/// break them into separate objects, allowing them to interact more easily.
|
|
||||||
pub fn from_parts(parts: FramedParts<T, U>) -> Framed<T, U> {
|
pub fn from_parts(parts: FramedParts<T, U>) -> Framed<T, U> {
|
||||||
Framed {
|
Framed {
|
||||||
io: parts.io,
|
io: parts.io,
|
||||||
@@ -136,15 +127,6 @@ impl<T, U> Framed<T, U> {
|
|||||||
self.write_buf.len() >= HW
|
self.write_buf.len() >= HW
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Consumes the `Frame`, returning its underlying I/O stream.
|
|
||||||
///
|
|
||||||
/// Note that care should be taken to not tamper with the underlying stream
|
|
||||||
/// of data coming in as it may corrupt the stream of frames otherwise
|
|
||||||
/// being worked with.
|
|
||||||
pub fn into_inner(self) -> T {
|
|
||||||
self.io
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Consume the `Frame`, returning `Frame` with different codec.
|
/// Consume the `Frame`, returning `Frame` with different codec.
|
||||||
pub fn into_framed<U2>(self, codec: U2) -> Framed<T, U2> {
|
pub fn into_framed<U2>(self, codec: U2) -> Framed<T, U2> {
|
||||||
Framed {
|
Framed {
|
||||||
@@ -208,7 +190,7 @@ impl<T, U> Framed<T, U> {
|
|||||||
T: AsyncWrite,
|
T: AsyncWrite,
|
||||||
U: Encoder,
|
U: Encoder,
|
||||||
{
|
{
|
||||||
let remaining = self.write_buf.remaining_mut();
|
let remaining = self.write_buf.capacity() - self.write_buf.len();
|
||||||
if remaining < LW {
|
if remaining < LW {
|
||||||
self.write_buf.reserve(HW - remaining);
|
self.write_buf.reserve(HW - remaining);
|
||||||
}
|
}
|
||||||
@@ -217,11 +199,14 @@ impl<T, U> Framed<T, U> {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Check if framed is able to write more data
|
/// Check if framed is able to write more data.
|
||||||
pub fn is_ready(&self) -> bool {
|
///
|
||||||
|
/// `Framed` object considers ready if there is free space in write buffer.
|
||||||
|
pub fn is_write_ready(&self) -> bool {
|
||||||
self.write_buf.len() < HW
|
self.write_buf.len() < HW
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Try to read underlying I/O stream and decode item.
|
||||||
pub fn next_item(&mut self, cx: &mut Context<'_>) -> Poll<Option<Result<U::Item, U::Error>>>
|
pub fn next_item(&mut self, cx: &mut Context<'_>) -> Poll<Option<Result<U::Item, U::Error>>>
|
||||||
where
|
where
|
||||||
T: AsyncRead,
|
T: AsyncRead,
|
||||||
@@ -251,9 +236,7 @@ impl<T, U> Framed<T, U> {
|
|||||||
return Poll::Ready(Some(Ok(frame)));
|
return Poll::Ready(Some(Ok(frame)));
|
||||||
}
|
}
|
||||||
Err(e) => return Poll::Ready(Some(Err(e))),
|
Err(e) => return Poll::Ready(Some(Err(e))),
|
||||||
_ => {
|
_ => (), // Need more data
|
||||||
// Need more data
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
self.flags.remove(Flags::READABLE);
|
self.flags.remove(Flags::READABLE);
|
||||||
@@ -262,7 +245,7 @@ impl<T, U> Framed<T, U> {
|
|||||||
debug_assert!(!self.flags.contains(Flags::EOF));
|
debug_assert!(!self.flags.contains(Flags::EOF));
|
||||||
|
|
||||||
// Otherwise, try to read more data and try again. Make sure we've got room
|
// Otherwise, try to read more data and try again. Make sure we've got room
|
||||||
let remaining = self.read_buf.remaining_mut();
|
let remaining = self.read_buf.capacity() - self.read_buf.len();
|
||||||
if remaining < LW {
|
if remaining < LW {
|
||||||
self.read_buf.reserve(HW - remaining)
|
self.read_buf.reserve(HW - remaining)
|
||||||
}
|
}
|
||||||
@@ -281,6 +264,7 @@ impl<T, U> Framed<T, U> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Flush write buffer to underlying I/O stream.
|
||||||
pub fn flush(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), U::Error>>
|
pub fn flush(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), U::Error>>
|
||||||
where
|
where
|
||||||
T: AsyncWrite,
|
T: AsyncWrite,
|
||||||
@@ -298,15 +282,13 @@ impl<T, U> Framed<T, U> {
|
|||||||
if n == 0 {
|
if n == 0 {
|
||||||
return Poll::Ready(Err(io::Error::new(
|
return Poll::Ready(Err(io::Error::new(
|
||||||
io::ErrorKind::WriteZero,
|
io::ErrorKind::WriteZero,
|
||||||
"failed to \
|
"failed to write frame to transport",
|
||||||
write frame to transport",
|
|
||||||
)
|
)
|
||||||
.into()));
|
.into()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Add a way to `bytes` to do this w/o returning the drained
|
// remove written data
|
||||||
// data.
|
self.write_buf.advance(n);
|
||||||
let _ = self.write_buf.split_to(n);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Try flushing the underlying IO
|
// Try flushing the underlying IO
|
||||||
@@ -316,6 +298,7 @@ impl<T, U> Framed<T, U> {
|
|||||||
Poll::Ready(Ok(()))
|
Poll::Ready(Ok(()))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Flush write buffer and shutdown underlying I/O stream.
|
||||||
pub fn close(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), U::Error>>
|
pub fn close(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), U::Error>>
|
||||||
where
|
where
|
||||||
T: AsyncWrite,
|
T: AsyncWrite,
|
||||||
@@ -350,7 +333,7 @@ where
|
|||||||
type Error = U::Error;
|
type Error = U::Error;
|
||||||
|
|
||||||
fn poll_ready(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
fn poll_ready(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||||
if self.is_ready() {
|
if self.is_write_ready() {
|
||||||
Poll::Ready(Ok(()))
|
Poll::Ready(Ok(()))
|
||||||
} else {
|
} else {
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
|
@@ -7,7 +7,6 @@
|
|||||||
//! [`AsyncRead`]: #
|
//! [`AsyncRead`]: #
|
||||||
//! [`AsyncWrite`]: #
|
//! [`AsyncWrite`]: #
|
||||||
#![deny(rust_2018_idioms, warnings)]
|
#![deny(rust_2018_idioms, warnings)]
|
||||||
#![allow(clippy::type_complexity)]
|
|
||||||
|
|
||||||
mod bcodec;
|
mod bcodec;
|
||||||
mod framed;
|
mod framed;
|
||||||
|
@@ -1,5 +1,13 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [1.0.1] - 2019-12-15
|
||||||
|
|
||||||
|
* Fix trust-dns-resolver compilation
|
||||||
|
|
||||||
|
## [1.0.0] - 2019-12-11
|
||||||
|
|
||||||
|
* Release
|
||||||
|
|
||||||
## [1.0.0-alpha.3] - 2019-12-07
|
## [1.0.0-alpha.3] - 2019-12-07
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-connect"
|
name = "actix-connect"
|
||||||
version = "1.0.0-alpha.3"
|
version = "1.0.1"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix connect - tcp connector service"
|
description = "Actix connect - tcp connector service"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
@@ -9,7 +9,6 @@ repository = "https://github.com/actix/actix-net.git"
|
|||||||
documentation = "https://docs.rs/actix-connect/"
|
documentation = "https://docs.rs/actix-connect/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
workspace = ".."
|
workspace = ".."
|
||||||
|
|
||||||
@@ -33,16 +32,17 @@ rustls = ["rust-tls", "tokio-rustls", "webpki"]
|
|||||||
uri = ["http"]
|
uri = ["http"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "1.0.0-alpha.3"
|
actix-service = "1.0.0"
|
||||||
actix-codec = "0.2.0-alpha.3"
|
actix-codec = "0.2.0"
|
||||||
actix-utils = "1.0.0-alpha.3"
|
actix-utils = "1.0.3"
|
||||||
actix-rt = "1.0.0-alpha.3"
|
actix-rt = "1.0.0"
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
either = "1.5.2"
|
either = "1.5.2"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
http = { version = "0.2.0", optional = true }
|
http = { version = "0.2.0", optional = true }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
trust-dns-resolver = { version="0.18.0-alpha.2", default-features = false, features=["tokio"] }
|
trust-dns-proto = "=0.18.0-alpha.2"
|
||||||
|
trust-dns-resolver = "=0.18.0-alpha.2"
|
||||||
|
|
||||||
# openssl
|
# openssl
|
||||||
open-ssl = { version="0.10", package = "openssl", optional = true }
|
open-ssl = { version="0.10", package = "openssl", optional = true }
|
||||||
@@ -54,5 +54,5 @@ tokio-rustls = { version = "0.12.0", optional = true }
|
|||||||
webpki = { version = "0.21", optional = true }
|
webpki = { version = "0.21", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bytes = "0.5.2"
|
bytes = "0.5.3"
|
||||||
actix-testing = { version="1.0.0-alpha.2" }
|
actix-testing = { version="1.0.0" }
|
||||||
|
@@ -2,7 +2,7 @@ use std::io;
|
|||||||
|
|
||||||
use actix_codec::{BytesCodec, Framed};
|
use actix_codec::{BytesCodec, Framed};
|
||||||
use actix_rt::net::TcpStream;
|
use actix_rt::net::TcpStream;
|
||||||
use actix_service::{service_fn, Service, ServiceFactory};
|
use actix_service::{fn_service, Service, ServiceFactory};
|
||||||
use actix_testing::TestServer;
|
use actix_testing::TestServer;
|
||||||
use bytes::Bytes;
|
use bytes::Bytes;
|
||||||
use futures::SinkExt;
|
use futures::SinkExt;
|
||||||
@@ -14,7 +14,7 @@ use actix_connect::Connect;
|
|||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
async fn test_string() {
|
async fn test_string() {
|
||||||
let srv = TestServer::with(|| {
|
let srv = TestServer::with(|| {
|
||||||
service_fn(|io: TcpStream| {
|
fn_service(|io: TcpStream| {
|
||||||
async {
|
async {
|
||||||
let mut framed = Framed::new(io, BytesCodec);
|
let mut framed = Framed::new(io, BytesCodec);
|
||||||
framed.send(Bytes::from_static(b"test")).await?;
|
framed.send(Bytes::from_static(b"test")).await?;
|
||||||
@@ -33,7 +33,7 @@ async fn test_string() {
|
|||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
async fn test_rustls_string() {
|
async fn test_rustls_string() {
|
||||||
let srv = TestServer::with(|| {
|
let srv = TestServer::with(|| {
|
||||||
service_fn(|io: TcpStream| {
|
fn_service(|io: TcpStream| {
|
||||||
async {
|
async {
|
||||||
let mut framed = Framed::new(io, BytesCodec);
|
let mut framed = Framed::new(io, BytesCodec);
|
||||||
framed.send(Bytes::from_static(b"test")).await?;
|
framed.send(Bytes::from_static(b"test")).await?;
|
||||||
@@ -51,7 +51,7 @@ async fn test_rustls_string() {
|
|||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
async fn test_static_str() {
|
async fn test_static_str() {
|
||||||
let srv = TestServer::with(|| {
|
let srv = TestServer::with(|| {
|
||||||
service_fn(|io: TcpStream| {
|
fn_service(|io: TcpStream| {
|
||||||
async {
|
async {
|
||||||
let mut framed = Framed::new(io, BytesCodec);
|
let mut framed = Framed::new(io, BytesCodec);
|
||||||
framed.send(Bytes::from_static(b"test")).await?;
|
framed.send(Bytes::from_static(b"test")).await?;
|
||||||
@@ -75,7 +75,7 @@ async fn test_static_str() {
|
|||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
async fn test_new_service() {
|
async fn test_new_service() {
|
||||||
let srv = TestServer::with(|| {
|
let srv = TestServer::with(|| {
|
||||||
service_fn(|io: TcpStream| {
|
fn_service(|io: TcpStream| {
|
||||||
async {
|
async {
|
||||||
let mut framed = Framed::new(io, BytesCodec);
|
let mut framed = Framed::new(io, BytesCodec);
|
||||||
framed.send(Bytes::from_static(b"test")).await?;
|
framed.send(Bytes::from_static(b"test")).await?;
|
||||||
@@ -100,7 +100,7 @@ async fn test_uri() {
|
|||||||
use std::convert::TryFrom;
|
use std::convert::TryFrom;
|
||||||
|
|
||||||
let srv = TestServer::with(|| {
|
let srv = TestServer::with(|| {
|
||||||
service_fn(|io: TcpStream| {
|
fn_service(|io: TcpStream| {
|
||||||
async {
|
async {
|
||||||
let mut framed = Framed::new(io, BytesCodec);
|
let mut framed = Framed::new(io, BytesCodec);
|
||||||
framed.send(Bytes::from_static(b"test")).await?;
|
framed.send(Bytes::from_static(b"test")).await?;
|
||||||
@@ -121,7 +121,7 @@ async fn test_rustls_uri() {
|
|||||||
use std::convert::TryFrom;
|
use std::convert::TryFrom;
|
||||||
|
|
||||||
let srv = TestServer::with(|| {
|
let srv = TestServer::with(|| {
|
||||||
service_fn(|io: TcpStream| {
|
fn_service(|io: TcpStream| {
|
||||||
async {
|
async {
|
||||||
let mut framed = Framed::new(io, BytesCodec);
|
let mut framed = Framed::new(io, BytesCodec);
|
||||||
framed.send(Bytes::from_static(b"test")).await?;
|
framed.send(Bytes::from_static(b"test")).await?;
|
||||||
|
@@ -1,5 +1,13 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.4.1] - 2019-12-11
|
||||||
|
|
||||||
|
* Disconnect callback accepts owned state
|
||||||
|
|
||||||
|
## [0.4.0] - 2019-12-11
|
||||||
|
|
||||||
|
* Remove `E` param
|
||||||
|
|
||||||
## [0.3.0-alpha.3] - 2019-12-07
|
## [0.3.0-alpha.3] - 2019-12-07
|
||||||
|
|
||||||
* Migrate to tokio 0.2
|
* Migrate to tokio 0.2
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-ioframe"
|
name = "actix-ioframe"
|
||||||
version = "0.3.0-alpha.3"
|
version = "0.4.1"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix framed service"
|
description = "Actix framed service"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
@@ -9,7 +9,6 @@ repository = "https://github.com/actix/actix-net.git"
|
|||||||
documentation = "https://docs.rs/actix-ioframe/"
|
documentation = "https://docs.rs/actix-ioframe/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
workspace = ".."
|
workspace = ".."
|
||||||
|
|
||||||
@@ -18,10 +17,10 @@ name = "actix_ioframe"
|
|||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "1.0.0-alpha.3"
|
actix-service = "1.0.0"
|
||||||
actix-codec = "0.2.0-alpha.2"
|
actix-codec = "0.2.0"
|
||||||
actix-utils = "1.0.0-alpha.2"
|
actix-utils = "1.0.1"
|
||||||
actix-rt = "1.0.0-alpha.2"
|
actix-rt = "1.0.0"
|
||||||
bytes = "0.5"
|
bytes = "0.5"
|
||||||
either = "1.5.2"
|
either = "1.5.2"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
@@ -29,5 +28,5 @@ pin-project = "0.4.6"
|
|||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-connect = "1.0.0-alpha.2"
|
actix-connect = "1.0.0"
|
||||||
actix-testing = "1.0.0-alpha.2"
|
actix-testing = "1.0.0"
|
||||||
|
@@ -1,39 +0,0 @@
|
|||||||
//! Custom cell impl
|
|
||||||
|
|
||||||
use std::cell::UnsafeCell;
|
|
||||||
use std::fmt;
|
|
||||||
use std::rc::Rc;
|
|
||||||
|
|
||||||
pub(crate) struct Cell<T> {
|
|
||||||
inner: Rc<UnsafeCell<T>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> Clone for Cell<T> {
|
|
||||||
fn clone(&self) -> Self {
|
|
||||||
Self {
|
|
||||||
inner: self.inner.clone(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T: fmt::Debug> fmt::Debug for Cell<T> {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
||||||
self.inner.fmt(f)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> Cell<T> {
|
|
||||||
pub fn new(inner: T) -> Self {
|
|
||||||
Self {
|
|
||||||
inner: Rc::new(UnsafeCell::new(inner)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) unsafe fn get_ref(&mut self) -> &T {
|
|
||||||
&*self.inner.as_ref().get()
|
|
||||||
}
|
|
||||||
|
|
||||||
pub(crate) unsafe fn get_mut(&mut self) -> &mut T {
|
|
||||||
&mut *self.inner.as_ref().get()
|
|
||||||
}
|
|
||||||
}
|
|
@@ -3,40 +3,37 @@ use std::pin::Pin;
|
|||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
|
|
||||||
use actix_codec::{AsyncRead, AsyncWrite, Decoder, Encoder, Framed};
|
use actix_codec::{AsyncRead, AsyncWrite, Decoder, Encoder, Framed};
|
||||||
use actix_utils::mpsc;
|
|
||||||
use futures::Stream;
|
use futures::Stream;
|
||||||
|
|
||||||
use crate::dispatcher::FramedMessage;
|
|
||||||
use crate::sink::Sink;
|
use crate::sink::Sink;
|
||||||
|
|
||||||
pub struct Connect<Io, St = (), Codec = ()> {
|
pub struct Connect<Io, Codec, St = ()>
|
||||||
|
where
|
||||||
|
Codec: Encoder + Decoder,
|
||||||
|
{
|
||||||
io: Io,
|
io: Io,
|
||||||
|
sink: Sink<<Codec as Encoder>::Item>,
|
||||||
_t: PhantomData<(St, Codec)>,
|
_t: PhantomData<(St, Codec)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<Io> Connect<Io>
|
impl<Io, Codec> Connect<Io, Codec>
|
||||||
where
|
where
|
||||||
Io: AsyncRead + AsyncWrite,
|
Io: AsyncRead + AsyncWrite,
|
||||||
|
Codec: Encoder + Decoder,
|
||||||
{
|
{
|
||||||
pub(crate) fn new(io: Io) -> Self {
|
pub(crate) fn new(io: Io, sink: Sink<<Codec as Encoder>::Item>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
io,
|
io,
|
||||||
|
sink,
|
||||||
_t: PhantomData,
|
_t: PhantomData,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn codec<Codec>(self, codec: Codec) -> ConnectResult<Io, (), Codec>
|
pub fn codec(self, codec: Codec) -> ConnectResult<Io, (), Codec> {
|
||||||
where
|
|
||||||
Codec: Encoder + Decoder,
|
|
||||||
{
|
|
||||||
let (tx, rx) = mpsc::channel();
|
|
||||||
let sink = Sink::new(tx);
|
|
||||||
|
|
||||||
ConnectResult {
|
ConnectResult {
|
||||||
state: (),
|
state: (),
|
||||||
|
sink: self.sink,
|
||||||
framed: Framed::new(self.io, codec),
|
framed: Framed::new(self.io, codec),
|
||||||
rx,
|
|
||||||
sink,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -45,7 +42,6 @@ where
|
|||||||
pub struct ConnectResult<Io, St, Codec: Encoder + Decoder> {
|
pub struct ConnectResult<Io, St, Codec: Encoder + Decoder> {
|
||||||
pub(crate) state: St,
|
pub(crate) state: St,
|
||||||
pub(crate) framed: Framed<Io, Codec>,
|
pub(crate) framed: Framed<Io, Codec>,
|
||||||
pub(crate) rx: mpsc::Receiver<FramedMessage<<Codec as Encoder>::Item>>,
|
|
||||||
pub(crate) sink: Sink<<Codec as Encoder>::Item>,
|
pub(crate) sink: Sink<<Codec as Encoder>::Item>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -70,7 +66,6 @@ impl<Io, St, Codec: Encoder + Decoder> ConnectResult<Io, St, Codec> {
|
|||||||
ConnectResult {
|
ConnectResult {
|
||||||
state,
|
state,
|
||||||
framed: self.framed,
|
framed: self.framed,
|
||||||
rx: self.rx,
|
|
||||||
sink: self.sink,
|
sink: self.sink,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -96,7 +91,7 @@ where
|
|||||||
type Error = <Codec as Encoder>::Error;
|
type Error = <Codec as Encoder>::Error;
|
||||||
|
|
||||||
fn poll_ready(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
fn poll_ready(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||||
if self.framed.is_ready() {
|
if self.framed.is_write_ready() {
|
||||||
Poll::Ready(Ok(()))
|
Poll::Ready(Ok(()))
|
||||||
} else {
|
} else {
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
|
@@ -1,19 +1,14 @@
|
|||||||
//! Framed dispatcher service and related utilities
|
//! Framed dispatcher service and related utilities
|
||||||
use std::collections::VecDeque;
|
|
||||||
use std::mem;
|
|
||||||
use std::pin::Pin;
|
use std::pin::Pin;
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
|
|
||||||
use actix_codec::{AsyncRead, AsyncWrite, Decoder, Encoder, Framed};
|
use actix_codec::{AsyncRead, AsyncWrite, Decoder, Encoder, Framed};
|
||||||
use actix_service::{IntoService, Service};
|
use actix_service::{IntoService, Service};
|
||||||
use actix_utils::task::LocalWaker;
|
|
||||||
use actix_utils::{mpsc, oneshot};
|
use actix_utils::{mpsc, oneshot};
|
||||||
use futures::future::ready;
|
use futures::{FutureExt, Stream};
|
||||||
use futures::{FutureExt, Sink as FutureSink, Stream};
|
|
||||||
use log::debug;
|
use log::debug;
|
||||||
|
|
||||||
use crate::cell::Cell;
|
|
||||||
use crate::error::ServiceError;
|
use crate::error::ServiceError;
|
||||||
use crate::item::Item;
|
use crate::item::Item;
|
||||||
use crate::sink::Sink;
|
use crate::sink::Sink;
|
||||||
@@ -21,16 +16,16 @@ use crate::sink::Sink;
|
|||||||
type Request<S, U> = Item<S, U>;
|
type Request<S, U> = Item<S, U>;
|
||||||
type Response<U> = <U as Encoder>::Item;
|
type Response<U> = <U as Encoder>::Item;
|
||||||
|
|
||||||
pub(crate) enum FramedMessage<T> {
|
pub(crate) enum Message<T> {
|
||||||
Message(T),
|
Item(T),
|
||||||
Close,
|
|
||||||
WaitClose(oneshot::Sender<()>),
|
WaitClose(oneshot::Sender<()>),
|
||||||
|
Close,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// FramedTransport - is a future that reads frames from Framed object
|
/// FramedTransport - is a future that reads frames from Framed object
|
||||||
/// and pass then to the service.
|
/// and pass then to the service.
|
||||||
#[pin_project::pin_project]
|
#[pin_project::pin_project]
|
||||||
pub(crate) struct FramedDispatcher<St, S, T, U>
|
pub(crate) struct Dispatcher<St, S, T, U>
|
||||||
where
|
where
|
||||||
St: Clone,
|
St: Clone,
|
||||||
S: Service<Request = Request<St, U>, Response = Option<Response<U>>>,
|
S: Service<Request = Request<St, U>, Response = Option<Response<U>>>,
|
||||||
@@ -46,12 +41,12 @@ where
|
|||||||
state: St,
|
state: St,
|
||||||
dispatch_state: FramedState<S, U>,
|
dispatch_state: FramedState<S, U>,
|
||||||
framed: Framed<T, U>,
|
framed: Framed<T, U>,
|
||||||
rx: Option<mpsc::Receiver<FramedMessage<<U as Encoder>::Item>>>,
|
rx: mpsc::Receiver<Result<Message<<U as Encoder>::Item>, S::Error>>,
|
||||||
inner: Cell<FramedDispatcherInner<<U as Encoder>::Item, S::Error>>,
|
tx: mpsc::Sender<Result<Message<<U as Encoder>::Item>, S::Error>>,
|
||||||
disconnect: Option<Rc<dyn Fn(&mut St, bool)>>,
|
disconnect: Option<Rc<dyn Fn(St, bool)>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<St, S, T, U> FramedDispatcher<St, S, T, U>
|
impl<St, S, T, U> Dispatcher<St, S, T, U>
|
||||||
where
|
where
|
||||||
St: Clone,
|
St: Clone,
|
||||||
S: Service<Request = Request<St, U>, Response = Option<Response<U>>>,
|
S: Service<Request = Request<St, U>, Response = Option<Response<U>>>,
|
||||||
@@ -66,22 +61,21 @@ where
|
|||||||
framed: Framed<T, U>,
|
framed: Framed<T, U>,
|
||||||
state: St,
|
state: St,
|
||||||
service: F,
|
service: F,
|
||||||
rx: mpsc::Receiver<FramedMessage<<U as Encoder>::Item>>,
|
|
||||||
sink: Sink<<U as Encoder>::Item>,
|
sink: Sink<<U as Encoder>::Item>,
|
||||||
disconnect: Option<Rc<dyn Fn(&mut St, bool)>>,
|
rx: mpsc::Receiver<Result<Message<<U as Encoder>::Item>, S::Error>>,
|
||||||
|
disconnect: Option<Rc<dyn Fn(St, bool)>>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
FramedDispatcher {
|
let tx = rx.sender();
|
||||||
|
|
||||||
|
Dispatcher {
|
||||||
framed,
|
framed,
|
||||||
state,
|
state,
|
||||||
sink,
|
sink,
|
||||||
disconnect,
|
disconnect,
|
||||||
rx: Some(rx),
|
rx,
|
||||||
|
tx,
|
||||||
service: service.into_service(),
|
service: service.into_service(),
|
||||||
dispatch_state: FramedState::Processing,
|
dispatch_state: FramedState::Processing,
|
||||||
inner: Cell::new(FramedDispatcherInner {
|
|
||||||
buf: VecDeque::new(),
|
|
||||||
task: LocalWaker::new(),
|
|
||||||
}),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -116,14 +110,23 @@ impl<S: Service, U: Encoder + Decoder> FramedState<S, U> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn take_error(&mut self) -> ServiceError<S::Error, U> {
|
||||||
|
match std::mem::replace(self, FramedState::Processing) {
|
||||||
|
FramedState::Error(err) => err,
|
||||||
|
_ => panic!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn take_framed_error(&mut self) -> ServiceError<S::Error, U> {
|
||||||
|
match std::mem::replace(self, FramedState::Processing) {
|
||||||
|
FramedState::FramedError(err) => err,
|
||||||
|
_ => panic!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct FramedDispatcherInner<I, E> {
|
impl<St, S, T, U> Dispatcher<St, S, T, U>
|
||||||
buf: VecDeque<Result<I, E>>,
|
|
||||||
task: LocalWaker,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<St, S, T, U> FramedDispatcher<St, S, T, U>
|
|
||||||
where
|
where
|
||||||
St: Clone,
|
St: Clone,
|
||||||
S: Service<Request = Request<St, U>, Response = Option<Response<U>>>,
|
S: Service<Request = Request<St, U>, Response = Option<Response<U>>>,
|
||||||
@@ -134,263 +137,150 @@ where
|
|||||||
<U as Encoder>::Item: 'static,
|
<U as Encoder>::Item: 'static,
|
||||||
<U as Encoder>::Error: std::fmt::Debug,
|
<U as Encoder>::Error: std::fmt::Debug,
|
||||||
{
|
{
|
||||||
|
fn poll_read(&mut self, cx: &mut Context<'_>) -> bool {
|
||||||
|
loop {
|
||||||
|
match self.service.poll_ready(cx) {
|
||||||
|
Poll::Ready(Ok(_)) => {
|
||||||
|
let item = match self.framed.next_item(cx) {
|
||||||
|
Poll::Ready(Some(Ok(el))) => el,
|
||||||
|
Poll::Ready(Some(Err(err))) => {
|
||||||
|
self.dispatch_state =
|
||||||
|
FramedState::FramedError(ServiceError::Decoder(err));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
Poll::Pending => return false,
|
||||||
|
Poll::Ready(None) => {
|
||||||
|
log::trace!("Client disconnected");
|
||||||
|
self.dispatch_state = FramedState::Stopping;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let tx = self.tx.clone();
|
||||||
|
actix_rt::spawn(
|
||||||
|
self.service
|
||||||
|
.call(Item::new(self.state.clone(), self.sink.clone(), item))
|
||||||
|
.map(move |item| {
|
||||||
|
let item = match item {
|
||||||
|
Ok(Some(item)) => Ok(Message::Item(item)),
|
||||||
|
Ok(None) => return,
|
||||||
|
Err(err) => Err(err),
|
||||||
|
};
|
||||||
|
let _ = tx.send(item);
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
Poll::Pending => return false,
|
||||||
|
Poll::Ready(Err(err)) => {
|
||||||
|
self.dispatch_state = FramedState::Error(ServiceError::Service(err));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// write to framed object
|
||||||
|
fn poll_write(&mut self, cx: &mut Context<'_>) -> bool {
|
||||||
|
loop {
|
||||||
|
while !self.framed.is_write_buf_full() {
|
||||||
|
match Pin::new(&mut self.rx).poll_next(cx) {
|
||||||
|
Poll::Ready(Some(Ok(Message::Item(msg)))) => {
|
||||||
|
if let Err(err) = self.framed.write(msg) {
|
||||||
|
self.dispatch_state =
|
||||||
|
FramedState::FramedError(ServiceError::Encoder(err));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Poll::Ready(Some(Ok(Message::Close))) => {
|
||||||
|
self.dispatch_state.stop(None);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
Poll::Ready(Some(Ok(Message::WaitClose(tx)))) => {
|
||||||
|
self.dispatch_state.stop(Some(tx));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
Poll::Ready(Some(Err(err))) => {
|
||||||
|
self.dispatch_state = FramedState::Error(ServiceError::Service(err));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
Poll::Ready(None) | Poll::Pending => break,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !self.framed.is_write_buf_empty() {
|
||||||
|
match self.framed.flush(cx) {
|
||||||
|
Poll::Pending => break,
|
||||||
|
Poll::Ready(Ok(_)) => (),
|
||||||
|
Poll::Ready(Err(err)) => {
|
||||||
|
debug!("Error sending data: {:?}", err);
|
||||||
|
self.dispatch_state =
|
||||||
|
FramedState::FramedError(ServiceError::Encoder(err));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
false
|
||||||
|
}
|
||||||
|
|
||||||
pub(crate) fn poll(
|
pub(crate) fn poll(
|
||||||
&mut self,
|
&mut self,
|
||||||
cx: &mut Context<'_>,
|
cx: &mut Context<'_>,
|
||||||
) -> Poll<Result<(), ServiceError<S::Error, U>>> {
|
) -> Poll<Result<(), ServiceError<S::Error, U>>> {
|
||||||
let this = self;
|
match self.dispatch_state {
|
||||||
unsafe { this.inner.get_ref().task.register(cx.waker()) };
|
FramedState::Processing => {
|
||||||
|
if self.poll_read(cx) || self.poll_write(cx) {
|
||||||
poll(
|
self.poll(cx)
|
||||||
cx,
|
} else {
|
||||||
&mut this.service,
|
Poll::Pending
|
||||||
&mut this.state,
|
|
||||||
&mut this.sink,
|
|
||||||
&mut this.framed,
|
|
||||||
&mut this.dispatch_state,
|
|
||||||
&mut this.rx,
|
|
||||||
&mut this.inner,
|
|
||||||
&mut this.disconnect,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn poll<St, S, T, U>(
|
|
||||||
cx: &mut Context<'_>,
|
|
||||||
srv: &mut S,
|
|
||||||
state: &mut St,
|
|
||||||
sink: &mut Sink<<U as Encoder>::Item>,
|
|
||||||
framed: &mut Framed<T, U>,
|
|
||||||
dispatch_state: &mut FramedState<S, U>,
|
|
||||||
rx: &mut Option<mpsc::Receiver<FramedMessage<<U as Encoder>::Item>>>,
|
|
||||||
inner: &mut Cell<FramedDispatcherInner<<U as Encoder>::Item, S::Error>>,
|
|
||||||
disconnect: &mut Option<Rc<dyn Fn(&mut St, bool)>>,
|
|
||||||
) -> Poll<Result<(), ServiceError<S::Error, U>>>
|
|
||||||
where
|
|
||||||
St: Clone,
|
|
||||||
S: Service<Request = Request<St, U>, Response = Option<Response<U>>>,
|
|
||||||
S::Error: 'static,
|
|
||||||
S::Future: 'static,
|
|
||||||
T: AsyncRead + AsyncWrite,
|
|
||||||
U: Decoder + Encoder,
|
|
||||||
<U as Encoder>::Item: 'static,
|
|
||||||
<U as Encoder>::Error: std::fmt::Debug,
|
|
||||||
{
|
|
||||||
match mem::replace(dispatch_state, FramedState::Processing) {
|
|
||||||
FramedState::Processing => {
|
|
||||||
if poll_read(cx, srv, state, sink, framed, dispatch_state, inner)
|
|
||||||
|| poll_write(cx, framed, dispatch_state, rx, inner)
|
|
||||||
{
|
|
||||||
poll(
|
|
||||||
cx,
|
|
||||||
srv,
|
|
||||||
state,
|
|
||||||
sink,
|
|
||||||
framed,
|
|
||||||
dispatch_state,
|
|
||||||
rx,
|
|
||||||
inner,
|
|
||||||
disconnect,
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
Poll::Pending
|
|
||||||
}
|
|
||||||
}
|
|
||||||
FramedState::Error(err) => {
|
|
||||||
if framed.is_write_buf_empty()
|
|
||||||
|| (poll_write(cx, framed, dispatch_state, rx, inner)
|
|
||||||
|| framed.is_write_buf_empty())
|
|
||||||
{
|
|
||||||
if let Some(ref disconnect) = disconnect {
|
|
||||||
(&*disconnect)(&mut *state, true);
|
|
||||||
}
|
}
|
||||||
Poll::Ready(Err(err))
|
|
||||||
} else {
|
|
||||||
*dispatch_state = FramedState::Error(err);
|
|
||||||
Poll::Pending
|
|
||||||
}
|
}
|
||||||
}
|
FramedState::Error(_) => {
|
||||||
FramedState::FlushAndStop(mut vec) => {
|
// flush write buffer
|
||||||
if !framed.is_write_buf_empty() {
|
if !self.framed.is_write_buf_empty() {
|
||||||
match Pin::new(framed).poll_flush(cx) {
|
if let Poll::Pending = self.framed.flush(cx) {
|
||||||
Poll::Ready(Err(err)) => {
|
|
||||||
debug!("Error sending data: {:?}", err);
|
|
||||||
}
|
|
||||||
Poll::Pending => {
|
|
||||||
*dispatch_state = FramedState::FlushAndStop(vec);
|
|
||||||
return Poll::Pending;
|
return Poll::Pending;
|
||||||
}
|
}
|
||||||
Poll::Ready(_) => (),
|
|
||||||
}
|
}
|
||||||
};
|
if let Some(ref disconnect) = self.disconnect {
|
||||||
for tx in vec.drain(..) {
|
(&*disconnect)(self.state.clone(), true);
|
||||||
let _ = tx.send(());
|
}
|
||||||
|
Poll::Ready(Err(self.dispatch_state.take_error()))
|
||||||
}
|
}
|
||||||
if let Some(ref disconnect) = disconnect {
|
FramedState::FlushAndStop(ref mut vec) => {
|
||||||
(&*disconnect)(&mut *state, false);
|
if !self.framed.is_write_buf_empty() {
|
||||||
}
|
match self.framed.flush(cx) {
|
||||||
Poll::Ready(Ok(()))
|
Poll::Ready(Err(err)) => {
|
||||||
}
|
debug!("Error sending data: {:?}", err);
|
||||||
FramedState::FramedError(err) => {
|
}
|
||||||
if let Some(ref disconnect) = disconnect {
|
Poll::Pending => {
|
||||||
(&*disconnect)(&mut *state, true);
|
return Poll::Pending;
|
||||||
}
|
}
|
||||||
Poll::Ready(Err(err))
|
Poll::Ready(_) => (),
|
||||||
}
|
|
||||||
FramedState::Stopping => {
|
|
||||||
if let Some(ref disconnect) = disconnect {
|
|
||||||
(&*disconnect)(&mut *state, false);
|
|
||||||
}
|
|
||||||
Poll::Ready(Ok(()))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn poll_read<St, S, T, U>(
|
|
||||||
cx: &mut Context<'_>,
|
|
||||||
srv: &mut S,
|
|
||||||
state: &mut St,
|
|
||||||
sink: &mut Sink<<U as Encoder>::Item>,
|
|
||||||
framed: &mut Framed<T, U>,
|
|
||||||
dispatch_state: &mut FramedState<S, U>,
|
|
||||||
inner: &mut Cell<FramedDispatcherInner<<U as Encoder>::Item, S::Error>>,
|
|
||||||
) -> bool
|
|
||||||
where
|
|
||||||
St: Clone,
|
|
||||||
S: Service<Request = Request<St, U>, Response = Option<Response<U>>>,
|
|
||||||
S::Error: 'static,
|
|
||||||
S::Future: 'static,
|
|
||||||
T: AsyncRead + AsyncWrite,
|
|
||||||
U: Decoder + Encoder,
|
|
||||||
<U as Encoder>::Item: 'static,
|
|
||||||
<U as Encoder>::Error: std::fmt::Debug,
|
|
||||||
{
|
|
||||||
loop {
|
|
||||||
match srv.poll_ready(cx) {
|
|
||||||
Poll::Ready(Ok(_)) => {
|
|
||||||
let item = match framed.next_item(cx) {
|
|
||||||
Poll::Ready(Some(Ok(el))) => el,
|
|
||||||
Poll::Ready(Some(Err(err))) => {
|
|
||||||
*dispatch_state = FramedState::FramedError(ServiceError::Decoder(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
Poll::Pending => return false,
|
|
||||||
Poll::Ready(None) => {
|
|
||||||
log::trace!("Client disconnected");
|
|
||||||
*dispatch_state = FramedState::Stopping;
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
for tx in vec.drain(..) {
|
||||||
let mut cell = inner.clone();
|
let _ = tx.send(());
|
||||||
actix_rt::spawn(srv.call(Item::new(state.clone(), sink.clone(), item)).then(
|
}
|
||||||
move |item| {
|
if let Some(ref disconnect) = self.disconnect {
|
||||||
let item = match item {
|
(&*disconnect)(self.state.clone(), false);
|
||||||
Ok(Some(item)) => Ok(item),
|
}
|
||||||
Ok(None) => return ready(()),
|
Poll::Ready(Ok(()))
|
||||||
Err(err) => Err(err),
|
|
||||||
};
|
|
||||||
unsafe {
|
|
||||||
let inner = cell.get_mut();
|
|
||||||
inner.buf.push_back(item);
|
|
||||||
inner.task.wake();
|
|
||||||
}
|
|
||||||
ready(())
|
|
||||||
},
|
|
||||||
));
|
|
||||||
}
|
}
|
||||||
Poll::Pending => return false,
|
FramedState::FramedError(_) => {
|
||||||
Poll::Ready(Err(err)) => {
|
if let Some(ref disconnect) = self.disconnect {
|
||||||
*dispatch_state = FramedState::Error(ServiceError::Service(err));
|
(&*disconnect)(self.state.clone(), true);
|
||||||
return true;
|
}
|
||||||
|
Poll::Ready(Err(self.dispatch_state.take_framed_error()))
|
||||||
|
}
|
||||||
|
FramedState::Stopping => {
|
||||||
|
if let Some(ref disconnect) = self.disconnect {
|
||||||
|
(&*disconnect)(self.state.clone(), false);
|
||||||
|
}
|
||||||
|
Poll::Ready(Ok(()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// write to framed object
|
|
||||||
fn poll_write<St, S, T, U>(
|
|
||||||
cx: &mut Context<'_>,
|
|
||||||
framed: &mut Framed<T, U>,
|
|
||||||
dispatch_state: &mut FramedState<S, U>,
|
|
||||||
rx: &mut Option<mpsc::Receiver<FramedMessage<<U as Encoder>::Item>>>,
|
|
||||||
inner: &mut Cell<FramedDispatcherInner<<U as Encoder>::Item, S::Error>>,
|
|
||||||
) -> bool
|
|
||||||
where
|
|
||||||
S: Service<Request = Request<St, U>, Response = Option<Response<U>>>,
|
|
||||||
S::Error: 'static,
|
|
||||||
S::Future: 'static,
|
|
||||||
T: AsyncRead + AsyncWrite,
|
|
||||||
U: Decoder + Encoder,
|
|
||||||
<U as Encoder>::Item: 'static,
|
|
||||||
<U as Encoder>::Error: std::fmt::Debug,
|
|
||||||
{
|
|
||||||
let inner = unsafe { inner.get_mut() };
|
|
||||||
let mut rx_done = rx.is_none();
|
|
||||||
let mut buf_empty = inner.buf.is_empty();
|
|
||||||
loop {
|
|
||||||
while !framed.is_write_buf_full() {
|
|
||||||
if !buf_empty {
|
|
||||||
match inner.buf.pop_front().unwrap() {
|
|
||||||
Ok(msg) => {
|
|
||||||
if let Err(err) = framed.write(msg) {
|
|
||||||
*dispatch_state =
|
|
||||||
FramedState::FramedError(ServiceError::Encoder(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
buf_empty = inner.buf.is_empty();
|
|
||||||
}
|
|
||||||
Err(err) => {
|
|
||||||
*dispatch_state = FramedState::Error(ServiceError::Service(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if !rx_done && rx.is_some() {
|
|
||||||
match Pin::new(rx.as_mut().unwrap()).poll_next(cx) {
|
|
||||||
Poll::Ready(Some(FramedMessage::Message(msg))) => {
|
|
||||||
if let Err(err) = framed.write(msg) {
|
|
||||||
*dispatch_state =
|
|
||||||
FramedState::FramedError(ServiceError::Encoder(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Poll::Ready(Some(FramedMessage::Close)) => {
|
|
||||||
dispatch_state.stop(None);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
Poll::Ready(Some(FramedMessage::WaitClose(tx))) => {
|
|
||||||
dispatch_state.stop(Some(tx));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
Poll::Ready(None) => {
|
|
||||||
rx_done = true;
|
|
||||||
let _ = rx.take();
|
|
||||||
}
|
|
||||||
Poll::Pending => rx_done = true,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if rx_done && buf_empty {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if !framed.is_write_buf_empty() {
|
|
||||||
match framed.flush(cx) {
|
|
||||||
Poll::Pending => break,
|
|
||||||
Poll::Ready(Err(err)) => {
|
|
||||||
debug!("Error sending data: {:?}", err);
|
|
||||||
*dispatch_state = FramedState::FramedError(ServiceError::Encoder(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
Poll::Ready(_) => (),
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
false
|
|
||||||
}
|
|
||||||
|
@@ -77,6 +77,6 @@ where
|
|||||||
<Codec as Decoder>::Item: fmt::Debug,
|
<Codec as Decoder>::Item: fmt::Debug,
|
||||||
{
|
{
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
f.debug_tuple("FramedItem").field(&self.item).finish()
|
f.debug_tuple("Item").field(&self.item).finish()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
#![deny(rust_2018_idioms, warnings)]
|
#![deny(rust_2018_idioms, warnings)]
|
||||||
#![allow(clippy::type_complexity, clippy::too_many_arguments)]
|
#![allow(clippy::type_complexity, clippy::too_many_arguments)]
|
||||||
|
|
||||||
mod cell;
|
|
||||||
mod connect;
|
mod connect;
|
||||||
mod dispatcher;
|
mod dispatcher;
|
||||||
mod error;
|
mod error;
|
||||||
|
@@ -6,17 +6,20 @@ use std::task::{Context, Poll};
|
|||||||
|
|
||||||
use actix_codec::{AsyncRead, AsyncWrite, Decoder, Encoder};
|
use actix_codec::{AsyncRead, AsyncWrite, Decoder, Encoder};
|
||||||
use actix_service::{IntoService, IntoServiceFactory, Service, ServiceFactory};
|
use actix_service::{IntoService, IntoServiceFactory, Service, ServiceFactory};
|
||||||
|
use actix_utils::mpsc;
|
||||||
use either::Either;
|
use either::Either;
|
||||||
use futures::future::{FutureExt, LocalBoxFuture};
|
use futures::future::{FutureExt, LocalBoxFuture};
|
||||||
use pin_project::project;
|
use pin_project::project;
|
||||||
|
|
||||||
use crate::connect::{Connect, ConnectResult};
|
use crate::connect::{Connect, ConnectResult};
|
||||||
use crate::dispatcher::FramedDispatcher;
|
use crate::dispatcher::{Dispatcher, Message};
|
||||||
use crate::error::ServiceError;
|
use crate::error::ServiceError;
|
||||||
use crate::item::Item;
|
use crate::item::Item;
|
||||||
|
use crate::sink::Sink;
|
||||||
|
|
||||||
type RequestItem<S, U> = Item<S, U>;
|
type RequestItem<S, U> = Item<S, U>;
|
||||||
type ResponseItem<U> = Option<<U as Encoder>::Item>;
|
type ResponseItem<U> = Option<<U as Encoder>::Item>;
|
||||||
|
type ServiceResult<U, E> = Result<Message<<U as Encoder>::Item>, E>;
|
||||||
|
|
||||||
/// Service builder - structure that follows the builder pattern
|
/// Service builder - structure that follows the builder pattern
|
||||||
/// for building instances for framed services.
|
/// for building instances for framed services.
|
||||||
@@ -38,7 +41,7 @@ impl<St: Clone, Codec> Builder<St, Codec> {
|
|||||||
where
|
where
|
||||||
F: IntoService<C>,
|
F: IntoService<C>,
|
||||||
Io: AsyncRead + AsyncWrite,
|
Io: AsyncRead + AsyncWrite,
|
||||||
C: Service<Request = Connect<Io>, Response = ConnectResult<Io, St, Codec>>,
|
C: Service<Request = Connect<Io, Codec>, Response = ConnectResult<Io, St, Codec>>,
|
||||||
Codec: Decoder + Encoder,
|
Codec: Decoder + Encoder,
|
||||||
{
|
{
|
||||||
ServiceBuilder {
|
ServiceBuilder {
|
||||||
@@ -55,7 +58,7 @@ impl<St: Clone, Codec> Builder<St, Codec> {
|
|||||||
Io: AsyncRead + AsyncWrite,
|
Io: AsyncRead + AsyncWrite,
|
||||||
C: ServiceFactory<
|
C: ServiceFactory<
|
||||||
Config = (),
|
Config = (),
|
||||||
Request = Connect<Io>,
|
Request = Connect<Io, Codec>,
|
||||||
Response = ConnectResult<Io, St, Codec>,
|
Response = ConnectResult<Io, St, Codec>,
|
||||||
>,
|
>,
|
||||||
C::Error: 'static,
|
C::Error: 'static,
|
||||||
@@ -72,15 +75,14 @@ impl<St: Clone, Codec> Builder<St, Codec> {
|
|||||||
|
|
||||||
pub struct ServiceBuilder<St, C, Io, Codec> {
|
pub struct ServiceBuilder<St, C, Io, Codec> {
|
||||||
connect: C,
|
connect: C,
|
||||||
disconnect: Option<Rc<dyn Fn(&mut St, bool)>>,
|
disconnect: Option<Rc<dyn Fn(St, bool)>>,
|
||||||
_t: PhantomData<(St, Io, Codec)>,
|
_t: PhantomData<(St, Io, Codec)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<St, C, Io, Codec> ServiceBuilder<St, C, Io, Codec>
|
impl<St, C, Io, Codec> ServiceBuilder<St, C, Io, Codec>
|
||||||
where
|
where
|
||||||
St: Clone,
|
St: Clone,
|
||||||
C: Service<Request = Connect<Io>, Response = ConnectResult<Io, St, Codec>>,
|
C: Service<Request = Connect<Io, Codec>, Response = ConnectResult<Io, St, Codec>>,
|
||||||
C::Error: 'static,
|
|
||||||
Io: AsyncRead + AsyncWrite,
|
Io: AsyncRead + AsyncWrite,
|
||||||
Codec: Decoder + Encoder,
|
Codec: Decoder + Encoder,
|
||||||
<Codec as Encoder>::Item: 'static,
|
<Codec as Encoder>::Item: 'static,
|
||||||
@@ -91,7 +93,7 @@ where
|
|||||||
/// Second parameter indicates error occured during disconnect.
|
/// Second parameter indicates error occured during disconnect.
|
||||||
pub fn disconnect<F, Out>(mut self, disconnect: F) -> Self
|
pub fn disconnect<F, Out>(mut self, disconnect: F) -> Self
|
||||||
where
|
where
|
||||||
F: Fn(&mut St, bool) + 'static,
|
F: Fn(St, bool) + 'static,
|
||||||
{
|
{
|
||||||
self.disconnect = Some(Rc::new(disconnect));
|
self.disconnect = Some(Rc::new(disconnect));
|
||||||
self
|
self
|
||||||
@@ -102,12 +104,12 @@ where
|
|||||||
where
|
where
|
||||||
F: IntoServiceFactory<T>,
|
F: IntoServiceFactory<T>,
|
||||||
T: ServiceFactory<
|
T: ServiceFactory<
|
||||||
Config = St,
|
Config = St,
|
||||||
Request = RequestItem<St, Codec>,
|
Request = RequestItem<St, Codec>,
|
||||||
Response = ResponseItem<Codec>,
|
Response = ResponseItem<Codec>,
|
||||||
Error = C::Error,
|
Error = C::Error,
|
||||||
InitError = C::Error,
|
InitError = C::Error,
|
||||||
> + 'static,
|
>,
|
||||||
{
|
{
|
||||||
FramedServiceImpl {
|
FramedServiceImpl {
|
||||||
connect: self.connect,
|
connect: self.connect,
|
||||||
@@ -120,7 +122,7 @@ where
|
|||||||
|
|
||||||
pub struct NewServiceBuilder<St, C, Io, Codec> {
|
pub struct NewServiceBuilder<St, C, Io, Codec> {
|
||||||
connect: C,
|
connect: C,
|
||||||
disconnect: Option<Rc<dyn Fn(&mut St, bool)>>,
|
disconnect: Option<Rc<dyn Fn(St, bool)>>,
|
||||||
_t: PhantomData<(St, Io, Codec)>,
|
_t: PhantomData<(St, Io, Codec)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -130,7 +132,7 @@ where
|
|||||||
Io: AsyncRead + AsyncWrite,
|
Io: AsyncRead + AsyncWrite,
|
||||||
C: ServiceFactory<
|
C: ServiceFactory<
|
||||||
Config = (),
|
Config = (),
|
||||||
Request = Connect<Io>,
|
Request = Connect<Io, Codec>,
|
||||||
Response = ConnectResult<Io, St, Codec>,
|
Response = ConnectResult<Io, St, Codec>,
|
||||||
>,
|
>,
|
||||||
C::Error: 'static,
|
C::Error: 'static,
|
||||||
@@ -144,7 +146,7 @@ where
|
|||||||
/// Second parameter indicates error occured during disconnect.
|
/// Second parameter indicates error occured during disconnect.
|
||||||
pub fn disconnect<F>(mut self, disconnect: F) -> Self
|
pub fn disconnect<F>(mut self, disconnect: F) -> Self
|
||||||
where
|
where
|
||||||
F: Fn(&mut St, bool) + 'static,
|
F: Fn(St, bool) + 'static,
|
||||||
{
|
{
|
||||||
self.disconnect = Some(Rc::new(disconnect));
|
self.disconnect = Some(Rc::new(disconnect));
|
||||||
self
|
self
|
||||||
@@ -173,7 +175,7 @@ where
|
|||||||
pub struct FramedService<St, C, T, Io, Codec, Cfg> {
|
pub struct FramedService<St, C, T, Io, Codec, Cfg> {
|
||||||
connect: C,
|
connect: C,
|
||||||
handler: Rc<T>,
|
handler: Rc<T>,
|
||||||
disconnect: Option<Rc<dyn Fn(&mut St, bool)>>,
|
disconnect: Option<Rc<dyn Fn(St, bool)>>,
|
||||||
_t: PhantomData<(St, Io, Codec, Cfg)>,
|
_t: PhantomData<(St, Io, Codec, Cfg)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -183,7 +185,7 @@ where
|
|||||||
Io: AsyncRead + AsyncWrite,
|
Io: AsyncRead + AsyncWrite,
|
||||||
C: ServiceFactory<
|
C: ServiceFactory<
|
||||||
Config = (),
|
Config = (),
|
||||||
Request = Connect<Io>,
|
Request = Connect<Io, Codec>,
|
||||||
Response = ConnectResult<Io, St, Codec>,
|
Response = ConnectResult<Io, St, Codec>,
|
||||||
>,
|
>,
|
||||||
C::Error: 'static,
|
C::Error: 'static,
|
||||||
@@ -230,7 +232,7 @@ where
|
|||||||
pub struct FramedServiceImpl<St, C, T, Io, Codec> {
|
pub struct FramedServiceImpl<St, C, T, Io, Codec> {
|
||||||
connect: C,
|
connect: C,
|
||||||
handler: Rc<T>,
|
handler: Rc<T>,
|
||||||
disconnect: Option<Rc<dyn Fn(&mut St, bool)>>,
|
disconnect: Option<Rc<dyn Fn(St, bool)>>,
|
||||||
_t: PhantomData<(St, Io, Codec)>,
|
_t: PhantomData<(St, Io, Codec)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -238,7 +240,7 @@ impl<St, C, T, Io, Codec> Service for FramedServiceImpl<St, C, T, Io, Codec>
|
|||||||
where
|
where
|
||||||
St: Clone,
|
St: Clone,
|
||||||
Io: AsyncRead + AsyncWrite,
|
Io: AsyncRead + AsyncWrite,
|
||||||
C: Service<Request = Connect<Io>, Response = ConnectResult<Io, St, Codec>>,
|
C: Service<Request = Connect<Io, Codec>, Response = ConnectResult<Io, St, Codec>>,
|
||||||
C::Error: 'static,
|
C::Error: 'static,
|
||||||
T: ServiceFactory<
|
T: ServiceFactory<
|
||||||
Config = St,
|
Config = St,
|
||||||
@@ -262,11 +264,16 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn call(&mut self, req: Io) -> Self::Future {
|
fn call(&mut self, req: Io) -> Self::Future {
|
||||||
|
let (tx, rx) = mpsc::channel();
|
||||||
|
let sink = Sink::new(Rc::new(move |msg| {
|
||||||
|
let _ = tx.send(Ok(msg));
|
||||||
|
}));
|
||||||
FramedServiceImplResponse {
|
FramedServiceImplResponse {
|
||||||
inner: FramedServiceImplResponseInner::Connect(
|
inner: FramedServiceImplResponseInner::Connect(
|
||||||
self.connect.call(Connect::new(req)),
|
self.connect.call(Connect::new(req, sink.clone())),
|
||||||
self.handler.clone(),
|
self.handler.clone(),
|
||||||
self.disconnect.clone(),
|
self.disconnect.clone(),
|
||||||
|
Some(rx),
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -276,7 +283,7 @@ where
|
|||||||
pub struct FramedServiceImplResponse<St, Io, Codec, C, T>
|
pub struct FramedServiceImplResponse<St, Io, Codec, C, T>
|
||||||
where
|
where
|
||||||
St: Clone,
|
St: Clone,
|
||||||
C: Service<Request = Connect<Io>, Response = ConnectResult<Io, St, Codec>>,
|
C: Service<Request = Connect<Io, Codec>, Response = ConnectResult<Io, St, Codec>>,
|
||||||
C::Error: 'static,
|
C::Error: 'static,
|
||||||
T: ServiceFactory<
|
T: ServiceFactory<
|
||||||
Config = St,
|
Config = St,
|
||||||
@@ -298,7 +305,7 @@ where
|
|||||||
impl<St, Io, Codec, C, T> Future for FramedServiceImplResponse<St, Io, Codec, C, T>
|
impl<St, Io, Codec, C, T> Future for FramedServiceImplResponse<St, Io, Codec, C, T>
|
||||||
where
|
where
|
||||||
St: Clone,
|
St: Clone,
|
||||||
C: Service<Request = Connect<Io>, Response = ConnectResult<Io, St, Codec>>,
|
C: Service<Request = Connect<Io, Codec>, Response = ConnectResult<Io, St, Codec>>,
|
||||||
C::Error: 'static,
|
C::Error: 'static,
|
||||||
T: ServiceFactory<
|
T: ServiceFactory<
|
||||||
Config = St,
|
Config = St,
|
||||||
@@ -334,7 +341,7 @@ where
|
|||||||
enum FramedServiceImplResponseInner<St, Io, Codec, C, T>
|
enum FramedServiceImplResponseInner<St, Io, Codec, C, T>
|
||||||
where
|
where
|
||||||
St: Clone,
|
St: Clone,
|
||||||
C: Service<Request = Connect<Io>, Response = ConnectResult<Io, St, Codec>>,
|
C: Service<Request = Connect<Io, Codec>, Response = ConnectResult<Io, St, Codec>>,
|
||||||
C::Error: 'static,
|
C::Error: 'static,
|
||||||
T: ServiceFactory<
|
T: ServiceFactory<
|
||||||
Config = St,
|
Config = St,
|
||||||
@@ -349,19 +356,25 @@ where
|
|||||||
<Codec as Encoder>::Item: 'static,
|
<Codec as Encoder>::Item: 'static,
|
||||||
<Codec as Encoder>::Error: std::fmt::Debug,
|
<Codec as Encoder>::Error: std::fmt::Debug,
|
||||||
{
|
{
|
||||||
Connect(#[pin] C::Future, Rc<T>, Option<Rc<dyn Fn(&mut St, bool)>>),
|
Connect(
|
||||||
|
#[pin] C::Future,
|
||||||
|
Rc<T>,
|
||||||
|
Option<Rc<dyn Fn(St, bool)>>,
|
||||||
|
Option<mpsc::Receiver<ServiceResult<Codec, C::Error>>>,
|
||||||
|
),
|
||||||
Handler(
|
Handler(
|
||||||
#[pin] T::Future,
|
#[pin] T::Future,
|
||||||
Option<ConnectResult<Io, St, Codec>>,
|
Option<ConnectResult<Io, St, Codec>>,
|
||||||
Option<Rc<dyn Fn(&mut St, bool)>>,
|
Option<Rc<dyn Fn(St, bool)>>,
|
||||||
|
Option<mpsc::Receiver<ServiceResult<Codec, C::Error>>>,
|
||||||
),
|
),
|
||||||
Dispatcher(#[pin] FramedDispatcher<St, T::Service, Io, Codec>),
|
Dispatcher(Dispatcher<St, T::Service, Io, Codec>),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<St, Io, Codec, C, T> FramedServiceImplResponseInner<St, Io, Codec, C, T>
|
impl<St, Io, Codec, C, T> FramedServiceImplResponseInner<St, Io, Codec, C, T>
|
||||||
where
|
where
|
||||||
St: Clone,
|
St: Clone,
|
||||||
C: Service<Request = Connect<Io>, Response = ConnectResult<Io, St, Codec>>,
|
C: Service<Request = Connect<Io, Codec>, Response = ConnectResult<Io, St, Codec>>,
|
||||||
C::Error: 'static,
|
C::Error: 'static,
|
||||||
T: ServiceFactory<
|
T: ServiceFactory<
|
||||||
Config = St,
|
Config = St,
|
||||||
@@ -386,37 +399,39 @@ where
|
|||||||
> {
|
> {
|
||||||
#[project]
|
#[project]
|
||||||
match self.project() {
|
match self.project() {
|
||||||
FramedServiceImplResponseInner::Connect(fut, handler, disconnect) => {
|
FramedServiceImplResponseInner::Connect(fut, handler, disconnect, rx) => {
|
||||||
match fut.poll(cx) {
|
match fut.poll(cx) {
|
||||||
Poll::Ready(Ok(res)) => {
|
Poll::Ready(Ok(res)) => {
|
||||||
Either::Left(FramedServiceImplResponseInner::Handler(
|
Either::Left(FramedServiceImplResponseInner::Handler(
|
||||||
handler.new_service(res.state.clone()),
|
handler.new_service(res.state.clone()),
|
||||||
Some(res),
|
Some(res),
|
||||||
disconnect.take(),
|
disconnect.take(),
|
||||||
|
rx.take(),
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
Poll::Pending => Either::Right(Poll::Pending),
|
Poll::Pending => Either::Right(Poll::Pending),
|
||||||
Poll::Ready(Err(e)) => Either::Right(Poll::Ready(Err(e.into()))),
|
Poll::Ready(Err(e)) => Either::Right(Poll::Ready(Err(e.into()))),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FramedServiceImplResponseInner::Handler(fut, res, disconnect) => match fut.poll(cx)
|
FramedServiceImplResponseInner::Handler(fut, res, disconnect, rx) => {
|
||||||
{
|
match fut.poll(cx) {
|
||||||
Poll::Ready(Ok(handler)) => {
|
Poll::Ready(Ok(handler)) => {
|
||||||
let res = res.take().unwrap();
|
let res = res.take().unwrap();
|
||||||
Either::Left(FramedServiceImplResponseInner::Dispatcher(
|
Either::Left(FramedServiceImplResponseInner::Dispatcher(
|
||||||
FramedDispatcher::new(
|
Dispatcher::new(
|
||||||
res.framed,
|
res.framed,
|
||||||
res.state,
|
res.state,
|
||||||
handler,
|
handler,
|
||||||
res.rx,
|
res.sink,
|
||||||
res.sink,
|
rx.take().unwrap(),
|
||||||
disconnect.take(),
|
disconnect.take(),
|
||||||
),
|
),
|
||||||
))
|
))
|
||||||
|
}
|
||||||
|
Poll::Pending => Either::Right(Poll::Pending),
|
||||||
|
Poll::Ready(Err(e)) => Either::Right(Poll::Ready(Err(e.into()))),
|
||||||
}
|
}
|
||||||
Poll::Pending => Either::Right(Poll::Pending),
|
}
|
||||||
Poll::Ready(Err(e)) => Either::Right(Poll::Ready(Err(e.into()))),
|
|
||||||
},
|
|
||||||
FramedServiceImplResponseInner::Dispatcher(ref mut fut) => {
|
FramedServiceImplResponseInner::Dispatcher(ref mut fut) => {
|
||||||
Either::Right(fut.poll(cx))
|
Either::Right(fut.poll(cx))
|
||||||
}
|
}
|
||||||
|
@@ -1,11 +1,12 @@
|
|||||||
use std::fmt;
|
use std::fmt;
|
||||||
|
use std::rc::Rc;
|
||||||
|
|
||||||
use actix_utils::{mpsc, oneshot};
|
use actix_utils::oneshot;
|
||||||
use futures::future::{Future, FutureExt};
|
use futures::future::{Future, FutureExt};
|
||||||
|
|
||||||
use crate::dispatcher::FramedMessage;
|
use crate::dispatcher::Message;
|
||||||
|
|
||||||
pub struct Sink<T>(mpsc::Sender<FramedMessage<T>>);
|
pub struct Sink<T>(Rc<dyn Fn(Message<T>)>);
|
||||||
|
|
||||||
impl<T> Clone for Sink<T> {
|
impl<T> Clone for Sink<T> {
|
||||||
fn clone(&self) -> Self {
|
fn clone(&self) -> Self {
|
||||||
@@ -14,26 +15,26 @@ impl<T> Clone for Sink<T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Sink<T> {
|
impl<T> Sink<T> {
|
||||||
pub(crate) fn new(tx: mpsc::Sender<FramedMessage<T>>) -> Self {
|
pub(crate) fn new(tx: Rc<dyn Fn(Message<T>)>) -> Self {
|
||||||
Sink(tx)
|
Sink(tx)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Close connection
|
/// Close connection
|
||||||
pub fn close(&self) {
|
pub fn close(&self) {
|
||||||
let _ = self.0.send(FramedMessage::Close);
|
(self.0)(Message::Close);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Close connection
|
/// Close connection
|
||||||
pub fn wait_close(&self) -> impl Future<Output = ()> {
|
pub fn wait_close(&self) -> impl Future<Output = ()> {
|
||||||
let (tx, rx) = oneshot::channel();
|
let (tx, rx) = oneshot::channel();
|
||||||
let _ = self.0.send(FramedMessage::WaitClose(tx));
|
(self.0)(Message::WaitClose(tx));
|
||||||
|
|
||||||
rx.map(|_| ())
|
rx.map(|_| ())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Send item
|
/// Send item
|
||||||
pub fn send(&self, item: T) {
|
pub fn send(&self, item: T) {
|
||||||
let _ = self.0.send(FramedMessage::Message(item));
|
(self.0)(Message::Item(item));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -4,7 +4,7 @@ use std::time::Duration;
|
|||||||
|
|
||||||
use actix_codec::BytesCodec;
|
use actix_codec::BytesCodec;
|
||||||
use actix_rt::time::delay_for;
|
use actix_rt::time::delay_for;
|
||||||
use actix_service::{service_fn, Service};
|
use actix_service::{fn_service, Service};
|
||||||
use actix_testing::TestServer;
|
use actix_testing::TestServer;
|
||||||
use futures::future::ok;
|
use futures::future::ok;
|
||||||
|
|
||||||
@@ -22,22 +22,22 @@ async fn test_disconnect() -> std::io::Result<()> {
|
|||||||
let disconnect1 = disconnect1.clone();
|
let disconnect1 = disconnect1.clone();
|
||||||
|
|
||||||
Builder::new()
|
Builder::new()
|
||||||
.factory(service_fn(|conn: Connect<_>| {
|
.factory(fn_service(|conn: Connect<_, _>| {
|
||||||
ok(conn.codec(BytesCodec).state(State))
|
ok(conn.codec(BytesCodec).state(State))
|
||||||
}))
|
}))
|
||||||
.disconnect(move |_, _| {
|
.disconnect(move |_, _| {
|
||||||
disconnect1.store(true, Ordering::Relaxed);
|
disconnect1.store(true, Ordering::Relaxed);
|
||||||
})
|
})
|
||||||
.finish(service_fn(|_t| ok(None)))
|
.finish(fn_service(|_t| ok(None)))
|
||||||
});
|
});
|
||||||
|
|
||||||
let mut client = Builder::new()
|
let mut client = Builder::new()
|
||||||
.service(|conn: Connect<_>| {
|
.service(|conn: Connect<_, _>| {
|
||||||
let conn = conn.codec(BytesCodec).state(State);
|
let conn = conn.codec(BytesCodec).state(State);
|
||||||
conn.sink().close();
|
conn.sink().close();
|
||||||
ok(conn)
|
ok(conn)
|
||||||
})
|
})
|
||||||
.finish(service_fn(|_t| ok(None)));
|
.finish(fn_service(|_t| ok(None)));
|
||||||
|
|
||||||
let conn = actix_connect::default_connector()
|
let conn = actix_connect::default_connector()
|
||||||
.call(actix_connect::Connect::with(String::new(), srv.addr()))
|
.call(actix_connect::Connect::with(String::new(), srv.addr()))
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-macros"
|
name = "actix-macros"
|
||||||
version = "0.1.0-alpha.1"
|
version = "0.1.1"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix runtime macros"
|
description = "Actix runtime macros"
|
||||||
repository = "https://github.com/actix/actix-net"
|
repository = "https://github.com/actix/actix-net"
|
||||||
@@ -18,4 +18,4 @@ quote = "^1"
|
|||||||
syn = { version = "^1", features = ["full"] }
|
syn = { version = "^1", features = ["full"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-rt = { version = "1.0.0-alpha.1" }
|
actix-rt = { version = "1.0.0" }
|
||||||
|
1
actix-macros/LICENSE-APACHE
Symbolic link
1
actix-macros/LICENSE-APACHE
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../LICENSE-APACHE
|
1
actix-macros/LICENSE-MIT
Symbolic link
1
actix-macros/LICENSE-MIT
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../LICENSE-MIT
|
@@ -17,25 +17,26 @@ use quote::quote;
|
|||||||
#[proc_macro_attribute]
|
#[proc_macro_attribute]
|
||||||
#[cfg(not(test))] // Work around for rust-lang/rust#62127
|
#[cfg(not(test))] // Work around for rust-lang/rust#62127
|
||||||
pub fn main(_: TokenStream, item: TokenStream) -> TokenStream {
|
pub fn main(_: TokenStream, item: TokenStream) -> TokenStream {
|
||||||
let input = syn::parse_macro_input!(item as syn::ItemFn);
|
let mut input = syn::parse_macro_input!(item as syn::ItemFn);
|
||||||
|
|
||||||
let ret = &input.sig.output;
|
|
||||||
let name = &input.sig.ident;
|
|
||||||
let inputs = &input.sig.inputs;
|
|
||||||
let body = &input.block;
|
|
||||||
let attrs = &input.attrs;
|
let attrs = &input.attrs;
|
||||||
|
let vis = &input.vis;
|
||||||
|
let sig = &mut input.sig;
|
||||||
|
let body = &input.block;
|
||||||
|
let name = &sig.ident;
|
||||||
|
|
||||||
if input.sig.asyncness.is_none() {
|
if sig.asyncness.is_none() {
|
||||||
return syn::Error::new_spanned(input.sig.fn_token, "only async fn is supported")
|
return syn::Error::new_spanned(sig.fn_token, "only async fn is supported")
|
||||||
.to_compile_error()
|
.to_compile_error()
|
||||||
.into();
|
.into();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sig.asyncness = None;
|
||||||
|
|
||||||
(quote! {
|
(quote! {
|
||||||
#(#attrs)*
|
#(#attrs)*
|
||||||
fn #name(#inputs) #ret {
|
#vis #sig {
|
||||||
actix_rt::System::new("main")
|
actix_rt::System::new(stringify!(#name))
|
||||||
.block_on(async { #body })
|
.block_on(async move { #body })
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.into()
|
.into()
|
||||||
@@ -70,7 +71,7 @@ pub fn test(_: TokenStream, item: TokenStream) -> TokenStream {
|
|||||||
if input.sig.asyncness.is_none() {
|
if input.sig.asyncness.is_none() {
|
||||||
return syn::Error::new_spanned(
|
return syn::Error::new_spanned(
|
||||||
input.sig.fn_token,
|
input.sig.fn_token,
|
||||||
format!("only async fn is supported, {:?}", input.sig.ident),
|
format!("only async fn is supported, {}", input.sig.ident),
|
||||||
)
|
)
|
||||||
.to_compile_error()
|
.to_compile_error()
|
||||||
.into();
|
.into();
|
||||||
|
@@ -1,5 +1,9 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [1.0.0] - 2019-12-11
|
||||||
|
|
||||||
|
* Update dependencies
|
||||||
|
|
||||||
## [1.0.0-alpha.3] - 2019-12-07
|
## [1.0.0-alpha.3] - 2019-12-07
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-rt"
|
name = "actix-rt"
|
||||||
version = "1.0.0-alpha.3"
|
version = "1.0.0"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix runtime"
|
description = "Actix runtime"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
@@ -9,17 +9,15 @@ repository = "https://github.com/actix/actix-net.git"
|
|||||||
documentation = "https://docs.rs/actix-rt/"
|
documentation = "https://docs.rs/actix-rt/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
workspace = ".."
|
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "actix_rt"
|
name = "actix_rt"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-macros = "0.1.0-alpha.1"
|
actix-macros = "0.1.0"
|
||||||
actix-threadpool = "0.3"
|
actix-threadpool = "0.3"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
copyless = "0.1.4"
|
copyless = "0.1.4"
|
||||||
tokio = { version = "0.2.4", default-features=false, features = ["rt-core", "rt-util", "io-driver", "tcp", "uds", "udp", "time", "signal", "stream"] }
|
tokio = { version = "0.2.6", default-features=false, features = ["rt-core", "rt-util", "io-driver", "tcp", "uds", "udp", "time", "signal", "stream"] }
|
||||||
|
@@ -1,5 +1,24 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [1.0.1] - 2019-12-29
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Rename `.start()` method to `.run()`
|
||||||
|
|
||||||
|
## [1.0.0] - 2019-12-11
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Use actix-net releases
|
||||||
|
|
||||||
|
|
||||||
|
## [1.0.0-alpha.4] - 2019-12-08
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Use actix-service 1.0.0-alpha.4
|
||||||
|
|
||||||
## [1.0.0-alpha.3] - 2019-12-07
|
## [1.0.0-alpha.3] - 2019-12-07
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-server"
|
name = "actix-server"
|
||||||
version = "1.0.0-alpha.3"
|
version = "1.0.1"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix server - General purpose tcp server"
|
description = "Actix server - General purpose tcp server"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
@@ -21,13 +21,13 @@ path = "src/lib.rs"
|
|||||||
default = []
|
default = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "1.0.0-alpha.3"
|
actix-service = "1.0.1"
|
||||||
actix-rt = "1.0.0-alpha.3"
|
actix-rt = "1.0.0"
|
||||||
actix-codec = "0.2.0-alpha.3"
|
actix-codec = "0.2.0"
|
||||||
actix-utils = "1.0.0-alpha.3"
|
actix-utils = "1.0.4"
|
||||||
|
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
num_cpus = "1.0"
|
num_cpus = "1.11"
|
||||||
mio = "0.6.19"
|
mio = "0.6.19"
|
||||||
net2 = "0.2"
|
net2 = "0.2"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
@@ -38,5 +38,5 @@ mio-uds = { version = "0.6.7" }
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bytes = "0.5"
|
bytes = "0.5"
|
||||||
env_logger = "0.6"
|
env_logger = "0.7"
|
||||||
actix-testing = "1.0.0-alpha.3"
|
actix-testing = "1.0.0"
|
@@ -31,7 +31,7 @@ pub struct ServerBuilder {
|
|||||||
backlog: i32,
|
backlog: i32,
|
||||||
workers: Vec<(usize, WorkerClient)>,
|
workers: Vec<(usize, WorkerClient)>,
|
||||||
services: Vec<Box<dyn InternalServiceFactory>>,
|
services: Vec<Box<dyn InternalServiceFactory>>,
|
||||||
sockets: Vec<(Token, StdListener)>,
|
sockets: Vec<(Token, String, StdListener)>,
|
||||||
accept: AcceptLoop,
|
accept: AcceptLoop,
|
||||||
exit: bool,
|
exit: bool,
|
||||||
shutdown_timeout: Duration,
|
shutdown_timeout: Duration,
|
||||||
@@ -146,8 +146,8 @@ impl ServerBuilder {
|
|||||||
let mut srv = ConfiguredService::new(apply);
|
let mut srv = ConfiguredService::new(apply);
|
||||||
for (name, lst) in cfg.services {
|
for (name, lst) in cfg.services {
|
||||||
let token = self.token.next();
|
let token = self.token.next();
|
||||||
srv.stream(token, name, lst.local_addr()?);
|
srv.stream(token, name.clone(), lst.local_addr()?);
|
||||||
self.sockets.push((token, StdListener::Tcp(lst)));
|
self.sockets.push((token, name, StdListener::Tcp(lst)));
|
||||||
}
|
}
|
||||||
self.services.push(Box::new(srv));
|
self.services.push(Box::new(srv));
|
||||||
}
|
}
|
||||||
@@ -172,7 +172,8 @@ impl ServerBuilder {
|
|||||||
factory.clone(),
|
factory.clone(),
|
||||||
lst.local_addr()?,
|
lst.local_addr()?,
|
||||||
));
|
));
|
||||||
self.sockets.push((token, StdListener::Tcp(lst)));
|
self.sockets
|
||||||
|
.push((token, name.as_ref().to_string(), StdListener::Tcp(lst)));
|
||||||
}
|
}
|
||||||
Ok(self)
|
Ok(self)
|
||||||
}
|
}
|
||||||
@@ -222,7 +223,8 @@ impl ServerBuilder {
|
|||||||
factory.clone(),
|
factory.clone(),
|
||||||
addr,
|
addr,
|
||||||
));
|
));
|
||||||
self.sockets.push((token, StdListener::Uds(lst)));
|
self.sockets
|
||||||
|
.push((token, name.as_ref().to_string(), StdListener::Uds(lst)));
|
||||||
Ok(self)
|
Ok(self)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -243,36 +245,18 @@ impl ServerBuilder {
|
|||||||
factory,
|
factory,
|
||||||
lst.local_addr()?,
|
lst.local_addr()?,
|
||||||
));
|
));
|
||||||
self.sockets.push((token, StdListener::Tcp(lst)));
|
self.sockets
|
||||||
|
.push((token, name.as_ref().to_string(), StdListener::Tcp(lst)));
|
||||||
Ok(self)
|
Ok(self)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Spawn new thread and start listening for incoming connections.
|
#[doc(hidden)]
|
||||||
///
|
pub fn start(self) -> Server {
|
||||||
/// This method spawns new thread and starts new actix system. Other than
|
self.run()
|
||||||
/// that it is similar to `start()` method. This method blocks.
|
|
||||||
///
|
|
||||||
/// This methods panics if no socket addresses get bound.
|
|
||||||
///
|
|
||||||
/// ```rust,ignore
|
|
||||||
/// use actix_web::*;
|
|
||||||
///
|
|
||||||
/// fn main() -> std::io::Result<()> {
|
|
||||||
/// Server::new().
|
|
||||||
/// .service(
|
|
||||||
/// HttpServer::new(|| App::new().service(web::service("/").to(|| HttpResponse::Ok())))
|
|
||||||
/// .bind("127.0.0.1:0")
|
|
||||||
/// .run()
|
|
||||||
/// }
|
|
||||||
/// ```
|
|
||||||
pub fn run(self) -> io::Result<()> {
|
|
||||||
let sys = System::new("http-server");
|
|
||||||
self.start();
|
|
||||||
sys.run()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Starts processing incoming connections and return server controller.
|
/// Starts processing incoming connections and return server controller.
|
||||||
pub fn start(mut self) -> Server {
|
pub fn run(mut self) -> Server {
|
||||||
if self.sockets.is_empty() {
|
if self.sockets.is_empty() {
|
||||||
panic!("Server should have at least one bound socket");
|
panic!("Server should have at least one bound socket");
|
||||||
} else {
|
} else {
|
||||||
@@ -288,10 +272,15 @@ impl ServerBuilder {
|
|||||||
|
|
||||||
// start accept thread
|
// start accept thread
|
||||||
for sock in &self.sockets {
|
for sock in &self.sockets {
|
||||||
info!("Starting server on {}", sock.1);
|
info!("Starting \"{}\" service on {}", sock.1, sock.2);
|
||||||
}
|
}
|
||||||
self.accept
|
self.accept.start(
|
||||||
.start(mem::replace(&mut self.sockets, Vec::new()), workers);
|
mem::replace(&mut self.sockets, Vec::new())
|
||||||
|
.into_iter()
|
||||||
|
.map(|t| (t.0, t.2))
|
||||||
|
.collect(),
|
||||||
|
workers,
|
||||||
|
);
|
||||||
|
|
||||||
// handle signals
|
// handle signals
|
||||||
if !self.no_signals {
|
if !self.no_signals {
|
||||||
@@ -391,7 +380,7 @@ impl ServerBuilder {
|
|||||||
.await;
|
.await;
|
||||||
System::current().stop();
|
System::current().stop();
|
||||||
}
|
}
|
||||||
.boxed(),
|
.boxed(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
ready(())
|
ready(())
|
||||||
|
@@ -142,7 +142,7 @@ impl InternalServiceFactory for ConfiguredService {
|
|||||||
let name = names.remove(&token).unwrap().0;
|
let name = names.remove(&token).unwrap().0;
|
||||||
res.push((
|
res.push((
|
||||||
token,
|
token,
|
||||||
Box::new(StreamService::new(actix::service_fn2(
|
Box::new(StreamService::new(actix::fn_service(
|
||||||
move |_: TcpStream| {
|
move |_: TcpStream| {
|
||||||
error!("Service {:?} is not configured", name);
|
error!("Service {:?} is not configured", name);
|
||||||
ok::<_, ()>(())
|
ok::<_, ()>(())
|
||||||
@@ -153,7 +153,7 @@ impl InternalServiceFactory for ConfiguredService {
|
|||||||
}
|
}
|
||||||
return Ok(res);
|
return Ok(res);
|
||||||
}
|
}
|
||||||
.boxed_local()
|
.boxed_local()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -280,6 +280,6 @@ where
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
.boxed_local()
|
.boxed_local()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -217,7 +217,7 @@ impl Worker {
|
|||||||
wrk.await
|
wrk.await
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
.boxed(),
|
.boxed(),
|
||||||
);
|
);
|
||||||
|
|
||||||
WorkerClient::new(idx, tx1, tx2, avail)
|
WorkerClient::new(idx, tx1, tx2, avail)
|
||||||
|
@@ -6,7 +6,7 @@ use std::{net, thread, time};
|
|||||||
use actix_codec::{BytesCodec, Framed};
|
use actix_codec::{BytesCodec, Framed};
|
||||||
use actix_rt::net::TcpStream;
|
use actix_rt::net::TcpStream;
|
||||||
use actix_server::Server;
|
use actix_server::Server;
|
||||||
use actix_service::service_fn;
|
use actix_service::fn_service;
|
||||||
use bytes::Bytes;
|
use bytes::Bytes;
|
||||||
use futures::future::{lazy, ok};
|
use futures::future::{lazy, ok};
|
||||||
use futures::SinkExt;
|
use futures::SinkExt;
|
||||||
@@ -31,7 +31,7 @@ fn test_bind() {
|
|||||||
let srv = Server::build()
|
let srv = Server::build()
|
||||||
.workers(1)
|
.workers(1)
|
||||||
.disable_signals()
|
.disable_signals()
|
||||||
.bind("test", addr, move || service_fn(|_| ok::<_, ()>(())))
|
.bind("test", addr, move || fn_service(|_| ok::<_, ()>(())))
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.start();
|
.start();
|
||||||
let _ = tx.send((srv, actix_rt::System::current()));
|
let _ = tx.send((srv, actix_rt::System::current()));
|
||||||
@@ -56,7 +56,7 @@ fn test_listen() {
|
|||||||
Server::build()
|
Server::build()
|
||||||
.disable_signals()
|
.disable_signals()
|
||||||
.workers(1)
|
.workers(1)
|
||||||
.listen("test", lst, move || service_fn(|_| ok::<_, ()>(())))
|
.listen("test", lst, move || fn_service(|_| ok::<_, ()>(())))
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.start();
|
.start();
|
||||||
let _ = tx.send(actix_rt::System::current());
|
let _ = tx.send(actix_rt::System::current());
|
||||||
@@ -82,7 +82,7 @@ fn test_start() {
|
|||||||
.backlog(100)
|
.backlog(100)
|
||||||
.disable_signals()
|
.disable_signals()
|
||||||
.bind("test", addr, move || {
|
.bind("test", addr, move || {
|
||||||
service_fn(|io: TcpStream| {
|
fn_service(|io: TcpStream| {
|
||||||
async move {
|
async move {
|
||||||
let mut f = Framed::new(io, BytesCodec);
|
let mut f = Framed::new(io, BytesCodec);
|
||||||
f.send(Bytes::from_static(b"test")).await.unwrap();
|
f.send(Bytes::from_static(b"test")).await.unwrap();
|
||||||
@@ -158,8 +158,8 @@ fn test_configure() {
|
|||||||
.listen("addr3", lst)
|
.listen("addr3", lst)
|
||||||
.apply(move |rt| {
|
.apply(move |rt| {
|
||||||
let num = num.clone();
|
let num = num.clone();
|
||||||
rt.service("addr1", service_fn(|_| ok::<_, ()>(())));
|
rt.service("addr1", fn_service(|_| ok::<_, ()>(())));
|
||||||
rt.service("addr3", service_fn(|_| ok::<_, ()>(())));
|
rt.service("addr3", fn_service(|_| ok::<_, ()>(())));
|
||||||
rt.on_start(lazy(move |_| {
|
rt.on_start(lazy(move |_| {
|
||||||
let _ = num.fetch_add(1, Relaxed);
|
let _ = num.fetch_add(1, Relaxed);
|
||||||
}))
|
}))
|
||||||
|
@@ -1,5 +1,30 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [1.0.1] - 2019-12-22
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* `map_config()` and `unit_config()` accepts `IntoServiceFactory` type
|
||||||
|
|
||||||
|
|
||||||
|
## [1.0.0] - 2019-12-11
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* Add Clone impl for Apply service
|
||||||
|
|
||||||
|
|
||||||
|
## [1.0.0-alpha.4] - 2019-12-08
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Renamed `service_fn` to `fn_service`
|
||||||
|
|
||||||
|
* Renamed `factory_fn` to `fn_factory`
|
||||||
|
|
||||||
|
* Renamed `factory_fn_cfg` to `fn_factory_with_config`
|
||||||
|
|
||||||
|
|
||||||
## [1.0.0-alpha.3] - 2019-12-06
|
## [1.0.0-alpha.3] - 2019-12-06
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@@ -1,15 +1,14 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-service"
|
name = "actix-service"
|
||||||
version = "1.0.0-alpha.3"
|
version = "1.0.1"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix Service"
|
description = "Actix service"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
homepage = "https://actix.rs"
|
homepage = "https://actix.rs"
|
||||||
repository = "https://github.com/actix/actix-net.git"
|
repository = "https://github.com/actix/actix-net.git"
|
||||||
documentation = "https://docs.rs/actix-service/"
|
documentation = "https://docs.rs/actix-service/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
workspace = ".."
|
workspace = ".."
|
||||||
|
|
||||||
@@ -27,4 +26,4 @@ futures-util = "0.3.1"
|
|||||||
pin-project = "0.4.6"
|
pin-project = "0.4.6"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
actix-rt = "1.0.0-alpha.2"
|
actix-rt = "1.0.0"
|
||||||
|
@@ -258,7 +258,7 @@ mod tests {
|
|||||||
|
|
||||||
use futures_util::future::{lazy, ok, ready, Ready};
|
use futures_util::future::{lazy, ok, ready, Ready};
|
||||||
|
|
||||||
use crate::{factory_fn, pipeline, pipeline_factory, Service, ServiceFactory};
|
use crate::{fn_factory, pipeline, pipeline_factory, Service, ServiceFactory};
|
||||||
|
|
||||||
struct Srv1(Rc<Cell<usize>>);
|
struct Srv1(Rc<Cell<usize>>);
|
||||||
|
|
||||||
@@ -320,7 +320,7 @@ mod tests {
|
|||||||
let cnt = Rc::new(Cell::new(0));
|
let cnt = Rc::new(Cell::new(0));
|
||||||
let cnt2 = cnt.clone();
|
let cnt2 = cnt.clone();
|
||||||
let new_srv =
|
let new_srv =
|
||||||
pipeline_factory(factory_fn(move || ready(Ok::<_, ()>(Srv1(cnt2.clone())))))
|
pipeline_factory(fn_factory(move || ready(Ok::<_, ()>(Srv1(cnt2.clone())))))
|
||||||
.and_then(move || ready(Ok(Srv2(cnt.clone()))));
|
.and_then(move || ready(Ok(Srv2(cnt.clone()))));
|
||||||
|
|
||||||
let mut srv = new_srv.new_service(()).await.unwrap();
|
let mut srv = new_srv.new_service(()).await.unwrap();
|
||||||
|
@@ -283,7 +283,7 @@ mod tests {
|
|||||||
|
|
||||||
use futures_util::future::{lazy, ok, Ready, TryFutureExt};
|
use futures_util::future::{lazy, ok, Ready, TryFutureExt};
|
||||||
|
|
||||||
use crate::{pipeline, pipeline_factory, service_fn2, Service, ServiceFactory};
|
use crate::{fn_service, pipeline, pipeline_factory, Service, ServiceFactory};
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
struct Srv;
|
struct Srv;
|
||||||
@@ -318,7 +318,7 @@ mod tests {
|
|||||||
|
|
||||||
#[actix_rt::test]
|
#[actix_rt::test]
|
||||||
async fn test_service_factory() {
|
async fn test_service_factory() {
|
||||||
let new_srv = pipeline_factory(|| ok::<_, ()>(service_fn2(|r: &'static str| ok(r))))
|
let new_srv = pipeline_factory(|| ok::<_, ()>(fn_service(|r: &'static str| ok(r))))
|
||||||
.and_then_apply_fn(
|
.and_then_apply_fn(
|
||||||
|| ok(Srv),
|
|| ok(Srv),
|
||||||
|req: &'static str, s| s.call(()).map_ok(move |res| (req, res)),
|
|req: &'static str, s| s.call(()).map_ok(move |res| (req, res)),
|
||||||
|
@@ -5,7 +5,7 @@ use std::task::{Context, Poll};
|
|||||||
|
|
||||||
use super::{IntoService, IntoServiceFactory, Service, ServiceFactory};
|
use super::{IntoService, IntoServiceFactory, Service, ServiceFactory};
|
||||||
|
|
||||||
/// Apply tranform function to a service
|
/// Apply tranform function to a service.
|
||||||
pub fn apply_fn<T, F, R, In, Out, Err, U>(service: U, f: F) -> Apply<T, F, R, In, Out, Err>
|
pub fn apply_fn<T, F, R, In, Out, Err, U>(service: U, f: F) -> Apply<T, F, R, In, Out, Err>
|
||||||
where
|
where
|
||||||
T: Service<Error = Err>,
|
T: Service<Error = Err>,
|
||||||
@@ -16,7 +16,7 @@ where
|
|||||||
Apply::new(service.into_service(), f)
|
Apply::new(service.into_service(), f)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Create factory for `apply` service.
|
/// Service factory that prodices `apply_fn` service.
|
||||||
pub fn apply_fn_factory<T, F, R, In, Out, Err, U>(
|
pub fn apply_fn_factory<T, F, R, In, Out, Err, U>(
|
||||||
service: U,
|
service: U,
|
||||||
f: F,
|
f: F,
|
||||||
@@ -56,6 +56,21 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<T, F, R, In, Out, Err> Clone for Apply<T, F, R, In, Out, Err>
|
||||||
|
where
|
||||||
|
T: Service<Error = Err> + Clone,
|
||||||
|
F: FnMut(In, &mut T) -> R + Clone,
|
||||||
|
R: Future<Output = Result<Out, Err>>,
|
||||||
|
{
|
||||||
|
fn clone(&self) -> Self {
|
||||||
|
Apply {
|
||||||
|
service: self.service.clone(),
|
||||||
|
f: self.f.clone(),
|
||||||
|
r: PhantomData,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl<T, F, R, In, Out, Err> Service for Apply<T, F, R, In, Out, Err>
|
impl<T, F, R, In, Out, Err> Service for Apply<T, F, R, In, Out, Err>
|
||||||
where
|
where
|
||||||
T: Service<Error = Err>,
|
T: Service<Error = Err>,
|
||||||
|
@@ -6,7 +6,7 @@ use std::task::{Context, Poll};
|
|||||||
use crate::cell::Cell;
|
use crate::cell::Cell;
|
||||||
use crate::{Service, ServiceFactory};
|
use crate::{Service, ServiceFactory};
|
||||||
|
|
||||||
/// Convert `Fn(&Config, &mut Service) -> Future<Service>` fn to a NewService
|
/// Convert `Fn(Config, &mut Service1) -> Future<Service2>` fn to a service factory
|
||||||
pub fn apply_cfg<F, C, T, R, S, E>(srv: T, f: F) -> ApplyConfigService<F, C, T, R, S, E>
|
pub fn apply_cfg<F, C, T, R, S, E>(srv: T, f: F) -> ApplyConfigService<F, C, T, R, S, E>
|
||||||
where
|
where
|
||||||
F: FnMut(C, &mut T) -> R,
|
F: FnMut(C, &mut T) -> R,
|
||||||
@@ -20,10 +20,11 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Convert `Fn(&Config, &mut Service) -> Future<Service>` fn to a NewService
|
/// Convert `Fn(Config, &mut Service1) -> Future<Service2>` fn to a service factory
|
||||||
/// Service get constructor from NewService.
|
///
|
||||||
|
/// Service1 get constructed from `T` factory.
|
||||||
pub fn apply_cfg_factory<F, C, T, R, S>(
|
pub fn apply_cfg_factory<F, C, T, R, S>(
|
||||||
srv: T,
|
factory: T,
|
||||||
f: F,
|
f: F,
|
||||||
) -> ApplyConfigServiceFactory<F, C, T, R, S>
|
) -> ApplyConfigServiceFactory<F, C, T, R, S>
|
||||||
where
|
where
|
||||||
@@ -34,12 +35,12 @@ where
|
|||||||
S: Service,
|
S: Service,
|
||||||
{
|
{
|
||||||
ApplyConfigServiceFactory {
|
ApplyConfigServiceFactory {
|
||||||
srv: Cell::new((srv, f)),
|
srv: Cell::new((factory, f)),
|
||||||
_t: PhantomData,
|
_t: PhantomData,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Convert `Fn(&Config) -> Future<Service>` fn to NewService\
|
/// Convert `Fn(Config, &mut Server) -> Future<Service>` fn to NewService\
|
||||||
pub struct ApplyConfigService<F, C, T, R, S, E>
|
pub struct ApplyConfigService<F, C, T, R, S, E>
|
||||||
where
|
where
|
||||||
F: FnMut(C, &mut T) -> R,
|
F: FnMut(C, &mut T) -> R,
|
||||||
|
@@ -13,7 +13,7 @@ pub type BoxService<Req, Res, Err> =
|
|||||||
|
|
||||||
pub struct BoxServiceFactory<C, Req, Res, Err, InitErr>(Inner<C, Req, Res, Err, InitErr>);
|
pub struct BoxServiceFactory<C, Req, Res, Err, InitErr>(Inner<C, Req, Res, Err, InitErr>);
|
||||||
|
|
||||||
/// Create boxed new service
|
/// Create boxed service factory
|
||||||
pub fn factory<T>(
|
pub fn factory<T>(
|
||||||
factory: T,
|
factory: T,
|
||||||
) -> BoxServiceFactory<T::Config, T::Request, T::Response, T::Error, T::InitError>
|
) -> BoxServiceFactory<T::Config, T::Request, T::Response, T::Error, T::InitError>
|
||||||
|
@@ -7,7 +7,7 @@ use futures_util::future::{ok, Ready};
|
|||||||
use crate::{IntoService, IntoServiceFactory, Service, ServiceFactory};
|
use crate::{IntoService, IntoServiceFactory, Service, ServiceFactory};
|
||||||
|
|
||||||
/// Create `ServiceFactory` for function that can act as a `Service`
|
/// Create `ServiceFactory` for function that can act as a `Service`
|
||||||
pub fn service_fn<F, Fut, Req, Res, Err, Cfg>(
|
pub fn fn_service<F, Fut, Req, Res, Err, Cfg>(
|
||||||
f: F,
|
f: F,
|
||||||
) -> FnServiceFactory<F, Fut, Req, Res, Err, Cfg>
|
) -> FnServiceFactory<F, Fut, Req, Res, Err, Cfg>
|
||||||
where
|
where
|
||||||
@@ -17,16 +17,43 @@ where
|
|||||||
FnServiceFactory::new(f)
|
FnServiceFactory::new(f)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn service_fn2<F, Fut, Req, Res, Err>(f: F) -> FnService<F, Fut, Req, Res, Err>
|
|
||||||
where
|
|
||||||
F: FnMut(Req) -> Fut,
|
|
||||||
Fut: Future<Output = Result<Res, Err>>,
|
|
||||||
{
|
|
||||||
FnService::new(f)
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Create `ServiceFactory` for function that can produce services
|
/// Create `ServiceFactory` for function that can produce services
|
||||||
pub fn factory_fn<F, Cfg, Srv, Fut, Err>(f: F) -> FnServiceNoConfig<F, Cfg, Srv, Fut, Err>
|
///
|
||||||
|
/// # Example
|
||||||
|
///
|
||||||
|
/// ```rust
|
||||||
|
/// use std::io;
|
||||||
|
/// use actix_service::{fn_factory, fn_service, Service, ServiceFactory};
|
||||||
|
/// use futures_util::future::ok;
|
||||||
|
///
|
||||||
|
/// /// Service that divides two usize values.
|
||||||
|
/// async fn div((x, y): (usize, usize)) -> Result<usize, io::Error> {
|
||||||
|
/// if y == 0 {
|
||||||
|
/// Err(io::Error::new(io::ErrorKind::Other, "divide by zdro"))
|
||||||
|
/// } else {
|
||||||
|
/// Ok(x / y)
|
||||||
|
/// }
|
||||||
|
/// }
|
||||||
|
///
|
||||||
|
/// #[actix_rt::main]
|
||||||
|
/// async fn main() -> io::Result<()> {
|
||||||
|
/// // Create service factory that produces `div` services
|
||||||
|
/// let factory = fn_factory(|| {
|
||||||
|
/// ok::<_, io::Error>(fn_service(div))
|
||||||
|
/// });
|
||||||
|
///
|
||||||
|
/// // construct new service
|
||||||
|
/// let mut srv = factory.new_service(()).await?;
|
||||||
|
///
|
||||||
|
/// // now we can use `div` service
|
||||||
|
/// let result = srv.call((10, 20)).await?;
|
||||||
|
///
|
||||||
|
/// println!("10 / 20 = {}", result);
|
||||||
|
///
|
||||||
|
/// Ok(())
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
|
pub fn fn_factory<F, Cfg, Srv, Fut, Err>(f: F) -> FnServiceNoConfig<F, Cfg, Srv, Fut, Err>
|
||||||
where
|
where
|
||||||
Srv: Service,
|
Srv: Service,
|
||||||
F: Fn() -> Fut,
|
F: Fn() -> Fut,
|
||||||
@@ -35,8 +62,39 @@ where
|
|||||||
FnServiceNoConfig::new(f)
|
FnServiceNoConfig::new(f)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Create `ServiceFactory` for function that can produce services with configuration
|
/// Create `ServiceFactory` for function that accepts config argument and can produce services
|
||||||
pub fn factory_fn_cfg<F, Fut, Cfg, Srv, Err>(f: F) -> FnServiceConfig<F, Fut, Cfg, Srv, Err>
|
///
|
||||||
|
/// Any function that has following form `Fn(Config) -> Future<Output = Service>` could
|
||||||
|
/// act as a `ServiceFactory`.
|
||||||
|
///
|
||||||
|
/// # Example
|
||||||
|
///
|
||||||
|
/// ```rust
|
||||||
|
/// use std::io;
|
||||||
|
/// use actix_service::{fn_factory_with_config, fn_service, Service, ServiceFactory};
|
||||||
|
/// use futures_util::future::ok;
|
||||||
|
///
|
||||||
|
/// #[actix_rt::main]
|
||||||
|
/// async fn main() -> io::Result<()> {
|
||||||
|
/// // Create service factory. factory uses config argument for
|
||||||
|
/// // services it generates.
|
||||||
|
/// let factory = fn_factory_with_config(|y: usize| {
|
||||||
|
/// ok::<_, io::Error>(fn_service(move |x: usize| ok::<_, io::Error>(x * y)))
|
||||||
|
/// });
|
||||||
|
///
|
||||||
|
/// // construct new service with config argument
|
||||||
|
/// let mut srv = factory.new_service(10).await?;
|
||||||
|
///
|
||||||
|
/// let result = srv.call(10).await?;
|
||||||
|
/// assert_eq!(result, 100);
|
||||||
|
///
|
||||||
|
/// println!("10 * 10 = {}", result);
|
||||||
|
/// Ok(())
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
|
pub fn fn_factory_with_config<F, Fut, Cfg, Srv, Err>(
|
||||||
|
f: F,
|
||||||
|
) -> FnServiceConfig<F, Fut, Cfg, Srv, Err>
|
||||||
where
|
where
|
||||||
F: Fn(Cfg) -> Fut,
|
F: Fn(Cfg) -> Fut,
|
||||||
Fut: Future<Output = Result<Srv, Err>>,
|
Fut: Future<Output = Result<Srv, Err>>,
|
||||||
@@ -132,6 +190,25 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<F, Fut, Req, Res, Err> Service for FnServiceFactory<F, Fut, Req, Res, Err, ()>
|
||||||
|
where
|
||||||
|
F: FnMut(Req) -> Fut + Clone,
|
||||||
|
Fut: Future<Output = Result<Res, Err>>,
|
||||||
|
{
|
||||||
|
type Request = Req;
|
||||||
|
type Response = Res;
|
||||||
|
type Error = Err;
|
||||||
|
type Future = Fut;
|
||||||
|
|
||||||
|
fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||||
|
Poll::Ready(Ok(()))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn call(&mut self, req: Self::Request) -> Self::Future {
|
||||||
|
(self.f)(req)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
impl<F, Fut, Req, Res, Err, Cfg> ServiceFactory for FnServiceFactory<F, Fut, Req, Res, Err, Cfg>
|
impl<F, Fut, Req, Res, Err, Cfg> ServiceFactory for FnServiceFactory<F, Fut, Req, Res, Err, Cfg>
|
||||||
where
|
where
|
||||||
F: FnMut(Req) -> Fut + Clone,
|
F: FnMut(Req) -> Fut + Clone,
|
||||||
@@ -280,3 +357,47 @@ where
|
|||||||
FnServiceNoConfig::new(self)
|
FnServiceNoConfig::new(self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use std::task::Poll;
|
||||||
|
|
||||||
|
use futures_util::future::{lazy, ok};
|
||||||
|
|
||||||
|
use super::*;
|
||||||
|
use crate::{Service, ServiceFactory};
|
||||||
|
|
||||||
|
#[actix_rt::test]
|
||||||
|
async fn test_fn_service() {
|
||||||
|
let new_srv = fn_service(|()| ok::<_, ()>("srv"));
|
||||||
|
|
||||||
|
let mut srv = new_srv.new_service(()).await.unwrap();
|
||||||
|
let res = srv.call(()).await;
|
||||||
|
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
||||||
|
assert!(res.is_ok());
|
||||||
|
assert_eq!(res.unwrap(), "srv");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[actix_rt::test]
|
||||||
|
async fn test_fn_service_service() {
|
||||||
|
let mut srv = fn_service(|()| ok::<_, ()>("srv"));
|
||||||
|
|
||||||
|
let res = srv.call(()).await;
|
||||||
|
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
||||||
|
assert!(res.is_ok());
|
||||||
|
assert_eq!(res.unwrap(), "srv");
|
||||||
|
}
|
||||||
|
|
||||||
|
#[actix_rt::test]
|
||||||
|
async fn test_fn_service_with_config() {
|
||||||
|
let new_srv = fn_factory_with_config(|cfg: usize| {
|
||||||
|
ok::<_, ()>(fn_service(move |()| ok::<_, ()>(("srv", cfg))))
|
||||||
|
});
|
||||||
|
|
||||||
|
let mut srv = new_srv.new_service(1).await.unwrap();
|
||||||
|
let res = srv.call(()).await;
|
||||||
|
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
||||||
|
assert!(res.is_ok());
|
||||||
|
assert_eq!(res.unwrap(), ("srv", 1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -25,12 +25,48 @@ mod transform_err;
|
|||||||
|
|
||||||
pub use self::apply::{apply_fn, apply_fn_factory};
|
pub use self::apply::{apply_fn, apply_fn_factory};
|
||||||
pub use self::apply_cfg::{apply_cfg, apply_cfg_factory};
|
pub use self::apply_cfg::{apply_cfg, apply_cfg_factory};
|
||||||
pub use self::fn_service::{factory_fn, factory_fn_cfg, service_fn, service_fn2};
|
pub use self::fn_service::{fn_factory, fn_factory_with_config, fn_service};
|
||||||
pub use self::map_config::{map_config, unit_config};
|
pub use self::map_config::{map_config, unit_config};
|
||||||
pub use self::pipeline::{pipeline, pipeline_factory, Pipeline, PipelineFactory};
|
pub use self::pipeline::{pipeline, pipeline_factory, Pipeline, PipelineFactory};
|
||||||
pub use self::transform::{apply, Transform};
|
pub use self::transform::{apply, Transform};
|
||||||
|
|
||||||
/// An asynchronous function from `Request` to a `Response`.
|
/// An asynchronous function from `Request` to a `Response`.
|
||||||
|
///
|
||||||
|
/// `Service` represents a service that represanting interation, taking requests and giving back
|
||||||
|
/// replies. You can think about service as a function with one argument and result as a return
|
||||||
|
/// type. In general form it looks like `async fn(Req) -> Result<Res, Err>`. `Service`
|
||||||
|
/// trait just generalizing form of this function. Each parameter described as an assotiated type.
|
||||||
|
///
|
||||||
|
/// Services provides a symmetric and uniform API, same abstractions represents
|
||||||
|
/// clients and servers. Services describe only `transforamtion` operation
|
||||||
|
/// which encorouge to simplify api surface and phrases `value transformation`.
|
||||||
|
/// That leads to simplier design of each service. That also allows better testability
|
||||||
|
/// and better composition.
|
||||||
|
///
|
||||||
|
/// Services could be represented in several different forms. In general,
|
||||||
|
/// Service is a type that implements `Service` trait.
|
||||||
|
///
|
||||||
|
/// ```rust,ignore
|
||||||
|
/// struct MyService;
|
||||||
|
///
|
||||||
|
/// impl Service for MyService {
|
||||||
|
/// type Request = u8;
|
||||||
|
/// type Response = u64;
|
||||||
|
/// type Error = MyError;
|
||||||
|
/// type Future = Pin<Box<Future<Output=Result<Self::Response, Self::Error>>>;
|
||||||
|
///
|
||||||
|
/// fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> { ... }
|
||||||
|
///
|
||||||
|
/// fn call(&mut self) -> Self::Future { ... }
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// Service can have mutable state that influence computation.
|
||||||
|
/// This service could be rewritten as a simple function:
|
||||||
|
///
|
||||||
|
/// ```rust,ignore
|
||||||
|
/// async fn my_service(req: u8) -> Result<u64, MyError>;
|
||||||
|
/// ```
|
||||||
pub trait Service {
|
pub trait Service {
|
||||||
/// Requests handled by the service.
|
/// Requests handled by the service.
|
||||||
type Request;
|
type Request;
|
||||||
@@ -53,6 +89,12 @@ pub trait Service {
|
|||||||
/// This is a **best effort** implementation. False positives are permitted.
|
/// This is a **best effort** implementation. False positives are permitted.
|
||||||
/// It is permitted for the service to return `Ready` from a `poll_ready`
|
/// It is permitted for the service to return `Ready` from a `poll_ready`
|
||||||
/// call and the next invocation of `call` results in an error.
|
/// call and the next invocation of `call` results in an error.
|
||||||
|
///
|
||||||
|
/// There are several notes to consider:
|
||||||
|
///
|
||||||
|
/// 1. `.poll_ready()` might be called on different task from actual service call.
|
||||||
|
///
|
||||||
|
/// 2. In case of chained services, `.poll_ready()` get called for all services at once.
|
||||||
fn poll_ready(&mut self, ctx: &mut task::Context<'_>) -> Poll<Result<(), Self::Error>>;
|
fn poll_ready(&mut self, ctx: &mut task::Context<'_>) -> Poll<Result<(), Self::Error>>;
|
||||||
|
|
||||||
/// Process the request and return the response asynchronously.
|
/// Process the request and return the response asynchronously.
|
||||||
@@ -287,7 +329,7 @@ pub trait IntoServiceFactory<T>
|
|||||||
where
|
where
|
||||||
T: ServiceFactory,
|
T: ServiceFactory,
|
||||||
{
|
{
|
||||||
/// Convert `Self` an `ServiceFactory`
|
/// Convert `Self` to a `ServiceFactory`
|
||||||
fn into_factory(self) -> T;
|
fn into_factory(self) -> T;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,25 +1,30 @@
|
|||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
|
|
||||||
use super::ServiceFactory;
|
use super::{IntoServiceFactory, ServiceFactory};
|
||||||
|
|
||||||
/// Adapt external config to a config for provided new service
|
/// Adapt external config argument to a config for provided service factory
|
||||||
pub fn map_config<T, F, C>(factory: T, f: F) -> MapConfig<T, F, C>
|
///
|
||||||
|
/// Note that this function consumes the receiving service factory and returns
|
||||||
|
/// a wrapped version of it.
|
||||||
|
pub fn map_config<T, U, F, C>(factory: U, f: F) -> MapConfig<T, F, C>
|
||||||
where
|
where
|
||||||
T: ServiceFactory,
|
T: ServiceFactory,
|
||||||
|
U: IntoServiceFactory<T>,
|
||||||
F: Fn(C) -> T::Config,
|
F: Fn(C) -> T::Config,
|
||||||
{
|
{
|
||||||
MapConfig::new(factory, f)
|
MapConfig::new(factory.into_factory(), f)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Replace config with unit
|
/// Replace config with unit
|
||||||
pub fn unit_config<T, C>(new_service: T) -> UnitConfig<T, C>
|
pub fn unit_config<T, U, C>(factory: U) -> UnitConfig<T, C>
|
||||||
where
|
where
|
||||||
T: ServiceFactory<Config = ()>,
|
T: ServiceFactory<Config = ()>,
|
||||||
|
U: IntoServiceFactory<T>,
|
||||||
{
|
{
|
||||||
UnitConfig::new(new_service)
|
UnitConfig::new(factory.into_factory())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// `.map_config()` service combinator
|
/// `map_config()` adapter service factory
|
||||||
pub struct MapConfig<A, F, C> {
|
pub struct MapConfig<A, F, C> {
|
||||||
a: A,
|
a: A,
|
||||||
f: F,
|
f: F,
|
||||||
|
@@ -9,6 +9,7 @@ use crate::map_init_err::MapInitErr;
|
|||||||
use crate::then::{ThenService, ThenServiceFactory};
|
use crate::then::{ThenService, ThenServiceFactory};
|
||||||
use crate::{IntoService, IntoServiceFactory, Service, ServiceFactory};
|
use crate::{IntoService, IntoServiceFactory, Service, ServiceFactory};
|
||||||
|
|
||||||
|
/// Contruct new pipeline with one service in pipeline chain.
|
||||||
pub fn pipeline<F, T>(service: F) -> Pipeline<T>
|
pub fn pipeline<F, T>(service: F) -> Pipeline<T>
|
||||||
where
|
where
|
||||||
F: IntoService<T>,
|
F: IntoService<T>,
|
||||||
@@ -19,6 +20,7 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Contruct new pipeline factory with one service factory.
|
||||||
pub fn pipeline_factory<T, F>(factory: F) -> PipelineFactory<T>
|
pub fn pipeline_factory<T, F>(factory: F) -> PipelineFactory<T>
|
||||||
where
|
where
|
||||||
T: ServiceFactory,
|
T: ServiceFactory,
|
||||||
@@ -29,7 +31,7 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Pipeline service
|
/// Pipeline service - pipeline allows to compose multiple service into one service.
|
||||||
pub struct Pipeline<T> {
|
pub struct Pipeline<T> {
|
||||||
service: T,
|
service: T,
|
||||||
}
|
}
|
||||||
@@ -159,7 +161,7 @@ impl<T: Service> Service for Pipeline<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Pipeline constructor
|
/// Pipeline factory
|
||||||
pub struct PipelineFactory<T> {
|
pub struct PipelineFactory<T> {
|
||||||
factory: T,
|
factory: T,
|
||||||
}
|
}
|
||||||
|
@@ -7,23 +7,88 @@ use std::task::{Context, Poll};
|
|||||||
use crate::transform_err::TransformMapInitErr;
|
use crate::transform_err::TransformMapInitErr;
|
||||||
use crate::{IntoServiceFactory, Service, ServiceFactory};
|
use crate::{IntoServiceFactory, Service, ServiceFactory};
|
||||||
|
|
||||||
/// Apply transform to a service. Function returns
|
/// Apply transform to a service.
|
||||||
/// services factory that in initialization creates
|
pub fn apply<T, S, U>(t: T, factory: U) -> ApplyTransform<T, S>
|
||||||
/// service and applies transform to this service.
|
|
||||||
pub fn apply<T, S, U>(t: T, service: U) -> ApplyTransform<T, S>
|
|
||||||
where
|
where
|
||||||
S: ServiceFactory,
|
S: ServiceFactory,
|
||||||
T: Transform<S::Service, InitError = S::InitError>,
|
T: Transform<S::Service, InitError = S::InitError>,
|
||||||
U: IntoServiceFactory<S>,
|
U: IntoServiceFactory<S>,
|
||||||
{
|
{
|
||||||
ApplyTransform::new(t, service.into_factory())
|
ApplyTransform::new(t, factory.into_factory())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// The `Transform` trait defines the interface of a service factory that wraps inner service
|
||||||
|
/// during construction.
|
||||||
|
///
|
||||||
|
/// Transform(middleware) wraps inner service and runs during
|
||||||
|
/// inbound and/or outbound processing in the request/response lifecycle.
|
||||||
|
/// It may modify request and/or response.
|
||||||
|
///
|
||||||
|
/// For example, timeout transform:
|
||||||
|
///
|
||||||
|
/// ```rust,ignore
|
||||||
|
/// pub struct Timeout<S> {
|
||||||
|
/// service: S,
|
||||||
|
/// timeout: Duration,
|
||||||
|
/// }
|
||||||
|
///
|
||||||
|
/// impl<S> Service for Timeout<S>
|
||||||
|
/// where
|
||||||
|
/// S: Service,
|
||||||
|
/// {
|
||||||
|
/// type Request = S::Request;
|
||||||
|
/// type Response = S::Response;
|
||||||
|
/// type Error = TimeoutError<S::Error>;
|
||||||
|
/// type Future = TimeoutServiceResponse<S>;
|
||||||
|
///
|
||||||
|
/// fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||||
|
/// ready!(self.service.poll_ready(cx)).map_err(TimeoutError::Service)
|
||||||
|
/// }
|
||||||
|
///
|
||||||
|
/// fn call(&mut self, req: S::Request) -> Self::Future {
|
||||||
|
/// TimeoutServiceResponse {
|
||||||
|
/// fut: self.service.call(req),
|
||||||
|
/// sleep: Delay::new(clock::now() + self.timeout),
|
||||||
|
/// }
|
||||||
|
/// }
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// Timeout service in above example is decoupled from underlying service implementation
|
||||||
|
/// and could be applied to any service.
|
||||||
|
///
|
||||||
/// The `Transform` trait defines the interface of a Service factory. `Transform`
|
/// The `Transform` trait defines the interface of a Service factory. `Transform`
|
||||||
/// is often implemented for middleware, defining how to construct a
|
/// is often implemented for middleware, defining how to construct a
|
||||||
/// middleware Service. A Service that is constructed by the factory takes
|
/// middleware Service. A Service that is constructed by the factory takes
|
||||||
/// the Service that follows it during execution as a parameter, assuming
|
/// the Service that follows it during execution as a parameter, assuming
|
||||||
/// ownership of the next Service.
|
/// ownership of the next Service.
|
||||||
|
///
|
||||||
|
/// Factory for `Timeout` middleware from the above example could look like this:
|
||||||
|
///
|
||||||
|
/// ```rust,,ignore
|
||||||
|
/// pub struct TimeoutTransform {
|
||||||
|
/// timeout: Duration,
|
||||||
|
/// }
|
||||||
|
///
|
||||||
|
/// impl<S> Transform<S> for TimeoutTransform<E>
|
||||||
|
/// where
|
||||||
|
/// S: Service,
|
||||||
|
/// {
|
||||||
|
/// type Request = S::Request;
|
||||||
|
/// type Response = S::Response;
|
||||||
|
/// type Error = TimeoutError<S::Error>;
|
||||||
|
/// type InitError = S::Error;
|
||||||
|
/// type Transform = Timeout<S>;
|
||||||
|
/// type Future = Ready<Result<Self::Transform, Self::InitError>>;
|
||||||
|
///
|
||||||
|
/// fn new_transform(&self, service: S) -> Self::Future {
|
||||||
|
/// ok(TimeoutService {
|
||||||
|
/// service,
|
||||||
|
/// timeout: self.timeout,
|
||||||
|
/// })
|
||||||
|
/// }
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
pub trait Transform<S> {
|
pub trait Transform<S> {
|
||||||
/// Requests handled by the service.
|
/// Requests handled by the service.
|
||||||
type Request;
|
type Request;
|
||||||
@@ -41,13 +106,13 @@ pub trait Transform<S> {
|
|||||||
Error = Self::Error,
|
Error = Self::Error,
|
||||||
>;
|
>;
|
||||||
|
|
||||||
/// Errors produced while building a service.
|
/// Errors produced while building a transform service.
|
||||||
type InitError;
|
type InitError;
|
||||||
|
|
||||||
/// The future response value.
|
/// The future response value.
|
||||||
type Future: Future<Output = Result<Self::Transform, Self::InitError>>;
|
type Future: Future<Output = Result<Self::Transform, Self::InitError>>;
|
||||||
|
|
||||||
/// Creates and returns a new Service component, asynchronously
|
/// Creates and returns a new Transform component, asynchronously
|
||||||
fn new_transform(&self, service: S) -> Self::Future;
|
fn new_transform(&self, service: S) -> Self::Future;
|
||||||
|
|
||||||
/// Map this transforms's factory error to a different error,
|
/// Map this transforms's factory error to a different error,
|
||||||
|
@@ -1,5 +1,9 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [1.0.0] - 2019-12-11
|
||||||
|
|
||||||
|
* Update actix-server to 1.0.0
|
||||||
|
|
||||||
## [1.0.0-alpha.3] - 2019-12-07
|
## [1.0.0-alpha.3] - 2019-12-07
|
||||||
|
|
||||||
* Migrate to tokio 0.2
|
* Migrate to tokio 0.2
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-testing"
|
name = "actix-testing"
|
||||||
version = "1.0.0-alpha.3"
|
version = "1.0.0"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix testing utils"
|
description = "Actix testing utils"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
@@ -17,10 +17,10 @@ name = "actix_testing"
|
|||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-rt = "1.0.0-alpha.3"
|
actix-rt = "1.0.0"
|
||||||
actix-macros = "0.1.0-alpha.1"
|
actix-macros = "0.1.0"
|
||||||
actix-server = "1.0.0-alpha.3"
|
actix-server = "1.0.0"
|
||||||
actix-service = "1.0.0-alpha.3"
|
actix-service = "1.0.0"
|
||||||
|
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
net2 = "0.2"
|
net2 = "0.2"
|
||||||
|
@@ -20,12 +20,12 @@ pub use actix_macros::test;
|
|||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
/// ```rust
|
/// ```rust
|
||||||
/// use actix_service::{service_fn};
|
/// use actix_service::fn_service;
|
||||||
/// use actix_testing::TestServer;
|
/// use actix_testing::TestServer;
|
||||||
///
|
///
|
||||||
/// #[actix_rt::main]
|
/// #[actix_rt::main]
|
||||||
/// async fn main() {
|
/// async fn main() {
|
||||||
/// let srv = TestServer::with(|| service_fn(
|
/// let srv = TestServer::with(|| fn_service(
|
||||||
/// |sock| async move {
|
/// |sock| async move {
|
||||||
/// println!("New connection: {:?}", sock);
|
/// println!("New connection: {:?}", sock);
|
||||||
/// Ok::<_, ()>(())
|
/// Ok::<_, ()>(())
|
||||||
|
@@ -1,5 +1,11 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.3.1] - 2019-12-12
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Use parking_lot 0.10
|
||||||
|
|
||||||
## [0.3.0] - 2019-12-02
|
## [0.3.0] - 2019-12-02
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-threadpool"
|
name = "actix-threadpool"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix thread pool for sync code"
|
description = "Actix thread pool for sync code"
|
||||||
keywords = ["actix", "network", "framework", "async", "futures"]
|
keywords = ["actix", "network", "framework", "async", "futures"]
|
||||||
@@ -19,9 +19,9 @@ path = "src/lib.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
futures = "0.3.1"
|
futures-channel = "0.3.1"
|
||||||
parking_lot = "0.9"
|
parking_lot = "0.10"
|
||||||
lazy_static = "1.2"
|
lazy_static = "1.3"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
num_cpus = "1.10"
|
num_cpus = "1.10"
|
||||||
threadpool = "1.7"
|
threadpool = "1.7"
|
||||||
|
@@ -6,7 +6,7 @@ use std::pin::Pin;
|
|||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
|
|
||||||
use derive_more::Display;
|
use derive_more::Display;
|
||||||
use futures::channel::oneshot;
|
use futures_channel::oneshot;
|
||||||
use parking_lot::Mutex;
|
use parking_lot::Mutex;
|
||||||
use threadpool::ThreadPool;
|
use threadpool::ThreadPool;
|
||||||
|
|
||||||
@@ -79,9 +79,12 @@ impl<I, E: fmt::Debug> Future for CpuFuture<I, E> {
|
|||||||
|
|
||||||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||||
let rx = Pin::new(&mut self.rx);
|
let rx = Pin::new(&mut self.rx);
|
||||||
let res = futures::ready!(rx.poll(cx))
|
let res = match rx.poll(cx) {
|
||||||
.map_err(|_| BlockingError::Canceled)
|
Poll::Pending => return Poll::Pending,
|
||||||
.and_then(|res| res.map_err(BlockingError::Error));
|
Poll::Ready(res) => res
|
||||||
|
.map_err(|_| BlockingError::Canceled)
|
||||||
|
.and_then(|res| res.map_err(BlockingError::Error)),
|
||||||
|
};
|
||||||
Poll::Ready(res)
|
Poll::Ready(res)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,10 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
[1.0.0-alpha.3] - 2019-12-07
|
## [1.0.0] - 2019-12-11
|
||||||
|
|
||||||
|
* 1.0.0 release
|
||||||
|
|
||||||
|
## [1.0.0-alpha.3] - 2019-12-07
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-tls"
|
name = "actix-tls"
|
||||||
version = "1.0.0-alpha.3"
|
version = "1.0.0"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix tls services"
|
description = "Actix tls services"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
@@ -32,10 +32,10 @@ rustls = ["rust-tls", "webpki", "webpki-roots", "tokio-rustls"]
|
|||||||
nativetls = ["native-tls", "tokio-tls"]
|
nativetls = ["native-tls", "tokio-tls"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "1.0.0-alpha.3"
|
actix-service = "1.0.0"
|
||||||
actix-codec = "0.2.0-alpha.3"
|
actix-codec = "0.2.0"
|
||||||
actix-utils = "1.0.0-alpha.3"
|
actix-utils = "1.0.0"
|
||||||
actix-rt = "1.0.0-alpha.3"
|
actix-rt = "1.0.0"
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
either = "1.5.2"
|
either = "1.5.2"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
@@ -57,4 +57,4 @@ tokio-tls = { version="0.3", optional = true }
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bytes = "0.5"
|
bytes = "0.5"
|
||||||
actix-testing = { version="1.0.0-alpha.3" }
|
actix-testing = { version="1.0.0" }
|
||||||
|
@@ -3,7 +3,7 @@ use std::marker::PhantomData;
|
|||||||
use std::pin::Pin;
|
use std::pin::Pin;
|
||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
|
|
||||||
pub use open_ssl::ssl::{SslAcceptor, SslAcceptorBuilder};
|
pub use open_ssl::ssl::{AlpnError, SslAcceptor, SslAcceptorBuilder};
|
||||||
pub use tokio_openssl::{HandshakeError, SslStream};
|
pub use tokio_openssl::{HandshakeError, SslStream};
|
||||||
|
|
||||||
use actix_codec::{AsyncRead, AsyncWrite};
|
use actix_codec::{AsyncRead, AsyncWrite};
|
||||||
@@ -88,7 +88,7 @@ impl<T: AsyncRead + AsyncWrite + Unpin + 'static> Service for AcceptorService<T>
|
|||||||
let acc = acc;
|
let acc = acc;
|
||||||
tokio_openssl::accept(&acc, req).await
|
tokio_openssl::accept(&acc, req).await
|
||||||
}
|
}
|
||||||
.boxed_local(),
|
.boxed_local(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,27 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [1.0.4] - 2019-12-20
|
||||||
|
|
||||||
|
* Add methods to check `LocalWaker` registration state.
|
||||||
|
|
||||||
|
## [1.0.3] - 2019-12-11
|
||||||
|
|
||||||
|
* Revert InOrder service changes
|
||||||
|
|
||||||
|
## [1.0.2] - 2019-12-11
|
||||||
|
|
||||||
|
* Allow to create `framed::Dispatcher` with custom `mpsc::Receiver`
|
||||||
|
|
||||||
|
* Add `oneshot::Sender::is_canceled()` method
|
||||||
|
|
||||||
|
## [1.0.1] - 2019-12-11
|
||||||
|
|
||||||
|
* Optimize InOrder service
|
||||||
|
|
||||||
|
## [1.0.0] - 2019-12-11
|
||||||
|
|
||||||
|
* Simplify oneshot and mpsc implementations
|
||||||
|
|
||||||
## [1.0.0-alpha.3] - 2019-12-07
|
## [1.0.0-alpha.3] - 2019-12-07
|
||||||
|
|
||||||
* Migrate to tokio 0.2
|
* Migrate to tokio 0.2
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-utils"
|
name = "actix-utils"
|
||||||
version = "1.0.0-alpha.3"
|
version = "1.0.4"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix utils - various actix net related services"
|
description = "Actix utils - various actix net related services"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
@@ -9,20 +9,18 @@ repository = "https://github.com/actix/actix-net.git"
|
|||||||
documentation = "https://docs.rs/actix-utils/"
|
documentation = "https://docs.rs/actix-utils/"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
workspace = ".."
|
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "actix_utils"
|
name = "actix_utils"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-service = "1.0.0-alpha.3"
|
actix-service = "1.0.0"
|
||||||
actix-rt = "1.0.0-alpha.3"
|
actix-rt = "1.0.0"
|
||||||
actix-codec = "0.2.0-alpha.3"
|
actix-codec = "0.2.0"
|
||||||
bytes = "0.5.2"
|
bytes = "0.5.3"
|
||||||
either = "1.5.2"
|
either = "1.5.3"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
pin-project = "0.4.6"
|
pin-project = "0.4.6"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
@@ -2,16 +2,12 @@
|
|||||||
|
|
||||||
use std::cell::UnsafeCell;
|
use std::cell::UnsafeCell;
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::rc::{Rc, Weak};
|
use std::rc::Rc;
|
||||||
|
|
||||||
pub(crate) struct Cell<T> {
|
pub(crate) struct Cell<T> {
|
||||||
pub(crate) inner: Rc<UnsafeCell<T>>,
|
pub(crate) inner: Rc<UnsafeCell<T>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) struct WeakCell<T> {
|
|
||||||
inner: Weak<UnsafeCell<T>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> Clone for Cell<T> {
|
impl<T> Clone for Cell<T> {
|
||||||
fn clone(&self) -> Self {
|
fn clone(&self) -> Self {
|
||||||
Self {
|
Self {
|
||||||
@@ -27,39 +23,26 @@ impl<T: fmt::Debug> fmt::Debug for Cell<T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Cell<T> {
|
impl<T> Cell<T> {
|
||||||
pub fn new(inner: T) -> Self {
|
pub(crate) fn new(inner: T) -> Self {
|
||||||
Self {
|
Self {
|
||||||
inner: Rc::new(UnsafeCell::new(inner)),
|
inner: Rc::new(UnsafeCell::new(inner)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn downgrade(&self) -> WeakCell<T> {
|
pub(crate) fn strong_count(&self) -> usize {
|
||||||
WeakCell {
|
Rc::strong_count(&self.inner)
|
||||||
inner: Rc::downgrade(&self.inner),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_ref(&self) -> &T {
|
pub(crate) fn get_ref(&self) -> &T {
|
||||||
unsafe { &*self.inner.as_ref().get() }
|
unsafe { &*self.inner.as_ref().get() }
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_mut(&mut self) -> &mut T {
|
pub(crate) fn get_mut(&mut self) -> &mut T {
|
||||||
unsafe { &mut *self.inner.as_ref().get() }
|
unsafe { &mut *self.inner.as_ref().get() }
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> WeakCell<T> {
|
#[allow(clippy::mut_from_ref)]
|
||||||
pub fn upgrade(&self) -> Option<Cell<T>> {
|
pub(crate) unsafe fn get_mut_unsafe(&self) -> &mut T {
|
||||||
if let Some(inner) = self.inner.upgrade() {
|
&mut *self.inner.as_ref().get()
|
||||||
Some(Cell { inner })
|
|
||||||
} else {
|
|
||||||
None
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T: fmt::Debug> fmt::Debug for WeakCell<T> {
|
|
||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
||||||
self.inner.fmt(f)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,37 +1,33 @@
|
|||||||
//! Framed dispatcher service and related utilities
|
//! Framed dispatcher service and related utilities
|
||||||
#![allow(type_alias_bounds)]
|
#![allow(type_alias_bounds)]
|
||||||
use std::collections::VecDeque;
|
|
||||||
use std::pin::Pin;
|
use std::pin::Pin;
|
||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
use std::{fmt, mem};
|
use std::{fmt, mem};
|
||||||
|
|
||||||
use actix_codec::{AsyncRead, AsyncWrite, Decoder, Encoder, Framed};
|
use actix_codec::{AsyncRead, AsyncWrite, Decoder, Encoder, Framed};
|
||||||
use actix_service::{IntoService, Service};
|
use actix_service::{IntoService, Service};
|
||||||
use futures::future::{ready, FutureExt};
|
use futures::{Future, FutureExt, Stream};
|
||||||
use futures::{Future, Sink, Stream};
|
|
||||||
use log::debug;
|
use log::debug;
|
||||||
|
|
||||||
use crate::cell::Cell;
|
|
||||||
use crate::mpsc;
|
use crate::mpsc;
|
||||||
use crate::task::LocalWaker;
|
|
||||||
|
|
||||||
type Request<U> = <U as Decoder>::Item;
|
type Request<U> = <U as Decoder>::Item;
|
||||||
type Response<U> = <U as Encoder>::Item;
|
type Response<U> = <U as Encoder>::Item;
|
||||||
|
|
||||||
/// Framed transport errors
|
/// Framed transport errors
|
||||||
pub enum FramedTransportError<E, U: Encoder + Decoder> {
|
pub enum DispatcherError<E, U: Encoder + Decoder> {
|
||||||
Service(E),
|
Service(E),
|
||||||
Encoder(<U as Encoder>::Error),
|
Encoder(<U as Encoder>::Error),
|
||||||
Decoder(<U as Decoder>::Error),
|
Decoder(<U as Decoder>::Error),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<E, U: Encoder + Decoder> From<E> for FramedTransportError<E, U> {
|
impl<E, U: Encoder + Decoder> From<E> for DispatcherError<E, U> {
|
||||||
fn from(err: E) -> Self {
|
fn from(err: E) -> Self {
|
||||||
FramedTransportError::Service(err)
|
DispatcherError::Service(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<E, U: Encoder + Decoder> fmt::Debug for FramedTransportError<E, U>
|
impl<E, U: Encoder + Decoder> fmt::Debug for DispatcherError<E, U>
|
||||||
where
|
where
|
||||||
E: fmt::Debug,
|
E: fmt::Debug,
|
||||||
<U as Encoder>::Error: fmt::Debug,
|
<U as Encoder>::Error: fmt::Debug,
|
||||||
@@ -39,20 +35,14 @@ where
|
|||||||
{
|
{
|
||||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
match *self {
|
match *self {
|
||||||
FramedTransportError::Service(ref e) => {
|
DispatcherError::Service(ref e) => write!(fmt, "DispatcherError::Service({:?})", e),
|
||||||
write!(fmt, "FramedTransportError::Service({:?})", e)
|
DispatcherError::Encoder(ref e) => write!(fmt, "DispatcherError::Encoder({:?})", e),
|
||||||
}
|
DispatcherError::Decoder(ref e) => write!(fmt, "DispatcherError::Decoder({:?})", e),
|
||||||
FramedTransportError::Encoder(ref e) => {
|
|
||||||
write!(fmt, "FramedTransportError::Encoder({:?})", e)
|
|
||||||
}
|
|
||||||
FramedTransportError::Decoder(ref e) => {
|
|
||||||
write!(fmt, "FramedTransportError::Encoder({:?})", e)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<E, U: Encoder + Decoder> fmt::Display for FramedTransportError<E, U>
|
impl<E, U: Encoder + Decoder> fmt::Display for DispatcherError<E, U>
|
||||||
where
|
where
|
||||||
E: fmt::Display,
|
E: fmt::Display,
|
||||||
<U as Encoder>::Error: fmt::Debug,
|
<U as Encoder>::Error: fmt::Debug,
|
||||||
@@ -60,25 +50,22 @@ where
|
|||||||
{
|
{
|
||||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
match *self {
|
match *self {
|
||||||
FramedTransportError::Service(ref e) => write!(fmt, "{}", e),
|
DispatcherError::Service(ref e) => write!(fmt, "{}", e),
|
||||||
FramedTransportError::Encoder(ref e) => write!(fmt, "{:?}", e),
|
DispatcherError::Encoder(ref e) => write!(fmt, "{:?}", e),
|
||||||
FramedTransportError::Decoder(ref e) => write!(fmt, "{:?}", e),
|
DispatcherError::Decoder(ref e) => write!(fmt, "{:?}", e),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum FramedMessage<T> {
|
pub enum Message<T> {
|
||||||
Message(T),
|
Item(T),
|
||||||
Close,
|
Close,
|
||||||
}
|
}
|
||||||
|
|
||||||
type Rx<U> = Option<mpsc::Receiver<FramedMessage<<U as Encoder>::Item>>>;
|
|
||||||
type Inner<S: Service, U> = Cell<FramedTransportInner<<U as Encoder>::Item, S::Error>>;
|
|
||||||
|
|
||||||
/// FramedTransport - is a future that reads frames from Framed object
|
/// FramedTransport - is a future that reads frames from Framed object
|
||||||
/// and pass then to the service.
|
/// and pass then to the service.
|
||||||
#[pin_project::pin_project]
|
#[pin_project::pin_project]
|
||||||
pub struct FramedTransport<S, T, U>
|
pub struct Dispatcher<S, T, U>
|
||||||
where
|
where
|
||||||
S: Service<Request = Request<U>, Response = Response<U>>,
|
S: Service<Request = Request<U>, Response = Response<U>>,
|
||||||
S::Error: 'static,
|
S::Error: 'static,
|
||||||
@@ -89,26 +76,37 @@ where
|
|||||||
<U as Encoder>::Error: std::fmt::Debug,
|
<U as Encoder>::Error: std::fmt::Debug,
|
||||||
{
|
{
|
||||||
service: S,
|
service: S,
|
||||||
state: TransportState<S, U>,
|
state: State<S, U>,
|
||||||
framed: Framed<T, U>,
|
framed: Framed<T, U>,
|
||||||
rx: Option<mpsc::Receiver<FramedMessage<<U as Encoder>::Item>>>,
|
rx: mpsc::Receiver<Result<Message<<U as Encoder>::Item>, S::Error>>,
|
||||||
inner: Cell<FramedTransportInner<<U as Encoder>::Item, S::Error>>,
|
tx: mpsc::Sender<Result<Message<<U as Encoder>::Item>, S::Error>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
enum TransportState<S: Service, U: Encoder + Decoder> {
|
enum State<S: Service, U: Encoder + Decoder> {
|
||||||
Processing,
|
Processing,
|
||||||
Error(FramedTransportError<S::Error, U>),
|
Error(DispatcherError<S::Error, U>),
|
||||||
FramedError(FramedTransportError<S::Error, U>),
|
FramedError(DispatcherError<S::Error, U>),
|
||||||
FlushAndStop,
|
FlushAndStop,
|
||||||
Stopping,
|
Stopping,
|
||||||
}
|
}
|
||||||
|
|
||||||
struct FramedTransportInner<I, E> {
|
impl<S: Service, U: Encoder + Decoder> State<S, U> {
|
||||||
buf: VecDeque<Result<I, E>>,
|
fn take_error(&mut self) -> DispatcherError<S::Error, U> {
|
||||||
task: LocalWaker,
|
match mem::replace(self, State::Processing) {
|
||||||
|
State::Error(err) => err,
|
||||||
|
_ => panic!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn take_framed_error(&mut self) -> DispatcherError<S::Error, U> {
|
||||||
|
match mem::replace(self, State::Processing) {
|
||||||
|
State::FramedError(err) => err,
|
||||||
|
_ => panic!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<S, T, U> FramedTransport<S, T, U>
|
impl<S, T, U> Dispatcher<S, T, U>
|
||||||
where
|
where
|
||||||
S: Service<Request = Request<U>, Response = Response<U>>,
|
S: Service<Request = Request<U>, Response = Response<U>>,
|
||||||
S::Error: 'static,
|
S::Error: 'static,
|
||||||
@@ -119,52 +117,150 @@ where
|
|||||||
<U as Encoder>::Error: std::fmt::Debug,
|
<U as Encoder>::Error: std::fmt::Debug,
|
||||||
{
|
{
|
||||||
pub fn new<F: IntoService<S>>(framed: Framed<T, U>, service: F) -> Self {
|
pub fn new<F: IntoService<S>>(framed: Framed<T, U>, service: F) -> Self {
|
||||||
FramedTransport {
|
let (tx, rx) = mpsc::channel();
|
||||||
|
Dispatcher {
|
||||||
framed,
|
framed,
|
||||||
rx: None,
|
rx,
|
||||||
|
tx,
|
||||||
service: service.into_service(),
|
service: service.into_service(),
|
||||||
state: TransportState::Processing,
|
state: State::Processing,
|
||||||
inner: Cell::new(FramedTransportInner {
|
|
||||||
buf: VecDeque::new(),
|
|
||||||
task: LocalWaker::new(),
|
|
||||||
}),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get Sender
|
/// Construct new `Dispatcher` instance with customer `mpsc::Receiver`
|
||||||
pub fn set_receiver(
|
pub fn with_rx<F: IntoService<S>>(
|
||||||
mut self,
|
framed: Framed<T, U>,
|
||||||
rx: mpsc::Receiver<FramedMessage<<U as Encoder>::Item>>,
|
service: F,
|
||||||
|
rx: mpsc::Receiver<Result<Message<<U as Encoder>::Item>, S::Error>>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
self.rx = Some(rx);
|
let tx = rx.sender();
|
||||||
self
|
Dispatcher {
|
||||||
|
framed,
|
||||||
|
rx,
|
||||||
|
tx,
|
||||||
|
service: service.into_service(),
|
||||||
|
state: State::Processing,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get reference to a service wrapped by `FramedTransport` instance.
|
/// Get sink
|
||||||
|
pub fn get_sink(&self) -> mpsc::Sender<Result<Message<<U as Encoder>::Item>, S::Error>> {
|
||||||
|
self.tx.clone()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Get reference to a service wrapped by `Dispatcher` instance.
|
||||||
pub fn get_ref(&self) -> &S {
|
pub fn get_ref(&self) -> &S {
|
||||||
&self.service
|
&self.service
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get mutable reference to a service wrapped by `FramedTransport`
|
/// Get mutable reference to a service wrapped by `Dispatcher` instance.
|
||||||
/// instance.
|
|
||||||
pub fn get_mut(&mut self) -> &mut S {
|
pub fn get_mut(&mut self) -> &mut S {
|
||||||
&mut self.service
|
&mut self.service
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get reference to a framed instance wrapped by `FramedTransport`
|
/// Get reference to a framed instance wrapped by `Dispatcher`
|
||||||
/// instance.
|
/// instance.
|
||||||
pub fn get_framed(&self) -> &Framed<T, U> {
|
pub fn get_framed(&self) -> &Framed<T, U> {
|
||||||
&self.framed
|
&self.framed
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get mutable reference to a framed instance wrapped by `FramedTransport`
|
/// Get mutable reference to a framed instance wrapped by `Dispatcher` instance.
|
||||||
/// instance.
|
|
||||||
pub fn get_framed_mut(&mut self) -> &mut Framed<T, U> {
|
pub fn get_framed_mut(&mut self) -> &mut Framed<T, U> {
|
||||||
&mut self.framed
|
&mut self.framed
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn poll_read(&mut self, cx: &mut Context<'_>) -> bool
|
||||||
|
where
|
||||||
|
S: Service<Request = Request<U>, Response = Response<U>>,
|
||||||
|
S::Error: 'static,
|
||||||
|
S::Future: 'static,
|
||||||
|
T: AsyncRead + AsyncWrite,
|
||||||
|
U: Decoder + Encoder,
|
||||||
|
<U as Encoder>::Item: 'static,
|
||||||
|
<U as Encoder>::Error: std::fmt::Debug,
|
||||||
|
{
|
||||||
|
loop {
|
||||||
|
match self.service.poll_ready(cx) {
|
||||||
|
Poll::Ready(Ok(_)) => {
|
||||||
|
let item = match self.framed.next_item(cx) {
|
||||||
|
Poll::Ready(Some(Ok(el))) => el,
|
||||||
|
Poll::Ready(Some(Err(err))) => {
|
||||||
|
self.state = State::FramedError(DispatcherError::Decoder(err));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
Poll::Pending => return false,
|
||||||
|
Poll::Ready(None) => {
|
||||||
|
self.state = State::Stopping;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let tx = self.tx.clone();
|
||||||
|
actix_rt::spawn(self.service.call(item).map(move |item| {
|
||||||
|
let _ = tx.send(item.map(Message::Item));
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
Poll::Pending => return false,
|
||||||
|
Poll::Ready(Err(err)) => {
|
||||||
|
self.state = State::Error(DispatcherError::Service(err));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// write to framed object
|
||||||
|
fn poll_write(&mut self, cx: &mut Context<'_>) -> bool
|
||||||
|
where
|
||||||
|
S: Service<Request = Request<U>, Response = Response<U>>,
|
||||||
|
S::Error: 'static,
|
||||||
|
S::Future: 'static,
|
||||||
|
T: AsyncRead + AsyncWrite,
|
||||||
|
U: Decoder + Encoder,
|
||||||
|
<U as Encoder>::Item: 'static,
|
||||||
|
<U as Encoder>::Error: std::fmt::Debug,
|
||||||
|
{
|
||||||
|
loop {
|
||||||
|
while !self.framed.is_write_buf_full() {
|
||||||
|
match Pin::new(&mut self.rx).poll_next(cx) {
|
||||||
|
Poll::Ready(Some(Ok(Message::Item(msg)))) => {
|
||||||
|
if let Err(err) = self.framed.write(msg) {
|
||||||
|
self.state = State::FramedError(DispatcherError::Encoder(err));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Poll::Ready(Some(Ok(Message::Close))) => {
|
||||||
|
self.state = State::FlushAndStop;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
Poll::Ready(Some(Err(err))) => {
|
||||||
|
self.state = State::Error(DispatcherError::Service(err));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
Poll::Ready(None) | Poll::Pending => break,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !self.framed.is_write_buf_empty() {
|
||||||
|
match self.framed.flush(cx) {
|
||||||
|
Poll::Pending => break,
|
||||||
|
Poll::Ready(Ok(_)) => (),
|
||||||
|
Poll::Ready(Err(err)) => {
|
||||||
|
debug!("Error sending data: {:?}", err);
|
||||||
|
self.state = State::FramedError(DispatcherError::Encoder(err));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<S, T, U> Future for FramedTransport<S, T, U>
|
impl<S, T, U> Future for Dispatcher<S, T, U>
|
||||||
where
|
where
|
||||||
S: Service<Request = Request<U>, Response = Response<U>>,
|
S: Service<Request = Request<U>, Response = Response<U>>,
|
||||||
S::Error: 'static,
|
S::Error: 'static,
|
||||||
@@ -175,210 +271,46 @@ where
|
|||||||
<U as Encoder>::Error: std::fmt::Debug,
|
<U as Encoder>::Error: std::fmt::Debug,
|
||||||
<U as Decoder>::Error: std::fmt::Debug,
|
<U as Decoder>::Error: std::fmt::Debug,
|
||||||
{
|
{
|
||||||
type Output = Result<(), FramedTransportError<S::Error, U>>;
|
type Output = Result<(), DispatcherError<S::Error, U>>;
|
||||||
|
|
||||||
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||||
self.inner.get_ref().task.register(cx.waker());
|
loop {
|
||||||
|
let this = self.as_mut().project();
|
||||||
|
|
||||||
let this = self.project();
|
return match this.state {
|
||||||
poll(
|
State::Processing => {
|
||||||
cx,
|
if self.poll_read(cx) || self.poll_write(cx) {
|
||||||
this.service,
|
continue;
|
||||||
this.state,
|
} else {
|
||||||
this.framed,
|
Poll::Pending
|
||||||
this.rx,
|
}
|
||||||
this.inner,
|
}
|
||||||
)
|
State::Error(_) => {
|
||||||
}
|
// flush write buffer
|
||||||
}
|
if !self.framed.is_write_buf_empty() {
|
||||||
|
if let Poll::Pending = self.framed.flush(cx) {
|
||||||
fn poll<S, T, U>(
|
return Poll::Pending;
|
||||||
cx: &mut Context<'_>,
|
}
|
||||||
srv: &mut S,
|
}
|
||||||
state: &mut TransportState<S, U>,
|
Poll::Ready(Err(self.state.take_error()))
|
||||||
framed: &mut Framed<T, U>,
|
}
|
||||||
rx: &mut Rx<U>,
|
State::FlushAndStop => {
|
||||||
inner: &mut Inner<S, U>,
|
if !this.framed.is_write_buf_empty() {
|
||||||
) -> Poll<Result<(), FramedTransportError<S::Error, U>>>
|
match this.framed.flush(cx) {
|
||||||
where
|
Poll::Ready(Err(err)) => {
|
||||||
S: Service<Request = Request<U>, Response = Response<U>>,
|
debug!("Error sending data: {:?}", err);
|
||||||
S::Error: 'static,
|
Poll::Ready(Ok(()))
|
||||||
S::Future: 'static,
|
}
|
||||||
T: AsyncRead + AsyncWrite,
|
Poll::Pending => Poll::Pending,
|
||||||
U: Decoder + Encoder,
|
Poll::Ready(Ok(_)) => Poll::Ready(Ok(())),
|
||||||
<U as Encoder>::Item: 'static,
|
}
|
||||||
<U as Encoder>::Error: std::fmt::Debug,
|
} else {
|
||||||
{
|
|
||||||
match mem::replace(state, TransportState::Processing) {
|
|
||||||
TransportState::Processing => {
|
|
||||||
if poll_read(cx, srv, state, framed, inner)
|
|
||||||
|| poll_write(cx, state, framed, rx, inner)
|
|
||||||
{
|
|
||||||
poll(cx, srv, state, framed, rx, inner)
|
|
||||||
} else {
|
|
||||||
Poll::Pending
|
|
||||||
}
|
|
||||||
}
|
|
||||||
TransportState::Error(err) => {
|
|
||||||
let is_empty = framed.is_write_buf_empty();
|
|
||||||
if is_empty || poll_write(cx, state, framed, rx, inner) {
|
|
||||||
Poll::Ready(Err(err))
|
|
||||||
} else {
|
|
||||||
*state = TransportState::Error(err);
|
|
||||||
Poll::Pending
|
|
||||||
}
|
|
||||||
}
|
|
||||||
TransportState::FlushAndStop => {
|
|
||||||
if !framed.is_write_buf_empty() {
|
|
||||||
match Pin::new(framed).poll_flush(cx) {
|
|
||||||
Poll::Ready(Err(err)) => {
|
|
||||||
debug!("Error sending data: {:?}", err);
|
|
||||||
Poll::Ready(Ok(()))
|
Poll::Ready(Ok(()))
|
||||||
}
|
}
|
||||||
Poll::Pending => Poll::Pending,
|
|
||||||
Poll::Ready(Ok(_)) => Poll::Ready(Ok(())),
|
|
||||||
}
|
}
|
||||||
} else {
|
State::FramedError(_) => Poll::Ready(Err(this.state.take_framed_error())),
|
||||||
Poll::Ready(Ok(()))
|
State::Stopping => Poll::Ready(Ok(())),
|
||||||
}
|
};
|
||||||
}
|
|
||||||
TransportState::FramedError(err) => Poll::Ready(Err(err)),
|
|
||||||
TransportState::Stopping => Poll::Ready(Ok(())),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn poll_read<S, T, U>(
|
|
||||||
cx: &mut Context<'_>,
|
|
||||||
srv: &mut S,
|
|
||||||
state: &mut TransportState<S, U>,
|
|
||||||
framed: &mut Framed<T, U>,
|
|
||||||
inner: &mut Inner<S, U>,
|
|
||||||
) -> bool
|
|
||||||
where
|
|
||||||
S: Service<Request = Request<U>, Response = Response<U>>,
|
|
||||||
S::Error: 'static,
|
|
||||||
S::Future: 'static,
|
|
||||||
T: AsyncRead + AsyncWrite,
|
|
||||||
U: Decoder + Encoder,
|
|
||||||
<U as Encoder>::Item: 'static,
|
|
||||||
<U as Encoder>::Error: std::fmt::Debug,
|
|
||||||
{
|
|
||||||
loop {
|
|
||||||
match srv.poll_ready(cx) {
|
|
||||||
Poll::Ready(Ok(_)) => {
|
|
||||||
let item = match framed.next_item(cx) {
|
|
||||||
Poll::Ready(Some(Ok(el))) => el,
|
|
||||||
Poll::Ready(Some(Err(err))) => {
|
|
||||||
*state =
|
|
||||||
TransportState::FramedError(FramedTransportError::Decoder(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
Poll::Pending => return false,
|
|
||||||
Poll::Ready(None) => {
|
|
||||||
*state = TransportState::Stopping;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
let mut cell = inner.clone();
|
|
||||||
let fut = srv.call(item).then(move |item| {
|
|
||||||
let inner = cell.get_mut();
|
|
||||||
inner.buf.push_back(item);
|
|
||||||
inner.task.wake();
|
|
||||||
ready(())
|
|
||||||
});
|
|
||||||
actix_rt::spawn(fut);
|
|
||||||
}
|
|
||||||
Poll::Pending => return false,
|
|
||||||
Poll::Ready(Err(err)) => {
|
|
||||||
*state = TransportState::Error(FramedTransportError::Service(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// write to framed object
|
|
||||||
fn poll_write<S, T, U>(
|
|
||||||
cx: &mut Context<'_>,
|
|
||||||
state: &mut TransportState<S, U>,
|
|
||||||
framed: &mut Framed<T, U>,
|
|
||||||
rx: &mut Rx<U>,
|
|
||||||
inner: &mut Inner<S, U>,
|
|
||||||
) -> bool
|
|
||||||
where
|
|
||||||
S: Service<Request = Request<U>, Response = Response<U>>,
|
|
||||||
S::Error: 'static,
|
|
||||||
S::Future: 'static,
|
|
||||||
T: AsyncRead + AsyncWrite,
|
|
||||||
U: Decoder + Encoder,
|
|
||||||
<U as Encoder>::Item: 'static,
|
|
||||||
<U as Encoder>::Error: std::fmt::Debug,
|
|
||||||
{
|
|
||||||
// let this = self.project();
|
|
||||||
|
|
||||||
let inner = inner.get_mut();
|
|
||||||
let mut rx_done = rx.is_none();
|
|
||||||
let mut buf_empty = inner.buf.is_empty();
|
|
||||||
loop {
|
|
||||||
while !framed.is_write_buf_full() {
|
|
||||||
if !buf_empty {
|
|
||||||
match inner.buf.pop_front().unwrap() {
|
|
||||||
Ok(msg) => {
|
|
||||||
if let Err(err) = framed.write(msg) {
|
|
||||||
*state =
|
|
||||||
TransportState::FramedError(FramedTransportError::Encoder(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
buf_empty = inner.buf.is_empty();
|
|
||||||
}
|
|
||||||
Err(err) => {
|
|
||||||
*state = TransportState::Error(FramedTransportError::Service(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if !rx_done && rx.is_some() {
|
|
||||||
match Pin::new(rx.as_mut().unwrap()).poll_next(cx) {
|
|
||||||
Poll::Ready(Some(FramedMessage::Message(msg))) => {
|
|
||||||
if let Err(err) = framed.write(msg) {
|
|
||||||
*state =
|
|
||||||
TransportState::FramedError(FramedTransportError::Encoder(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Poll::Ready(Some(FramedMessage::Close)) => {
|
|
||||||
*state = TransportState::FlushAndStop;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
Poll::Ready(None) => {
|
|
||||||
rx_done = true;
|
|
||||||
let _ = rx.take();
|
|
||||||
}
|
|
||||||
Poll::Pending => rx_done = true,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if rx_done && buf_empty {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if !framed.is_write_buf_empty() {
|
|
||||||
match framed.flush(cx) {
|
|
||||||
Poll::Pending => break,
|
|
||||||
Poll::Ready(Err(err)) => {
|
|
||||||
debug!("Error sending data: {:?}", err);
|
|
||||||
*state = TransportState::FramedError(FramedTransportError::Encoder(err));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
Poll::Ready(Ok(_)) => (),
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
false
|
|
||||||
}
|
|
||||||
|
@@ -115,7 +115,7 @@ mod tests {
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
use actix_service::{apply, factory_fn, Service, ServiceFactory};
|
use actix_service::{apply, fn_factory, Service, ServiceFactory};
|
||||||
use futures::future::{lazy, ok, FutureExt, LocalBoxFuture};
|
use futures::future::{lazy, ok, FutureExt, LocalBoxFuture};
|
||||||
|
|
||||||
struct SleepService(Duration);
|
struct SleepService(Duration);
|
||||||
@@ -155,7 +155,7 @@ mod tests {
|
|||||||
async fn test_newtransform() {
|
async fn test_newtransform() {
|
||||||
let wait_time = Duration::from_millis(50);
|
let wait_time = Duration::from_millis(50);
|
||||||
|
|
||||||
let srv = apply(InFlight::new(1), factory_fn(|| ok(SleepService(wait_time))));
|
let srv = apply(InFlight::new(1), fn_factory(|| ok(SleepService(wait_time))));
|
||||||
|
|
||||||
let mut srv = srv.new_service(&()).await.unwrap();
|
let mut srv = srv.new_service(&()).await.unwrap();
|
||||||
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
||||||
|
@@ -1,34 +1,27 @@
|
|||||||
//! A multi-producer, single-consumer, futures-aware, FIFO queue with back
|
//! A multi-producer, single-consumer, futures-aware, FIFO queue.
|
||||||
//! pressure, for use communicating between tasks on the same thread.
|
|
||||||
//!
|
|
||||||
//! These queues are the same as those in `futures::sync`, except they're not
|
|
||||||
//! intended to be sent across threads.
|
|
||||||
|
|
||||||
use std::any::Any;
|
use std::any::Any;
|
||||||
use std::cell::RefCell;
|
|
||||||
use std::collections::VecDeque;
|
use std::collections::VecDeque;
|
||||||
use std::error::Error;
|
use std::error::Error;
|
||||||
|
use std::fmt;
|
||||||
use std::pin::Pin;
|
use std::pin::Pin;
|
||||||
use std::rc::{Rc, Weak};
|
|
||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
use std::{fmt, mem};
|
|
||||||
|
|
||||||
use futures::{Sink, Stream};
|
use futures::{Sink, Stream};
|
||||||
|
|
||||||
|
use crate::cell::Cell;
|
||||||
use crate::task::LocalWaker;
|
use crate::task::LocalWaker;
|
||||||
|
|
||||||
/// Creates a unbounded in-memory channel with buffered storage.
|
/// Creates a unbounded in-memory channel with buffered storage.
|
||||||
pub fn channel<T>() -> (Sender<T>, Receiver<T>) {
|
pub fn channel<T>() -> (Sender<T>, Receiver<T>) {
|
||||||
let shared = Rc::new(RefCell::new(Shared {
|
let shared = Cell::new(Shared {
|
||||||
|
has_receiver: true,
|
||||||
buffer: VecDeque::new(),
|
buffer: VecDeque::new(),
|
||||||
blocked_recv: LocalWaker::new(),
|
blocked_recv: LocalWaker::new(),
|
||||||
}));
|
});
|
||||||
let sender = Sender {
|
let sender = Sender {
|
||||||
shared: Rc::downgrade(&shared),
|
shared: shared.clone(),
|
||||||
};
|
|
||||||
let receiver = Receiver {
|
|
||||||
state: State::Open(shared),
|
|
||||||
};
|
};
|
||||||
|
let receiver = Receiver { shared };
|
||||||
(sender, receiver)
|
(sender, receiver)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,6 +29,7 @@ pub fn channel<T>() -> (Sender<T>, Receiver<T>) {
|
|||||||
struct Shared<T> {
|
struct Shared<T> {
|
||||||
buffer: VecDeque<T>,
|
buffer: VecDeque<T>,
|
||||||
blocked_recv: LocalWaker,
|
blocked_recv: LocalWaker,
|
||||||
|
has_receiver: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The transmission end of a channel.
|
/// The transmission end of a channel.
|
||||||
@@ -43,22 +37,30 @@ struct Shared<T> {
|
|||||||
/// This is created by the `channel` function.
|
/// This is created by the `channel` function.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Sender<T> {
|
pub struct Sender<T> {
|
||||||
shared: Weak<RefCell<Shared<T>>>,
|
shared: Cell<Shared<T>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<T> Unpin for Sender<T> {}
|
||||||
|
|
||||||
impl<T> Sender<T> {
|
impl<T> Sender<T> {
|
||||||
/// Sends the provided message along this channel.
|
/// Sends the provided message along this channel.
|
||||||
pub fn send(&self, item: T) -> Result<(), SendError<T>> {
|
pub fn send(&self, item: T) -> Result<(), SendError<T>> {
|
||||||
let shared = match self.shared.upgrade() {
|
let shared = unsafe { self.shared.get_mut_unsafe() };
|
||||||
Some(shared) => shared,
|
if !shared.has_receiver {
|
||||||
None => return Err(SendError(item)), // receiver was dropped
|
return Err(SendError(item)); // receiver was dropped
|
||||||
};
|
};
|
||||||
let mut shared = shared.borrow_mut();
|
|
||||||
|
|
||||||
shared.buffer.push_back(item);
|
shared.buffer.push_back(item);
|
||||||
shared.blocked_recv.wake();
|
shared.blocked_recv.wake();
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Closes the sender half
|
||||||
|
///
|
||||||
|
/// This prevents any further messages from being sent on the channel while
|
||||||
|
/// still enabling the receiver to drain messages that are buffered.
|
||||||
|
pub fn close(&mut self) {
|
||||||
|
self.shared.get_mut().has_receiver = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Clone for Sender<T> {
|
impl<T> Clone for Sender<T> {
|
||||||
@@ -91,17 +93,13 @@ impl<T> Sink<T> for Sender<T> {
|
|||||||
|
|
||||||
impl<T> Drop for Sender<T> {
|
impl<T> Drop for Sender<T> {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
let shared = match self.shared.upgrade() {
|
let count = self.shared.strong_count();
|
||||||
Some(shared) => shared,
|
let shared = self.shared.get_mut();
|
||||||
None => return,
|
|
||||||
};
|
// check is last sender is about to drop
|
||||||
// The number of existing `Weak` indicates if we are possibly the last
|
if shared.has_receiver && count == 2 {
|
||||||
// `Sender`. If we are the last, we possibly must notify a blocked
|
|
||||||
// `Receiver`. `self.shared` is always one of the `Weak` to this shared
|
|
||||||
// data. Therefore the smallest possible Rc::weak_count(&shared) is 1.
|
|
||||||
if Rc::weak_count(&shared) == 1 {
|
|
||||||
// Wake up receiver as its stream has ended
|
// Wake up receiver as its stream has ended
|
||||||
shared.borrow_mut().blocked_recv.wake();
|
shared.blocked_recv.wake();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -111,56 +109,32 @@ impl<T> Drop for Sender<T> {
|
|||||||
/// This is created by the `channel` function.
|
/// This is created by the `channel` function.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Receiver<T> {
|
pub struct Receiver<T> {
|
||||||
state: State<T>,
|
shared: Cell<Shared<T>>,
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> Unpin for Receiver<T> {}
|
|
||||||
|
|
||||||
/// Possible states of a receiver. We're either Open (can receive more messages)
|
|
||||||
/// or we're closed with a list of messages we have left to receive.
|
|
||||||
#[derive(Debug)]
|
|
||||||
enum State<T> {
|
|
||||||
Open(Rc<RefCell<Shared<T>>>),
|
|
||||||
Closed(VecDeque<T>),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Receiver<T> {
|
impl<T> Receiver<T> {
|
||||||
/// Closes the receiving half
|
/// Create Sender
|
||||||
///
|
pub fn sender(&self) -> Sender<T> {
|
||||||
/// This prevents any further messages from being sent on the channel while
|
Sender {
|
||||||
/// still enabling the receiver to drain messages that are buffered.
|
shared: self.shared.clone(),
|
||||||
pub fn close(&mut self) {
|
}
|
||||||
let items = match self.state {
|
|
||||||
State::Open(ref state) => {
|
|
||||||
let mut state = state.borrow_mut();
|
|
||||||
mem::replace(&mut state.buffer, VecDeque::new())
|
|
||||||
}
|
|
||||||
State::Closed(_) => return,
|
|
||||||
};
|
|
||||||
self.state = State::Closed(items);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<T> Unpin for Receiver<T> {}
|
||||||
|
|
||||||
impl<T> Stream for Receiver<T> {
|
impl<T> Stream for Receiver<T> {
|
||||||
type Item = T;
|
type Item = T;
|
||||||
|
|
||||||
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
|
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
|
||||||
let me = match self.state {
|
if self.shared.strong_count() == 1 {
|
||||||
State::Open(ref mut me) => me,
|
|
||||||
State::Closed(ref mut items) => return Poll::Ready(items.pop_front()),
|
|
||||||
};
|
|
||||||
|
|
||||||
if let Some(shared) = Rc::get_mut(me) {
|
|
||||||
// All senders have been dropped, so drain the buffer and end the
|
// All senders have been dropped, so drain the buffer and end the
|
||||||
// stream.
|
// stream.
|
||||||
return Poll::Ready(shared.borrow_mut().buffer.pop_front());
|
Poll::Ready(self.shared.get_mut().buffer.pop_front())
|
||||||
}
|
} else if let Some(msg) = self.shared.get_mut().buffer.pop_front() {
|
||||||
|
|
||||||
let mut shared = me.borrow_mut();
|
|
||||||
if let Some(msg) = shared.buffer.pop_front() {
|
|
||||||
Poll::Ready(Some(msg))
|
Poll::Ready(Some(msg))
|
||||||
} else {
|
} else {
|
||||||
shared.blocked_recv.register(cx.waker());
|
self.shared.get_mut().blocked_recv.register(cx.waker());
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -168,7 +142,9 @@ impl<T> Stream for Receiver<T> {
|
|||||||
|
|
||||||
impl<T> Drop for Receiver<T> {
|
impl<T> Drop for Receiver<T> {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
self.close();
|
let shared = self.shared.get_mut();
|
||||||
|
shared.buffer.clear();
|
||||||
|
shared.has_receiver = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -200,3 +176,44 @@ impl<T> SendError<T> {
|
|||||||
self.0
|
self.0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
use futures::future::lazy;
|
||||||
|
use futures::{Stream, StreamExt};
|
||||||
|
|
||||||
|
#[actix_rt::test]
|
||||||
|
async fn test_mpsc() {
|
||||||
|
let (tx, mut rx) = channel();
|
||||||
|
tx.send("test").unwrap();
|
||||||
|
assert_eq!(rx.next().await.unwrap(), "test");
|
||||||
|
|
||||||
|
let tx2 = tx.clone();
|
||||||
|
tx2.send("test2").unwrap();
|
||||||
|
assert_eq!(rx.next().await.unwrap(), "test2");
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
lazy(|cx| Pin::new(&mut rx).poll_next(cx)).await,
|
||||||
|
Poll::Pending
|
||||||
|
);
|
||||||
|
drop(tx2);
|
||||||
|
assert_eq!(
|
||||||
|
lazy(|cx| Pin::new(&mut rx).poll_next(cx)).await,
|
||||||
|
Poll::Pending
|
||||||
|
);
|
||||||
|
drop(tx);
|
||||||
|
assert_eq!(rx.next().await, None);
|
||||||
|
|
||||||
|
let (tx, rx) = channel();
|
||||||
|
tx.send("test").unwrap();
|
||||||
|
drop(rx);
|
||||||
|
assert!(tx.send("test").is_err());
|
||||||
|
|
||||||
|
let (mut tx, _) = channel();
|
||||||
|
let tx2 = tx.clone();
|
||||||
|
tx.close();
|
||||||
|
assert!(tx.send("test").is_err());
|
||||||
|
assert!(tx2.send("test").is_err());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@@ -1,69 +1,45 @@
|
|||||||
//! A one-shot, futures-aware channel
|
//! A one-shot, futures-aware channel.
|
||||||
//!
|
|
||||||
//! This channel is similar to that in `sync::oneshot` but cannot be sent across
|
|
||||||
//! threads.
|
|
||||||
|
|
||||||
use std::future::Future;
|
use std::future::Future;
|
||||||
use std::pin::Pin;
|
use std::pin::Pin;
|
||||||
use std::rc::Rc;
|
|
||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
|
|
||||||
pub use futures::channel::oneshot::Canceled;
|
pub use futures::channel::oneshot::Canceled;
|
||||||
|
|
||||||
use crate::cell::{Cell, WeakCell};
|
use crate::cell::Cell;
|
||||||
use crate::task::LocalWaker;
|
use crate::task::LocalWaker;
|
||||||
|
|
||||||
/// Creates a new futures-aware, one-shot channel.
|
/// Creates a new futures-aware, one-shot channel.
|
||||||
///
|
|
||||||
/// This function is the same as `sync::oneshot::channel` except that the
|
|
||||||
/// returned values cannot be sent across threads.
|
|
||||||
pub fn channel<T>() -> (Sender<T>, Receiver<T>) {
|
pub fn channel<T>() -> (Sender<T>, Receiver<T>) {
|
||||||
let inner = Cell::new(Inner {
|
let inner = Cell::new(Inner {
|
||||||
value: None,
|
value: None,
|
||||||
rx_task: LocalWaker::new(),
|
rx_task: LocalWaker::new(),
|
||||||
});
|
});
|
||||||
let tx = Sender {
|
let tx = Sender {
|
||||||
inner: inner.downgrade(),
|
inner: inner.clone(),
|
||||||
};
|
|
||||||
let rx = Receiver {
|
|
||||||
state: State::Open(inner),
|
|
||||||
};
|
};
|
||||||
|
let rx = Receiver { inner };
|
||||||
(tx, rx)
|
(tx, rx)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Represents the completion half of a oneshot through which the result of a
|
/// Represents the completion half of a oneshot through which the result of a
|
||||||
/// computation is signaled.
|
/// computation is signaled.
|
||||||
///
|
|
||||||
/// This is created by the `unsync::oneshot::channel` function and is equivalent
|
|
||||||
/// in functionality to `sync::oneshot::Sender` except that it cannot be sent
|
|
||||||
/// across threads.
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Sender<T> {
|
pub struct Sender<T> {
|
||||||
inner: WeakCell<Inner<T>>,
|
inner: Cell<Inner<T>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A future representing the completion of a computation happening elsewhere in
|
/// A future representing the completion of a computation happening elsewhere in
|
||||||
/// memory.
|
/// memory.
|
||||||
///
|
|
||||||
/// This is created by the `unsync::oneshot::channel` function and is equivalent
|
|
||||||
/// in functionality to `sync::oneshot::Receiver` except that it cannot be sent
|
|
||||||
/// across threads.
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
#[must_use = "futures do nothing unless polled"]
|
#[must_use = "futures do nothing unless polled"]
|
||||||
pub struct Receiver<T> {
|
pub struct Receiver<T> {
|
||||||
state: State<T>,
|
inner: Cell<Inner<T>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
// The channels do not ever project Pin to the inner T
|
// The channels do not ever project Pin to the inner T
|
||||||
impl<T> Unpin for Receiver<T> {}
|
impl<T> Unpin for Receiver<T> {}
|
||||||
impl<T> Unpin for Sender<T> {}
|
impl<T> Unpin for Sender<T> {}
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
enum State<T> {
|
|
||||||
Open(Cell<Inner<T>>),
|
|
||||||
Closed(Option<T>),
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
struct Inner<T> {
|
struct Inner<T> {
|
||||||
value: Option<T>,
|
value: Option<T>,
|
||||||
@@ -78,12 +54,12 @@ impl<T> Sender<T> {
|
|||||||
/// represents.
|
/// represents.
|
||||||
///
|
///
|
||||||
/// If the value is successfully enqueued for the remote end to receive,
|
/// If the value is successfully enqueued for the remote end to receive,
|
||||||
/// then `Ok(())` is returned. If the receiving end was deallocated before
|
/// then `Ok(())` is returned. If the receiving end was dropped before
|
||||||
/// this function was called, however, then `Err` is returned with the value
|
/// this function was called, however, then `Err` is returned with the value
|
||||||
/// provided.
|
/// provided.
|
||||||
pub fn send(self, val: T) -> Result<(), T> {
|
pub fn send(mut self, val: T) -> Result<(), T> {
|
||||||
if let Some(mut inner) = self.inner.upgrade() {
|
if self.inner.strong_count() == 2 {
|
||||||
let inner = inner.get_mut();
|
let inner = self.inner.get_mut();
|
||||||
inner.value = Some(val);
|
inner.value = Some(val);
|
||||||
inner.rx_task.wake();
|
inner.rx_task.wake();
|
||||||
Ok(())
|
Ok(())
|
||||||
@@ -94,44 +70,15 @@ impl<T> Sender<T> {
|
|||||||
|
|
||||||
/// Tests to see whether this `Sender`'s corresponding `Receiver`
|
/// Tests to see whether this `Sender`'s corresponding `Receiver`
|
||||||
/// has gone away.
|
/// has gone away.
|
||||||
///
|
|
||||||
/// This function can be used to learn about when the `Receiver` (consumer)
|
|
||||||
/// half has gone away and nothing will be able to receive a message sent
|
|
||||||
/// from `send`.
|
|
||||||
///
|
|
||||||
/// Note that this function is intended to *not* be used in the context of a
|
|
||||||
/// future. If you're implementing a future you probably want to call the
|
|
||||||
/// `poll_cancel` function which will block the current task if the
|
|
||||||
/// cancellation hasn't happened yet. This can be useful when working on a
|
|
||||||
/// non-futures related thread, though, which would otherwise panic if
|
|
||||||
/// `poll_cancel` were called.
|
|
||||||
pub fn is_canceled(&self) -> bool {
|
pub fn is_canceled(&self) -> bool {
|
||||||
self.inner.upgrade().is_none()
|
self.inner.strong_count() == 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Drop for Sender<T> {
|
impl<T> Drop for Sender<T> {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
if let Some(inner) = self.inner.upgrade() {
|
if self.inner.strong_count() == 2 {
|
||||||
inner.get_ref().rx_task.wake();
|
self.inner.get_ref().rx_task.wake();
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> Receiver<T> {
|
|
||||||
/// Gracefully close this receiver, preventing sending any future messages.
|
|
||||||
///
|
|
||||||
/// Any `send` operation which happens after this method returns is
|
|
||||||
/// guaranteed to fail. Once this method is called the normal `poll` method
|
|
||||||
/// can be used to determine whether a message was actually sent or not. If
|
|
||||||
/// `Canceled` is returned from `poll` then no message was sent.
|
|
||||||
pub fn close(&mut self) {
|
|
||||||
match self.state {
|
|
||||||
State::Open(ref mut inner) => {
|
|
||||||
let value = inner.get_mut().value.take();
|
|
||||||
self.state = State::Closed(value);
|
|
||||||
}
|
|
||||||
State::Closed(_) => {}
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -142,33 +89,50 @@ impl<T> Future for Receiver<T> {
|
|||||||
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
||||||
let this = self.get_mut();
|
let this = self.get_mut();
|
||||||
|
|
||||||
let inner = match this.state {
|
|
||||||
State::Open(ref mut inner) => inner,
|
|
||||||
State::Closed(ref mut item) => match item.take() {
|
|
||||||
Some(item) => return Poll::Ready(Ok(item)),
|
|
||||||
None => return Poll::Ready(Err(Canceled)),
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
// If we've got a value, then skip the logic below as we're done.
|
// If we've got a value, then skip the logic below as we're done.
|
||||||
if let Some(val) = inner.get_mut().value.take() {
|
if let Some(val) = this.inner.get_mut().value.take() {
|
||||||
return Poll::Ready(Ok(val));
|
return Poll::Ready(Ok(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// If we can get mutable access, then the sender has gone away. We
|
// Check if sender is dropped and return error if it is.
|
||||||
// didn't see a value above, so we're canceled. Otherwise we park
|
if this.inner.strong_count() == 1 {
|
||||||
// our task and wait for a value to come in.
|
|
||||||
if Rc::get_mut(&mut inner.inner).is_some() {
|
|
||||||
Poll::Ready(Err(Canceled))
|
Poll::Ready(Err(Canceled))
|
||||||
} else {
|
} else {
|
||||||
inner.get_ref().rx_task.register(cx.waker());
|
this.inner.get_ref().rx_task.register(cx.waker());
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Drop for Receiver<T> {
|
#[cfg(test)]
|
||||||
fn drop(&mut self) {
|
mod tests {
|
||||||
self.close();
|
use super::*;
|
||||||
|
use futures::future::lazy;
|
||||||
|
|
||||||
|
#[actix_rt::test]
|
||||||
|
async fn test_oneshot() {
|
||||||
|
let (tx, rx) = channel();
|
||||||
|
tx.send("test").unwrap();
|
||||||
|
assert_eq!(rx.await.unwrap(), "test");
|
||||||
|
|
||||||
|
let (tx, rx) = channel();
|
||||||
|
assert!(!tx.is_canceled());
|
||||||
|
drop(rx);
|
||||||
|
assert!(tx.is_canceled());
|
||||||
|
assert!(tx.send("test").is_err());
|
||||||
|
|
||||||
|
let (tx, rx) = channel::<&'static str>();
|
||||||
|
drop(tx);
|
||||||
|
assert!(rx.await.is_err());
|
||||||
|
|
||||||
|
let (tx, mut rx) = channel::<&'static str>();
|
||||||
|
assert_eq!(lazy(|cx| Pin::new(&mut rx).poll(cx)).await, Poll::Pending);
|
||||||
|
tx.send("test").unwrap();
|
||||||
|
assert_eq!(rx.await.unwrap(), "test");
|
||||||
|
|
||||||
|
let (tx, mut rx) = channel::<&'static str>();
|
||||||
|
assert_eq!(lazy(|cx| Pin::new(&mut rx).poll(cx)).await, Poll::Pending);
|
||||||
|
drop(tx);
|
||||||
|
assert!(rx.await.is_err());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -105,7 +105,7 @@ where
|
|||||||
|
|
||||||
pub struct InOrderService<S: Service> {
|
pub struct InOrderService<S: Service> {
|
||||||
service: S,
|
service: S,
|
||||||
task: Rc<LocalWaker>,
|
waker: Rc<LocalWaker>,
|
||||||
acks: VecDeque<Record<S::Response, S::Error>>,
|
acks: VecDeque<Record<S::Response, S::Error>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -123,7 +123,7 @@ where
|
|||||||
Self {
|
Self {
|
||||||
service: service.into_service(),
|
service: service.into_service(),
|
||||||
acks: VecDeque::new(),
|
acks: VecDeque::new(),
|
||||||
task: Rc::new(LocalWaker::new()),
|
waker: Rc::new(LocalWaker::new()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -142,7 +142,7 @@ where
|
|||||||
|
|
||||||
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
||||||
// poll_ready could be called from different task
|
// poll_ready could be called from different task
|
||||||
self.task.register(cx.waker());
|
self.waker.register(cx.waker());
|
||||||
|
|
||||||
// check acks
|
// check acks
|
||||||
while !self.acks.is_empty() {
|
while !self.acks.is_empty() {
|
||||||
@@ -172,11 +172,11 @@ where
|
|||||||
let (tx2, rx2) = oneshot::channel();
|
let (tx2, rx2) = oneshot::channel();
|
||||||
self.acks.push_back(Record { rx: rx1, tx: tx2 });
|
self.acks.push_back(Record { rx: rx1, tx: tx2 });
|
||||||
|
|
||||||
let task = self.task.clone();
|
let waker = self.waker.clone();
|
||||||
let fut = self.service.call(request);
|
let fut = self.service.call(request);
|
||||||
actix_rt::spawn(async move {
|
actix_rt::spawn(async move {
|
||||||
let res = fut.await;
|
let res = fut.await;
|
||||||
task.wake();
|
waker.wake();
|
||||||
let _ = tx1.send(res);
|
let _ = tx1.send(res);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -211,7 +211,7 @@ mod tests {
|
|||||||
use super::*;
|
use super::*;
|
||||||
use actix_service::Service;
|
use actix_service::Service;
|
||||||
use futures::channel::oneshot;
|
use futures::channel::oneshot;
|
||||||
use futures::future::{lazy, FutureExt, LocalBoxFuture};
|
use futures::future::{lazy, poll_fn, FutureExt, LocalBoxFuture};
|
||||||
|
|
||||||
struct Srv;
|
struct Srv;
|
||||||
|
|
||||||
@@ -245,15 +245,18 @@ mod tests {
|
|||||||
let _ = actix_rt::System::new("test").block_on(async {
|
let _ = actix_rt::System::new("test").block_on(async {
|
||||||
let mut srv = InOrderService::new(Srv);
|
let mut srv = InOrderService::new(Srv);
|
||||||
|
|
||||||
|
let _ = lazy(|cx| srv.poll_ready(cx)).await;
|
||||||
let res1 = srv.call(rx1);
|
let res1 = srv.call(rx1);
|
||||||
let res2 = srv.call(rx2);
|
let res2 = srv.call(rx2);
|
||||||
let res3 = srv.call(rx3);
|
let res3 = srv.call(rx3);
|
||||||
|
|
||||||
let _ = lazy(|cx| srv.poll_ready(cx)).await;
|
actix_rt::spawn(async move {
|
||||||
|
let _ = poll_fn(|cx| {
|
||||||
// dispatcher do this
|
let _ = srv.poll_ready(cx);
|
||||||
actix_rt::time::delay_for(Duration::from_millis(100)).await;
|
Poll::<()>::Pending
|
||||||
let _ = lazy(|cx| srv.poll_ready(cx)).await;
|
})
|
||||||
|
.await;
|
||||||
|
});
|
||||||
|
|
||||||
assert_eq!(res1.await.unwrap(), 1);
|
assert_eq!(res1.await.unwrap(), 1);
|
||||||
assert_eq!(res2.await.unwrap(), 2);
|
assert_eq!(res2.await.unwrap(), 2);
|
||||||
|
@@ -3,12 +3,12 @@ use std::pin::Pin;
|
|||||||
use std::task::{Context, Poll};
|
use std::task::{Context, Poll};
|
||||||
|
|
||||||
use actix_service::{IntoService, Service};
|
use actix_service::{IntoService, Service};
|
||||||
use futures::Stream;
|
use futures::{FutureExt, Stream};
|
||||||
|
|
||||||
use crate::mpsc;
|
use crate::mpsc;
|
||||||
|
|
||||||
#[pin_project::pin_project]
|
#[pin_project::pin_project]
|
||||||
pub struct StreamDispatcher<S, T>
|
pub struct Dispatcher<S, T>
|
||||||
where
|
where
|
||||||
S: Stream,
|
S: Stream,
|
||||||
T: Service<Request = S::Item, Response = ()> + 'static,
|
T: Service<Request = S::Item, Response = ()> + 'static,
|
||||||
@@ -20,7 +20,7 @@ where
|
|||||||
err_tx: mpsc::Sender<T::Error>,
|
err_tx: mpsc::Sender<T::Error>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<S, T> StreamDispatcher<S, T>
|
impl<S, T> Dispatcher<S, T>
|
||||||
where
|
where
|
||||||
S: Stream,
|
S: Stream,
|
||||||
T: Service<Request = S::Item, Response = ()> + 'static,
|
T: Service<Request = S::Item, Response = ()> + 'static,
|
||||||
@@ -30,7 +30,7 @@ where
|
|||||||
F: IntoService<T>,
|
F: IntoService<T>,
|
||||||
{
|
{
|
||||||
let (err_tx, err_rx) = mpsc::channel();
|
let (err_tx, err_rx) = mpsc::channel();
|
||||||
StreamDispatcher {
|
Dispatcher {
|
||||||
err_rx,
|
err_rx,
|
||||||
err_tx,
|
err_tx,
|
||||||
stream,
|
stream,
|
||||||
@@ -39,7 +39,7 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<S, T> Future for StreamDispatcher<S, T>
|
impl<S, T> Future for Dispatcher<S, T>
|
||||||
where
|
where
|
||||||
S: Stream,
|
S: Stream,
|
||||||
T: Service<Request = S::Item, Response = ()> + 'static,
|
T: Service<Request = S::Item, Response = ()> + 'static,
|
||||||
@@ -54,47 +54,23 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
match this.service.poll_ready(cx)? {
|
return match this.service.poll_ready(cx)? {
|
||||||
Poll::Ready(_) => match this.stream.poll_next(cx) {
|
Poll::Ready(_) => match this.stream.poll_next(cx) {
|
||||||
Poll::Ready(Some(item)) => {
|
Poll::Ready(Some(item)) => {
|
||||||
actix_rt::spawn(StreamDispatcherService {
|
let stop = this.err_tx.clone();
|
||||||
fut: this.service.call(item),
|
actix_rt::spawn(this.service.call(item).map(move |res| {
|
||||||
stop: self.err_tx.clone(),
|
if let Err(e) = res {
|
||||||
});
|
let _ = stop.send(e);
|
||||||
|
}
|
||||||
|
}));
|
||||||
this = self.as_mut().project();
|
this = self.as_mut().project();
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
Poll::Pending => return Poll::Pending,
|
Poll::Pending => Poll::Pending,
|
||||||
Poll::Ready(None) => return Poll::Ready(Ok(())),
|
Poll::Ready(None) => Poll::Ready(Ok(())),
|
||||||
},
|
},
|
||||||
Poll::Pending => return Poll::Pending,
|
Poll::Pending => Poll::Pending,
|
||||||
}
|
};
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[pin_project::pin_project]
|
|
||||||
struct StreamDispatcherService<F: Future, E> {
|
|
||||||
#[pin]
|
|
||||||
fut: F,
|
|
||||||
stop: mpsc::Sender<E>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<F, E> Future for StreamDispatcherService<F, E>
|
|
||||||
where
|
|
||||||
F: Future<Output = Result<(), E>>,
|
|
||||||
{
|
|
||||||
type Output = ();
|
|
||||||
|
|
||||||
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
||||||
let this = self.project();
|
|
||||||
|
|
||||||
match this.fut.poll(cx) {
|
|
||||||
Poll::Ready(Ok(_)) => Poll::Ready(()),
|
|
||||||
Poll::Pending => Poll::Pending,
|
|
||||||
Poll::Ready(Err(e)) => {
|
|
||||||
let _ = this.stop.send(e);
|
|
||||||
Poll::Ready(())
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -34,11 +34,22 @@ impl LocalWaker {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[inline]
|
||||||
|
/// Check if waker has been registered.
|
||||||
|
pub fn is_registed(&self) -> bool {
|
||||||
|
unsafe { (*self.waker.get()).is_some() }
|
||||||
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
/// Registers the waker to be notified on calls to `wake`.
|
/// Registers the waker to be notified on calls to `wake`.
|
||||||
pub fn register(&self, waker: &Waker) {
|
///
|
||||||
|
/// Returns `true` if waker was registered before.
|
||||||
|
pub fn register(&self, waker: &Waker) -> bool {
|
||||||
unsafe {
|
unsafe {
|
||||||
*self.waker.get() = Some(waker.clone());
|
let w = self.waker.get();
|
||||||
|
let is_registered = (*w).is_some();
|
||||||
|
*w = Some(waker.clone());
|
||||||
|
is_registered
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -182,7 +182,7 @@ mod tests {
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
use actix_service::{apply, factory_fn, Service, ServiceFactory};
|
use actix_service::{apply, fn_factory, Service, ServiceFactory};
|
||||||
use futures::future::{ok, FutureExt, LocalBoxFuture};
|
use futures::future::{ok, FutureExt, LocalBoxFuture};
|
||||||
|
|
||||||
struct SleepService(Duration);
|
struct SleepService(Duration);
|
||||||
@@ -229,7 +229,7 @@ mod tests {
|
|||||||
|
|
||||||
let timeout = apply(
|
let timeout = apply(
|
||||||
Timeout::new(resolution),
|
Timeout::new(resolution),
|
||||||
factory_fn(|| ok::<_, ()>(SleepService(wait_time))),
|
fn_factory(|| ok::<_, ()>(SleepService(wait_time))),
|
||||||
);
|
);
|
||||||
let mut srv = timeout.new_service(&()).await.unwrap();
|
let mut srv = timeout.new_service(&()).await.unwrap();
|
||||||
|
|
||||||
|
@@ -1,5 +1,19 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.2.3] - 2019-12-25
|
||||||
|
|
||||||
|
* Add impl `IntoPattern` for `&String`
|
||||||
|
|
||||||
|
## [0.2.2] - 2019-12-25
|
||||||
|
|
||||||
|
* Use `IntoPattern` for `RouterBuilder::path()`
|
||||||
|
|
||||||
|
## [0.2.1] - 2019-12-25
|
||||||
|
|
||||||
|
* Add `IntoPattern` trait
|
||||||
|
|
||||||
|
* Add multi-pattern resources
|
||||||
|
|
||||||
## [0.2.0] - 2019-12-07
|
## [0.2.0] - 2019-12-07
|
||||||
|
|
||||||
* Update http to 0.2
|
* Update http to 0.2
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-router"
|
name = "actix-router"
|
||||||
version = "0.2.0"
|
version = "0.2.3"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Path router"
|
description = "Path router"
|
||||||
keywords = ["actix"]
|
keywords = ["actix"]
|
||||||
@@ -8,9 +8,7 @@ homepage = "https://actix.rs"
|
|||||||
repository = "https://github.com/actix/actix-net.git"
|
repository = "https://github.com/actix/actix-net.git"
|
||||||
documentation = "https://docs.rs/actix-router/"
|
documentation = "https://docs.rs/actix-router/"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
workspace = ".."
|
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "actix_router"
|
name = "actix_router"
|
||||||
@@ -21,8 +19,8 @@ default = ["http"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
regex = "1.3.1"
|
regex = "1.3.1"
|
||||||
serde = "1.0.80"
|
serde = "1.0.104"
|
||||||
bytestring = "0.1.0"
|
bytestring = "0.1.2"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
http = { version="0.2.0", optional=true }
|
http = { version="0.2.0", optional=true }
|
||||||
|
|
||||||
|
@@ -492,7 +492,7 @@ mod tests {
|
|||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
struct Id {
|
struct Id {
|
||||||
id: String,
|
_id: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Deserialize)]
|
#[derive(Debug, Deserialize)]
|
||||||
|
@@ -35,6 +35,100 @@ impl ResourcePath for bytestring::ByteString {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Helper trait for type that could be converted to path pattern
|
||||||
|
pub trait IntoPattern {
|
||||||
|
/// Signle patter
|
||||||
|
fn is_single(&self) -> bool;
|
||||||
|
|
||||||
|
fn patterns(&self) -> Vec<String>;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl IntoPattern for String {
|
||||||
|
fn is_single(&self) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
fn patterns(&self) -> Vec<String> {
|
||||||
|
vec![self.clone()]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> IntoPattern for &'a String {
|
||||||
|
fn is_single(&self) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
fn patterns(&self) -> Vec<String> {
|
||||||
|
vec![self.as_str().to_string()]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> IntoPattern for &'a str {
|
||||||
|
fn is_single(&self) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
fn patterns(&self) -> Vec<String> {
|
||||||
|
vec![self.to_string()]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T: AsRef<str>> IntoPattern for Vec<T> {
|
||||||
|
fn is_single(&self) -> bool {
|
||||||
|
self.len() == 1
|
||||||
|
}
|
||||||
|
|
||||||
|
fn patterns(&self) -> Vec<String> {
|
||||||
|
self.into_iter().map(|v| v.as_ref().to_string()).collect()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
macro_rules! array_patterns (($tp:ty, $num:tt) => {
|
||||||
|
impl IntoPattern for [$tp; $num] {
|
||||||
|
fn is_single(&self) -> bool {
|
||||||
|
$num == 1
|
||||||
|
}
|
||||||
|
|
||||||
|
fn patterns(&self) -> Vec<String> {
|
||||||
|
self.iter().map(|v| v.to_string()).collect()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
array_patterns!(&str, 1);
|
||||||
|
array_patterns!(&str, 2);
|
||||||
|
array_patterns!(&str, 3);
|
||||||
|
array_patterns!(&str, 4);
|
||||||
|
array_patterns!(&str, 5);
|
||||||
|
array_patterns!(&str, 6);
|
||||||
|
array_patterns!(&str, 7);
|
||||||
|
array_patterns!(&str, 8);
|
||||||
|
array_patterns!(&str, 9);
|
||||||
|
array_patterns!(&str, 10);
|
||||||
|
array_patterns!(&str, 11);
|
||||||
|
array_patterns!(&str, 12);
|
||||||
|
array_patterns!(&str, 13);
|
||||||
|
array_patterns!(&str, 14);
|
||||||
|
array_patterns!(&str, 15);
|
||||||
|
array_patterns!(&str, 16);
|
||||||
|
|
||||||
|
array_patterns!(String, 1);
|
||||||
|
array_patterns!(String, 2);
|
||||||
|
array_patterns!(String, 3);
|
||||||
|
array_patterns!(String, 4);
|
||||||
|
array_patterns!(String, 5);
|
||||||
|
array_patterns!(String, 6);
|
||||||
|
array_patterns!(String, 7);
|
||||||
|
array_patterns!(String, 8);
|
||||||
|
array_patterns!(String, 9);
|
||||||
|
array_patterns!(String, 10);
|
||||||
|
array_patterns!(String, 11);
|
||||||
|
array_patterns!(String, 12);
|
||||||
|
array_patterns!(String, 13);
|
||||||
|
array_patterns!(String, 14);
|
||||||
|
array_patterns!(String, 15);
|
||||||
|
array_patterns!(String, 16);
|
||||||
|
|
||||||
#[cfg(feature = "http")]
|
#[cfg(feature = "http")]
|
||||||
mod url;
|
mod url;
|
||||||
|
|
||||||
|
@@ -2,10 +2,10 @@ use std::cmp::min;
|
|||||||
use std::hash::{Hash, Hasher};
|
use std::hash::{Hash, Hasher};
|
||||||
use std::rc::Rc;
|
use std::rc::Rc;
|
||||||
|
|
||||||
use regex::{escape, Regex};
|
use regex::{escape, Regex, RegexSet};
|
||||||
|
|
||||||
use crate::path::{Path, PathItem};
|
use crate::path::{Path, PathItem};
|
||||||
use crate::{Resource, ResourcePath};
|
use crate::{IntoPattern, Resource, ResourcePath};
|
||||||
|
|
||||||
const MAX_DYNAMIC_SEGMENTS: usize = 16;
|
const MAX_DYNAMIC_SEGMENTS: usize = 16;
|
||||||
|
|
||||||
@@ -32,21 +32,53 @@ enum PatternType {
|
|||||||
Static(String),
|
Static(String),
|
||||||
Prefix(String),
|
Prefix(String),
|
||||||
Dynamic(Regex, Vec<Rc<String>>, usize),
|
Dynamic(Regex, Vec<Rc<String>>, usize),
|
||||||
|
DynamicSet(RegexSet, Vec<(Regex, Vec<Rc<String>>, usize)>),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ResourceDef {
|
impl ResourceDef {
|
||||||
/// Parse path pattern and create new `Pattern` instance.
|
/// Parse path pattern and create new `Pattern` instance.
|
||||||
///
|
///
|
||||||
/// Panics if path pattern is wrong.
|
/// Panics if path pattern is malformed.
|
||||||
pub fn new(path: &str) -> Self {
|
pub fn new<T: IntoPattern>(path: T) -> Self {
|
||||||
ResourceDef::with_prefix(path, false)
|
if path.is_single() {
|
||||||
|
let patterns = path.patterns();
|
||||||
|
ResourceDef::with_prefix(&patterns[0], false)
|
||||||
|
} else {
|
||||||
|
let set = path.patterns();
|
||||||
|
let mut data = Vec::new();
|
||||||
|
let mut re_set = Vec::new();
|
||||||
|
|
||||||
|
for path in set {
|
||||||
|
let (pattern, _, _, len) = ResourceDef::parse(&path, false);
|
||||||
|
|
||||||
|
let re = match Regex::new(&pattern) {
|
||||||
|
Ok(re) => re,
|
||||||
|
Err(err) => panic!("Wrong path pattern: \"{}\" {}", path, err),
|
||||||
|
};
|
||||||
|
// actix creates one router per thread
|
||||||
|
let names: Vec<_> = re
|
||||||
|
.capture_names()
|
||||||
|
.filter_map(|name| name.map(|name| Rc::new(name.to_owned())))
|
||||||
|
.collect();
|
||||||
|
data.push((re, names, len));
|
||||||
|
re_set.push(pattern);
|
||||||
|
}
|
||||||
|
|
||||||
|
ResourceDef {
|
||||||
|
id: 0,
|
||||||
|
tp: PatternType::DynamicSet(RegexSet::new(re_set).unwrap(), data),
|
||||||
|
elements: Vec::new(),
|
||||||
|
name: String::new(),
|
||||||
|
pattern: "".to_owned(),
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parse path pattern and create new `Pattern` instance.
|
/// Parse path pattern and create new `Pattern` instance.
|
||||||
///
|
///
|
||||||
/// Use `prefix` type instead of `static`.
|
/// Use `prefix` type instead of `static`.
|
||||||
///
|
///
|
||||||
/// Panics if path regex pattern is wrong.
|
/// Panics if path regex pattern is malformed.
|
||||||
pub fn prefix(path: &str) -> Self {
|
pub fn prefix(path: &str) -> Self {
|
||||||
ResourceDef::with_prefix(path, true)
|
ResourceDef::with_prefix(path, true)
|
||||||
}
|
}
|
||||||
@@ -57,7 +89,7 @@ impl ResourceDef {
|
|||||||
///
|
///
|
||||||
/// Use `prefix` type instead of `static`.
|
/// Use `prefix` type instead of `static`.
|
||||||
///
|
///
|
||||||
/// Panics if path regex pattern is wrong.
|
/// Panics if path regex pattern is malformed.
|
||||||
pub fn root_prefix(path: &str) -> Self {
|
pub fn root_prefix(path: &str) -> Self {
|
||||||
ResourceDef::with_prefix(&insert_slash(path), true)
|
ResourceDef::with_prefix(&insert_slash(path), true)
|
||||||
}
|
}
|
||||||
@@ -123,8 +155,9 @@ impl ResourceDef {
|
|||||||
pub fn is_match(&self, path: &str) -> bool {
|
pub fn is_match(&self, path: &str) -> bool {
|
||||||
match self.tp {
|
match self.tp {
|
||||||
PatternType::Static(ref s) => s == path,
|
PatternType::Static(ref s) => s == path,
|
||||||
PatternType::Dynamic(ref re, _, _) => re.is_match(path),
|
|
||||||
PatternType::Prefix(ref s) => path.starts_with(s),
|
PatternType::Prefix(ref s) => path.starts_with(s),
|
||||||
|
PatternType::Dynamic(ref re, _, _) => re.is_match(path),
|
||||||
|
PatternType::DynamicSet(ref re, _) => re.is_match(path),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -176,6 +209,30 @@ impl ResourceDef {
|
|||||||
};
|
};
|
||||||
Some(min(plen, len))
|
Some(min(plen, len))
|
||||||
}
|
}
|
||||||
|
PatternType::DynamicSet(ref re, ref params) => {
|
||||||
|
if let Some(idx) = re.matches(path).into_iter().next() {
|
||||||
|
let (ref pattern, _, len) = params[idx];
|
||||||
|
if let Some(captures) = pattern.captures(path) {
|
||||||
|
let mut pos = 0;
|
||||||
|
let mut passed = false;
|
||||||
|
for capture in captures.iter() {
|
||||||
|
if let Some(ref m) = capture {
|
||||||
|
if !passed {
|
||||||
|
passed = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
pos = m.end();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Some(pos + len)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -190,6 +247,25 @@ impl ResourceDef {
|
|||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
PatternType::Prefix(ref s) => {
|
||||||
|
let rpath = path.path();
|
||||||
|
let len = if s == rpath {
|
||||||
|
s.len()
|
||||||
|
} else if rpath.starts_with(s)
|
||||||
|
&& (s.ends_with('/') || rpath.split_at(s.len()).1.starts_with('/'))
|
||||||
|
{
|
||||||
|
if s.ends_with('/') {
|
||||||
|
s.len() - 1
|
||||||
|
} else {
|
||||||
|
s.len()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
let rpath_len = rpath.len();
|
||||||
|
path.skip(min(rpath_len, len) as u16);
|
||||||
|
true
|
||||||
|
}
|
||||||
PatternType::Dynamic(ref re, ref names, len) => {
|
PatternType::Dynamic(ref re, ref names, len) => {
|
||||||
let mut idx = 0;
|
let mut idx = 0;
|
||||||
let mut pos = 0;
|
let mut pos = 0;
|
||||||
@@ -219,24 +295,40 @@ impl ResourceDef {
|
|||||||
path.skip((pos + len) as u16);
|
path.skip((pos + len) as u16);
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
PatternType::Prefix(ref s) => {
|
PatternType::DynamicSet(ref re, ref params) => {
|
||||||
let rpath = path.path();
|
if let Some(idx) = re.matches(path.path()).into_iter().next() {
|
||||||
let len = if s == rpath {
|
let (ref pattern, ref names, len) = params[idx];
|
||||||
s.len()
|
let mut idx = 0;
|
||||||
} else if rpath.starts_with(s)
|
let mut pos = 0;
|
||||||
&& (s.ends_with('/') || rpath.split_at(s.len()).1.starts_with('/'))
|
let mut segments: [PathItem; MAX_DYNAMIC_SEGMENTS] =
|
||||||
{
|
[PathItem::Static(""); MAX_DYNAMIC_SEGMENTS];
|
||||||
if s.ends_with('/') {
|
|
||||||
s.len() - 1
|
if let Some(captures) = pattern.captures(path.path()) {
|
||||||
|
for (no, name) in names.iter().enumerate() {
|
||||||
|
if let Some(m) = captures.name(&name) {
|
||||||
|
idx += 1;
|
||||||
|
pos = m.end();
|
||||||
|
segments[no] =
|
||||||
|
PathItem::Segment(m.start() as u16, m.end() as u16);
|
||||||
|
} else {
|
||||||
|
log::error!(
|
||||||
|
"Dynamic path match but not all segments found: {}",
|
||||||
|
name
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
s.len()
|
return false;
|
||||||
}
|
}
|
||||||
|
for idx in 0..idx {
|
||||||
|
path.add(names[idx].clone(), segments[idx]);
|
||||||
|
}
|
||||||
|
path.skip((pos + len) as u16);
|
||||||
|
true
|
||||||
} else {
|
} else {
|
||||||
return false;
|
false
|
||||||
};
|
}
|
||||||
let rpath_len = rpath.len();
|
|
||||||
path.skip(min(rpath_len, len) as u16);
|
|
||||||
true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -263,6 +355,30 @@ impl ResourceDef {
|
|||||||
false
|
false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
PatternType::Prefix(ref s) => {
|
||||||
|
let len = {
|
||||||
|
let rpath = res.resource_path().path();
|
||||||
|
if s == rpath {
|
||||||
|
s.len()
|
||||||
|
} else if rpath.starts_with(s)
|
||||||
|
&& (s.ends_with('/') || rpath.split_at(s.len()).1.starts_with('/'))
|
||||||
|
{
|
||||||
|
if s.ends_with('/') {
|
||||||
|
s.len() - 1
|
||||||
|
} else {
|
||||||
|
s.len()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
if !check(res, user_data) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
let path = res.resource_path();
|
||||||
|
path.skip(min(path.path().len(), len) as u16);
|
||||||
|
true
|
||||||
|
}
|
||||||
PatternType::Dynamic(ref re, ref names, len) => {
|
PatternType::Dynamic(ref re, ref names, len) => {
|
||||||
let mut idx = 0;
|
let mut idx = 0;
|
||||||
let mut pos = 0;
|
let mut pos = 0;
|
||||||
@@ -298,29 +414,47 @@ impl ResourceDef {
|
|||||||
path.skip((pos + len) as u16);
|
path.skip((pos + len) as u16);
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
PatternType::Prefix(ref s) => {
|
PatternType::DynamicSet(ref re, ref params) => {
|
||||||
let len = {
|
let path = res.resource_path().path();
|
||||||
let rpath = res.resource_path().path();
|
if let Some(idx) = re.matches(path).into_iter().next() {
|
||||||
if s == rpath {
|
let (ref pattern, ref names, len) = params[idx];
|
||||||
s.len()
|
let mut idx = 0;
|
||||||
} else if rpath.starts_with(s)
|
let mut pos = 0;
|
||||||
&& (s.ends_with('/') || rpath.split_at(s.len()).1.starts_with('/'))
|
let mut segments: [PathItem; MAX_DYNAMIC_SEGMENTS] =
|
||||||
{
|
[PathItem::Static(""); MAX_DYNAMIC_SEGMENTS];
|
||||||
if s.ends_with('/') {
|
|
||||||
s.len() - 1
|
if let Some(captures) = pattern.captures(path) {
|
||||||
} else {
|
for (no, name) in names.iter().enumerate() {
|
||||||
s.len()
|
if let Some(m) = captures.name(&name) {
|
||||||
|
idx += 1;
|
||||||
|
pos = m.end();
|
||||||
|
segments[no] =
|
||||||
|
PathItem::Segment(m.start() as u16, m.end() as u16);
|
||||||
|
} else {
|
||||||
|
log::error!(
|
||||||
|
"Dynamic path match but not all segments found: {}",
|
||||||
|
name
|
||||||
|
);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
|
||||||
if !check(res, user_data) {
|
if !check(res, user_data) {
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
let path = res.resource_path();
|
||||||
|
for idx in 0..idx {
|
||||||
|
path.add(names[idx].clone(), segments[idx]);
|
||||||
|
}
|
||||||
|
path.skip((pos + len) as u16);
|
||||||
|
true
|
||||||
|
} else {
|
||||||
|
false
|
||||||
}
|
}
|
||||||
let path = res.resource_path();
|
|
||||||
path.skip(min(path.path().len(), len) as u16);
|
|
||||||
true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -348,7 +482,10 @@ impl ResourceDef {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
PatternType::DynamicSet(..) => {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -476,7 +613,7 @@ impl<'a> From<&'a str> for ResourceDef {
|
|||||||
|
|
||||||
impl From<String> for ResourceDef {
|
impl From<String> for ResourceDef {
|
||||||
fn from(path: String) -> ResourceDef {
|
fn from(path: String) -> ResourceDef {
|
||||||
ResourceDef::new(&path)
|
ResourceDef::new(path)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -558,6 +695,65 @@ mod tests {
|
|||||||
assert_eq!(path.get("id").unwrap(), "012345");
|
assert_eq!(path.get("id").unwrap(), "012345");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_dynamic_set() {
|
||||||
|
let re = ResourceDef::new(vec![
|
||||||
|
"/user/{id}",
|
||||||
|
"/v{version}/resource/{id}",
|
||||||
|
"/{id:[[:digit:]]{6}}",
|
||||||
|
]);
|
||||||
|
assert!(re.is_match("/user/profile"));
|
||||||
|
assert!(re.is_match("/user/2345"));
|
||||||
|
assert!(!re.is_match("/user/2345/"));
|
||||||
|
assert!(!re.is_match("/user/2345/sdg"));
|
||||||
|
|
||||||
|
let mut path = Path::new("/user/profile");
|
||||||
|
assert!(re.match_path(&mut path));
|
||||||
|
assert_eq!(path.get("id").unwrap(), "profile");
|
||||||
|
|
||||||
|
let mut path = Path::new("/user/1245125");
|
||||||
|
assert!(re.match_path(&mut path));
|
||||||
|
assert_eq!(path.get("id").unwrap(), "1245125");
|
||||||
|
|
||||||
|
assert!(re.is_match("/v1/resource/320120"));
|
||||||
|
assert!(!re.is_match("/v/resource/1"));
|
||||||
|
assert!(!re.is_match("/resource"));
|
||||||
|
|
||||||
|
let mut path = Path::new("/v151/resource/adahg32");
|
||||||
|
assert!(re.match_path(&mut path));
|
||||||
|
assert_eq!(path.get("version").unwrap(), "151");
|
||||||
|
assert_eq!(path.get("id").unwrap(), "adahg32");
|
||||||
|
|
||||||
|
assert!(re.is_match("/012345"));
|
||||||
|
assert!(!re.is_match("/012"));
|
||||||
|
assert!(!re.is_match("/01234567"));
|
||||||
|
assert!(!re.is_match("/XXXXXX"));
|
||||||
|
|
||||||
|
let mut path = Path::new("/012345");
|
||||||
|
assert!(re.match_path(&mut path));
|
||||||
|
assert_eq!(path.get("id").unwrap(), "012345");
|
||||||
|
|
||||||
|
let re = ResourceDef::new([
|
||||||
|
"/user/{id}",
|
||||||
|
"/v{version}/resource/{id}",
|
||||||
|
"/{id:[[:digit:]]{6}}",
|
||||||
|
]);
|
||||||
|
assert!(re.is_match("/user/profile"));
|
||||||
|
assert!(re.is_match("/user/2345"));
|
||||||
|
assert!(!re.is_match("/user/2345/"));
|
||||||
|
assert!(!re.is_match("/user/2345/sdg"));
|
||||||
|
|
||||||
|
let re = ResourceDef::new([
|
||||||
|
"/user/{id}".to_string(),
|
||||||
|
"/v{version}/resource/{id}".to_string(),
|
||||||
|
"/{id:[[:digit:]]{6}}".to_string(),
|
||||||
|
]);
|
||||||
|
assert!(re.is_match("/user/profile"));
|
||||||
|
assert!(re.is_match("/user/2345"));
|
||||||
|
assert!(!re.is_match("/user/2345/"));
|
||||||
|
assert!(!re.is_match("/user/2345/sdg"));
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_parse_tail() {
|
fn test_parse_tail() {
|
||||||
let re = ResourceDef::new("/user/-{id}*");
|
let re = ResourceDef::new("/user/-{id}*");
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
use crate::{Resource, ResourceDef, ResourcePath};
|
use crate::{IntoPattern, Resource, ResourceDef, ResourcePath};
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone, PartialEq)]
|
#[derive(Debug, Copy, Clone, PartialEq)]
|
||||||
pub struct ResourceId(pub u16);
|
pub struct ResourceId(pub u16);
|
||||||
@@ -70,7 +70,11 @@ pub struct RouterBuilder<T, U = ()> {
|
|||||||
|
|
||||||
impl<T, U> RouterBuilder<T, U> {
|
impl<T, U> RouterBuilder<T, U> {
|
||||||
/// Register resource for specified path.
|
/// Register resource for specified path.
|
||||||
pub fn path(&mut self, path: &str, resource: T) -> &mut (ResourceDef, T, Option<U>) {
|
pub fn path<P: IntoPattern>(
|
||||||
|
&mut self,
|
||||||
|
path: P,
|
||||||
|
resource: T,
|
||||||
|
) -> &mut (ResourceDef, T, Option<U>) {
|
||||||
self.resources
|
self.resources
|
||||||
.push((ResourceDef::new(path), resource, None));
|
.push((ResourceDef::new(path), resource, None));
|
||||||
self.resources.last_mut().unwrap()
|
self.resources.last_mut().unwrap()
|
||||||
|
@@ -1,5 +1,15 @@
|
|||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
[0.1.0] - 2019-12-07
|
## [0.1.2] - 2019-12-22
|
||||||
|
|
||||||
|
* Fix `new()` method
|
||||||
|
|
||||||
|
* Make `ByteString::from_static()` and `ByteString::from_bytes_unchecked()` methods const.
|
||||||
|
|
||||||
|
## [0.1.1] - 2019-12-07
|
||||||
|
|
||||||
|
* Fix hash impl
|
||||||
|
|
||||||
|
## [0.1.0] - 2019-12-07
|
||||||
|
|
||||||
* Initial release
|
* Initial release
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bytestring"
|
name = "bytestring"
|
||||||
version = "0.1.0"
|
version = "0.1.2"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "A UTF-8 encoded string with Bytes as a storage"
|
description = "A UTF-8 encoded string with Bytes as a storage"
|
||||||
keywords = ["actix"]
|
keywords = ["actix"]
|
||||||
@@ -9,11 +9,10 @@ repository = "https://github.com/actix/actix-net.git"
|
|||||||
documentation = "https://docs.rs/bytestring/"
|
documentation = "https://docs.rs/bytestring/"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
workspace = ".."
|
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "bytestring"
|
name = "bytestring"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = "0.5.2"
|
bytes = "0.5.3"
|
||||||
|
@@ -6,14 +6,14 @@ use bytes::Bytes;
|
|||||||
|
|
||||||
/// A utf-8 encoded string with [`Bytes`] as a storage.
|
/// A utf-8 encoded string with [`Bytes`] as a storage.
|
||||||
///
|
///
|
||||||
/// [`Bytes`]: https://docs.rs/bytes/0.5.2/bytes/struct.Bytes.html
|
/// [`Bytes`]: https://docs.rs/bytes/0.5.3/bytes/struct.Bytes.html
|
||||||
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Default)]
|
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Default)]
|
||||||
pub struct ByteString(Bytes);
|
pub struct ByteString(Bytes);
|
||||||
|
|
||||||
impl ByteString {
|
impl ByteString {
|
||||||
/// Creates a new `ByteString`.
|
/// Creates a new `ByteString`.
|
||||||
pub fn new() -> String {
|
pub fn new() -> Self {
|
||||||
String::default()
|
ByteString(Bytes::new())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get a reference to the underlying bytes object.
|
/// Get a reference to the underlying bytes object.
|
||||||
@@ -27,12 +27,12 @@ impl ByteString {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a new `ByteString` from a static str.
|
/// Creates a new `ByteString` from a static str.
|
||||||
pub fn from_static(src: &'static str) -> ByteString {
|
pub const fn from_static(src: &'static str) -> ByteString {
|
||||||
Self(Bytes::from_static(src.as_ref()))
|
Self(Bytes::from_static(src.as_bytes()))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a new `ByteString` from a Bytes.
|
/// Creates a new `ByteString` from a Bytes.
|
||||||
pub unsafe fn from_bytes_unchecked(src: Bytes) -> ByteString {
|
pub const unsafe fn from_bytes_unchecked(src: Bytes) -> ByteString {
|
||||||
Self(src)
|
Self(src)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -45,7 +45,7 @@ impl PartialEq<str> for ByteString {
|
|||||||
|
|
||||||
impl hash::Hash for ByteString {
|
impl hash::Hash for ByteString {
|
||||||
fn hash<H: hash::Hasher>(&self, state: &mut H) {
|
fn hash<H: hash::Hasher>(&self, state: &mut H) {
|
||||||
self.0.hash(state);
|
(**self).hash(state);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -144,6 +144,24 @@ impl fmt::Display for ByteString {
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
use std::collections::hash_map::DefaultHasher;
|
||||||
|
use std::hash::{Hash, Hasher};
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_new() {
|
||||||
|
let _: ByteString = ByteString::new();
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_hash() {
|
||||||
|
let mut hasher1 = DefaultHasher::default();
|
||||||
|
"str".hash(&mut hasher1);
|
||||||
|
|
||||||
|
let mut hasher2 = DefaultHasher::default();
|
||||||
|
let s = ByteString::from_static("str");
|
||||||
|
s.hash(&mut hasher2);
|
||||||
|
assert_eq!(hasher1.finish(), hasher2.finish());
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_from_string() {
|
fn test_from_string() {
|
||||||
@@ -158,6 +176,7 @@ mod test {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_from_static_str() {
|
fn test_from_static_str() {
|
||||||
|
const _S: ByteString = ByteString::from_static("hello");
|
||||||
let _ = ByteString::from_static("str");
|
let _ = ByteString::from_static("str");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user