commit | b81c80b31414735c1c2056834bf3d5fb678668e9 | [log] [tgz] |
---|---|---|
author | Luke Huang <huangluke@google.com> | Wed May 26 23:24:32 2021 +0800 |
committer | Luke Huang <huangluke@google.com> | Thu May 27 16:32:57 2021 +0800 |
tree | d4202b122faca63ebf59cafaf87ae56c64c63898 | |
parent | f1a1047f595f273f50d8bc39e3b9eea74a0b73b4 [diff] |
Upgrade rust/crates/tokio to 1.6.0 and use cargo2android.json to generate bp file 1. Only generate libtokio by cargo2android.json 2. Put all the test targets to patch, which might let future upgrade easier. 3. Add some tests removed by previous upgrade back. 4. Disable some tests that doesn't work for Android. Test: atest Bug: 189140417 Change-Id: I141d548e667cbf33966e868a6eedbe4b50ab56ed
A runtime for writing reliable, asynchronous, and slim applications with the Rust programming language. It is:
Fast: Tokio's zero-cost abstractions give you bare-metal performance.
Reliable: Tokio leverages Rust's ownership, type system, and concurrency model to reduce bugs and ensure thread safety.
Scalable: Tokio has a minimal footprint, and handles backpressure and cancellation naturally.
Website | Guides | API Docs | Chat
Tokio is an event-driven, non-blocking I/O platform for writing asynchronous applications with the Rust programming language. At a high level, it provides a few major components:
These components provide the runtime components necessary for building an asynchronous application.
A basic TCP echo server with Tokio:
use tokio::net::TcpListener; use tokio::io::{AsyncReadExt, AsyncWriteExt}; #[tokio::main] async fn main() -> Result<(), Box<dyn std::error::Error>> { let mut listener = TcpListener::bind("127.0.0.1:8080").await?; loop { let (mut socket, _) = listener.accept().await?; tokio::spawn(async move { let mut buf = [0; 1024]; // In a loop, read data from the socket and write the data back. loop { let n = match socket.read(&mut buf).await { // socket closed Ok(n) if n == 0 => return, Ok(n) => n, Err(e) => { eprintln!("failed to read from socket; err = {:?}", e); return; } }; // Write the data back if let Err(e) = socket.write_all(&buf[0..n]).await { eprintln!("failed to write to socket; err = {:?}", e); return; } } }); } }
More examples can be found here. For a larger “real world” example, see the mini-redis repository.
To see a list of the available features flags that can be enabled, check our docs.
First, see if the answer to your question can be found in the Guides or the API documentation. If the answer is not there, there is an active community in the Tokio Discord server. We would be happy to try to answer your question. You can also ask your question on the discussions page.
:balloon: Thanks for your help improving the project! We are so happy to have you! We have a contributing guide to help you get involved in the Tokio project.
In addition to the crates in this repository, the Tokio project also maintains several other libraries, including:
hyper
: A fast and correct HTTP/1.1 and HTTP/2 implementation for Rust.
tonic
: A gRPC over HTTP/2 implementation focused on high performance, interoperability, and flexibility.
warp
: A super-easy, composable, web server framework for warp speeds.
tower
: A library of modular and reusable components for building robust networking clients and servers.
tracing
: A framework for application-level tracing and async-aware diagnostics.
rdbc
: A Rust database connectivity library for MySQL, Postgres and SQLite.
mio
: A low-level, cross-platform abstraction over OS I/O APIs that powers tokio
.
bytes
: Utilities for working with bytes, including efficient byte buffers.
loom
: A testing tool for concurrent Rust code
Tokio is built against the latest stable release. The minimum supported version is 1.45. The current Tokio version is not guaranteed to build on Rust versions earlier than the minimum supported version.
This project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tokio by you, shall be licensed as MIT, without any additional terms or conditions.