- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试理解 Rust 中的异步 I/O。以下代码基于 Katharina Fey 的片段 Jan 2019 talk这对我有用:
use futures::future::Future;
use std::io::BufReader;
use tokio::io::*;
fn main() {
let reader = BufReader::new(tokio::io::stdin());
let buffer = Vec::new();
println!("Type something:");
let fut = tokio::io::read_until(reader, b'\n', buffer)
.and_then(move |(stdin, buffer)| {
tokio::io::stdout()
.write_all(&buffer)
.map_err(|e| panic!(e))
})
.map_err(|e| panic!(e));
tokio::run(fut);
}
在找到该代码之前,我试图从 read_until
中找出它文档。
如何解释 read_until
的签名以在上面的代码示例中使用它?
pub fn read_until<A>(a: A, byte: u8, buf: Vec<u8>) -> ReadUntil<A>
where
A: AsyncRead + BufRead,
具体来说,我如何通过阅读文档知道传递给 and_then
闭包的参数和预期结果是什么?
最佳答案
and_then
不幸的是,Rust 文档的标准布局使得 futures 很难遵循。
从 read_until
开始您链接的文档,我可以看到它返回 ReadUntil<A>
.我将单击它转到 ReadUntil
documentation .
这个返回值描述为:
A future which can be used to easily read the contents of a stream into a vector until the delimiter is reached.
我希望它能实现 Future
特质 - 我可以看到它确实如此。我还假设 Item
future 解决的是某种向量,但我不知道到底是什么,所以我继续挖掘:
impl<A> Future for ReadUntil<A>
[+]
扩张器最后我看到了关联的type Item = (A, Vec<u8>)
.这意味着它是 Future
这将返回一对值:A
, 所以它大概是把原来的 reader
还给我了我传入的,加上一个字节向量。
当 future 解析到这个元组时,我想用 and_then
附加一些额外的处理.这是 Future
的一部分trait,所以我可以进一步向下滚动以找到该函数。
fn and_then<F, B>(self, f: F) -> AndThen<Self, B, F>
where
F: FnOnce(Self::Item) -> B,
B: IntoFuture<Error = Self::Error>,
Self: Sized,
函数and_then
被记录为采用两个参数,但是 self
当使用点语法给 chain 函数时由编译器隐式传递,这告诉我们可以编写 read_until(A, '\n', buffer).and_then(...)
.文档中的第二个参数,f: F
, 成为传递给 and_then
的第一个参数在我们的代码中。
我可以看到 f
是一个闭包,因为类型 F
显示为FnOnce(Self::Item) -> B
(如果我点击指向 Rust book closure chapter 的链接。
闭包f
传入的需要 Self::Item
作为参数。我刚发现 Item
是(A, Vec<u8>)
, 所以我希望写类似 .and_then(|(reader, buffer)| { /* ... /* })
的东西
AsyncRead
+ BufRead
这限制了可以阅读的阅读器类型。创建的 BufReader
工具 BufRead
.
有用的是,Tokio 提供了 an implementation of AsyncRead
for BufReader
所以我们不必担心,我们可以继续使用 BufReader
.
关于rust - 如何解释 read_until 的签名以及 Tokio 中的 AsyncRead + BufRead 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56402818/
我似乎无法让编译器让我包装 Tokio AsyncRead: use std::io::Result; use core::pin::Pin; use core::task::{Context, Po
我正在运行一个 AsyncReader 来打开另一个应用程序正在下载的共享 MPG 文件(渐进式下载)。共享 MPG 文件是使用 FILE-SHARE-READ | 创建的文件共享删除 | FILE-
我正在尝试构建一个从 SFTP 服务器提取文件并将其上传到 S3 的服务。 对于 SFTP 部分,我使用 async-ssh2 ,这给了我一个实现 futures::AsyncRead 的文件处理程序
我正在尝试理解 Rust 中的异步 I/O。以下代码基于 Katharina Fey 的片段 Jan 2019 talk这对我有用: use futures::future::Future; use
我正在尝试包装 AsyncRead在另一个 AsyncRead (并对其进行一些数据处理)。但是,当尝试存储 Future 时的 .read()我遇到终身问题:self has an anonymou
我无法编译一个简单的应用程序来测试 tokio-codec。 tokio::net::tcp::stream::TcpStream 实现 AsyncRead 和 -Write。 但是当我尝试编译下面的
我是一名优秀的程序员,十分优秀!