在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):tokio-rs/mio开源软件地址(OpenSource Url):https://github.com/tokio-rs/mio开源编程语言(OpenSource Language):Rust 99.8%开源软件介绍(OpenSource Introduction):Mio – Metal IOMio is a fast, low-level I/O library for Rust focusing on non-blocking APIs and event notification for building high performance I/O apps with as little overhead as possible over the OS abstractions. API documentation This is a low level library, if you are looking for something easier to get started with, see Tokio. UsageTo use [dependencies]
mio = "0.8" Next we can start using Mio. The following is quick introduction using
use std::error::Error;
use mio::net::{TcpListener, TcpStream};
use mio::{Events, Interest, Poll, Token};
// Some tokens to allow us to identify which event is for which socket.
const SERVER: Token = Token(0);
const CLIENT: Token = Token(1);
fn main() -> Result<(), Box<dyn Error>> {
// Create a poll instance.
let mut poll = Poll::new()?;
// Create storage for events.
let mut events = Events::with_capacity(128);
// Setup the server socket.
let addr = "127.0.0.1:13265".parse()?;
let mut server = TcpListener::bind(addr)?;
// Start listening for incoming connections.
poll.registry()
.register(&mut server, SERVER, Interest::READABLE)?;
// Setup the client socket.
let mut client = TcpStream::connect(addr)?;
// Register the socket.
poll.registry()
.register(&mut client, CLIENT, Interest::READABLE | Interest::WRITABLE)?;
// Start an event loop.
loop {
// Poll Mio for events, blocking until we get an event.
poll.poll(&mut events, None)?;
// Process each event.
for event in events.iter() {
// We can use the token we previously provided to `register` to
// determine for which socket the event is.
match event.token() {
SERVER => {
// If this is an event for the server, it means a connection
// is ready to be accepted.
//
// Accept the connection and drop it immediately. This will
// close the socket and notify the client of the EOF.
let connection = server.accept();
drop(connection);
}
CLIENT => {
if event.is_writable() {
// We can (likely) write to the socket without blocking.
}
if event.is_readable() {
// We can (likely) read from the socket without blocking.
}
// Since the server just shuts down the connection, let's
// just exit from our event loop.
return Ok(());
}
// We don't expect any events with tokens other than those we provided.
_ => unreachable!(),
}
}
}
} Features
Non-goalsThe following are specifically omitted from Mio and are left to the user or higher-level libraries.
PlatformsCurrently supported platforms:
There are potentially others. If you find that Mio works on another platform, submit a PR to update the list! Mio can handle interfacing with each of the event systems of the aforementioned
platforms. The details of their implementation are further discussed in the
The Windows implementation for polling sockets is using the wepoll strategy. This uses the Windows AFD system to access socket readiness events. Unsupported
CommunityA group of Mio users hang out on Discord, this can be a good place to go for questions. ContributingInterested in getting involved? We would love to help you! For simple bug fixes, just submit a PR with the fix and we can discuss the fix directly in the PR. If the fix is more complex, start with an issue. If you want to propose an API change, create an issue to start a discussion with the community. Also, feel free to talk with us in Discord. Finally, be kind. We support the Rust Code of Conduct. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论