]> piware.de Git - learn-rust.git/commitdiff
async-http: Move to async main and handler function
authorMartin Pitt <martin@piware.de>
Fri, 16 Sep 2022 06:19:15 +0000 (08:19 +0200)
committerMartin Pitt <martin@piware.de>
Fri, 16 Sep 2022 06:53:18 +0000 (08:53 +0200)
This does not yet handle requests concurrently. Demonstrate with adding
a /sleep path.

async-http/Cargo.toml
async-http/src/main.rs

index dfca1b524f15388282d7e7806d33afe9bb8fe3d4..92c94f55844386e63136b65f558b21b19e75612d 100644 (file)
@@ -8,3 +8,7 @@ edition = "2021"
 [dependencies]
 log = "0.4"
 env_logger = "0.9"
+
+[dependencies.async-std]
+version = "1.6"
+features = ["attributes"]
index 95e7f07687562f23df7591299f18a0066290fd2f..c36be0ad86d093e4619b1c3e41dfe474d4d5a073 100644 (file)
@@ -1,9 +1,12 @@
 use std::fs;
 use std::io::prelude::*;
-use std::net::TcpListener;
-use std::net::TcpStream;
+use std::net::{ TcpListener, TcpStream };
+use std::time::Duration;
 
-fn main() {
+use async_std::task;
+
+#[async_std::main]
+async fn main() {
     env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("info")).init();
 
     // Listen for incoming TCP connections on localhost port 7878
@@ -12,21 +15,23 @@ fn main() {
     // Block forever, handling each request that arrives at this IP address
     for stream in listener.incoming() {
         let stream = stream.unwrap();
-        handle_connection(stream);
+        // not concurrent
+        handle_connection(stream).await;
     }
 }
 
-fn handle_connection(mut stream: TcpStream) {
+async fn handle_connection(mut stream: TcpStream) {
     // Read the first 1024 bytes of data from the stream
     let mut buffer = [0; 1024];
     assert!(stream.read(&mut buffer).unwrap() > 0);
 
-    let get = b"GET / HTTP/1.1\r\n";
-
     // Respond with greetings or a 404,
     // depending on the data in the request
-    let (status_line, filename) = if buffer.starts_with(get) {
+    let (status_line, filename) = if buffer.starts_with(b"GET / HTTP/1.1\r\n") {
         ("HTTP/1.1 200 OK", "index.html")
+    } else if buffer.starts_with(b"GET /sleep HTTP/1.1\r\n") {
+        task::sleep(Duration::from_secs(5)).await;
+        ("HTTP/1.1 201 Sleep", "index.html")
     } else {
         ("HTTP/1.1 404 NOT FOUND", "404.html")
     };