rename ntex-macros

This commit is contained in:
Nikolay Kim 2020-03-31 08:52:52 +06:00
parent 4d6cdbf405
commit 20a404ed1e
11 changed files with 30 additions and 18 deletions

View file

@ -2,9 +2,9 @@
members = [ members = [
"ntex", "ntex",
"ntex-codec", "ntex-codec",
"ntex-macros",
"ntex-router", "ntex-router",
"ntex-rt", "ntex-rt",
"ntex-rt-macros",
"ntex-service", "ntex-service",
# "ntex-web-macros", # "ntex-web-macros",
] ]
@ -12,8 +12,8 @@ members = [
[patch.crates-io] [patch.crates-io]
ntex = { path = "ntex" } ntex = { path = "ntex" }
ntex-codec = { path = "ntex-codec" } ntex-codec = { path = "ntex-codec" }
ntex-macros = { path = "ntex-macros" }
ntex-router = { path = "ntex-router" } ntex-router = { path = "ntex-router" }
ntex-rt = { path = "ntex-rt" } ntex-rt = { path = "ntex-rt" }
ntex-rt-macros = { path = "ntex-rt-macros" }
ntex-service = { path = "ntex-service" } ntex-service = { path = "ntex-service" }
ntex-web-macros = { path = "ntex-web-macros" } ntex-web-macros = { path = "ntex-web-macros" }

View file

@ -4,7 +4,7 @@ version = "0.1.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"]
homepage = "https://actix.rs" homepage = "https://ntex.rs"
repository = "https://github.com/ntex-rs/ntex.git" repository = "https://github.com/ntex-rs/ntex.git"
documentation = "https://docs.rs/ntex-codec/" documentation = "https://docs.rs/ntex-codec/"
categories = ["network-programming", "asynchronous"] categories = ["network-programming", "asynchronous"]

View file

@ -35,6 +35,7 @@ where
T: AsyncRead + AsyncWrite, T: AsyncRead + AsyncWrite,
U: Decoder + Encoder, U: Decoder + Encoder,
{ {
#[inline]
/// Provides a `Stream` and `Sink` interface for reading and writing to this /// Provides a `Stream` and `Sink` interface for reading and writing to this
/// `Io` object, using `Decode` and `Encode` to read and write the raw data. /// `Io` object, using `Decode` and `Encode` to read and write the raw data.
/// ///
@ -60,6 +61,7 @@ where
} }
impl<T, U> Framed<T, U> { impl<T, U> Framed<T, U> {
#[inline]
/// Provides a `Stream` and `Sink` interface for reading and writing to this /// Provides a `Stream` and `Sink` interface for reading and writing to this
/// `Io` object, using `Decode` and `Encode` to read and write the raw data. /// `Io` object, using `Decode` and `Encode` to read and write the raw data.
/// ///
@ -87,16 +89,19 @@ impl<T, U> Framed<T, U> {
} }
} }
#[inline]
/// Returns a reference to the underlying codec. /// Returns a reference to the underlying codec.
pub fn get_codec(&self) -> &U { pub fn get_codec(&self) -> &U {
&self.codec &self.codec
} }
#[inline]
/// Returns a mutable reference to the underlying codec. /// Returns a mutable reference to the underlying codec.
pub fn get_codec_mut(&mut self) -> &mut U { pub fn get_codec_mut(&mut self) -> &mut U {
&mut self.codec &mut self.codec
} }
#[inline]
/// Returns a reference to the underlying I/O stream wrapped by /// Returns a reference to the underlying I/O stream wrapped by
/// `Frame`. /// `Frame`.
/// ///
@ -107,6 +112,7 @@ impl<T, U> Framed<T, U> {
&self.io &self.io
} }
#[inline]
/// Returns a mutable reference to the underlying I/O stream wrapped by /// Returns a mutable reference to the underlying I/O stream wrapped by
/// `Frame`. /// `Frame`.
/// ///
@ -117,16 +123,19 @@ impl<T, U> Framed<T, U> {
&mut self.io &mut self.io
} }
#[inline]
/// Check if write buffer is empty. /// Check if write buffer is empty.
pub fn is_write_buf_empty(&self) -> bool { pub fn is_write_buf_empty(&self) -> bool {
self.write_buf.is_empty() self.write_buf.is_empty()
} }
#[inline]
/// Check if write buffer is full. /// Check if write buffer is full.
pub fn is_write_buf_full(&self) -> bool { pub fn is_write_buf_full(&self) -> bool {
self.write_buf.len() >= HW self.write_buf.len() >= HW
} }
#[inline]
/// 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 {
@ -138,6 +147,7 @@ impl<T, U> Framed<T, U> {
} }
} }
#[inline]
/// Consume the `Frame`, returning `Frame` with different io. /// Consume the `Frame`, returning `Frame` with different io.
pub fn map_io<F, T2>(self, f: F) -> Framed<T2, U> pub fn map_io<F, T2>(self, f: F) -> Framed<T2, U>
where where
@ -152,6 +162,7 @@ impl<T, U> Framed<T, U> {
} }
} }
#[inline]
/// Consume the `Frame`, returning `Frame` with different codec. /// Consume the `Frame`, returning `Frame` with different codec.
pub fn map_codec<F, U2>(self, f: F) -> Framed<T, U2> pub fn map_codec<F, U2>(self, f: F) -> Framed<T, U2>
where where
@ -166,6 +177,7 @@ impl<T, U> Framed<T, U> {
} }
} }
#[inline]
/// Consumes the `Frame`, returning its underlying I/O stream, the buffer /// Consumes the `Frame`, returning its underlying I/O stream, the buffer
/// with unprocessed data, and the codec. /// with unprocessed data, and the codec.
/// ///

View file

@ -1,10 +1,10 @@
[package] [package]
name = "ntex-macros" name = "ntex-rt-macros"
version = "0.1.0" version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"] authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Ntex runtime macros" description = "ntex runtime macros"
repository = "https://github.com/ntex-rs/ntex" repository = "https://github.com/ntex-rs/ntex"
documentation = "https://docs.rs/ntex-macros/" documentation = "https://docs.rs/ntex-rt-macros/"
categories = ["network-programming", "asynchronous"] categories = ["network-programming", "asynchronous"]
license = "MIT" license = "MIT"
edition = "2018" edition = "2018"
@ -17,4 +17,4 @@ quote = "^1"
syn = { version = "^1", features = ["full"] } syn = { version = "^1", features = ["full"] }
[dev-dependencies] [dev-dependencies]
ntex = { version = "0.1.1" } ntex = { version = "0.1.0" }

View file

@ -1,8 +1,8 @@
[package] [package]
name = "ntex-rt" name = "ntex-rt"
version = "1.0.0" version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"] authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix runtime" description = "ntex runtime"
keywords = ["network", "framework", "async", "futures"] keywords = ["network", "framework", "async", "futures"]
homepage = "https://ntex.rs" homepage = "https://ntex.rs"
repository = "https://github.com/ntex-rs/ntex.git" repository = "https://github.com/ntex-rs/ntex.git"
@ -16,7 +16,7 @@ name = "ntex_rt"
path = "src/lib.rs" path = "src/lib.rs"
[dependencies] [dependencies]
ntex-macros = "0.1.0" ntex-rt-macros = "0.1.0"
actix-threadpool = "0.3" actix-threadpool = "0.3"
futures = "0.3.1" futures = "0.3.1"
tokio = { version = "0.2.6", 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"] }

View file

@ -10,7 +10,7 @@ pub use self::runtime::Runtime;
pub use self::system::System; pub use self::system::System;
#[cfg(not(test))] // Work around for rust-lang/rust#62127 #[cfg(not(test))] // Work around for rust-lang/rust#62127
pub use ntex_macros::{rt_main as main, rt_test as test}; pub use ntex_rt_macros::{rt_main as main, rt_test as test};
#[doc(hidden)] #[doc(hidden)]
pub use actix_threadpool as blocking; pub use actix_threadpool as blocking;

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex-service" name = "ntex-service"
version = "1.0.5" version = "0.1.0"
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"]
@ -20,4 +20,4 @@ futures-util = "0.3.1"
pin-project = "0.4.6" pin-project = "0.4.6"
[dev-dependencies] [dev-dependencies]
ntex-rt = "1.0" ntex-rt = "0.1"

View file

@ -37,10 +37,10 @@ cookie = ["coo-kie", "coo-kie/percent-encode"]
[dependencies] [dependencies]
ntex-codec = "0.1" ntex-codec = "0.1"
ntex-macros = "0.1" ntex-rt = "0.1"
ntex-rt = "1.0" ntex-rt-macros = "0.1"
ntex-router = "0.3" ntex-router = "0.3"
ntex-service = "1.0" ntex-service = "0.1"
ntex-web-macros = "0.1" ntex-web-macros = "0.1"
actix-threadpool = "0.3.1" actix-threadpool = "0.3.1"
@ -95,7 +95,7 @@ mio-uds = { version = "0.6.7" }
brotli2 = { version="0.3.2", optional = true } brotli2 = { version="0.3.2", optional = true }
flate2 = { version = "1.0.13", optional = true } flate2 = { version = "1.0.13", optional = true }
tokio = { version = "0.2.6", default-features=false, features = ["rt-core", "rt-util", "io-driver", "tcp", "uds", "udp", "time", "signal", "stream"] } tokio = "0.2.6"
[dev-dependencies] [dev-dependencies]
futures = "0.3.1" futures = "0.3.1"

View file

@ -15,7 +15,7 @@
#[macro_use] #[macro_use]
extern crate log; extern crate log;
pub use ntex_macros::{main, test}; pub use ntex_rt_macros::{main, test};
pub mod channel; pub mod channel;
pub mod codec; pub mod codec;