-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support something like smol::Async #2558
Comments
Tokio already has types such as For more low level access to the underlying IO loop, there's also |
Closing as there is not enough information to support the request (use case, motivation, ....). Feel free to comment if you disagree. I can reopen it. |
I was trying to find an async version of zeromq library, my environment needs tokio 2.0.
And this is my experiment result with smol's |
The example you provided doesn't compile because For example, if the operation required multiple writes to the underlying IO resource (which zmq's |
Does the linked code actually work? My understanding is that As a side note, |
The
Thanks, I'll try this, maybe it'll come out similar. |
The AsRawFd is implemented in predecessor commit in the same PR. I think the zmq API is designed to work with both blocking and non-blocking style: And:
|
Interesting. I would still be super worried about the Rust shim around the C library doing the right thing. But yes, |
I did a little bit more research on this, find this, which is summarised by one of the authors of tmq, which is a "Rust ZeroMQ bindings for Tokio", it looks decently written, work with Tokio 0.2, and uses the |
Maybe something we can do on Tokio's side to help prevent similar confusion in the future is highlighting the use of |
I just implemented the |
Is there an easy way to wrap an existing non-blocking FD to provide tokio/tokio/src/process/unix/mod.rs Lines 140 to 231 in 4c4699b
|
@WGH- The |
@Darksonn are you referring to Doing something like |
Well converting it to a In any case, we are currently working on Tokio v0.3, which will rework this part of the API to remove the public dependency on mio. Designing this part of the API is still a work-in-progress. Edit: It is correct that, with the current API, you are forced to write some boilerplate yourself if none of the IO types in Tokio fit your needs. |
FWIW, the FD in question is anonymous pipe. Unfortunately, the Although pipes are probably the main thing here, I believe this problem is not limited to pipes. There's quite a few of Linux-specific whateverfd APIs that are 1) pollable 2) provide read/write interface (eventfd, timerfd), and it would be cool if one could use them with Tokio without writing extra code. |
These are likely best written as utilities or utility crates, so that Tokio doesn't have to be coupled to specific Linux-only subsystems, etc. We've traditionally shied away from maintaining OS-specific facilities because it adds to the support/testing burden. Personally, writing <20 lines of code for |
https://docs.rs/tokio/0.2.22/tokio/io/trait.AsyncRead.html#impl-AsyncRead-11
If you want to read from that file descriptor using |
Ah, you're right. I was looking at some similar code I had written that only used At any rate, everything else I said still stands. :P |
Hmm, given that tokio 0.3 has |
The situation has changed since we are moving away from having mio in the public API, yes. It is still not equivalent to smol's Async type. |
True, but the amount of boilerplate code required to wrap with |
I am happy to hear you like the new API :) |
https://github.com/stjepang/smol/blob/master/src/async_io.rs#L107
The text was updated successfully, but these errors were encountered: